diff --git a/.github/workflows/npm-publish-pro.yml b/.github/workflows/npm-publish-pro.yml index db7e706f..126c9534 100644 --- a/.github/workflows/npm-publish-pro.yml +++ b/.github/workflows/npm-publish-pro.yml @@ -3,7 +3,7 @@ name: Publish to NPM PRO on: push: tags: - - "*" + - '*' jobs: publish-npm: @@ -21,7 +21,7 @@ jobs: run: | npm ci --progress=false npm i @iconscout/unicons@latest - npm run generate + npm run generate && npm run build - name: Publish to Gemfury run: npm publish env: diff --git a/.github/workflows/npm-publish-rc.yml b/.github/workflows/npm-publish-rc.yml index c519d4aa..9c60290f 100644 --- a/.github/workflows/npm-publish-rc.yml +++ b/.github/workflows/npm-publish-rc.yml @@ -3,7 +3,7 @@ name: Publish to NPM RC on: push: branches: - - "release-*" + - 'release-*' jobs: publish-npm: @@ -13,9 +13,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 22.11.0 - registry-url: "https://registry.npmjs.org" + registry-url: 'https://registry.npmjs.org' - name: Download & Build Icons - run: npm ci --progress=false && npm i @iconscout/unicons@latest && npm run generate + run: npm ci --progress=false && npm i @iconscout/unicons@latest && npm run generate && npm run build - name: Create Pull Request uses: peter-evans/create-pull-request@v7 with: diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fc476df2..ecf053ee 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -3,7 +3,7 @@ name: Publish to NPM on: push: tags: - - "*" + - '*' jobs: publish-npm: @@ -13,9 +13,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 22.11.0 - registry-url: "https://registry.npmjs.org" + registry-url: 'https://registry.npmjs.org' - name: Download & Build Icons - run: npm ci --progress=false && npm i @iconscout/unicons@latest && npm run generate + run: npm ci --progress=false && npm i @iconscout/unicons@latest && npm run generate && npm run build - name: Publish to NPM run: npm publish env: diff --git a/.gitignore b/.gitignore index 9b26ed04..224cef25 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ node_modules -lib \ No newline at end of file +lib +dist +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index 6c4c582f..d8a906b4 100644 --- a/README.md +++ b/README.md @@ -1,64 +1,120 @@ # React Unicons - 4,500+ Pixel-perfect vector icons as React Components. These icons are designed by [IconScout](https://iconscout.com). -## Getting Started -You can easily install [react-unicons](https://iconscout.com/unicons) using npm. +## Installation + +Using npm: + ```bash npm install --save @iconscout/react-unicons ``` -Or using `yarn` + +Using yarn: + ```bash yarn add @iconscout/react-unicons ``` ## Usage -### Use individual icons -```js -import React from 'react'; + +### Individual Icon Import (Recommended) + +```jsx import UilReact from '@iconscout/react-unicons/icons/uil-react' -const App = () => { - return -}; +function App() { + return +} +``` -export default App; -```` +### Import as a Full Package -You can customize icons as below: -```html - +```jsx +import { UilReact } from '@iconscout/react-unicons' + +function App() { + return +} +``` + +### Import All Icons + +```jsx +import \* as Unicons from '@iconscout/react-unicons' + +function App() { +return +} +``` + +## TypeScript Support + +The library includes built-in TypeScript type definitions. All icons come with full type support, providing proper type checking for props and better IDE integration. The `IconProps` type is exported from the package for use in custom components. + +## Props + +The icons accept all props that you can pass to a SVG element, plus: + +| Prop | Type | Default | Description | +| ------- | ------------------ | -------------- | ------------------- | +| `size` | `number \| string` | `24` | Icon size in pixels | +| `color` | `string` | `currentColor` | Icon color | + +## Examples + +### Basic Usage + +```jsx + // Default size (24px) and color ``` -### Usage as full Package -```js -import React from 'react'; -import * as Unicons from '@iconscout/react-unicons'; +### With Size + +```jsx + // As number + // As string +``` -const App = () => { - return -}; +### With Color -export default App; -```` +```jsx + // Hex color + // RGB + // Named color +``` -### More ways -- [React-native-unicons](https://github.com/Iconscout/react-native-unicons) +### With Other Props + +```jsx + +``` + +## Related Projects + +- [React Native Unicons](https://github.com/Iconscout/react-native-unicons) - [Vue-unicons](https://github.com/antonreshetov/vue-unicons) by [Anton Reshetov](https://github.com/antonreshetov) - [Vector SVGs](https://iconscout.com/unicons) - [Icon Font](https://github.com/Iconscout/unicons) ## Contributing -We will be happy to have community support for Unicons. Feel free to fork and create pull requests. We have given a small roadmap above so that you can help us build these features. -### Request icons -Can't find the icon you are looking for? No worries, we will design it for you. And we'll be happy to design them in upcoming weeks. +We welcome community contributions to Unicons. Feel free to create pull requests. +### Request New Icons + +Can't find an icon? Request it here: [Request Icon](mailto:support@iconscout.com) ## License + Unicons are Open Source icons and licensed under [IconScout Simple License](https://iconscout.com/licenses#simple_license). You're free to use these icons in your personal and commercial project. We would love to see the attribution in your app's **about** screen, but it's not mandatory. + ```html React Unicons by IconScout -``` \ No newline at end of file +``` diff --git a/build/generate.js b/build/generate.js index c3445c67..5250149f 100644 --- a/build/generate.js +++ b/build/generate.js @@ -1,60 +1,95 @@ const path = require('path') -const fs = require('fs-plus') +const fs = require('fs-extra') const cheerio = require('cheerio') const upperCamelCase = require('uppercamelcase') -const iconsComponentPath = path.join(process.cwd(), 'icons') -const iconsIndexPath = path.join(process.cwd(), 'index.js') +// Ensure the src directory exists +const srcPath = path.join(process.cwd(), 'src') + +fs.removeSync(srcPath) +fs.mkdirSync(srcPath) + +const iconsPath = path.join(srcPath, 'icons') // Single directory for all icons +const iconsIndexPath = path.join(srcPath, 'index.ts') const uniconsConfig = require('@iconscout/unicons/json/line.json') // Clear Directories -fs.removeSync(iconsComponentPath) -fs.mkdirSync(iconsComponentPath) +fs.removeSync(iconsPath) +fs.mkdirSync(iconsPath) -const indexJs = [] +const indexTs = [ + `import { SVGProps } from 'react' -uniconsConfig.forEach(icon => { - const baseName = `uil-${icon.name}` - const location = path.join(iconsComponentPath, `${baseName}.js`) - const name = upperCamelCase(baseName) - const svgFile = fs.readFileSync(path.resolve('node_modules/@iconscout/unicons', icon.svg), 'utf-8') +export interface IconProps extends SVGProps { + size?: string | number + color?: string +} +`, +] - let data = svgFile.replace(/]+>/gi, '').replace(/<\/svg>/gi, '') - // Get Path Content from SVG - const $ = cheerio.load(data, { - xmlMode: true - }) - const svgPath = $('path').attr('d') +try { + uniconsConfig.forEach((icon) => { + const baseName = `uil-${icon.name}` + const name = upperCamelCase(baseName) + + try { + const svgFile = fs.readFileSync( + path.resolve('node_modules/@iconscout/unicons', icon.svg), + 'utf-8' + ) - const template = `import React from 'react'; -import PropTypes from 'prop-types'; + let data = svgFile.replace(/]+>/gi, '').replace(/<\/svg>/gi, '') -const ${name} = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: '${svgPath}' - })); -}; + const $ = cheerio.load(data, { + xmlMode: true, + }) + const svgPath = $('path').attr('d') -${name}.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; + if (!svgPath) { + console.warn(`Warning: No path found for icon ${name}`) + return + } -export default ${name};` + const componentContent = `import * as React from 'react' +import { IconProps } from '../index' - fs.writeFileSync(location, template, 'utf-8') +const ${name} = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: '${svgPath}' + }) + ) +} - // Add it to index.js - indexJs.push(`export { default as ${name} } from './icons/${baseName}'`) -}) +export default ${name}` + + // Write file once + fs.writeFileSync(path.join(iconsPath, `${baseName}.ts`), componentContent) + + // Add to main index exports + indexTs.push(`export { default as ${name} } from './icons/${baseName}'`) + } catch (err) { + console.error(`Error processing icon ${name}:`, err) + } + }) -fs.writeFileSync(iconsIndexPath, indexJs.join('\n'), 'utf-8') + fs.writeFileSync(iconsIndexPath, indexTs.join('\n'), 'utf-8') -console.log(`Generated ${uniconsConfig.length} icon components.`) \ No newline at end of file + console.log(`✓ Generated ${uniconsConfig.length} icon components`) +} catch (err) { + console.error('Error during generation:', err) + process.exit(1) +} diff --git a/example-react-18/.gitignore b/example-react-18/.gitignore new file mode 100644 index 00000000..a547bf36 --- /dev/null +++ b/example-react-18/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/example-react-18/README.md b/example-react-18/README.md new file mode 100644 index 00000000..f768e33f --- /dev/null +++ b/example-react-18/README.md @@ -0,0 +1,8 @@ +# React + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh diff --git a/example-react-18/eslint.config.js b/example-react-18/eslint.config.js new file mode 100644 index 00000000..238d2e4e --- /dev/null +++ b/example-react-18/eslint.config.js @@ -0,0 +1,38 @@ +import js from '@eslint/js' +import globals from 'globals' +import react from 'eslint-plugin-react' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' + +export default [ + { ignores: ['dist'] }, + { + files: ['**/*.{js,jsx}'], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + parserOptions: { + ecmaVersion: 'latest', + ecmaFeatures: { jsx: true }, + sourceType: 'module', + }, + }, + settings: { react: { version: '18.3' } }, + plugins: { + react, + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + }, + rules: { + ...js.configs.recommended.rules, + ...react.configs.recommended.rules, + ...react.configs['jsx-runtime'].rules, + ...reactHooks.configs.recommended.rules, + 'react/jsx-no-target-blank': 'off', + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, + }, +] diff --git a/example-react-18/index.html b/example-react-18/index.html new file mode 100644 index 00000000..0c589ecc --- /dev/null +++ b/example-react-18/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + React + + +
+ + + diff --git a/example-react-18/package-lock.json b/example-react-18/package-lock.json new file mode 100644 index 00000000..f3f13aa7 --- /dev/null +++ b/example-react-18/package-lock.json @@ -0,0 +1,4629 @@ +{ + "name": "example-react-18", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "example-react-18", + "version": "0.0.0", + "dependencies": { + "@iconscout/react-unicons": "github:Iconscout/react-unicons", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@eslint/js": "^9.17.0", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.17.0", + "eslint-plugin-react": "^7.37.2", + "eslint-plugin-react-hooks": "^5.0.0", + "eslint-plugin-react-refresh": "^0.4.16", + "globals": "^15.14.0", + "vite": "^6.0.5" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", + "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.7.tgz", + "integrity": "sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.5", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.7", + "@babel/parser": "^7.26.7", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.26.7", + "@babel/types": "^7.26.7", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", + "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.5", + "@babel/types": "^7.26.5", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", + "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.7.tgz", + "integrity": "sha512-8NHiL98vsi0mbPQmYAGWwfcFaOy4j2HY49fXJCfuDcdE7fMIsH9a7GdaeXpIBsbT7307WU8KCMp5pUVDNL4f9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.7.tgz", + "integrity": "sha512-kEvgGGgEjRUutvdVvZhbn/BxVt+5VSpwXz1j3WYXQbXDo8KzFOPNG2GQbdAiNq8g6wn1yKk7C/qrke03a84V+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz", + "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz", + "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.7.tgz", + "integrity": "sha512-1x1sgeyRLC3r5fQOM0/xtQKsYjyxmFjaOrLJNtZ81inNjyJHGIolTULPiSc/2qe1/qfpFLisLQYFnnZl7QoedA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.5", + "@babel/parser": "^7.26.7", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.7", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.26.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.7.tgz", + "integrity": "sha512-t8kDRGrKXyp6+tjUh7hw2RLyclsW4TRoRvRHtSyAX9Bb5ldlFh+90YAYY6awRXrlB4G5G2izNeGySpATlFzmOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", + "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", + "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", + "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", + "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", + "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", + "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", + "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", + "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", + "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", + "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", + "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", + "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", + "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", + "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", + "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", + "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", + "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", + "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", + "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", + "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", + "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", + "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", + "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", + "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", + "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", + "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", + "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.5", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.10.0.tgz", + "integrity": "sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", + "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.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" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.19.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.19.0.tgz", + "integrity": "sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", + "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.5.tgz", + "integrity": "sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.10.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", + "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@iconscout/react-unicons": { + "version": "2.2.1", + "resolved": "git+ssh://git@github.com/Iconscout/react-unicons.git#1637e5c425c5a57cd44e98ac4acf17be9836a816", + "license": "IconScout Simple License", + "dependencies": { + "react": ">=15.0.0 <17.0.0" + }, + "peerDependencies": { + "react": ">=15.0.0 <17.0.0" + } + }, + "node_modules/@iconscout/react-unicons/node_modules/react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.1.tgz", + "integrity": "sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.1.tgz", + "integrity": "sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.1.tgz", + "integrity": "sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.1.tgz", + "integrity": "sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.1.tgz", + "integrity": "sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.1.tgz", + "integrity": "sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.1.tgz", + "integrity": "sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.1.tgz", + "integrity": "sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.1.tgz", + "integrity": "sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.1.tgz", + "integrity": "sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.1.tgz", + "integrity": "sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.1.tgz", + "integrity": "sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.1.tgz", + "integrity": "sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.1.tgz", + "integrity": "sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.1.tgz", + "integrity": "sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.1.tgz", + "integrity": "sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.1.tgz", + "integrity": "sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.1.tgz", + "integrity": "sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.1.tgz", + "integrity": "sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.18", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz", + "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.5", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz", + "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz", + "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.26.0", + "@babel/plugin-transform-react-jsx-self": "^7.25.9", + "@babel/plugin-transform-react-jsx-source": "^7.25.9", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.14.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" + } + }, + "node_modules/acorn": { + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", + "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", + "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001696", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001696.tgz", + "integrity": "sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.90", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.90.tgz", + "integrity": "sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==", + "dev": true, + "license": "ISC" + }, + "node_modules/es-abstract": { + "version": "1.23.9", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz", + "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.0", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-regex": "^1.2.1", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.0", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.3", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.18" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz", + "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.0.3", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.6", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.4", + "safe-array-concat": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.0" + } + }, + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", + "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.2", + "@esbuild/android-arm": "0.24.2", + "@esbuild/android-arm64": "0.24.2", + "@esbuild/android-x64": "0.24.2", + "@esbuild/darwin-arm64": "0.24.2", + "@esbuild/darwin-x64": "0.24.2", + "@esbuild/freebsd-arm64": "0.24.2", + "@esbuild/freebsd-x64": "0.24.2", + "@esbuild/linux-arm": "0.24.2", + "@esbuild/linux-arm64": "0.24.2", + "@esbuild/linux-ia32": "0.24.2", + "@esbuild/linux-loong64": "0.24.2", + "@esbuild/linux-mips64el": "0.24.2", + "@esbuild/linux-ppc64": "0.24.2", + "@esbuild/linux-riscv64": "0.24.2", + "@esbuild/linux-s390x": "0.24.2", + "@esbuild/linux-x64": "0.24.2", + "@esbuild/netbsd-arm64": "0.24.2", + "@esbuild/netbsd-x64": "0.24.2", + "@esbuild/openbsd-arm64": "0.24.2", + "@esbuild/openbsd-x64": "0.24.2", + "@esbuild/sunos-x64": "0.24.2", + "@esbuild/win32-arm64": "0.24.2", + "@esbuild/win32-ia32": "0.24.2", + "@esbuild/win32-x64": "0.24.2" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.19.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.19.0.tgz", + "integrity": "sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.19.0", + "@eslint/core": "^0.10.0", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "9.19.0", + "@eslint/plugin-kit": "^0.2.5", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.1", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.2.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.4.tgz", + "integrity": "sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.8", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz", + "integrity": "sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.18.tgz", + "integrity": "sha512-IRGEoFn3OKalm3hjfolEWGqoF/jPqeEYFp+C8B0WMzwGwBMvlRDQd06kghDhF0C61uJ6WfSDhEZE/sAQjduKgw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-scope": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", + "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", + "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", + "dev": true, + "license": "ISC" + }, + "node_modules/for-each": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.4.tgz", + "integrity": "sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", + "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "function-bind": "^1.1.2", + "get-proto": "^1.0.0", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "15.14.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.14.0.tgz", + "integrity": "sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz", + "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", + "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-proto": "^1.0.0", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz", + "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.8", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", + "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz", + "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/postcss": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", + "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.8", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/react-refresh": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", + "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", + "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.9", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.7", + "get-proto": "^1.0.1", + "which-builtin-type": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz", + "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "set-function-name": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.1.tgz", + "integrity": "sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.32.1", + "@rollup/rollup-android-arm64": "4.32.1", + "@rollup/rollup-darwin-arm64": "4.32.1", + "@rollup/rollup-darwin-x64": "4.32.1", + "@rollup/rollup-freebsd-arm64": "4.32.1", + "@rollup/rollup-freebsd-x64": "4.32.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.32.1", + "@rollup/rollup-linux-arm-musleabihf": "4.32.1", + "@rollup/rollup-linux-arm64-gnu": "4.32.1", + "@rollup/rollup-linux-arm64-musl": "4.32.1", + "@rollup/rollup-linux-loongarch64-gnu": "4.32.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.32.1", + "@rollup/rollup-linux-riscv64-gnu": "4.32.1", + "@rollup/rollup-linux-s390x-gnu": "4.32.1", + "@rollup/rollup-linux-x64-gnu": "4.32.1", + "@rollup/rollup-linux-x64-musl": "4.32.1", + "@rollup/rollup-win32-arm64-msvc": "4.32.1", + "@rollup/rollup-win32-ia32-msvc": "4.32.1", + "@rollup/rollup-win32-x64-msvc": "4.32.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz", + "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "has-symbols": "^1.1.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-push-apply": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz", + "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-proto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz", + "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz", + "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.6", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "regexp.prototype.flags": "^1.5.3", + "set-function-name": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.repeat": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz", + "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.5" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz", + "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-data-property": "^1.1.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-object-atoms": "^1.0.0", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz", + "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.2", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", + "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz", + "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz", + "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-proto": "^1.2.0", + "is-typed-array": "^1.1.15", + "reflect.getprototypeof": "^1.0.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz", + "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0", + "reflect.getprototypeof": "^1.0.6" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unbox-primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz", + "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-bigints": "^1.0.2", + "has-symbols": "^1.1.0", + "which-boxed-primitive": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", + "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/vite": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz", + "integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.24.2", + "postcss": "^8.4.49", + "rollup": "^4.23.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "jiti": ">=1.21.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz", + "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-bigint": "^1.1.0", + "is-boolean-object": "^1.2.1", + "is-number-object": "^1.1.1", + "is-string": "^1.1.1", + "is-symbol": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", + "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "function.prototype.name": "^1.1.6", + "has-tostringtag": "^1.0.2", + "is-async-function": "^2.0.0", + "is-date-object": "^1.1.0", + "is-finalizationregistry": "^1.1.0", + "is-generator-function": "^1.0.10", + "is-regex": "^1.2.1", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.1.0", + "which-collection": "^1.0.2", + "which-typed-array": "^1.1.16" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", + "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-map": "^2.0.3", + "is-set": "^2.0.3", + "is-weakmap": "^2.0.2", + "is-weakset": "^2.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.18", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz", + "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "for-each": "^0.3.3", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/example-react-18/package.json b/example-react-18/package.json new file mode 100644 index 00000000..8b418c79 --- /dev/null +++ b/example-react-18/package.json @@ -0,0 +1,29 @@ +{ + "name": "example-react-18", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@iconscout/react-unicons": "github:Iconscout/react-unicons", + "react": "^18.3.1", + "react-dom": "^18.3.1" + }, + "devDependencies": { + "@eslint/js": "^9.17.0", + "@types/react": "^18.3.18", + "@types/react-dom": "^18.3.5", + "@vitejs/plugin-react": "^4.3.4", + "eslint": "^9.17.0", + "eslint-plugin-react": "^7.37.2", + "eslint-plugin-react-hooks": "^5.0.0", + "eslint-plugin-react-refresh": "^0.4.16", + "globals": "^15.14.0", + "vite": "^6.0.5" + } +} diff --git a/example-react-18/public/vite.svg b/example-react-18/public/vite.svg new file mode 100644 index 00000000..e7b8dfb1 --- /dev/null +++ b/example-react-18/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/example-react-18/src/App.css b/example-react-18/src/App.css new file mode 100644 index 00000000..4f66f536 --- /dev/null +++ b/example-react-18/src/App.css @@ -0,0 +1,53 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} + +.App { + text-align: center; + padding: 20px; +} + +button { + margin: 0 10px; + padding: 8px 16px; + cursor: pointer; +} \ No newline at end of file diff --git a/example-react-18/src/App.jsx b/example-react-18/src/App.jsx new file mode 100644 index 00000000..0d6cdd51 --- /dev/null +++ b/example-react-18/src/App.jsx @@ -0,0 +1,82 @@ +import { useState } from 'react' +import { UilReact } from '@iconscout/react-unicons' +import Ic0Plus from '@iconscout/react-unicons/icons/uil-0-plus' +import './App.css' + +function App() { + const [size, setSize] = useState(50) + const [color, setColor] = useState('#61DAFB') + + const colors = [ + '#61DAFB', // React blue + '#FF4154', // Red + '#38BDF8', // Sky blue + '#4ADE80', // Green + '#A855F7', // Purple + ] + + return ( +
+

React Unicons Example

+ +
+ + +
+ +
+ + +

Current size: {size}px

+
+ +
+
Select Color:
+
+ {colors.map((c) => ( +
+ setColor(e.target.value)} + style={{ marginTop: '10px' }} + /> +
+ + {/* Test different import methods */} +
+

Imported Globally

+
+ {/* Default size */} + {/* String size */} + {/* Number size */} +
+
+
+ ) +} + +export default App diff --git a/example-react-18/src/assets/react.svg b/example-react-18/src/assets/react.svg new file mode 100644 index 00000000..6c87de9b --- /dev/null +++ b/example-react-18/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/example-react-18/src/index.css b/example-react-18/src/index.css new file mode 100644 index 00000000..6119ad9a --- /dev/null +++ b/example-react-18/src/index.css @@ -0,0 +1,68 @@ +:root { + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/example-react-18/src/main.jsx b/example-react-18/src/main.jsx new file mode 100644 index 00000000..e1f10bdf --- /dev/null +++ b/example-react-18/src/main.jsx @@ -0,0 +1,11 @@ +import React from 'react' +import { createRoot } from 'react-dom/client' +import App from './App' +import './index.css' + +const root = createRoot(document.getElementById('root')) +root.render( + + + +) diff --git a/example-react-18/vite.config.js b/example-react-18/vite.config.js new file mode 100644 index 00000000..8b0f57b9 --- /dev/null +++ b/example-react-18/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/example-react-18/yalc.lock b/example-react-18/yalc.lock new file mode 100644 index 00000000..60157139 --- /dev/null +++ b/example-react-18/yalc.lock @@ -0,0 +1,9 @@ +{ + "version": "v1", + "packages": { + "@iconscout/react-unicons": { + "signature": "0ac09cd376f6bc889038720bc3a358c9", + "file": true + } + } +} \ No newline at end of file diff --git a/icons/uil-0-plus.js b/icons/uil-0-plus.js deleted file mode 100644 index ee923c0c..00000000 --- a/icons/uil-0-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil0Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM12.5,6h-1a3,3,0,0,0-3,3v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V9A3,3,0,0,0,12.5,6Zm1,9a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Zm8.1-6a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil0Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil0Plus; \ No newline at end of file diff --git a/icons/uil-10-plus.js b/icons/uil-10-plus.js deleted file mode 100644 index 3cc64b1c..00000000 --- a/icons/uil-10-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil10Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11,9v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm5,0v6a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1A1,1,0,0,1,16,9Zm5.6,0a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7Z' - })); -}; - -Uil10Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil10Plus; \ No newline at end of file diff --git a/icons/uil-12-plus.js b/icons/uil-12-plus.js deleted file mode 100644 index 2e9aba9f..00000000 --- a/icons/uil-12-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil12Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,9a1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H13V14a1,1,0,0,1,1-1h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm7-4h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil12Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil12Plus; \ No newline at end of file diff --git a/icons/uil-13-plus.js b/icons/uil-13-plus.js deleted file mode 100644 index 2d2c63c6..00000000 --- a/icons/uil-13-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil13Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11,9a1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-.5a1,1,0,0,0,0,2H15a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,18,10V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil13Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil13Plus; \ No newline at end of file diff --git a/icons/uil-16-plus.js b/icons/uil-16-plus.js deleted file mode 100644 index fcf38b89..00000000 --- a/icons/uil-16-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil16Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2Zm3.6,4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7Zm4,2v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-3-3H13V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm4,4a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V13Z' - })); -}; - -Uil16Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil16Plus; \ No newline at end of file diff --git a/icons/uil-17-plus.js b/icons/uil-17-plus.js deleted file mode 100644 index cedd9225..00000000 --- a/icons/uil-17-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil17Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,7V9a1,1,0,0,0,2,0V8h2.78L14,16.8A1,1,0,0,0,14.8,18l.2,0a1,1,0,0,0,1-.8l2-10a1,1,0,0,0-.21-.83A1,1,0,0,0,17,6H12A1,1,0,0,0,11,7Zm7-2h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil17Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil17Plus; \ No newline at end of file diff --git a/icons/uil-18-plus.js b/icons/uil-18-plus.js deleted file mode 100644 index 0de6c526..00000000 --- a/icons/uil-18-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil18Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM11,9v1a3,3,0,0,0,.78,2A3,3,0,0,0,11,14v1a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,18,10V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm5,6a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Zm0-6v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1A1,1,0,0,1,16,9Z' - })); -}; - -Uil18Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil18Plus; \ No newline at end of file diff --git a/icons/uil-21-plus.js b/icons/uil-21-plus.js deleted file mode 100644 index b0c678f1..00000000 --- a/icons/uil-21-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil21Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,18a1,1,0,0,0,1-1V7a1,1,0,0,0-2,0V17A1,1,0,0,0,17,18ZM18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2Zm3.6,4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM10,13h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H10A3,3,0,0,0,7,9,1,1,0,0,0,9,9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H10a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H9V14A1,1,0,0,1,10,13Z' - })); -}; - -Uil21Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil21Plus; \ No newline at end of file diff --git a/icons/uil-3-plus.js b/icons/uil-3-plus.js deleted file mode 100644 index 46189be8..00000000 --- a/icons/uil-3-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil3Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM15.5,9a3,3,0,0,0-3-3h-1a3,3,0,0,0-3,3,1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H12a1,1,0,0,0,0,2h.5a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2,3,3,0,0,0,.78-2Zm6.1,0a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil3Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil3Plus; \ No newline at end of file diff --git a/icons/uil-500px.js b/icons/uil-500px.js deleted file mode 100644 index 4041c289..00000000 --- a/icons/uil-500px.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil500px = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,15.14a1.41,1.41,0,0,0,.17.44,6.28,6.28,0,0,0,1.39,2.08,6.67,6.67,0,0,0,2.09,1.4,6.21,6.21,0,0,0,2.54.52,6.29,6.29,0,0,0,2.55-.52,6.63,6.63,0,0,0,2.08-1.4,6.39,6.39,0,0,0,1.41-2.08A6.55,6.55,0,0,0,19.69,13a6.76,6.76,0,0,0-.51-2.56,6.35,6.35,0,0,0-1.41-2.07,6.46,6.46,0,0,0-4.63-1.92A6.63,6.63,0,0,0,10.56,7a7.09,7.09,0,0,0-1.2.68,7.14,7.14,0,0,0-1.14.94h0V3.23h9.05c.22,0,.34-.21.34-.62S17.48,2,17.26,2H7.47a.37.37,0,0,0-.3.13.4.4,0,0,0-.12.29V10a.39.39,0,0,0,.17.3,1.09,1.09,0,0,0,.41.18.73.73,0,0,0,.43,0,.92.92,0,0,0,.24-.11,1,1,0,0,0,.14-.17l0,0a6.9,6.9,0,0,1,.86-1,5.15,5.15,0,0,1,3.79-1.56A5.15,5.15,0,0,1,16.9,9.25,5.17,5.17,0,0,1,18.48,13a5.31,5.31,0,0,1-.41,2A5.36,5.36,0,0,1,15.17,18a5.4,5.4,0,0,1-2.06.4,5.09,5.09,0,0,1-2.7-.75V13a2.66,2.66,0,0,1,.71-1.79,2.53,2.53,0,0,1,2-.89,2.65,2.65,0,0,1,2,.79A2.55,2.55,0,0,1,15.87,13a2.73,2.73,0,0,1-2.77,2.74l-.34,0-.37-.07-.15,0c-.21-.06-.37.1-.49.48s-.07.6.14.68a4.34,4.34,0,0,0,1.25.18,3.84,3.84,0,0,0,2.8-1.16A3.81,3.81,0,0,0,17.1,13a3.73,3.73,0,0,0-1.16-2.78,3.8,3.8,0,0,0-2.8-1.15,3.86,3.86,0,0,0-2.82,1.15,3.57,3.57,0,0,0-1.14,2.59v3.8h0a5.63,5.63,0,0,1-1.08-1.86c-.08-.21-.3-.25-.67-.13s-.55.29-.48.49Zm6.25-11a8.16,8.16,0,0,0-3.34.64A.25.25,0,0,0,9.68,5a1.26,1.26,0,0,0,.09.43c.14.35.3.48.5.41a8.09,8.09,0,0,1,2.93-.55,7.54,7.54,0,0,1,3.08.63A8.67,8.67,0,0,1,18.59,7.4a.25.25,0,0,0,.18.08c.09,0,.24-.1.43-.29L19.39,7a.37.37,0,0,0,.06-.21.3.3,0,0,0-.1-.2,8.62,8.62,0,0,0-2.62-1.69A9,9,0,0,0,13.2,4.14Zm-1.61,9.91a.46.46,0,0,0,.2.33l0,0a.52.52,0,0,0,.35.18.24.24,0,0,0,.17-.06l.73-.73.7.68a.28.28,0,0,0,.21.11.58.58,0,0,0,.36-.19c.2-.21.23-.39.07-.55l-.7-.7.74-.74c.12-.12.08-.29-.13-.49s-.4-.27-.53-.14l-.73.72-.72-.74a.3.3,0,0,0-.15-.05.56.56,0,0,0-.34.2c-.23.22-.28.38-.16.5l.74.74-.74.72A.35.35,0,0,0,11.59,14.05Zm7.93,4.57a1.24,1.24,0,0,0-.37-.25.28.28,0,0,0-.28.07l-.07.07a8,8,0,0,1-2.51,1.69,7.94,7.94,0,0,1-8.68-1.69A7.48,7.48,0,0,1,5.91,16a9.33,9.33,0,0,1-.51-1.77.1.1,0,0,0,0,0c0-.21-.25-.29-.63-.23s-.56.2-.53.4a8.52,8.52,0,0,0,.6,2.11,8.84,8.84,0,0,0,2,2.88,9,9,0,0,0,2.89,2,9.13,9.13,0,0,0,3.54.71,9.28,9.28,0,0,0,3.54-.71,9,9,0,0,0,2.89-2l.06-.06C19.85,19.11,19.78,18.89,19.52,18.62Z' - })); -}; - -Uil500px.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil500px; \ No newline at end of file diff --git a/icons/uil-6-plus.js b/icons/uil-6-plus.js deleted file mode 100644 index b9aca771..00000000 --- a/icons/uil-6-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const Uil6Plus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11.5,8h1a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3h-1a3,3,0,0,0-3,3v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-3-3h-2V9A1,1,0,0,1,11.5,8Zm1,5a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1V13Zm9.1-4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' - })); -}; - -Uil6Plus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default Uil6Plus; \ No newline at end of file diff --git a/icons/uil-abacus.js b/icons/uil-abacus.js deleted file mode 100644 index a1db5fd8..00000000 --- a/icons/uil-abacus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAbacus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2a1,1,0,0,0-1,1V6H16V5a1,1,0,0,0-2,0V6H12V5a1,1,0,0,0-2,0V6H8V5A1,1,0,0,0,6,5V6H4V3A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V3A1,1,0,0,0,21,2ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H6v1a1,1,0,0,0,2,0V16h2v1a1,1,0,0,0,2,0V16h4v1a1,1,0,0,0,2,0V16h2Zm0-5H18V13a1,1,0,0,0-2,0v1H12V13a1,1,0,0,0-2,0v1H8V13a1,1,0,0,0-2,0v1H4V8H6V9A1,1,0,0,0,8,9V8h2V9a1,1,0,0,0,2,0V8h2V9a1,1,0,0,0,2,0V8h4Z' - })); -}; - -UilAbacus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAbacus; \ No newline at end of file diff --git a/icons/uil-accessible-icon-alt.js b/icons/uil-accessible-icon-alt.js deleted file mode 100644 index 2bc74f2f..00000000 --- a/icons/uil-accessible-icon-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAccessibleIconAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,7a2,2,0,1,0-2-2A2,2,0,0,0,16,7ZM12.7,18.4A4,4,0,1,1,9.05,12a1,1,0,1,0-.22-2A6,6,0,0,0,9.5,22a6,6,0,0,0,4.8-2.4,1,1,0,0,0-1.6-1.2ZM19.5,20h-1V15a1,1,0,0,0-1-1H12.93l1.69-4.66s0-.07,0-.11l0-.2a1.1,1.1,0,0,0,0-.18,1.06,1.06,0,0,0,0-.19,1.4,1.4,0,0,0-.09-.17.72.72,0,0,0-.11-.15.64.64,0,0,0-.15-.13s0-.06-.08-.08L9.71,5.55l-.12,0a1.06,1.06,0,0,0-.19-.06H9a.8.8,0,0,0-.2.07l-.11,0L6,7.13A1,1,0,0,0,6.48,9,1,1,0,0,0,7,8.87l2.23-1.3,3.24,1.88-1.89,5.21a.88.88,0,0,0,0,.16.58.58,0,0,0,0,.18,0,0,0,0,0,0,0,3,3,0,0,0,.08.38l.11.15a.57.57,0,0,0,.11.16.67.67,0,0,0,.14.09,1.22,1.22,0,0,0,.19.12h0a1,1,0,0,0,.34.06h5v5a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2Z' - })); -}; - -UilAccessibleIconAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAccessibleIconAlt; \ No newline at end of file diff --git a/icons/uil-adjust-alt.js b/icons/uil-adjust-alt.js deleted file mode 100644 index 8b92b1d3..00000000 --- a/icons/uil-adjust-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdjustAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.83,7.32h0a.2.2,0,0,0,0-.08,10,10,0,0,0-3.38-3.65l0,0h0A9.89,9.89,0,0,0,12,2a1,1,0,0,0-1,1V21a1,1,0,0,0,1,1h.28A10,10,0,0,0,20.83,7.32ZM13,4.06a8,8,0,0,1,2.49.74L13,9.12Zm0,9.06L17.17,5.9a7.89,7.89,0,0,1,1.58,1.83L13,17.69Zm1.16,6.57L19.75,10A8.36,8.36,0,0,1,20,12,7.94,7.94,0,0,1,14.16,19.69Z' - })); -}; - -UilAdjustAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdjustAlt; \ No newline at end of file diff --git a/icons/uil-adjust-circle.js b/icons/uil-adjust-circle.js deleted file mode 100644 index 8987acf8..00000000 --- a/icons/uil-adjust-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdjustCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,7A7.74,7.74,0,1,0,7,17,7.74,7.74,0,1,0,17,7Zm-1.6,1.6a6.12,6.12,0,0,1,.11,1.14,5.92,5.92,0,0,1-.16,1.34L12.91,8.66a5.92,5.92,0,0,1,1.34-.16A6.12,6.12,0,0,1,15.39,8.61ZM14.46,13A6,6,0,0,1,13,14.46L9.54,11A6,6,0,0,1,11,9.54Zm-8,1.46a5.75,5.75,0,1,1,8-8h-.25A7.76,7.76,0,0,0,6.5,14.25C6.5,14.33,6.51,14.42,6.51,14.5Zm2.1.89a6.12,6.12,0,0,1-.11-1.14,5.92,5.92,0,0,1,.16-1.34l2.43,2.43a5.92,5.92,0,0,1-1.34.16A6.12,6.12,0,0,1,8.61,15.39ZM14.25,20A5.77,5.77,0,0,1,9.5,17.49h.25A7.76,7.76,0,0,0,17.5,9.75c0-.08,0-.17,0-.25A5.75,5.75,0,0,1,14.25,20Z' - })); -}; - -UilAdjustCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdjustCircle; \ No newline at end of file diff --git a/icons/uil-adjust-half.js b/icons/uil-adjust-half.js deleted file mode 100644 index 39336254..00000000 --- a/icons/uil-adjust-half.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdjustHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.83,7.32h0a10.11,10.11,0,0,0-3.44-3.73l0,0h0A10,10,0,1,0,12,22h.29A10,10,0,0,0,20.83,7.32ZM11,19.93A8,8,0,0,1,11,4.07ZM13,4.07a8.07,8.07,0,0,1,2.49.74L13,9.12Zm0,9L17.17,5.9a8.14,8.14,0,0,1,1.58,1.83L13,17.69Zm1.15,6.58L19.74,10A8.16,8.16,0,0,1,20,12,8,8,0,0,1,14.15,19.7Z' - })); -}; - -UilAdjustHalf.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdjustHalf; \ No newline at end of file diff --git a/icons/uil-adjust.js b/icons/uil-adjust.js deleted file mode 100644 index 518db73a..00000000 --- a/icons/uil-adjust.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdjust = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2ZM11,19.93A8,8,0,0,1,11,4.07Zm2,0V4.07a8,8,0,0,1,0,15.86Z' - })); -}; - -UilAdjust.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdjust; \ No newline at end of file diff --git a/icons/uil-adobe-alt.js b/icons/uil-adobe-alt.js deleted file mode 100644 index b18ba57d..00000000 --- a/icons/uil-adobe-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdobeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.24707,2.40278a.99893.99893,0,0,0-.83057-.44336H1.9917a.99974.99974,0,0,0-1,1v18.082a1.00015,1.00015,0,0,0,1.92529.37989l7.42481-18.082A1.00042,1.00042,0,0,0,10.24707,2.40278ZM2.9917,15.97309V3.95942H7.9248Zm19-14.01367H14.47412a1,1,0,0,0-.92139,1.3877l7.51758,17.84961a.99894.99894,0,0,0,.9209.6123,1.04879,1.04879,0,0,0,.19824-.01953,1.001,1.001,0,0,0,.80225-.98047V2.95942A.99974.99974,0,0,0,21.9917,1.95942Zm-1,13.89844L15.98047,3.95942H20.9917ZM12.94922,9.52a.99993.99993,0,0,0-.92578-.64648h-.00977a.99988.99988,0,0,0-.92822.62793L8.02637,17.13227a1,1,0,0,0,.92822,1.37207H11.209l1.52247,2.99024a.999.999,0,0,0,.89111.54687h2.61279a1.00015,1.00015,0,0,0,.93555-1.35351Zm1.28662,10.52148-1.52246-2.99023a.99905.99905,0,0,0-.89111-.54688H10.43262l1.55371-3.875,2.80176,7.41211Z' - })); -}; - -UilAdobeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdobeAlt; \ No newline at end of file diff --git a/icons/uil-adobe.js b/icons/uil-adobe.js deleted file mode 100644 index 6dee9d10..00000000 --- a/icons/uil-adobe.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAdobe = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.07,17.28h2.78l1.75,3.44h2.54L12,9.87ZM2,3V21L9.42,3ZM14.48,3,22,20.81V3Z' - })); -}; - -UilAdobe.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAdobe; \ No newline at end of file diff --git a/icons/uil-airplay.js b/icons/uil-airplay.js deleted file mode 100644 index 227901c8..00000000 --- a/icons/uil-airplay.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAirplay = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.83,13.45a1,1,0,0,0-1.66,0l-4,6a1,1,0,0,0,0,1A1,1,0,0,0,8,21h8a1,1,0,0,0,.88-.53,1,1,0,0,0-.05-1ZM9.87,19,12,15.8,14.13,19ZM19,3H5A3,3,0,0,0,2,6v9a3,3,0,0,0,3,3h.85a1,1,0,1,0,0-2H5a1,1,0,0,1-1-1V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1v9a1,1,0,0,1-1,1h-.85a1,1,0,0,0,0,2H19a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Z' - })); -}; - -UilAirplay.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAirplay; \ No newline at end of file diff --git a/icons/uil-align-alt.js b/icons/uil-align-alt.js deleted file mode 100644 index fcbcd5c2..00000000 --- a/icons/uil-align-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,11H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2ZM14,5h7a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2ZM10,7H3A1,1,0,0,0,3,9h7a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2ZM10,3H7A1,1,0,0,0,7,5h3a1,1,0,0,0,0-2ZM21,7H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm0,4H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm-4,8H14a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm4-4H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignAlt; \ No newline at end of file diff --git a/icons/uil-align-center-alt.js b/icons/uil-align-center-alt.js deleted file mode 100644 index 3eb32c6c..00000000 --- a/icons/uil-align-center-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignCenterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,8H19a1,1,0,0,0,0-2H5A1,1,0,0,0,5,8Zm16,3H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-2,5H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignCenterAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignCenterAlt; \ No newline at end of file diff --git a/icons/uil-align-center-h.js b/icons/uil-align-center-h.js deleted file mode 100644 index 2eccede0..00000000 --- a/icons/uil-align-center-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignCenterH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H16a1,1,0,0,0,0,2h2.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62ZM8,11H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H8a1,1,0,0,0,0-2Zm4-4a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,12,7Z' - })); -}; - -UilAlignCenterH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignCenterH; \ No newline at end of file diff --git a/icons/uil-align-center-justify.js b/icons/uil-align-center-justify.js deleted file mode 100644 index 1d433b8f..00000000 --- a/icons/uil-align-center-justify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignCenterJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,15H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM17,19H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2ZM21,7H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignCenterJustify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignCenterJustify; \ No newline at end of file diff --git a/icons/uil-align-center-v.js b/icons/uil-align-center-v.js deleted file mode 100644 index 0dafbe48..00000000 --- a/icons/uil-align-center-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignCenterV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.21,6.21l.79-.8V8a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42ZM16,11H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm-2.21,6.79-.79.8V16a1,1,0,0,0-2,0v2.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilAlignCenterV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignCenterV; \ No newline at end of file diff --git a/icons/uil-align-center.js b/icons/uil-align-center.js deleted file mode 100644 index 781f9ac9..00000000 --- a/icons/uil-align-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM7,9a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm14,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-4,4H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignCenter; \ No newline at end of file diff --git a/icons/uil-align-justify.js b/icons/uil-align-justify.js deleted file mode 100644 index 1f158a28..00000000 --- a/icons/uil-align-justify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignJustify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignJustify; \ No newline at end of file diff --git a/icons/uil-align-left-justify.js b/icons/uil-align-left-justify.js deleted file mode 100644 index e4db80bd..00000000 --- a/icons/uil-align-left-justify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignLeftJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM15,19H3a1,1,0,0,0,0,2H15a1,1,0,0,0,0-2Zm6-8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignLeftJustify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignLeftJustify; \ No newline at end of file diff --git a/icons/uil-align-left.js b/icons/uil-align-left.js deleted file mode 100644 index 76a11620..00000000 --- a/icons/uil-align-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm0,4H17a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-4,4H3a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignLeft; \ No newline at end of file diff --git a/icons/uil-align-letter-right.js b/icons/uil-align-letter-right.js deleted file mode 100644 index 2531f257..00000000 --- a/icons/uil-align-letter-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignLetterRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,4H21a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM21,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM21,6H3A1,1,0,0,0,3,8H21a1,1,0,0,0,0-2Zm0,10H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-6H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignLetterRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignLetterRight; \ No newline at end of file diff --git a/icons/uil-align-right-justify.js b/icons/uil-align-right-justify.js deleted file mode 100644 index 5176d69c..00000000 --- a/icons/uil-align-right-justify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignRightJustify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM21,19H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignRightJustify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignRightJustify; \ No newline at end of file diff --git a/icons/uil-align-right.js b/icons/uil-align-right.js deleted file mode 100644 index 74bdff31..00000000 --- a/icons/uil-align-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilAlignRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlignRight; \ No newline at end of file diff --git a/icons/uil-align.js b/icons/uil-align.js deleted file mode 100644 index e81a3576..00000000 --- a/icons/uil-align.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAlign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,15H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm0-4H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2ZM3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM19.64,9.57a1,1,0,1,0-1.28,1.53l1.08.9-1.08.9a1,1,0,0,0-.13,1.41,1,1,0,0,0,.77.36,1,1,0,0,0,.64-.24l2-1.66a1,1,0,0,0,0-1.54Z' - })); -}; - -UilAlign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAlign; \ No newline at end of file diff --git a/icons/uil-amazon.js b/icons/uil-amazon.js deleted file mode 100644 index a86b3127..00000000 --- a/icons/uil-amazon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAmazon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M1.04,17.52q.1-.16.32-.02a21.3078,21.3078,0,0,0,10.88,2.9,21.52431,21.52431,0,0,0,7.74-1.46q.1-.04.29-.12t.27-.12a.35611.35611,0,0,1,.47.12q.17.24-.11.44-.36.26-.92.6a14.99023,14.99023,0,0,1-3.84,1.58A16.1749,16.1749,0,0,1,12,22a16.01714,16.01714,0,0,1-5.9-1.09,16.24638,16.24638,0,0,1-4.98-3.07.273.273,0,0,1-.12-.2A.215.215,0,0,1,1.04,17.52Zm6.02-5.7a4.03628,4.03628,0,0,1,.68-2.36A4.19676,4.19676,0,0,1,9.6,7.98a10.06288,10.06288,0,0,1,2.66-.66q.54-.06,1.76-.16V6.82a3.56151,3.56151,0,0,0-.28-1.72,1.49917,1.49917,0,0,0-1.32-.6h-.16a2.18852,2.18852,0,0,0-1.14.42,1.63936,1.63936,0,0,0-.62,1,.50779.50779,0,0,1-.4.46L7.8,6.1q-.34-.08-.34-.36a.58734.58734,0,0,1,.02-.14A3.83352,3.83352,0,0,1,9.15,2.96,6.26811,6.26811,0,0,1,12.26,2h.5a5.05441,5.05441,0,0,1,3.56,1.18,3.81,3.81,0,0,1,.37.43,3.8746,3.8746,0,0,1,.27.41,2.09844,2.09844,0,0,1,.18.52q.08.34.12.47a2.85611,2.85611,0,0,1,.06.56q.02.43.02.51v4.84a2.86841,2.86841,0,0,0,.15.95,2.47465,2.47465,0,0,0,.29.62q.14.19.46.61a.59856.59856,0,0,1,.12.32.346.346,0,0,1-.16.28q-1.66,1.44-1.8,1.56a.557.557,0,0,1-.58.04q-.28-.24-.49-.46t-.3-.32a4.46629,4.46629,0,0,1-.29-.39q-.2-.29-.28-.39a4.91083,4.91083,0,0,1-2.2,1.52,6.03757,6.03757,0,0,1-1.68.2,3.50454,3.50454,0,0,1-2.53-.95A3.553,3.553,0,0,1,7.06,11.82Zm3.44-.4a1.89505,1.89505,0,0,0,.39,1.25,1.29375,1.29375,0,0,0,1.05.47,1.022,1.022,0,0,0,.17-.02,1.02168,1.02168,0,0,1,.15-.02,2.03262,2.03262,0,0,0,1.3-1.08,3.13045,3.13045,0,0,0,.33-.83,3.80062,3.80062,0,0,0,.12-.73q.01-.28.01-.92v-.5a7.28689,7.28689,0,0,0-1.76.16A2.1441,2.1441,0,0,0,10.5,11.42Zm8.4,6.44a.62647.62647,0,0,1,.12-.16,3.13921,3.13921,0,0,1,.96-.46,6.52032,6.52032,0,0,1,1.48-.22,1.19457,1.19457,0,0,1,.38.02q.9.08,1.08.3a.65471.65471,0,0,1,.08.36v.14a4.55955,4.55955,0,0,1-.38,1.65,3.84046,3.84046,0,0,1-1.06,1.53.302.302,0,0,1-.18.08.17736.17736,0,0,1-.08-.02q-.12-.06-.06-.22a7.63215,7.63215,0,0,0,.74-2.42.51274.51274,0,0,0-.08-.32q-.2-.24-1.12-.24-.34,0-.8.04-.5.06-.92.12A.23166.23166,0,0,1,18.9,18a.06531.06531,0,0,1-.02-.08A.15332.15332,0,0,1,18.9,17.86Z' - })); -}; - -UilAmazon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAmazon; \ No newline at end of file diff --git a/icons/uil-ambulance.js b/icons/uil-ambulance.js deleted file mode 100644 index cce43bb7..00000000 --- a/icons/uil-ambulance.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAmbulance = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,9.5h-1v-1a1,1,0,0,0-2,0v1h-1a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm12.43,2.15-.06-.11a.61.61,0,0,0-.07-.14L20.4,8.2A3,3,0,0,0,18,7H16V6a3,3,0,0,0-3-3H4A3,3,0,0,0,1,6V17a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V12A1,1,0,0,0,22.93,11.65ZM6,19a1,1,0,1,1,1-1A1,1,0,0,1,6,19Zm8-3H8.22a3,3,0,0,0-4.44,0H3V6A1,1,0,0,1,4,5h9a1,1,0,0,1,1,1Zm2-7h2a1,1,0,0,1,.8.4L20,11H16Zm2,10a1,1,0,1,1,1-1A1,1,0,0,1,18,19Zm3-3h-.78A3,3,0,0,0,16,15.78V13h5Z' - })); -}; - -UilAmbulance.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAmbulance; \ No newline at end of file diff --git a/icons/uil-analysis.js b/icons/uil-analysis.js deleted file mode 100644 index 96ff8295..00000000 --- a/icons/uil-analysis.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnalysis = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,7.29a1,1,0,0,0-1.42,0L14,13.59,9.71,9.29a1,1,0,0,0-1.42,0l-6,6a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,11.41l4.29,4.3a1,1,0,0,0,1.42,0l7-7A1,1,0,0,0,21.71,7.29Z' - })); -}; - -UilAnalysis.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnalysis; \ No newline at end of file diff --git a/icons/uil-analytics.js b/icons/uil-analytics.js deleted file mode 100644 index cf8e327e..00000000 --- a/icons/uil-analytics.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnalytics = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,12a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V13A1,1,0,0,0,5,12ZM10,2A1,1,0,0,0,9,3V21a1,1,0,0,0,2,0V3A1,1,0,0,0,10,2ZM20,16a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V17A1,1,0,0,0,20,16ZM15,8a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V9A1,1,0,0,0,15,8Z' - })); -}; - -UilAnalytics.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnalytics; \ No newline at end of file diff --git a/icons/uil-anchor.js b/icons/uil-anchor.js deleted file mode 100644 index 1eee73d6..00000000 --- a/icons/uil-anchor.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnchor = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,13H17a1,1,0,0,0,0,2h.91A6,6,0,0,1,13,19.91V11h1a1,1,0,0,0,0-2H13V7.82a3,3,0,1,0-2,0V9H10a1,1,0,0,0,0,2h1v8.91A6,6,0,0,1,6.09,15H7a1,1,0,0,0,0-2H5a1,1,0,0,0-1,1,8,8,0,0,0,16,0A1,1,0,0,0,19,13ZM12,6a1,1,0,1,1,1-1A1,1,0,0,1,12,6Z' - })); -}; - -UilAnchor.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnchor; \ No newline at end of file diff --git a/icons/uil-android-alt.js b/icons/uil-android-alt.js deleted file mode 100644 index 2278a74c..00000000 --- a/icons/uil-android-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAndroidAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.9917,9.00044a.99973.99973,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A.99973.99973,0,0,0,2.9917,9.00044Zm18,0a.99973.99973,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A.99973.99973,0,0,0,20.9917,9.00044Zm-4.13428-5.5a.99974.99974,0,1,0-1.73144-1l-.61414,1.06238a5.92782,5.92782,0,0,0-5.04028,0L8.85742,2.50044a.99974.99974,0,1,0-1.73144,1l.6925,1.19794A5.97889,5.97889,0,0,0,5.9917,9.00044v8a.99974.99974,0,0,0,1,1h2v3a1,1,0,0,0,2,0v-3h2v3a1,1,0,0,0,2,0v-3h2a.99974.99974,0,0,0,1-1v-8a5.97889,5.97889,0,0,0-1.82678-4.30206Zm-.86572,12.5h-8v-5h8Zm-8-7a4,4,0,0,1,8,0Z' - })); -}; - -UilAndroidAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAndroidAlt; \ No newline at end of file diff --git a/icons/uil-android-phone-slash.js b/icons/uil-android-phone-slash.js deleted file mode 100644 index a760e69a..00000000 --- a/icons/uil-android-phone-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAndroidPhoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,17.71a1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76,1.15,1.15,0,0,0-.21-.33,1,1,0,0,0-1.42,0,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,11.29,17.71ZM8.66,4H16a1,1,0,0,1,1,1v7.34a1,1,0,0,0,2,0V5a3,3,0,0,0-3-3H8.66a1,1,0,0,0,0,2ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L5,6.41V19a3,3,0,0,0,3,3h8a3,3,0,0,0,2.76-1.83l1.53,1.54a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM17,19a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8.41l10,10Z' - })); -}; - -UilAndroidPhoneSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAndroidPhoneSlash; \ No newline at end of file diff --git a/icons/uil-android.js b/icons/uil-android.js deleted file mode 100644 index f2ac3771..00000000 --- a/icons/uil-android.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAndroid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.97535,3.01886l.95982-1.73159a.19342.19342,0,0,0-.33833-.18756l-.97045,1.75078a6.54141,6.54141,0,0,0-5.25275,0L8.40316,1.09971a.19342.19342,0,0,0-.33833.18756l.95985,1.7316A5.54614,5.54614,0,0,0,5.93152,7.89522h12.137A5.54615,5.54615,0,0,0,14.97535,3.01886ZM9.19911,5.67446a.5068.5068,0,1,1,.5068-.5068A.50737.50737,0,0,1,9.19911,5.67446Zm5.60178,0a.5068.5068,0,1,1,.5068-.5068A.50737.50737,0,0,1,14.80089,5.67446Zm-8.86946,11.497a1.46713,1.46713,0,0,0,1.46713,1.46713h.9736v3.00095a1.36046,1.36046,0,1,0,2.72091,0V18.63859h1.81386v3.00095a1.36046,1.36046,0,1,0,2.72091,0V18.63859h.97364a1.46713,1.46713,0,0,0,1.46713-1.46713V8.37532H5.93143ZM4.06415,8.14191A1.362,1.362,0,0,0,2.7037,9.50237v5.66846a1.36046,1.36046,0,1,0,2.72091,0V9.50237A1.362,1.362,0,0,0,4.06415,8.14191Zm15.8717,0a1.362,1.362,0,0,0-1.36046,1.36046v5.66846a1.36046,1.36046,0,1,0,2.72091,0V9.50237A1.362,1.362,0,0,0,19.93585,8.14191Z' - })); -}; - -UilAndroid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAndroid; \ No newline at end of file diff --git a/icons/uil-angle-double-down.js b/icons/uil-angle-double-down.js deleted file mode 100644 index e1c4f538..00000000 --- a/icons/uil-angle-double-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleDoubleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,11.46a1,1,0,0,0,1.42,0l3-3A1,1,0,1,0,14.29,7L12,9.34,9.71,7A1,1,0,1,0,8.29,8.46Zm3,1.08L12,14.84l-2.29-2.3A1,1,0,0,0,8.29,14l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilAngleDoubleDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleDoubleDown; \ No newline at end of file diff --git a/icons/uil-angle-double-left.js b/icons/uil-angle-double-left.js deleted file mode 100644 index 2da76b26..00000000 --- a/icons/uil-angle-double-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleDoubleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.46,8.29a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.16,12l2.3-2.29A1,1,0,0,0,11.46,8.29ZM14.66,12,17,9.71a1,1,0,0,0-1.42-1.42l-3,3a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilAngleDoubleLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleDoubleLeft; \ No newline at end of file diff --git a/icons/uil-angle-double-right.js b/icons/uil-angle-double-right.js deleted file mode 100644 index 1f861c2a..00000000 --- a/icons/uil-angle-double-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleDoubleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.46,8.29A1,1,0,1,0,7,9.71L9.34,12,7,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,0-1.42Zm8.5,3-3-3a1,1,0,0,0-1.42,1.42L14.84,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3A1,1,0,0,0,17,11.29Z' - })); -}; - -UilAngleDoubleRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleDoubleRight; \ No newline at end of file diff --git a/icons/uil-angle-double-up.js b/icons/uil-angle-double-up.js deleted file mode 100644 index b00c2a22..00000000 --- a/icons/uil-angle-double-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleDoubleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,12.54a1,1,0,0,0-1.42,0l-3,3A1,1,0,0,0,9.71,17L12,14.66,14.29,17a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-3-1.08L12,9.16l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42Z' - })); -}; - -UilAngleDoubleUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleDoubleUp; \ No newline at end of file diff --git a/icons/uil-angle-down.js b/icons/uil-angle-down.js deleted file mode 100644 index c88645b5..00000000 --- a/icons/uil-angle-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9.17a1,1,0,0,0-1.41,0L12,12.71,8.46,9.17a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l4.24,4.24a1,1,0,0,0,1.42,0L17,10.59A1,1,0,0,0,17,9.17Z' - })); -}; - -UilAngleDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleDown; \ No newline at end of file diff --git a/icons/uil-angle-left-b.js b/icons/uil-angle-left-b.js deleted file mode 100644 index e62797c6..00000000 --- a/icons/uil-angle-left-b.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleLeftB = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm8.5 12.8 5.7 5.6c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4l-4.9-5 4.9-5c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3-.3 0-.5.1-.7.3l-5.7 5.6c-.4.5-.4 1.1 0 1.6 0-.1 0-.1 0 0z' - })); -}; - -UilAngleLeftB.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleLeftB; \ No newline at end of file diff --git a/icons/uil-angle-left.js b/icons/uil-angle-left.js deleted file mode 100644 index efe5aed7..00000000 --- a/icons/uil-angle-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,12l3.54-3.54a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L9.17,11.29a1,1,0,0,0,0,1.42L13.41,17a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41Z' - })); -}; - -UilAngleLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleLeft; \ No newline at end of file diff --git a/icons/uil-angle-right-b.js b/icons/uil-angle-right-b.js deleted file mode 100644 index ad869cec..00000000 --- a/icons/uil-angle-right-b.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleRightB = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.54,11.29,9.88,5.64a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l4.95,5L8.46,17a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.71-.3l5.66-5.65A1,1,0,0,0,15.54,11.29Z' - })); -}; - -UilAngleRightB.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleRightB; \ No newline at end of file diff --git a/icons/uil-angle-right.js b/icons/uil-angle-right.js deleted file mode 100644 index 4b707906..00000000 --- a/icons/uil-angle-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.83,11.29,10.59,7.05a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L12.71,12,9.17,15.54a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l4.24-4.24A1,1,0,0,0,14.83,11.29Z' - })); -}; - -UilAngleRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleRight; \ No newline at end of file diff --git a/icons/uil-angle-up.js b/icons/uil-angle-up.js deleted file mode 100644 index 72d6dfcb..00000000 --- a/icons/uil-angle-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,13.41,12.71,9.17a1,1,0,0,0-1.42,0L7.05,13.41a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0L12,11.29l3.54,3.54a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29A1,1,0,0,0,17,13.41Z' - })); -}; - -UilAngleUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngleUp; \ No newline at end of file diff --git a/icons/uil-angry.js b/icons/uil-angry.js deleted file mode 100644 index 14325075..00000000 --- a/icons/uil-angry.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAngry = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,11a1,1,0,0,0,.89-.55,1,1,0,0,0-.44-1.34l-2-1a1,1,0,1,0-.9,1.78l2,1A.93.93,0,0,0,10,11Zm2-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,.64.23,1,1,0,0,0,.64-1.76A5.81,5.81,0,0,0,8.36,15.33Zm7.19-7.22-2,1a1,1,0,0,0-.44,1.34A1,1,0,0,0,14,11a.93.93,0,0,0,.45-.11l2-1a1,1,0,0,0-.9-1.78Z' - })); -}; - -UilAngry.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAngry; \ No newline at end of file diff --git a/icons/uil-ankh.js b/icons/uil-ankh.js deleted file mode 100644 index b2375ec2..00000000 --- a/icons/uil-ankh.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnkh = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,12H14.91A7.23,7.23,0,0,0,17,7,5,5,0,0,0,7,7a7.23,7.23,0,0,0,2.09,5H6a1,1,0,0,0,0,2h5v7a1,1,0,0,0,2,0V14h5a1,1,0,0,0,0-2Zm-6-.16C11.07,11.22,9,9.58,9,7a3,3,0,0,1,6,0C15,9.58,12.93,11.23,12,11.84Z' - })); -}; - -UilAnkh.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnkh; \ No newline at end of file diff --git a/icons/uil-annoyed-alt.js b/icons/uil-annoyed-alt.js deleted file mode 100644 index 447d0536..00000000 --- a/icons/uil-annoyed-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnnoyedAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.66,13.56l-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88Zm-4-5a1,1,0,0,0-1.41,0,1,1,0,0,1-1.42,0,1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42,3,3,0,0,0,4.24,0A1,1,0,0,0,10.62,8.54Zm7,0a1,1,0,0,0-1.41,0,1,1,0,0,1-1.42,0,1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42,3,3,0,0,0,4.24,0A1,1,0,0,0,17.62,8.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilAnnoyedAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnnoyedAlt; \ No newline at end of file diff --git a/icons/uil-annoyed.js b/icons/uil-annoyed.js deleted file mode 100644 index a678353a..00000000 --- a/icons/uil-annoyed.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAnnoyed = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Zm6,4a5,5,0,0,0-4.37,2.57A1,1,0,0,0,11,16.93a1,1,0,0,0,.49.13,1,1,0,0,0,.87-.51A3,3,0,0,1,15,15a1,1,0,0,0,0-2Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilAnnoyed.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAnnoyed; \ No newline at end of file diff --git a/icons/uil-apple-alt.js b/icons/uil-apple-alt.js deleted file mode 100644 index a5ec869c..00000000 --- a/icons/uil-apple-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAppleAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.50439,15.7436a3.38641,3.38641,0,0,1-2.05468-3.127,3.49747,3.49747,0,0,1,1.6875-2.94629.99994.99994,0,0,0,.2998-1.415A5.57386,5.57386,0,0,0,16.4209,5.86958,6.422,6.422,0,0,0,17.38574,1.893a.98411.98411,0,0,0-1.0332-.8916,6.69083,6.69083,0,0,0-4.44336,2.26074,6.84216,6.84216,0,0,0-1.47949,2.89941,5.2637,5.2637,0,0,0-1.62012-.27734A5.92528,5.92528,0,0,0,3.81885,8.892c-1.8877,3.27734-.73291,8.18848,1.312,11.14453.82031,1.18457,2.05127,2.96289,3.9082,2.96289.03662,0,.07373,0,.11084-.002a4.74,4.74,0,0,0,1.79248-.46387,3.274,3.274,0,0,1,1.44532-.35351,3.04472,3.04472,0,0,1,1.35742.33789,4.75244,4.75244,0,0,0,1.96191.45605c1.91309-.03613,3.043-1.68652,3.86817-2.89258a12.04214,12.04214,0,0,0,1.51269-3.1084A1.00325,1.00325,0,0,0,20.50439,15.7436ZM13.42334,4.56782a4.94131,4.94131,0,0,1,1.91943-1.32226,4.85545,4.85545,0,0,1-1.03662,2.15136A4.39075,4.39075,0,0,1,13.042,6.437l-.00293.001c-.02832.01172-.05664.02246-.085.03418-.18652.07324-.417.16406-.59472.22265A4.825,4.825,0,0,1,13.42334,4.56782ZM17.9248,18.95259c-.80371,1.17383-1.436,2.00683-2.25439,2.02148a2.36658,2.36658,0,0,1-1.13135-.292,4.96942,4.96942,0,0,0-2.15136-.502,5.21424,5.21424,0,0,0-2.22852.51269,2.88493,2.88493,0,0,1-1.08594.30664H9.04346c-.813,0-1.6875-1.26269-2.26807-2.10156-1.45264-2.09961-2.79248-6.2832-1.22314-9.00781A3.917,3.917,0,0,1,8.84277,7.88423l.03369-.001a4.75808,4.75808,0,0,1,1.64112.44434c.13135.05175.26074.10351.38916.15136.03271.01368.0664.02637.10058.03711a3.31547,3.31547,0,0,0,1.11719.23731,4.436,4.436,0,0,0,1.564-.4209,4.95643,4.95643,0,0,1,2.22265-.49707,3.787,3.787,0,0,1,2.25049.85352,5.31025,5.31025,0,0,0-1.71191,3.94531v.001a5.30031,5.30031,0,0,0,2.45117,4.50293A10.19829,10.19829,0,0,1,17.9248,18.95259Z' - })); -}; - -UilAppleAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAppleAlt; \ No newline at end of file diff --git a/icons/uil-apple.js b/icons/uil-apple.js deleted file mode 100644 index 63dbbb2e..00000000 --- a/icons/uil-apple.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilApple = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.94,5.19A4.38,4.38,0,0,0,16,2,4.44,4.44,0,0,0,13,3.52,4.17,4.17,0,0,0,12,6.61,3.69,3.69,0,0,0,14.94,5.19Zm2.52,7.44a4.51,4.51,0,0,1,2.16-3.81,4.66,4.66,0,0,0-3.66-2c-1.56-.16-3,.91-3.83.91s-2-.89-3.3-.87A4.92,4.92,0,0,0,4.69,9.39C2.93,12.45,4.24,17,6,19.47,6.8,20.68,7.8,22.05,9.12,22s1.75-.82,3.28-.82,2,.82,3.3.79,2.22-1.24,3.06-2.45a11,11,0,0,0,1.38-2.85A4.41,4.41,0,0,1,17.46,12.63Z' - })); -}; - -UilApple.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilApple; \ No newline at end of file diff --git a/icons/uil-apps.js b/icons/uil-apps.js deleted file mode 100644 index 45dd75c3..00000000 --- a/icons/uil-apps.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilApps = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,13H3a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V14A1,1,0,0,0,10,13ZM9,20H4V15H9ZM21,2H14a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,9H15V4h5Zm1,4H14a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V14A1,1,0,0,0,21,13Zm-1,7H15V15h5ZM10,2H3A1,1,0,0,0,2,3v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V3A1,1,0,0,0,10,2ZM9,9H4V4H9Z' - })); -}; - -UilApps.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilApps; \ No newline at end of file diff --git a/icons/uil-archive-alt.js b/icons/uil-archive-alt.js deleted file mode 100644 index d5bfaea2..00000000 --- a/icons/uil-archive-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArchiveAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,13h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM19,3H5A3,3,0,0,0,4,8.82V18a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V8.82A3,3,0,0,0,19,3ZM18,18a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V9H18ZM19,7H5A1,1,0,0,1,5,5H19a1,1,0,0,1,0,2Z' - })); -}; - -UilArchiveAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArchiveAlt; \ No newline at end of file diff --git a/icons/uil-archive.js b/icons/uil-archive.js deleted file mode 100644 index 4258b7f5..00000000 --- a/icons/uil-archive.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArchive = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,14h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM19,3H5A3,3,0,0,0,2,6V9a1,1,0,0,0,1,1H4v8a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10h1a1,1,0,0,0,1-1V6A3,3,0,0,0,19,3ZM18,18a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V10H18ZM20,8H4V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1Z' - })); -}; - -UilArchive.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArchive; \ No newline at end of file diff --git a/icons/uil-archway.js b/icons/uil-archway.js deleted file mode 100644 index 1fd439c0..00000000 --- a/icons/uil-archway.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArchway = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,20H21V8h1a1,1,0,0,0,0-2H21V3a1,1,0,0,0-1-1H4A1,1,0,0,0,3,3V6H2A1,1,0,0,0,2,8H3V20H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2Zm-7,0H9V16.47a6.21,6.21,0,0,1,3-5.33,6.21,6.21,0,0,1,3,5.33Zm4,0H17V16.47a8.17,8.17,0,0,0-4.55-7.36,1,1,0,0,0-.9,0A8.17,8.17,0,0,0,7,16.47V20H5V8H19ZM19,6H5V4H19Z' - })); -}; - -UilArchway.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArchway; \ No newline at end of file diff --git a/icons/uil-arrow-break.js b/icons/uil-arrow-break.js deleted file mode 100644 index e9675b0e..00000000 --- a/icons/uil-arrow-break.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowBreak = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,11H17a1,1,0,0,0,0-2H13V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V9H7a1,1,0,0,0,0,2Zm10,2H7a1,1,0,0,0,0,2h4v3.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V15h4a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowBreak.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowBreak; \ No newline at end of file diff --git a/icons/uil-arrow-circle-down.js b/icons/uil-arrow-circle-down.js deleted file mode 100644 index 20eeeb48..00000000 --- a/icons/uil-arrow-circle-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowCircleDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,15.71a1,1,0,0,0,.33.21,1,1,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42L13,12.59V9a1,1,0,0,0-2,0v3.59l-1.29-1.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.42ZM12,22A10,10,0,1,0,2,12,10,10,0,0,0,12,22ZM12,4a8,8,0,1,1-8,8A8,8,0,0,1,12,4Z' - })); -}; - -UilArrowCircleDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowCircleDown; \ No newline at end of file diff --git a/icons/uil-arrow-circle-left.js b/icons/uil-arrow-circle-left.js deleted file mode 100644 index 36431919..00000000 --- a/icons/uil-arrow-circle-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowCircleLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.29,11.29a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42-1.42L11.41,13H15a1,1,0,0,0,0-2H11.41l1.3-1.29a1,1,0,0,0,0-1.42,1,1,0,0,0-1.42,0ZM2,12A10,10,0,1,0,12,2,10,10,0,0,0,2,12Zm18,0a8,8,0,1,1-8-8A8,8,0,0,1,20,12Z' - })); -}; - -UilArrowCircleLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowCircleLeft; \ No newline at end of file diff --git a/icons/uil-arrow-circle-right.js b/icons/uil-arrow-circle-right.js deleted file mode 100644 index d41816ad..00000000 --- a/icons/uil-arrow-circle-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowCircleRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.71,12.71a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L12.59,11H9a1,1,0,0,0,0,2h3.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM22,12A10,10,0,1,0,12,22,10,10,0,0,0,22,12ZM4,12a8,8,0,1,1,8,8A8,8,0,0,1,4,12Z' - })); -}; - -UilArrowCircleRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowCircleRight; \ No newline at end of file diff --git a/icons/uil-arrow-circle-up.js b/icons/uil-arrow-circle-up.js deleted file mode 100644 index 6bfc83f6..00000000 --- a/icons/uil-arrow-circle-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowCircleUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,8.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L11,11.41V15a1,1,0,0,0,2,0V11.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilArrowCircleUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowCircleUp; \ No newline at end of file diff --git a/icons/uil-arrow-compress-h.js b/icons/uil-arrow-compress-h.js deleted file mode 100644 index 9149a1da..00000000 --- a/icons/uil-arrow-compress-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowCompressH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,5a1,1,0,0,0-1,1V18a1,1,0,0,0,2,0V6A1,1,0,0,0,12,5Zm-1.29,6.29-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H3a1,1,0,0,0,0,2H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,11H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0,0,1.42l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H21a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowCompressH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowCompressH; \ No newline at end of file diff --git a/icons/uil-arrow-down-left.js b/icons/uil-arrow-down-left.js deleted file mode 100644 index c05b27b0..00000000 --- a/icons/uil-arrow-down-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowDownLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,16H9.41l8.3-8.29a1,1,0,1,0-1.42-1.42L8,14.59V7A1,1,0,0,0,6,7V17a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,7,18H17a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowDownLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowDownLeft; \ No newline at end of file diff --git a/icons/uil-arrow-down-right.js b/icons/uil-arrow-down-right.js deleted file mode 100644 index 85860aea..00000000 --- a/icons/uil-arrow-down-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowDownRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,6a1,1,0,0,0-1,1v7.59L7.71,6.29A1,1,0,0,0,6.29,7.71L14.59,16H7a1,1,0,0,0,0,2H17a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,18,17V7A1,1,0,0,0,17,6Z' - })); -}; - -UilArrowDownRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowDownRight; \ No newline at end of file diff --git a/icons/uil-arrow-down.js b/icons/uil-arrow-down.js deleted file mode 100644 index 7f530039..00000000 --- a/icons/uil-arrow-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.71,11.29a1,1,0,0,0-1.42,0L13,14.59V7a1,1,0,0,0-2,0v7.59l-3.29-3.3a1,1,0,0,0-1.42,1.42l5,5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l5-5A1,1,0,0,0,17.71,11.29Z' - })); -}; - -UilArrowDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowDown; \ No newline at end of file diff --git a/icons/uil-arrow-from-right.js b/icons/uil-arrow-from-right.js deleted file mode 100644 index 18ab26cc..00000000 --- a/icons/uil-arrow-from-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowFromRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,4A1,1,0,0,0,2,5V19a1,1,0,0,0,2,0V5A1,1,0,0,0,3,4Zm18.92,7.62a1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L18.59,11H7a1,1,0,0,0,0,2H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' - })); -}; - -UilArrowFromRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowFromRight; \ No newline at end of file diff --git a/icons/uil-arrow-from-top.js b/icons/uil-arrow-from-top.js deleted file mode 100644 index 4241f061..00000000 --- a/icons/uil-arrow-from-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowFromTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.29,16.29,13,18.59V7a1,1,0,0,0-2,0V18.59l-2.29-2.3a1,1,0,1,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42ZM19,2H5A1,1,0,0,0,5,4H19a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowFromTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowFromTop; \ No newline at end of file diff --git a/icons/uil-arrow-left.js b/icons/uil-arrow-left.js deleted file mode 100644 index 2b377a3a..00000000 --- a/icons/uil-arrow-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,11H9.41l3.3-3.29a1,1,0,1,0-1.42-1.42l-5,5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13H17a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowLeft; \ No newline at end of file diff --git a/icons/uil-arrow-random.js b/icons/uil-arrow-random.js deleted file mode 100644 index 920d600d..00000000 --- a/icons/uil-arrow-random.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowRandom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.7,10a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L3.84,2.29A1,1,0,0,0,2.42,3.71ZM21,14a1,1,0,0,0-1,1v3.59L15.44,14A1,1,0,0,0,14,15.44L18.59,20H15a1,1,0,0,0,0,2h6a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V15A1,1,0,0,0,21,14Zm.92-11.38a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L2.29,20.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilArrowRandom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowRandom; \ No newline at end of file diff --git a/icons/uil-arrow-resize-diagonal.js b/icons/uil-arrow-resize-diagonal.js deleted file mode 100644 index 3a1d1fdd..00000000 --- a/icons/uil-arrow-resize-diagonal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowResizeDiagonal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L4,18.59V15a1,1,0,0,0-2,0v6a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H9a1,1,0,0,0,0-2H5.41L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilArrowResizeDiagonal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowResizeDiagonal; \ No newline at end of file diff --git a/icons/uil-arrow-right.js b/icons/uil-arrow-right.js deleted file mode 100644 index 52d04e84..00000000 --- a/icons/uil-arrow-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.92,11.62a1,1,0,0,0-.21-.33l-5-5a1,1,0,0,0-1.42,1.42L14.59,11H7a1,1,0,0,0,0,2h7.59l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,.21-.33A1,1,0,0,0,17.92,11.62Z' - })); -}; - -UilArrowRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowRight; \ No newline at end of file diff --git a/icons/uil-arrow-to-bottom.js b/icons/uil-arrow-to-bottom.js deleted file mode 100644 index c4e65368..00000000 --- a/icons/uil-arrow-to-bottom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowToBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Zm-7.71-2.29a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42L13,14.59V3a1,1,0,0,0-2,0V14.59l-2.29-2.3a1,1,0,1,0-1.42,1.42Z' - })); -}; - -UilArrowToBottom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowToBottom; \ No newline at end of file diff --git a/icons/uil-arrow-to-right.js b/icons/uil-arrow-to-right.js deleted file mode 100644 index be82e55f..00000000 --- a/icons/uil-arrow-to-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowToRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.71,11.29l-4-4a1,1,0,1,0-1.42,1.42L14.59,11H3a1,1,0,0,0,0,2H14.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,17.71,11.29ZM21,4a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4Z' - })); -}; - -UilArrowToRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowToRight; \ No newline at end of file diff --git a/icons/uil-arrow-up-left.js b/icons/uil-arrow-up-left.js deleted file mode 100644 index 1eea0b83..00000000 --- a/icons/uil-arrow-up-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowUpLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.41,8H17a1,1,0,0,0,0-2H7a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,6,7V17a1,1,0,0,0,2,0V9.41l8.29,8.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilArrowUpLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowUpLeft; \ No newline at end of file diff --git a/icons/uil-arrow-up-right.js b/icons/uil-arrow-up-right.js deleted file mode 100644 index 029b5ef8..00000000 --- a/icons/uil-arrow-up-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.92,6.62a1,1,0,0,0-.54-.54A1,1,0,0,0,17,6H7A1,1,0,0,0,7,8h7.59l-8.3,8.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,9.41V17a1,1,0,0,0,2,0V7A1,1,0,0,0,17.92,6.62Z' - })); -}; - -UilArrowUpRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowUpRight; \ No newline at end of file diff --git a/icons/uil-arrow-up.js b/icons/uil-arrow-up.js deleted file mode 100644 index f0220d90..00000000 --- a/icons/uil-arrow-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.71,11.29l-5-5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-5,5a1,1,0,0,0,1.42,1.42L11,9.41V17a1,1,0,0,0,2,0V9.41l3.29,3.3a1,1,0,0,0,1.42,0A1,1,0,0,0,17.71,11.29Z' - })); -}; - -UilArrowUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowUp; \ No newline at end of file diff --git a/icons/uil-arrow.js b/icons/uil-arrow.js deleted file mode 100644 index c6589474..00000000 --- a/icons/uil-arrow.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.71,6.29a1,1,0,0,0-1.42,0l-5,5a1,1,0,0,0,0,1.42l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,12l4.3-4.29A1,1,0,0,0,9.71,6.29Zm11,5-5-5a1,1,0,0,0-1.42,1.42L18.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5A1,1,0,0,0,20.71,11.29Z' - })); -}; - -UilArrow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrow; \ No newline at end of file diff --git a/icons/uil-arrows-h-alt.js b/icons/uil-arrows-h-alt.js deleted file mode 100644 index 6313b55a..00000000 --- a/icons/uil-arrows-h-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H14a1,1,0,0,0,0,2h4.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62ZM10,11H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H10a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowsHAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsHAlt; \ No newline at end of file diff --git a/icons/uil-arrows-h.js b/icons/uil-arrows-h.js deleted file mode 100644 index bc2b11da..00000000 --- a/icons/uil-arrows-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L18.59,11H5.41l2.3-2.29A1,1,0,1,0,6.29,7.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' - })); -}; - -UilArrowsH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsH; \ No newline at end of file diff --git a/icons/uil-arrows-left-down.js b/icons/uil-arrows-left-down.js deleted file mode 100644 index d7202fd3..00000000 --- a/icons/uil-arrows-left-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsLeftDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,16.29a1,1,0,0,0-1.42,0L18,18.59V9a3,3,0,0,0-3-3H5.41l2.3-2.29A1,1,0,0,0,6.29,2.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,8H15a1,1,0,0,1,1,1v9.59l-2.29-2.3a1,1,0,0,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4A1,1,0,0,0,21.71,16.29Z' - })); -}; - -UilArrowsLeftDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsLeftDown; \ No newline at end of file diff --git a/icons/uil-arrows-maximize.js b/icons/uil-arrows-maximize.js deleted file mode 100644 index 00c28bf6..00000000 --- a/icons/uil-arrows-maximize.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsMaximize = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14a1,1,0,0,0-1,1v3.59L5.41,4H9A1,1,0,0,0,9,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V9A1,1,0,0,0,4,9V5.41L18.59,20H15a1,1,0,0,0,0,2h6a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V15A1,1,0,0,0,21,14Z' - })); -}; - -UilArrowsMaximize.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsMaximize; \ No newline at end of file diff --git a/icons/uil-arrows-merge.js b/icons/uil-arrows-merge.js deleted file mode 100644 index 4a23e06e..00000000 --- a/icons/uil-arrows-merge.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsMerge = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.71,11.29l-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H4V7A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V13H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,6a1,1,0,0,0-1,1v4H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H20v4a1,1,0,0,0,2,0V7A1,1,0,0,0,21,6Z' - })); -}; - -UilArrowsMerge.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsMerge; \ No newline at end of file diff --git a/icons/uil-arrows-resize-h.js b/icons/uil-arrows-resize-h.js deleted file mode 100644 index f1418f18..00000000 --- a/icons/uil-arrows-resize-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsResizeH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,6A1,1,0,0,0,9,7v4H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H9v4a1,1,0,0,0,2,0V7A1,1,0,0,0,10,6Zm11.92,5.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H15V7a1,1,0,0,0-2,0V17a1,1,0,0,0,2,0V13h3.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' - })); -}; - -UilArrowsResizeH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsResizeH; \ No newline at end of file diff --git a/icons/uil-arrows-resize-v.js b/icons/uil-arrows-resize-v.js deleted file mode 100644 index aff948f2..00000000 --- a/icons/uil-arrows-resize-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsResizeV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,11H13V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V11H8a1,1,0,0,0,0,2h3v5.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V13h3a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowsResizeV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsResizeV; \ No newline at end of file diff --git a/icons/uil-arrows-resize.js b/icons/uil-arrows-resize.js deleted file mode 100644 index 044a4fcc..00000000 --- a/icons/uil-arrows-resize.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsResize = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H13V8a1,1,0,0,0-2,0v3H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H11v3a1,1,0,0,0,2,0V13h5.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' - })); -}; - -UilArrowsResize.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsResize; \ No newline at end of file diff --git a/icons/uil-arrows-right-down.js b/icons/uil-arrows-right-down.js deleted file mode 100644 index 8d538ba0..00000000 --- a/icons/uil-arrows-right-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsRightDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.92,6.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,6H9A3,3,0,0,0,6,9v8.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42L8,17.59V9A1,1,0,0,1,9,8h8.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,6.62Z' - })); -}; - -UilArrowsRightDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsRightDown; \ No newline at end of file diff --git a/icons/uil-arrows-shrink-h.js b/icons/uil-arrows-shrink-h.js deleted file mode 100644 index f2d413bb..00000000 --- a/icons/uil-arrows-shrink-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsShrinkH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.71,11.29l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H9.41l.8-.79A1,1,0,0,0,8.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13h5.18l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,17.71,11.29ZM3,6A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,3,6ZM21,6a1,1,0,0,0-1,1V17a1,1,0,0,0,2,0V7A1,1,0,0,0,21,6Z' - })); -}; - -UilArrowsShrinkH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsShrinkH; \ No newline at end of file diff --git a/icons/uil-arrows-shrink-v.js b/icons/uil-arrows-shrink-v.js deleted file mode 100644 index f068e04d..00000000 --- a/icons/uil-arrows-shrink-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsShrinkV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.79,10.21a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8v5.18l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V9.41ZM7,4H17a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4ZM17,20H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' - })); -}; - -UilArrowsShrinkV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsShrinkV; \ No newline at end of file diff --git a/icons/uil-arrows-up-right.js b/icons/uil-arrows-up-right.js deleted file mode 100644 index 1c475a9b..00000000 --- a/icons/uil-arrows-up-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.92,16.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,16H9a1,1,0,0,1-1-1V6.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3A1,1,0,0,0,4.71,7.71L6,6.41V15a3,3,0,0,0,3,3h8.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,16.62Z' - })); -}; - -UilArrowsUpRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsUpRight; \ No newline at end of file diff --git a/icons/uil-arrows-v-alt.js b/icons/uil-arrows-v-alt.js deleted file mode 100644 index eccd605d..00000000 --- a/icons/uil-arrows-v-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.21,6.21l.79-.8V10a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42Zm3.58,11.58-.79.8V14a1,1,0,0,0-2,0v4.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilArrowsVAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsVAlt; \ No newline at end of file diff --git a/icons/uil-arrows-v.js b/icons/uil-arrows-v.js deleted file mode 100644 index 6a5f8833..00000000 --- a/icons/uil-arrows-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilArrowsV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.29,16.29,13,18.59V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71L11,5.41V18.59l-2.29-2.3a1,1,0,1,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilArrowsV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilArrowsV; \ No newline at end of file diff --git a/icons/uil-assistive-listening-systems.js b/icons/uil-assistive-listening-systems.js deleted file mode 100644 index 44f7d28e..00000000 --- a/icons/uil-assistive-listening-systems.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAssistiveListeningSystems = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,3a7,7,0,0,0-7,7,1,1,0,0,0,2,0,5,5,0,0,1,10,0,5.07,5.07,0,0,1-.71,2.57L11.73,20A2,2,0,0,1,10,21a2,2,0,0,1-2-2,1,1,0,0,0-2,0,4,4,0,0,0,4,4,4,4,0,0,0,3.5-2.07l3.56-7.43A6.93,6.93,0,0,0,18,10,7,7,0,0,0,11,3ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM17.59,1.2a1,1,0,1,0-1.2,1.6A9,9,0,0,1,20,10a1,1,0,0,0,2,0A11.06,11.06,0,0,0,17.59,1.2ZM11,9a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-6,0,3,3,0,0,0,.51,1.68,3.5,3.5,0,0,0,.47.54l.2.22a1,1,0,0,1,0,1.11,1,1,0,0,0,.25,1.39,1,1,0,0,0,.57.18,1,1,0,0,0,.82-.43,3,3,0,0,0,0-3.39,3.39,3.39,0,0,0-.35-.42l-.14-.14a1.37,1.37,0,0,1-.16-.18A1,1,0,0,1,10,10,1,1,0,0,1,11,9ZM7,15a1,1,0,1,0-1-1A1,1,0,0,0,7,15Z' - })); -}; - -UilAssistiveListeningSystems.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAssistiveListeningSystems; \ No newline at end of file diff --git a/icons/uil-asterisk.js b/icons/uil-asterisk.js deleted file mode 100644 index b657223d..00000000 --- a/icons/uil-asterisk.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAsterisk = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.562,14.63379,14.00031,12,18.562,9.36621a1.00016,1.00016,0,0,0-1-1.73242L13,10.26776V5a1,1,0,0,0-2,0v5.26776l-4.562-2.634a1.00016,1.00016,0,0,0-1,1.73242L9.99969,12,5.438,14.63379a1.00016,1.00016,0,0,0,1,1.73242L11,13.73224V19a1,1,0,0,0,2,0V13.73224l4.562,2.634a1.00016,1.00016,0,0,0,1-1.73242Z' - })); -}; - -UilAsterisk.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAsterisk; \ No newline at end of file diff --git a/icons/uil-at.js b/icons/uil-at.js deleted file mode 100644 index 2ef23227..00000000 --- a/icons/uil-at.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2a10,10,0,1,0,5,18.66,1,1,0,1,0-1-1.73A8,8,0,1,1,20,12v.75a1.75,1.75,0,0,1-3.5,0V8.5a1,1,0,0,0-1-1,1,1,0,0,0-1,.79A4.45,4.45,0,0,0,12,7.5,4.5,4.5,0,1,0,15.3,15,3.74,3.74,0,0,0,22,12.75V12A10,10,0,0,0,12,2Zm0,12.5A2.5,2.5,0,1,1,14.5,12,2.5,2.5,0,0,1,12,14.5Z' - })); -}; - -UilAt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAt; \ No newline at end of file diff --git a/icons/uil-atom.js b/icons/uil-atom.js deleted file mode 100644 index cdfb0025..00000000 --- a/icons/uil-atom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAtom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm7.62,1,.11-.14C21.08,10,21.4,8.29,20.66,7S18.26,5.14,16,5.37l-.18,0C14.91,3.3,13.56,2,12,2S9.09,3.3,8.19,5.4L8,5.37C5.74,5.14,4.08,5.71,3.34,7s-.42,3,.93,4.86l.11.14-.11.14C2.92,14,2.6,15.71,3.34,17,4,18.1,5.27,18.68,7,18.68c.31,0,.63,0,1-.05l.18,0C9.09,20.7,10.44,22,12,22s2.91-1.3,3.81-3.4l.18,0c.34,0,.66.05,1,.05,1.77,0,3.07-.58,3.7-1.68.74-1.29.42-3-.93-4.86ZM5.07,8c.25-.44,1-.68,2-.68l.49,0a14.78,14.78,0,0,0-.35,1.87,15,15,0,0,0-1.45,1.25C5,9.44,4.78,8.5,5.07,8Zm0,8c-.29-.5,0-1.44.67-2.47a15,15,0,0,0,1.45,1.25,14.94,14.94,0,0,0,.35,1.88C6.3,16.74,5.36,16.5,5.07,16ZM12,4c.56,0,1.23.66,1.8,1.83a17.6,17.6,0,0,0-1.8.63,17.6,17.6,0,0,0-1.8-.63C10.77,4.66,11.44,4,12,4Zm0,16c-.56,0-1.23-.66-1.8-1.83a17.6,17.6,0,0,0,1.8-.63,17.6,17.6,0,0,0,1.8.63C13.23,19.34,12.56,20,12,20Zm2.93-6.31c-.46.32-.93.62-1.43.91s-1,.55-1.5.78q-.75-.35-1.5-.78c-.5-.29-1-.59-1.43-.91C9,13.15,9,12.59,9,12s0-1.15.07-1.69c.46-.32.93-.62,1.43-.91s1-.55,1.5-.78q.75.35,1.5.78c.5.29,1,.59,1.43.91,0,.54.07,1.1.07,1.69S15,13.15,14.93,13.69Zm4,2.31c-.29.5-1.23.75-2.47.66a14.94,14.94,0,0,0,.35-1.88,15,15,0,0,0,1.45-1.25C19,14.56,19.22,15.5,18.93,16Zm-.67-5.53a15,15,0,0,0-1.45-1.25,14.78,14.78,0,0,0-.35-1.87l.49,0c1,0,1.73.24,2,.68S19,9.44,18.26,10.47Z' - })); -}; - -UilAtom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAtom; \ No newline at end of file diff --git a/icons/uil-auto-flash.js b/icons/uil-auto-flash.js deleted file mode 100644 index 2ac2116e..00000000 --- a/icons/uil-auto-flash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAutoFlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.87,8.6A1,1,0,0,0,17,8H12.42l1.27-4.74a1,1,0,0,0-.17-.87,1,1,0,0,0-.8-.39h-7a1,1,0,0,0-1,.74l-2.68,10a1,1,0,0,0,1,1.26H6.89L5.08,20.74a1,1,0,0,0,1.71.93l10.9-12A1,1,0,0,0,17.87,8.6ZM8.08,17.28l1.08-4A1,1,0,0,0,9,12.39,1,1,0,0,0,8.19,12H4.35L6.49,4h4.93L10.15,8.74a1,1,0,0,0,1,1.26h3.57ZM19,13H18a3,3,0,0,0-3,3v5a1,1,0,0,0,2,0V19h3v2a1,1,0,0,0,2,0V16A3,3,0,0,0,19,13Zm1,4H17V16a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Z' - })); -}; - -UilAutoFlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAutoFlash; \ No newline at end of file diff --git a/icons/uil-award-alt.js b/icons/uil-award-alt.js deleted file mode 100644 index 14bcf0c6..00000000 --- a/icons/uil-award-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,1A7,7,0,0,0,7,12.89V22a1,1,0,0,0,1.45.89L12,21.12l3.55,1.77A1,1,0,0,0,16,23a1,1,0,0,0,.53-.15A1,1,0,0,0,17,22V12.89A7,7,0,0,0,12,1Zm3,19.38-2.55-1.27a1,1,0,0,0-.9,0L9,20.38V14.32a7,7,0,0,0,2,.6V16a1,1,0,0,0,2,0V14.92a7,7,0,0,0,2-.6ZM12,13a5,5,0,1,1,5-5A5,5,0,0,1,12,13Z' - })); -}; - -UilAwardAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAwardAlt; \ No newline at end of file diff --git a/icons/uil-award.js b/icons/uil-award.js deleted file mode 100644 index a8a9e9c0..00000000 --- a/icons/uil-award.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilAward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.87,17.25l-2.71-4.68A6.9,6.9,0,0,0,19,9.25a7,7,0,0,0-14,0,6.9,6.9,0,0,0,.84,3.32L3.13,17.25A1,1,0,0,0,4,18.75l2.87,0,1.46,2.46a1,1,0,0,0,.18.22,1,1,0,0,0,.69.28h.14a1,1,0,0,0,.73-.49L12,17.9l1.93,3.35a1,1,0,0,0,.73.48h.14a1,1,0,0,0,.7-.28.87.87,0,0,0,.17-.21l1.46-2.46,2.87,0a1,1,0,0,0,.87-.5A1,1,0,0,0,20.87,17.25ZM9.19,18.78,8.3,17.29a1,1,0,0,0-.85-.49l-1.73,0,1.43-2.48a7,7,0,0,0,3.57,1.84ZM12,14.25a5,5,0,1,1,5-5A5,5,0,0,1,12,14.25Zm4.55,2.55a1,1,0,0,0-.85.49l-.89,1.49-1.52-2.65a7.06,7.06,0,0,0,3.56-1.84l1.43,2.48Z' - })); -}; - -UilAward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilAward; \ No newline at end of file diff --git a/icons/uil-backpack.js b/icons/uil-backpack.js deleted file mode 100644 index 88edd9fc..00000000 --- a/icons/uil-backpack.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBackpack = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,10H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm5,0a4,4,0,0,0-3-3.86V5A3,3,0,0,0,9,5V6.14A4,4,0,0,0,6,10a4,4,0,0,0-4,4v3a3,3,0,0,0,3,3H6.18A3,3,0,0,0,9,22h6a3,3,0,0,0,2.82-2H19a3,3,0,0,0,3-3V14A4,4,0,0,0,18,10ZM6,18H5a1,1,0,0,1-1-1V14a2,2,0,0,1,2-2ZM11,5a1,1,0,0,1,2,0V6H11Zm5,14a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V18a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2Zm0-4.44A3.91,3.91,0,0,0,14,14H10a3.91,3.91,0,0,0-2,.56V10a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2ZM20,17a1,1,0,0,1-1,1H18V12a2,2,0,0,1,2,2Z' - })); -}; - -UilBackpack.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBackpack; \ No newline at end of file diff --git a/icons/uil-backspace.js b/icons/uil-backspace.js deleted file mode 100644 index 5729115b..00000000 --- a/icons/uil-backspace.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBackspace = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,5H9.83a3,3,0,0,0-2.12.88L2.29,11.29a1,1,0,0,0,0,1.42l5.42,5.41A3,3,0,0,0,9.83,19H19a3,3,0,0,0,3-3V8A3,3,0,0,0,19,5Zm1,11a1,1,0,0,1-1,1H9.83a1.05,1.05,0,0,1-.71-.29L4.41,12,9.12,7.29A1.05,1.05,0,0,1,9.83,7H19a1,1,0,0,1,1,1ZM16.71,9.29a1,1,0,0,0-1.42,0L14,10.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L12.59,12l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L14,13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L15.41,12l1.3-1.29A1,1,0,0,0,16.71,9.29Z' - })); -}; - -UilBackspace.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBackspace; \ No newline at end of file diff --git a/icons/uil-backward.js b/icons/uil-backward.js deleted file mode 100644 index 3e924a1b..00000000 --- a/icons/uil-backward.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBackward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.67,5.85a2.63,2.63,0,0,0-2.67,0L14,8.15h0a2.67,2.67,0,0,0-4-2.31L3.33,9.69a2.67,2.67,0,0,0,0,4.62L10,18.16a2.66,2.66,0,0,0,2.67,0A2.65,2.65,0,0,0,14,15.85h0l4,2.31a2.69,2.69,0,0,0,1.33.36,2.61,2.61,0,0,0,1.34-.37A2.63,2.63,0,0,0,22,15.85V8.15A2.63,2.63,0,0,0,20.67,5.85ZM12,15.85a.66.66,0,0,1-.33.58.69.69,0,0,1-.67,0L4.33,12.58a.67.67,0,0,1,0-1.16L11,7.57a.67.67,0,0,1,.67,0,.66.66,0,0,1,.33.58Zm8,0a.67.67,0,0,1-1,.57l-5-2.88V10.46l5-2.88a.67.67,0,0,1,1,.57Z' - })); -}; - -UilBackward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBackward; \ No newline at end of file diff --git a/icons/uil-bag-alt.js b/icons/uil-bag-alt.js deleted file mode 100644 index 454125a8..00000000 --- a/icons/uil-bag-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a21.71,21.71,0,0,0,8,1.53A21.75,21.75,0,0,0,20,13Zm0-7.69a19.89,19.89,0,0,1-16,0V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' - })); -}; - -UilBagAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBagAlt; \ No newline at end of file diff --git a/icons/uil-bag-slash.js b/icons/uil-bag-slash.js deleted file mode 100644 index cc22a09f..00000000 --- a/icons/uil-bag-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBagSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H16V5a2,2,0,0,0-2-2H10a1.86,1.86,0,0,0-.61.1,1,1,0,0,0-.64,1.27A1,1,0,0,0,10,5h4V6H12.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v1.28l-2.57.86a1,1,0,0,0-.63,1.27,1,1,0,0,0,.95.68,1.19,1.19,0,0,0,.32-.05L20,12.39v2.95a1,1,0,1,0,2,0V9A3,3,0,0,0,19,6ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3.07,3.07,0,0,0,.53-.06l.76.77a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM4,9A1,1,0,0,1,5,8H6.59l4,4H9.16L4,10.28ZM5,19a1,1,0,0,1-1-1V12.39L8.68,14A1.19,1.19,0,0,0,9,14h3.59l5,5Z' - })); -}; - -UilBagSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBagSlash; \ No newline at end of file diff --git a/icons/uil-bag.js b/icons/uil-bag.js deleted file mode 100644 index d51e76a7..00000000 --- a/icons/uil-bag.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBag = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H16V5a2,2,0,0,0-2-2H10A2,2,0,0,0,8,5V6H5A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5h4V6H10ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12.39L8.68,14A1.19,1.19,0,0,0,9,14h6a1.19,1.19,0,0,0,.32-.05L20,12.39Zm0-7.72L14.84,12H9.16L4,10.28V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' - })); -}; - -UilBag.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBag; \ No newline at end of file diff --git a/icons/uil-balance-scale.js b/icons/uil-balance-scale.js deleted file mode 100644 index 95b6ccb4..00000000 --- a/icons/uil-balance-scale.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBalanceScale = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.96423,13.82263a.94762.94762,0,0,0-.02819-.17419L20.63135,7.51135A2.99558,2.99558,0,0,0,22,5a1,1,0,0,0-2,0,1.00037,1.00037,0,0,1-1.88184.47266A2.8934,2.8934,0,0,0,15.54,4H13V3a1,1,0,0,0-2,0V4H8.46A2.8934,2.8934,0,0,0,5.88184,5.47266,1.00037,1.00037,0,0,1,4,5,1,1,0,0,0,2,5,2.99558,2.99558,0,0,0,3.36865,7.51135L1.064,13.64844a.94762.94762,0,0,0-.02819.17419A.94855.94855,0,0,0,1,14c0,.00928.00269.01782.00275.0271.0003.01318.003.02533.0039.03845a3.99379,3.99379,0,0,0,7.9867,0c.00085-.01312.0036-.02527.0039-.03845C8.99731,14.01782,9,14.00928,9,14a.94855.94855,0,0,0-.03577-.17737.94762.94762,0,0,0-.02819-.17419L6.62866,7.50421A2.98961,2.98961,0,0,0,7.64258,6.41992.917.917,0,0,1,8.46,6H11V20H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2H13V6h2.54a.917.917,0,0,1,.81738.41992,2.98961,2.98961,0,0,0,1.01392,1.08429L15.064,13.64844a.94762.94762,0,0,0-.02819.17419A.94855.94855,0,0,0,15,14c0,.00928.00269.01782.00275.0271.0003.01318.003.02533.0039.03845a3.99379,3.99379,0,0,0,7.9867,0c.00085-.01312.0036-.02527.0039-.03845C22.99731,14.01782,23,14.00928,23,14A.94855.94855,0,0,0,22.96423,13.82263ZM5,8.85553,6.5564,13H3.4436ZM6.72266,15A2.02306,2.02306,0,0,1,5,16a2.00023,2.00023,0,0,1-1.73145-1ZM19,8.85553,20.5564,13H17.4436ZM19,16a2.00023,2.00023,0,0,1-1.73145-1h3.45411A2.02306,2.02306,0,0,1,19,16Z' - })); -}; - -UilBalanceScale.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBalanceScale; \ No newline at end of file diff --git a/icons/uil-ban.js b/icons/uil-ban.js deleted file mode 100644 index 1982e609..00000000 --- a/icons/uil-ban.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBan = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L16.9,18.31A7.92,7.92,0,0,1,12,20Zm6.31-3.1L7.1,5.69A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' - })); -}; - -UilBan.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBan; \ No newline at end of file diff --git a/icons/uil-band-aid.js b/icons/uil-band-aid.js deleted file mode 100644 index 440aff3d..00000000 --- a/icons/uil-band-aid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBandAid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.82,11.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.42A1,1,0,0,0,8.82,11.29Zm2.47,2.48a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,13.77Zm9-10A6,6,0,0,0,12,3.55a6,6,0,0,0-8.24.2h0A6,6,0,0,0,3.57,12,6,6,0,0,0,8,22a5.92,5.92,0,0,0,4-1.55,6,6,0,0,0,8.25-.2A6,6,0,0,0,20.43,12,6,6,0,0,0,20.25,3.75ZM18.83,5.17A4,4,0,0,1,19,10.56L13.44,5A4.07,4.07,0,0,1,18.83,5.17ZM5.17,18.83A4,4,0,0,1,5,13.44l5.6,5.6A4.08,4.08,0,0,1,5.17,18.83Zm13.66,0a4.08,4.08,0,0,1-5.64,0l-8-8a4,4,0,0,1,0-5.64h0a4,4,0,0,1,5.64,0l8,8A4,4,0,0,1,18.83,18.83Zm-5.06-7.54a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.42A1,1,0,0,0,13.77,11.29ZM11.29,8.82a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,8.82Z' - })); -}; - -UilBandAid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBandAid; \ No newline at end of file diff --git a/icons/uil-bars.js b/icons/uil-bars.js deleted file mode 100644 index ae71c3ac..00000000 --- a/icons/uil-bars.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBars = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,8H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm18,8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilBars.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBars; \ No newline at end of file diff --git a/icons/uil-baseball-ball.js b/icons/uil-baseball-ball.js deleted file mode 100644 index 78ee2c33..00000000 --- a/icons/uil-baseball-ball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBaseballBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.92188,6.44043a1.00009,1.00009,0,0,0-1.70313,1.04883q.26514.4292.56543.84375a.99994.99994,0,0,0,1.61914-1.17383Q14.147,6.80616,13.92188,6.44043Zm-2.7295,9.22168A1,1,0,1,0,9.583,16.84961c.16992.22949.32715.4668.47558.709a1.0004,1.0004,0,1,0,1.70508-1.04687C11.58594,16.22266,11.39551,15.93848,11.19238,15.66211Zm-3.707-3.42871a.99989.99989,0,0,0-1.04492,1.70508q.36329.22264.71289.47851A1.00029,1.00029,0,1,0,8.33105,12.7998Q7.91651,12.498,7.48535,12.2334Zm10.06055-2.167q-.36475-.22413-.71582-.4795a1.0003,1.0003,0,0,0-1.17774,1.61719q.41456.30176.84668.56738a1.0004,1.0004,0,1,0,1.04688-1.70507ZM18.99219,5.001a9.90088,9.90088,0,1,0,0,14.001A9.91268,9.91268,0,0,0,18.99219,5.001ZM17.71875,17.72852a8.02918,8.02918,0,0,1-4.51563,2.27374.97071.97071,0,0,0-1.74633.07324,8.0616,8.0616,0,0,1-7.535-7.53155.97507.97507,0,0,0,.07282-1.74714,8.0395,8.0395,0,0,1,6.78479-6.79174.99669.99669,0,0,0,.85632.49786,1.02809,1.02809,0,0,0,.22949-.02637.98194.98194,0,0,0,.65912-.54583,8.05437,8.05437,0,0,1,7.53772,7.53869.97244.97244,0,0,0-.07385,1.74085A8.046,8.046,0,0,1,17.71875,17.72852Z' - })); -}; - -UilBaseballBall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBaseballBall; \ No newline at end of file diff --git a/icons/uil-basketball-hoop.js b/icons/uil-basketball-hoop.js deleted file mode 100644 index b8b8bff0..00000000 --- a/icons/uil-basketball-hoop.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBasketballHoop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,10H6a1,1,0,0,0,0,2H7v9a1,1,0,0,0,2,0V20h2v1a1,1,0,0,0,2,0V20h2v1a1,1,0,0,0,2,0V12h1a1,1,0,0,0,0-2Zm-7,8H9V16h2Zm0-4H9V12h2Zm4,4H13V16h2Zm0-4H13V12h2ZM20,2H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3,1,1,0,0,0,0-2,1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,0,0,3-3V5A3,3,0,0,0,20,2ZM14,8a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' - })); -}; - -UilBasketballHoop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBasketballHoop; \ No newline at end of file diff --git a/icons/uil-basketball.js b/icons/uil-basketball.js deleted file mode 100644 index 11b5cbc2..00000000 --- a/icons/uil-basketball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBasketball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,3.6,6.59l0,0A10,10,0,0,0,18.26,19.79l0,0A10,10,0,0,0,12,2Zm2,2.26A8,8,0,0,1,19.74,10,9.78,9.78,0,0,0,15,11.38a15.7,15.7,0,0,0-2.4-2.21A10.06,10.06,0,0,0,14,4.26ZM12,4a7.9,7.9,0,0,1-1.14,4.07c-.15-.08-.29-.17-.44-.24A15.52,15.52,0,0,0,6.33,6.36,8,8,0,0,1,12,4ZM5,8.16A13.75,13.75,0,0,1,9.49,9.6l.13.08A7.93,7.93,0,0,1,4,12,8,8,0,0,1,5,8.16Zm5,11.58A8,8,0,0,1,4.26,14a9.9,9.9,0,0,0,7.08-3.21,14,14,0,0,1,2,1.8A10,10,0,0,0,10,19.74ZM12,20a8,8,0,0,1,2.56-5.85c.06.08.12.15.17.23a14,14,0,0,1,1.84,4.18A7.93,7.93,0,0,1,12,20Zm6.21-3a16,16,0,0,0-1.8-3.75L16.2,13A7.93,7.93,0,0,1,20,12,8,8,0,0,1,18.21,17Z' - })); -}; - -UilBasketball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBasketball; \ No newline at end of file diff --git a/icons/uil-bath.js b/icons/uil-bath.js deleted file mode 100644 index 5ba0b845..00000000 --- a/icons/uil-bath.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBath = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22 12H5V6.41a1.975 1.975 0 0 1 1.04-1.759 1.995 1.995 0 0 1 1.148-.23 3.491 3.491 0 0 0 .837 3.554l1.06 1.06a1 1 0 0 0 1.415 0L14.035 5.5a1 1 0 0 0 0-1.414l-1.06-1.06a3.494 3.494 0 0 0-4.53-.343A3.992 3.992 0 0 0 3 6.41V12H2a1 1 0 0 0 0 2h1v3a2.995 2.995 0 0 0 2 2.816V21a1 1 0 0 0 2 0v-1h10v1a1 1 0 0 0 2 0v-1.184A2.995 2.995 0 0 0 21 17v-3h1a1 1 0 0 0 0-2ZM9.44 4.44a1.502 1.502 0 0 1 2.12 0l.354.353-2.121 2.121-.354-.353a1.501 1.501 0 0 1 0-2.122ZM19 17a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3h14Z' - })); -}; - -UilBath.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBath; \ No newline at end of file diff --git a/icons/uil-battery-bolt.js b/icons/uil-battery-bolt.js deleted file mode 100644 index dd0ac6ef..00000000 --- a/icons/uil-battery-bolt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBatteryBolt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.69,15H4V9H6.31a1,1,0,0,0,0-2H4A2,2,0,0,0,2,9v6a2,2,0,0,0,2,2H6.69a1,1,0,1,0,0-2Zm7.2-2.56a1.27,1.27,0,0,0,.06-.18,1.42,1.42,0,0,0,0-.2s0,0,0-.06,0-.08,0-.12a.65.65,0,0,0-.05-.2.89.89,0,0,0-.08-.17.86.86,0,0,0-.1-.16l-.16-.13-.09-.09-.06,0-.18-.06-.2,0H9.73l1.45-2.5a1,1,0,1,0-1.74-1l-2.31,4s0,0,0,.06a1.27,1.27,0,0,0-.06.18,1.42,1.42,0,0,0,0,.2S7,12,7,12s0,.08,0,.12a.65.65,0,0,0,.05.2.89.89,0,0,0,.08.17.86.86,0,0,0,.1.16l.16.13a.76.76,0,0,0,.09.09l.07,0,.09,0A1,1,0,0,0,8,13h3.27L9.82,15.5a1,1,0,0,0,1.74,1l2.31-4S13.88,12.46,13.89,12.44ZM21,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,21,10ZM17,7H14.31a1,1,0,0,0,0,2H17v6H14.69a1,1,0,1,0,0,2H17a2,2,0,0,0,2-2V9A2,2,0,0,0,17,7Z' - })); -}; - -UilBatteryBolt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBatteryBolt; \ No newline at end of file diff --git a/icons/uil-battery-empty.js b/icons/uil-battery-empty.js deleted file mode 100644 index e136df0e..00000000 --- a/icons/uil-battery-empty.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBatteryEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,7H4A2,2,0,0,0,2,9v6a2,2,0,0,0,2,2H17a2,2,0,0,0,2-2V9A2,2,0,0,0,17,7Zm0,8H4V9H17Zm4-5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,21,10Z' - })); -}; - -UilBatteryEmpty.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBatteryEmpty; \ No newline at end of file diff --git a/icons/uil-bed-double.js b/icons/uil-bed-double.js deleted file mode 100644 index fe30f296..00000000 --- a/icons/uil-bed-double.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBedDouble = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,3.5H4a3,3,0,0,0-3,3v13a1,1,0,0,0,1,1H6a1,1,0,0,0,.83-.45L8.54,17.5h6.92l1.71,2.55a1,1,0,0,0,.83.45h4a1,1,0,0,0,1-1V6.5A3,3,0,0,0,20,3.5Zm1,15H18.54L16.83,16A1,1,0,0,0,16,15.5H8a1,1,0,0,0-.83.45L5.46,18.5H3v-5H21Zm-14-7v-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1Zm6,0v-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1Zm8,0H19v-1a3,3,0,0,0-3-3H14a3,3,0,0,0-2,.78,3,3,0,0,0-2-.78H8a3,3,0,0,0-3,3v1H3v-5a1,1,0,0,1,1-1H20a1,1,0,0,1,1,1Z' - })); -}; - -UilBedDouble.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBedDouble; \ No newline at end of file diff --git a/icons/uil-behance-alt.js b/icons/uil-behance-alt.js deleted file mode 100644 index 06f63a39..00000000 --- a/icons/uil-behance-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBehanceAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.1084,15.03169a.99748.99748,0,0,0-1.21582.72265,2.99839,2.99839,0,0,1-5.90088-.7539v-1h7a.99974.99974,0,0,0,1-1,5,5,0,1,0-10,0v2a4.99837,4.99837,0,0,0,9.83935,1.24609A.999.999,0,0,0,22.1084,15.03169Zm-4.1167-5.03125a3.01119,3.01119,0,0,1,2.11816.87207,3.04438,3.04438,0,0,1,.69867,1.12793H15.176A2.99509,2.99509,0,0,1,17.9917,10.00044Zm-2-3h4a1,1,0,0,0,0-2h-4a1,1,0,0,0,0,2Zm-6.082,4.71716a3.98653,3.98653,0,0,0-2.918-6.71716h-5a.99973.99973,0,0,0-1,1v13a.99974.99974,0,0,0,1,1h5.5a4.492,4.492,0,0,0,2.418-8.28284ZM2.9917,7.00044h4a2,2,0,1,1,0,4h-4Zm4.5,11h-4.5v-5h4.5a2.5,2.5,0,0,1,0,5Z' - })); -}; - -UilBehanceAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBehanceAlt; \ No newline at end of file diff --git a/icons/uil-behance.js b/icons/uil-behance.js deleted file mode 100644 index 42ebd9d6..00000000 --- a/icons/uil-behance.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBehance = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.07,6.35H15V7.76h5.09ZM19,16.05a2.23,2.23,0,0,1-1.3.37A2.23,2.23,0,0,1,16,15.88a2.49,2.49,0,0,1-.62-1.76H22a6.47,6.47,0,0,0-.17-2,5.08,5.08,0,0,0-.8-1.73,4.17,4.17,0,0,0-1.42-1.21,4.37,4.37,0,0,0-2-.45,4.88,4.88,0,0,0-1.9.37,4.51,4.51,0,0,0-1.47,1,4.4,4.4,0,0,0-.95,1.52,5.4,5.4,0,0,0-.33,1.91,5.52,5.52,0,0,0,.32,1.94A4.46,4.46,0,0,0,14.16,17a4,4,0,0,0,1.46,1,5.2,5.2,0,0,0,1.94.34,4.77,4.77,0,0,0,2.64-.7,4.21,4.21,0,0,0,1.63-2.35H19.62A1.54,1.54,0,0,1,19,16.05Zm-3.43-4.12a1.87,1.87,0,0,1,1-1.14,2.28,2.28,0,0,1,1-.2,1.73,1.73,0,0,1,1.36.49,2.91,2.91,0,0,1,.63,1.45H15.41A3,3,0,0,1,15.52,11.93Zm-5.29-.48a3.06,3.06,0,0,0,1.28-1,2.72,2.72,0,0,0,.43-1.58,3.28,3.28,0,0,0-.29-1.48,2.4,2.4,0,0,0-.82-1,3.24,3.24,0,0,0-1.27-.52,7.54,7.54,0,0,0-1.64-.16H2V18.29H8.1a6.55,6.55,0,0,0,1.65-.21,4.55,4.55,0,0,0,1.43-.65,3.13,3.13,0,0,0,1-1.14,3.41,3.41,0,0,0,.37-1.65,3.47,3.47,0,0,0-.57-2A3,3,0,0,0,10.23,11.45ZM4.77,7.86H7.36a4.17,4.17,0,0,1,.71.06,1.64,1.64,0,0,1,.61.22,1.05,1.05,0,0,1,.42.44,1.42,1.42,0,0,1,.16.72,1.36,1.36,0,0,1-.47,1.15,2,2,0,0,1-1.22.35H4.77ZM9.61,15.3a1.28,1.28,0,0,1-.45.5,2,2,0,0,1-.65.26,3.33,3.33,0,0,1-.78.08h-3V12.69h3a2.4,2.4,0,0,1,1.45.41,1.65,1.65,0,0,1,.54,1.39A1.77,1.77,0,0,1,9.61,15.3Z' - })); -}; - -UilBehance.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBehance; \ No newline at end of file diff --git a/icons/uil-bell-school.js b/icons/uil-bell-school.js deleted file mode 100644 index 10b3499a..00000000 --- a/icons/uil-bell-school.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBellSchool = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,8a2,2,0,1,0-2.27,2,4.49,4.49,0,0,1-3,5.85,3,3,0,0,0-1.3-1.43,7,7,0,1,0-10.9,0A3,3,0,0,0,2,17v1a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-.19a6.47,6.47,0,0,0,4.58-8.59A2,2,0,0,0,21,8ZM14,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h.41a6.94,6.94,0,0,0,7.18,0H13a1,1,0,0,1,1,1ZM9,15a5,5,0,1,1,5-5A5,5,0,0,1,9,15ZM9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Z' - })); -}; - -UilBellSchool.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBellSchool; \ No newline at end of file diff --git a/icons/uil-bell-slash.js b/icons/uil-bell-slash.js deleted file mode 100644 index 0be1c858..00000000 --- a/icons/uil-bell-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBellSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.07,6.12A3.48,3.48,0,0,1,12,6a4,4,0,0,1,4,4v1.34a1,1,0,0,0,2,0V10a6,6,0,0,0-5-5.91V3a1,1,0,0,0-2,0V4.1l-.45.08a1,1,0,0,0,.52,1.94ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L6.41,7.82A6,6,0,0,0,6,10v3.18A3,3,0,0,0,4,16v2a1,1,0,0,0,1,1H8.14a4,4,0,0,0,7.72,0h1.73l2.7,2.71a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM8,10a3.31,3.31,0,0,1,0-.55L11.59,13H8Zm4,10a2,2,0,0,1-1.72-1h3.44A2,2,0,0,1,12,20ZM6,17V16a1,1,0,0,1,1-1h6.59l2,2Z' - })); -}; - -UilBellSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBellSlash; \ No newline at end of file diff --git a/icons/uil-bell.js b/icons/uil-bell.js deleted file mode 100644 index c1282938..00000000 --- a/icons/uil-bell.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBell = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,13.18V10a6,6,0,0,0-5-5.91V3a1,1,0,0,0-2,0V4.09A6,6,0,0,0,6,10v3.18A3,3,0,0,0,4,16v2a1,1,0,0,0,1,1H8.14a4,4,0,0,0,7.72,0H19a1,1,0,0,0,1-1V16A3,3,0,0,0,18,13.18ZM8,10a4,4,0,0,1,8,0v3H8Zm4,10a2,2,0,0,1-1.72-1h3.44A2,2,0,0,1,12,20Zm6-3H6V16a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilBell.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBell; \ No newline at end of file diff --git a/icons/uil-bill.js b/icons/uil-bill.js deleted file mode 100644 index ef3aa5fb..00000000 --- a/icons/uil-bill.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBill = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.5,10.5H12a1,1,0,0,0,0-2H11V8A1,1,0,0,0,9,8v.55a2.5,2.5,0,0,0,.5,4.95h1a.5.5,0,0,1,0,1H8a1,1,0,0,0,0,2H9V17a1,1,0,0,0,2,0v-.55a2.5,2.5,0,0,0-.5-4.95h-1a.5.5,0,0,1,0-1ZM21,12H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Z' - })); -}; - -UilBill.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBill; \ No newline at end of file diff --git a/icons/uil-bing.js b/icons/uil-bing.js deleted file mode 100644 index c45955ca..00000000 --- a/icons/uil-bing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.1,8.6l1.7,4.3l2.8,1.3L9,17.5V3.4L5,2v17.8L9,22l10-5.8v-4.5L10.1,8.6z' - })); -}; - -UilBing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBing; \ No newline at end of file diff --git a/icons/uil-bitcoin-alt.js b/icons/uil-bitcoin-alt.js deleted file mode 100644 index 1b5fd1df..00000000 --- a/icons/uil-bitcoin-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBitcoinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.30426,11.24115A3.99779,3.99779,0,0,0,12.9917,5.002v-1a1,1,0,1,0-2,0v1h-2v-1a1,1,0,1,0-2,0v1h-1a1,1,0,0,0,0,2h1v10h-1a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h2v1a1,1,0,0,0,2,0v-1h2a3.98966,3.98966,0,0,0,1.31256-7.7608ZM8.9917,7.002h4a2,2,0,0,1,0,4h-4Zm6,10h-6v-4h6a2,2,0,1,1,0,4Z' - })); -}; - -UilBitcoinAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBitcoinAlt; \ No newline at end of file diff --git a/icons/uil-bitcoin-circle.js b/icons/uil-bitcoin-circle.js deleted file mode 100644 index 11f0c36d..00000000 --- a/icons/uil-bitcoin-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBitcoinCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21ZM14,7V6a1,1,0,0,0-2,0V7H11V6A1,1,0,0,0,9,6V7H8A1,1,0,0,0,8,9H9v6H8a1,1,0,0,0,0,2H9v1a1,1,0,0,0,2,0V17h1v1a1,1,0,0,0,2,0V17a3,3,0,0,0,3-3,3,3,0,0,0-.77-2A3,3,0,0,0,17,10,3,3,0,0,0,14,7Zm0,8H11V13h3a1,1,0,0,1,0,2Zm0-4H11V9h3a1,1,0,0,1,0,2Z' - })); -}; - -UilBitcoinCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBitcoinCircle; \ No newline at end of file diff --git a/icons/uil-bitcoin-sign.js b/icons/uil-bitcoin-sign.js deleted file mode 100644 index 0d55db4c..00000000 --- a/icons/uil-bitcoin-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBitcoinSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,9a4,4,0,0,0-4-4V3a1,1,0,0,0-2,0V5H11V3A1,1,0,0,0,9,3V5H6A1,1,0,0,0,6,7H7V17H6a1,1,0,0,0,0,2H9v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19a4,4,0,0,0,2.62-7A4,4,0,0,0,19,9Zm-4,8H9V13h6a2,2,0,0,1,0,4Zm0-6H9V7h6a2,2,0,0,1,0,4Z' - })); -}; - -UilBitcoinSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBitcoinSign; \ No newline at end of file diff --git a/icons/uil-bitcoin.js b/icons/uil-bitcoin.js deleted file mode 100644 index 462a0d0a..00000000 --- a/icons/uil-bitcoin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBitcoin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.136,12.11664l-.59577,2.41528c.73542.18469,3.00373.92127,3.33893-.44122C14.22961,12.66974,11.8714,12.30225,11.136,12.11664Zm.81262-3.29621-.5401,2.19056c.61243.15442,2.5003.78405,2.80621-.45526C14.53339,9.26294,12.5611,8.97479,11.94867,8.82043ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm4.358,8.57538a1.74286,1.74286,0,0,1-1.38525,1.611,1.93285,1.93285,0,0,1,.99682,2.66089c-.58551,1.69214-1.97662,1.835-3.82653,1.48089l-.449,1.81971-1.08484-.27344.44312-1.79529c-.28119-.07062-.56855-.14563-.86457-.22687L9.7431,17.65594l-1.08362-.27343.449-1.82312c-.25342-.06562-.5108-.13532-.77344-.20185l-1.41174-.35595.53857-1.25592s.79932.215.78852.19909a.39446.39446,0,0,0,.49719-.26062L9.965,8.74634a.583.583,0,0,0-.5055-.63812c.017-.01154-.788-.19812-.788-.19812l.28863-1.17188,1.4961.37781L10.455,7.1217c.22491.05652.45666.11029.69275.16468l.44464-1.80188,1.08423.27343L12.241,7.52448c.29107.06719.584.135.8692.2069l.43255-1.755,1.0849.27344-.44433,1.80249C15.553,8.52948,16.55475,9.24481,16.358,10.57538Z' - })); -}; - -UilBitcoin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBitcoin; \ No newline at end of file diff --git a/icons/uil-black-berry.js b/icons/uil-black-berry.js deleted file mode 100644 index 2b2fe612..00000000 --- a/icons/uil-black-berry.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBlackBerry = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2ZM7.19,13.35H5.27l.52-2.41H7.63c1.2,0,1.48.58,1.48,1.05C9.11,12.64,8.68,13.35,7.19,13.35Zm.66-3.64H5.94L6.46,7.3H8.3c1.19,0,1.47.59,1.47,1C9.77,9,9.35,9.71,7.85,9.71Zm3.75,7.43H9.68l.53-2.42h1.84c1.19,0,1.47.59,1.47,1.06C13.52,16.43,13.1,17.14,11.6,17.14Zm.71-3.79H10.4l.52-2.41h1.84c1.19,0,1.47.58,1.47,1.05C14.23,12.64,13.81,13.35,12.31,13.35ZM13,9.71H11.06l.52-2.41h1.84c1.2,0,1.48.59,1.48,1C14.9,9,14.47,9.71,13,9.71Zm3.74,5.61H14.81l.52-2.42h1.84c1.19,0,1.48.59,1.48,1.06C18.65,14.61,18.22,15.32,16.72,15.32Zm.72-3.44H15.52L16,9.46h1.84c1.2,0,1.48.59,1.48,1C19.36,11.17,18.93,11.88,17.44,11.88Z' - })); -}; - -UilBlackBerry.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBlackBerry; \ No newline at end of file diff --git a/icons/uil-blogger-alt.js b/icons/uil-blogger-alt.js deleted file mode 100644 index 89d69109..00000000 --- a/icons/uil-blogger-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBloggerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.99121,13.00044h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-4-2h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm6-1.001v-.999a4.004,4.004,0,0,0-4-4h-2a5.00589,5.00589,0,0,0-5,5v4a5.00589,5.00589,0,0,0,5,5h4a5.00589,5.00589,0,0,0,5-5v-1A3.00474,3.00474,0,0,0,15.99121,9.99946Zm0,.001v.001l-1-.001Zm1,4a3.00328,3.00328,0,0,1-3,3h-4a3.00328,3.00328,0,0,1-3-3v-4a3.00328,3.00328,0,0,1,3-3h2a2.0026,2.0026,0,0,1,2,2v1a2.0026,2.0026,0,0,0,2,2,1.00067,1.00067,0,0,1,1,1Zm3-13h-16a3.00328,3.00328,0,0,0-3,3v16a3.00328,3.00328,0,0,0,3,3h16a3.00328,3.00328,0,0,0,3-3v-16A3.00328,3.00328,0,0,0,19.99121,1.00044Zm1,19a1.00067,1.00067,0,0,1-1,1h-16a1.00067,1.00067,0,0,1-1-1v-16a1.00067,1.00067,0,0,1,1-1h16a1.00067,1.00067,0,0,1,1,1Z' - })); -}; - -UilBloggerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBloggerAlt; \ No newline at end of file diff --git a/icons/uil-blogger.js b/icons/uil-blogger.js deleted file mode 100644 index 40083f40..00000000 --- a/icons/uil-blogger.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBlogger = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.71008,10.46008h2.23883a.77084.77084,0,1,0,0-1.54168H9.71008a.77084.77084,0,1,0,0,1.54168Zm9.71826-8.45837H4.555A2.57277,2.57277,0,0,0,1.9917,4.56506V19.43829A2.57278,2.57278,0,0,0,4.555,22.00171H19.42822a2.57268,2.57268,0,0,0,2.56348-2.56329V4.56506A2.57267,2.57267,0,0,0,19.42834,2.00171ZM18.35577,11.6795l-.01965,2.67542a4.0515,4.0515,0,0,1-4.03857,4.02179h-4.639a4.04922,4.04922,0,0,1-4.04181-4.0249V9.65747A4.05258,4.05258,0,0,1,9.65851,5.62671h2.82373a4.45954,4.45954,0,0,1,3.1203,2.19971,3.15646,3.15646,0,0,1,.36182,1.36767c.06738.50556.10284.88123.33007,1.08942.31934.28949,1.50727.09448,1.74219.27844l.17883.13983.10889.22168.036.17755Zm-4.097,1.8639H9.71008a.75035.75035,0,1,0,0,1.5h4.54871a.75024.75024,0,1,0,0-1.5Z' - })); -}; - -UilBlogger.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBlogger; \ No newline at end of file diff --git a/icons/uil-bluetooth-b.js b/icons/uil-bluetooth-b.js deleted file mode 100644 index c7895c07..00000000 --- a/icons/uil-bluetooth-b.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBluetoothB = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.41,12l3.8-3.79a1,1,0,0,0,0-1.42l-4.5-4.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,11,3V9.59L8.21,6.79A1,1,0,1,0,6.79,8.21L10.59,12l-3.8,3.79a1,1,0,1,0,1.42,1.42L11,14.41V21a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4.5-4.5a1,1,0,0,0,0-1.42ZM13,5.41,15.09,7.5,13,9.59Zm0,13.18V14.41l2.09,2.09Z' - })); -}; - -UilBluetoothB.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBluetoothB; \ No newline at end of file diff --git a/icons/uil-bold.js b/icons/uil-bold.js deleted file mode 100644 index 78c054bc..00000000 --- a/icons/uil-bold.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBold = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.5,9.5A3.5,3.5,0,0,0,13,6H8.5a1,1,0,0,0-1,1V17a1,1,0,0,0,1,1H13a3.49,3.49,0,0,0,2.44-6A3.5,3.5,0,0,0,16.5,9.5ZM13,16H9.5V13H13a1.5,1.5,0,0,1,0,3Zm0-5H9.5V8H13a1.5,1.5,0,0,1,0,3Z' - })); -}; - -UilBold.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBold; \ No newline at end of file diff --git a/icons/uil-bolt-alt.js b/icons/uil-bolt-alt.js deleted file mode 100644 index 27699a8f..00000000 --- a/icons/uil-bolt-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBoltAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.89,9.55A1,1,0,0,0,19,9H14V3a1,1,0,0,0-.69-1,1,1,0,0,0-1.12.36l-8,11a1,1,0,0,0-.08,1A1,1,0,0,0,5,15h5v6a1,1,0,0,0,.69.95A1.12,1.12,0,0,0,11,22a1,1,0,0,0,.81-.41l8-11A1,1,0,0,0,19.89,9.55ZM12,17.92V14a1,1,0,0,0-1-1H7l5-6.92V10a1,1,0,0,0,1,1h4Z' - })); -}; - -UilBoltAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBoltAlt; \ No newline at end of file diff --git a/icons/uil-bolt-slash.js b/icons/uil-bolt-slash.js deleted file mode 100644 index ff407d2f..00000000 --- a/icons/uil-bolt-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBoltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.67,4.23A1,1,0,0,0,9.6,4h5.1L13.43,8.74a1,1,0,0,0,.17.87,1,1,0,0,0,.79.39H18l-1.13,1.24a1,1,0,0,0,.07,1.41,1,1,0,0,0,.67.26,1,1,0,0,0,.74-.33L21,9.67A1,1,0,0,0,20.23,8H15.69L17,3.26a1,1,0,0,0-.18-.87A1,1,0,0,0,16,2H9a1,1,0,0,0-1,.74L8,3A1,1,0,0,0,8.67,4.23Zm13,16.06-18-18A1,1,0,0,0,2.29,3.71L6.61,8,5.35,12.74a1,1,0,0,0,.18.87,1,1,0,0,0,.79.39h3.84L8.35,20.74a1,1,0,0,0,.49,1.14,1,1,0,0,0,.48.12,1,1,0,0,0,.74-.33l4.85-5.34,5.38,5.38a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM7.62,12l.63-2.34L10.59,12Zm3.73,5.28,1-3.56,1.2,1.19Z' - })); -}; - -UilBoltSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBoltSlash; \ No newline at end of file diff --git a/icons/uil-bolt.js b/icons/uil-bolt.js deleted file mode 100644 index bc74b44c..00000000 --- a/icons/uil-bolt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBolt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.87,8.6A1,1,0,0,0,19,8H14.42l1.27-4.74a1,1,0,0,0-.17-.87A1,1,0,0,0,14.73,2h-7a1,1,0,0,0-1,.74l-2.68,10a1,1,0,0,0,.17.87,1,1,0,0,0,.8.39H8.89L7.08,20.74a1,1,0,0,0,1.71.93l10.9-12A1,1,0,0,0,19.87,8.6Zm-9.79,8.68,1.07-4a1,1,0,0,0-.17-.87,1,1,0,0,0-.79-.39H6.35L8.49,4h4.93L12.15,8.74a1,1,0,0,0,1,1.26h3.57Z' - })); -}; - -UilBolt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBolt; \ No newline at end of file diff --git a/icons/uil-book-alt.js b/icons/uil-book-alt.js deleted file mode 100644 index 679192fb..00000000 --- a/icons/uil-book-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,2H8A4,4,0,0,0,4,6V18a4,4,0,0,0,4,4H18a2,2,0,0,0,2-2V4A2,2,0,0,0,18,2ZM6,6A2,2,0,0,1,8,4H18V14H8a3.91,3.91,0,0,0-2,.56ZM8,20a2,2,0,0,1,0-4H18v4ZM10,8h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' - })); -}; - -UilBookAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookAlt; \ No newline at end of file diff --git a/icons/uil-book-medical.js b/icons/uil-book-medical.js deleted file mode 100644 index 1f017cca..00000000 --- a/icons/uil-book-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,9H11V7A1,1,0,0,0,9,7V9H7a1,1,0,0,0,0,2H9v2a1,1,0,0,0,2,0V11h2a1,1,0,0,0,0-2Zm5,6V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM4,15V5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H5A1,1,0,0,1,4,15ZM21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Z' - })); -}; - -UilBookMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookMedical; \ No newline at end of file diff --git a/icons/uil-book-open.js b/icons/uil-book-open.js deleted file mode 100644 index cc850ea6..00000000 --- a/icons/uil-book-open.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.17,2.06A13.1,13.1,0,0,0,19,1.87a12.94,12.94,0,0,0-7,2.05,12.94,12.94,0,0,0-7-2,13.1,13.1,0,0,0-2.17.19,1,1,0,0,0-.83,1v12a1,1,0,0,0,1.17,1,10.9,10.9,0,0,1,8.25,1.91l.12.07.11,0a.91.91,0,0,0,.7,0l.11,0,.12-.07A10.9,10.9,0,0,1,20.83,16a1,1,0,0,0,1.17-1v-12A1,1,0,0,0,21.17,2.06ZM11,15.35a12.87,12.87,0,0,0-6-1.48c-.33,0-.66,0-1,0v-10a8.69,8.69,0,0,1,1,0,10.86,10.86,0,0,1,6,1.8Zm9-1.44c-.34,0-.67,0-1,0a12.87,12.87,0,0,0-6,1.48V5.67a10.86,10.86,0,0,1,6-1.8,8.69,8.69,0,0,1,1,0Zm1.17,4.15A13.1,13.1,0,0,0,19,17.87a12.94,12.94,0,0,0-7,2.05,12.94,12.94,0,0,0-7-2.05,13.1,13.1,0,0,0-2.17.19A1,1,0,0,0,2,19.21,1,1,0,0,0,3.17,20a10.9,10.9,0,0,1,8.25,1.91,1,1,0,0,0,1.16,0A10.9,10.9,0,0,1,20.83,20,1,1,0,0,0,22,19.21,1,1,0,0,0,21.17,18.06Z' - })); -}; - -UilBookOpen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookOpen; \ No newline at end of file diff --git a/icons/uil-book-reader.js b/icons/uil-book-reader.js deleted file mode 100644 index 5a89e8d5..00000000 --- a/icons/uil-book-reader.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookReader = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.18,10.19A11.9,11.9,0,0,0,18,10c-.42,0-.83,0-1.24.08a5.91,5.91,0,0,0-1.91-1.65,3.81,3.81,0,0,0,1-2.57,3.86,3.86,0,0,0-7.72,0,3.81,3.81,0,0,0,1,2.57,6.11,6.11,0,0,0-1.91,1.64C6.83,10,6.42,10,6,10a11.9,11.9,0,0,0-2.18.21,1,1,0,0,0-.82,1v8.25a1,1,0,0,0,.36.77,1,1,0,0,0,.82.22A9.75,9.75,0,0,1,6,20.23a9.89,9.89,0,0,1,5.45,1.63h0l0,0,.13.05h0A1.09,1.09,0,0,0,12,22a.87.87,0,0,0,.28-.05l.07,0,.13-.05,0,0h0A9.89,9.89,0,0,1,18,20.23a9.75,9.75,0,0,1,1.82.18,1,1,0,0,0,.82-.22,1,1,0,0,0,.36-.77V11.17A1,1,0,0,0,20.18,10.19ZM12,4a1.86,1.86,0,0,1,0,3.71h0A1.86,1.86,0,0,1,12,4ZM11,19.33a11.92,11.92,0,0,0-5-1.1c-.33,0-.66,0-1,.05V12a9.63,9.63,0,0,1,2.52.05l.11,0A10,10,0,0,1,11,13.33Zm1-7.73a11.77,11.77,0,0,0-1.38-.68l-.06,0c-.33-.13-.66-.26-1-.36A4,4,0,0,1,12,9.69h0a4,4,0,0,1,2.44.85A12.43,12.43,0,0,0,12,11.6Zm7,6.68a11.6,11.6,0,0,0-6,1v-6a9.76,9.76,0,0,1,3.37-1.22l.2,0A9.39,9.39,0,0,1,19,12Z' - })); -}; - -UilBookReader.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookReader; \ No newline at end of file diff --git a/icons/uil-book.js b/icons/uil-book.js deleted file mode 100644 index 46a83c0d..00000000 --- a/icons/uil-book.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBook = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,6H9A1,1,0,0,0,8,7v4a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V7A1,1,0,0,0,15,6Zm-1,4H10V8h4Zm3-8H5A1,1,0,0,0,4,3V21a1,1,0,0,0,1,1H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H6V4H17a1,1,0,0,1,1,1Z' - })); -}; - -UilBook.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBook; \ No newline at end of file diff --git a/icons/uil-bookmark-full.js b/icons/uil-bookmark-full.js deleted file mode 100644 index 5a527948..00000000 --- a/icons/uil-bookmark-full.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookmarkFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,2H6A1,1,0,0,0,5,3V21a1,1,0,0,0,1.65.76L12,17.27l5.29,4.44A1,1,0,0,0,18,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,19,21V3A1,1,0,0,0,18,2ZM17,18.86,12.64,15.2a1,1,0,0,0-1.28,0L7,18.86V4H17Z' - })); -}; - -UilBookmarkFull.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookmarkFull; \ No newline at end of file diff --git a/icons/uil-bookmark.js b/icons/uil-bookmark.js deleted file mode 100644 index 20d151f4..00000000 --- a/icons/uil-bookmark.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,2H8A3,3,0,0,0,5,5V21a1,1,0,0,0,.5.87,1,1,0,0,0,1,0L12,18.69l5.5,3.18A1,1,0,0,0,18,22a1,1,0,0,0,.5-.13A1,1,0,0,0,19,21V5A3,3,0,0,0,16,2Zm1,17.27-4.5-2.6a1,1,0,0,0-1,0L7,19.27V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' - })); -}; - -UilBookmark.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBookmark; \ No newline at end of file diff --git a/icons/uil-books.js b/icons/uil-books.js deleted file mode 100644 index 6563b1f1..00000000 --- a/icons/uil-books.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBooks = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.47,18.82l-1-3.86h0L18.32,3.37a1,1,0,0,0-1.22-.71l-3.87,1a1,1,0,0,0-.73-.33H2.5a1,1,0,0,0-1,1v16a1,1,0,0,0,1,1h10a1,1,0,0,0,1-1v-8l2.2,8.22a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0l4.83-1.29a1,1,0,0,0,.61-.47A1.05,1.05,0,0,0,22.47,18.82Zm-16,.55h-3v-2h3Zm0-4h-3v-6h3Zm0-8h-3v-2h3Zm5,12h-3v-2h3Zm0-4h-3v-6h3Zm0-8h-3v-2h3Zm2.25-1.74,2.9-.78.52,1.93-2.9.78Zm2.59,9.66-1.55-5.8,2.9-.78,1.55,5.8Zm1,3.86-.52-1.93,2.9-.78.52,1.93Z' - })); -}; - -UilBooks.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBooks; \ No newline at end of file diff --git a/icons/uil-boombox.js b/icons/uil-boombox.js deleted file mode 100644 index f541c30d..00000000 --- a/icons/uil-boombox.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBoombox = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Zm-3.62-8.2A3,3,0,0,0,15,9,3,3,0,0,0,9,9a3,3,0,0,0,.62,1.8,4,4,0,1,0,4.76,0ZM12,8a1,1,0,1,1-1,1A1,1,0,0,1,12,8Zm0,8a2,2,0,1,1,2-2A2,2,0,0,1,12,16Z' - })); -}; - -UilBoombox.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBoombox; \ No newline at end of file diff --git a/icons/uil-border-alt.js b/icons/uil-border-alt.js deleted file mode 100644 index 5508a751..00000000 --- a/icons/uil-border-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.5,18.5a1,1,0,1,0,1,1A1,1,0,0,0,11.5,18.5Zm9-15a1,1,0,0,0-1-1H3.5a1,1,0,0,0-1,1v16a1,1,0,0,0,2,0V4.5h15A1,1,0,0,0,20.5,3.5Zm-5,15a1,1,0,1,0,1,1A1,1,0,0,0,15.5,18.5Zm-8,0a1,1,0,1,0,1,1A1,1,0,0,0,7.5,18.5Zm12-12a1,1,0,1,0,1,1A1,1,0,0,0,19.5,6.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,10.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,14.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,18.5Z' - })); -}; - -UilBorderAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderAlt; \ No newline at end of file diff --git a/icons/uil-border-bottom.js b/icons/uil-border-bottom.js deleted file mode 100644 index a5fc2d21..00000000 --- a/icons/uil-border-bottom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13.5a1,1,0,1,0-1-1A1,1,0,0,0,12,13.5Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,12,17.5Zm0-8a1,1,0,1,0-1-1A1,1,0,0,0,12,9.5Zm-4-4a1,1,0,1,0-1-1A1,1,0,0,0,8,5.5Zm0,8a1,1,0,1,0-1-1A1,1,0,0,0,8,13.5Zm12-8a1,1,0,1,0-1-1A1,1,0,0,0,20,5.5Zm-4,8a1,1,0,1,0-1-1A1,1,0,0,0,16,13.5Zm-4-8a1,1,0,1,0-1-1A1,1,0,0,0,12,5.5Zm4,0a1,1,0,1,0-1-1A1,1,0,0,0,16,5.5Zm4,10a1,1,0,1,0,1,1A1,1,0,0,0,20,15.5Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,20,11.5Zm0,8H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm0-12a1,1,0,1,0,1,1A1,1,0,0,0,20,7.5Zm-16,6a1,1,0,1,0-1-1A1,1,0,0,0,4,13.5Zm0-4a1,1,0,1,0-1-1A1,1,0,0,0,4,9.5Zm0,8a1,1,0,1,0-1-1A1,1,0,0,0,4,17.5Zm0-12a1,1,0,1,0-1-1A1,1,0,0,0,4,5.5Z' - })); -}; - -UilBorderBottom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderBottom; \ No newline at end of file diff --git a/icons/uil-border-clear.js b/icons/uil-border-clear.js deleted file mode 100644 index e132341e..00000000 --- a/icons/uil-border-clear.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderClear = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,19ZM4,3A1,1,0,1,0,5,4,1,1,0,0,0,4,3Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,4,11ZM20,5a1,1,0,1,0-1-1A1,1,0,0,0,20,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19Zm8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,15ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM4,7A1,1,0,1,0,5,8,1,1,0,0,0,4,7ZM8,3A1,1,0,1,0,9,4,1,1,0,0,0,8,3ZM20,15a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,19ZM20,7a1,1,0,1,0,1,1A1,1,0,0,0,20,7Zm-8,4a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,20,11ZM16,3a1,1,0,1,0,1,1A1,1,0,0,0,16,3ZM12,3a1,1,0,1,0,1,1A1,1,0,0,0,12,3Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,12,7Zm4,12a1,1,0,1,0,1,1A1,1,0,0,0,16,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,16,11Z' - })); -}; - -UilBorderClear.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderClear; \ No newline at end of file diff --git a/icons/uil-border-horizontal.js b/icons/uil-border-horizontal.js deleted file mode 100644 index 2fbf1dc6..00000000 --- a/icons/uil-border-horizontal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderHorizontal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,5A1,1,0,1,0,7,4,1,1,0,0,0,8,5ZM4,9A1,1,0,1,0,3,8,1,1,0,0,0,4,9Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,12,9ZM4,5A1,1,0,1,0,3,4,1,1,0,0,0,4,5ZM16,5a1,1,0,1,0-1-1A1,1,0,0,0,16,5ZM12,5a1,1,0,1,0-1-1A1,1,0,0,0,12,5Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,20,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19Zm16,0a1,1,0,1,0,1,1A1,1,0,0,0,20,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm0-4H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,16,19ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM20,7a1,1,0,1,0,1,1A1,1,0,0,0,20,7ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,12,15Z' - })); -}; - -UilBorderHorizontal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderHorizontal; \ No newline at end of file diff --git a/icons/uil-border-inner.js b/icons/uil-border-inner.js deleted file mode 100644 index bee06324..00000000 --- a/icons/uil-border-inner.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderInner = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,5A1,1,0,1,0,7,4,1,1,0,0,0,8,5ZM4,9A1,1,0,1,0,3,8,1,1,0,0,0,4,9ZM4,5A1,1,0,1,0,3,4,1,1,0,0,0,4,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19ZM20,5a1,1,0,1,0-1-1A1,1,0,0,0,20,5Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,20,9ZM16,5a1,1,0,1,0-1-1A1,1,0,0,0,16,5Zm4,14a1,1,0,1,0,1,1A1,1,0,0,0,20,19ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15Zm16,0a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm-4,4a1,1,0,1,0,1,1A1,1,0,0,0,16,19Zm5-7a1,1,0,0,0-1-1H13V4a1,1,0,0,0-2,0v7H4a1,1,0,0,0,0,2h7v7a1,1,0,0,0,2,0V13h7A1,1,0,0,0,21,12ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Z' - })); -}; - -UilBorderInner.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderInner; \ No newline at end of file diff --git a/icons/uil-border-left.js b/icons/uil-border-left.js deleted file mode 100644 index 27db4e0b..00000000 --- a/icons/uil-border-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.5,19a1,1,0,1,0,1,1A1,1,0,0,0,11.5,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,11.5,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,11.5,11Zm-8-8a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,3.5,3Zm16,2a1,1,0,1,0-1-1A1,1,0,0,0,19.5,5Zm-8,2a1,1,0,1,0,1,1A1,1,0,0,0,11.5,7Zm-4,4a1,1,0,1,0,1,1A1,1,0,0,0,7.5,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,7.5,19Zm0-16a1,1,0,1,0,1,1A1,1,0,0,0,7.5,3Zm12,8a1,1,0,1,0,1,1A1,1,0,0,0,19.5,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,15Zm-8-12a1,1,0,1,0,1,1A1,1,0,0,0,11.5,3Zm8,16a1,1,0,1,0,1,1A1,1,0,0,0,19.5,19Zm0-12a1,1,0,1,0,1,1A1,1,0,0,0,19.5,7Zm-4-4a1,1,0,1,0,1,1A1,1,0,0,0,15.5,3Zm0,16a1,1,0,1,0,1,1A1,1,0,0,0,15.5,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,15.5,11Z' - })); -}; - -UilBorderLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderLeft; \ No newline at end of file diff --git a/icons/uil-border-out.js b/icons/uil-border-out.js deleted file mode 100644 index afe6ae30..00000000 --- a/icons/uil-border-out.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderOut = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9a1,1,0,1,0-1-1A1,1,0,0,0,12,9Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,12,13Zm4,0a1,1,0,1,0-1-1A1,1,0,0,0,16,13Zm-4,4a1,1,0,1,0-1-1A1,1,0,0,0,12,17ZM20,3H4A1,1,0,0,0,3,4V20a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V4A1,1,0,0,0,20,3ZM19,19H5V5H19ZM8,13a1,1,0,1,0-1-1A1,1,0,0,0,8,13Z' - })); -}; - -UilBorderOut.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderOut; \ No newline at end of file diff --git a/icons/uil-border-right.js b/icons/uil-border-right.js deleted file mode 100644 index 50cf86ed..00000000 --- a/icons/uil-border-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.5,7a1,1,0,1,0,1,1A1,1,0,0,0,4.5,7Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,4.5,3Zm4,16a1,1,0,1,0,1,1A1,1,0,0,0,8.5,19Zm-4,0a1,1,0,1,0,1,1A1,1,0,0,0,4.5,19Zm4-8a1,1,0,1,0,1,1A1,1,0,0,0,8.5,11Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,8.5,3Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,4.5,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,4.5,15Zm12-12a1,1,0,1,0,1,1A1,1,0,0,0,16.5,3Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,16.5,11Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,12.5,19Zm0-16a1,1,0,1,0,1,1A1,1,0,0,0,12.5,3Zm8,0a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,20.5,3Zm-4,16a1,1,0,1,0,1,1A1,1,0,0,0,16.5,19Zm-4-12a1,1,0,1,0,1,1A1,1,0,0,0,12.5,7Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,12.5,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,12.5,11Z' - })); -}; - -UilBorderRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderRight; \ No newline at end of file diff --git a/icons/uil-border-top.js b/icons/uil-border-top.js deleted file mode 100644 index ac561714..00000000 --- a/icons/uil-border-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,18.5a1,1,0,1,0,1,1A1,1,0,0,0,8,18.5Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,8,10.5Zm4,8a1,1,0,1,0,1,1A1,1,0,0,0,12,18.5ZM4,6.5a1,1,0,1,0,1,1A1,1,0,0,0,4,6.5Zm0,12a1,1,0,1,0,1,1A1,1,0,0,0,4,18.5Zm0-14H20a1,1,0,0,0,0-2H4a1,1,0,0,0,0,2Zm0,10a1,1,0,1,0,1,1A1,1,0,0,0,4,14.5Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,4,10.5Zm8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,6.5Zm8,8a1,1,0,1,0,1,1A1,1,0,0,0,20,14.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,18.5Zm-8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,14.5Zm8-8a1,1,0,1,0,1,1A1,1,0,0,0,20,6.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,10.5Zm-8,0a1,1,0,1,0,1,1A1,1,0,0,0,12,10.5Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,16,10.5Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,16,18.5Z' - })); -}; - -UilBorderTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderTop; \ No newline at end of file diff --git a/icons/uil-border-vertical.js b/icons/uil-border-vertical.js deleted file mode 100644 index ea6b2566..00000000 --- a/icons/uil-border-vertical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBorderVertical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,3A1,1,0,1,0,4,4,1,1,0,0,0,3,3ZM3,7A1,1,0,1,0,4,8,1,1,0,0,0,3,7ZM19,5a1,1,0,1,0-1-1A1,1,0,0,0,19,5ZM7,11a1,1,0,1,0,1,1A1,1,0,0,0,7,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,7,19ZM7,3A1,1,0,1,0,8,4,1,1,0,0,0,7,3ZM3,15a1,1,0,1,0,1,1A1,1,0,0,0,3,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,3,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,3,19Zm16-4a1,1,0,1,0,1,1A1,1,0,0,0,19,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,19,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,19,19ZM19,7a1,1,0,1,0,1,1A1,1,0,0,0,19,7ZM15,3a1,1,0,1,0,1,1A1,1,0,0,0,15,3ZM11,3a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,11,3Zm4,16a1,1,0,1,0,1,1A1,1,0,0,0,15,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,15,11Z' - })); -}; - -UilBorderVertical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBorderVertical; \ No newline at end of file diff --git a/icons/uil-bowling-ball.js b/icons/uil-bowling-ball.js deleted file mode 100644 index bc448418..00000000 --- a/icons/uil-bowling-ball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBowlingBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.9917,8.00171a1,1,0,1,0,1,1A1,1,0,0,0,7.9917,8.00171ZM11.99121,2.002a10,10,0,1,0,10,10A10.01177,10.01177,0,0,0,11.99121,2.002Zm0,18a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,11.99121,20.002ZM10.9917,10.00171a1,1,0,1,0,1,1A1,1,0,0,0,10.9917,10.00171Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,10.9917,6.00171Z' - })); -}; - -UilBowlingBall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBowlingBall; \ No newline at end of file diff --git a/icons/uil-box.js b/icons/uil-box.js deleted file mode 100644 index 492c19e6..00000000 --- a/icons/uil-box.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBox = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.49,7.52a.19.19,0,0,1,0-.08.17.17,0,0,1,0-.07l0-.09-.06-.15,0,0h0l0,0,0,0a.48.48,0,0,0-.09-.11l-.09-.08h0l-.05,0,0,0L16.26,4.45h0l-3.72-2.3A.85.85,0,0,0,12.25,2h-.08a.82.82,0,0,0-.27,0h-.1a1.13,1.13,0,0,0-.33.13L4,6.78l-.09.07-.09.08L3.72,7l-.05.06,0,0-.06.15,0,.09v.06a.69.69,0,0,0,0,.2v8.73a1,1,0,0,0,.47.85l7.5,4.64h0l0,0,.15.06.08,0a.86.86,0,0,0,.52,0l.08,0,.15-.06,0,0h0L20,17.21a1,1,0,0,0,.47-.85V7.63S20.49,7.56,20.49,7.52ZM12,4.17l1.78,1.1L8.19,8.73,6.4,7.63Zm-1,15L5.5,15.81V9.42l5.5,3.4Zm1-8.11L10.09,9.91l5.59-3.47L17.6,7.63Zm6.5,4.72L13,19.2V12.82l5.5-3.4Z' - })); -}; - -UilBox.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBox; \ No newline at end of file diff --git a/icons/uil-brackets-curly.js b/icons/uil-brackets-curly.js deleted file mode 100644 index 0cdc8c4d..00000000 --- a/icons/uil-brackets-curly.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBracketsCurly = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6 6a2 2 0 0 1 2-2 1 1 0 0 0 0-2 4 4 0 0 0-4 4v3a2 2 0 0 1-2 2 1 1 0 0 0 0 2 2 2 0 0 1 2 2v3a4 4 0 0 0 4 4 1 1 0 0 0 0-2 2 2 0 0 1-2-2v-3a4 4 0 0 0-1.38-3A4 4 0 0 0 6 9Zm16 5a2 2 0 0 1-2-2V6a4 4 0 0 0-4-4 1 1 0 0 0 0 2 2 2 0 0 1 2 2v3a4 4 0 0 0 1.38 3A4 4 0 0 0 18 15v3a2 2 0 0 1-2 2 1 1 0 0 0 0 2 4 4 0 0 0 4-4v-3a2 2 0 0 1 2-2 1 1 0 0 0 0-2Z' - })); -}; - -UilBracketsCurly.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBracketsCurly; \ No newline at end of file diff --git a/icons/uil-brain.js b/icons/uil-brain.js deleted file mode 100644 index 279cba5b..00000000 --- a/icons/uil-brain.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrain = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,11A4,4,0,0,0,20,7.52,3,3,0,0,0,20,7a3,3,0,0,0-3-3l-.18,0A3,3,0,0,0,12,2.78,3,3,0,0,0,7.18,4L7,4A3,3,0,0,0,4,7a3,3,0,0,0,0,.52,4,4,0,0,0-.55,6.59A4,4,0,0,0,7,20l.18,0A3,3,0,0,0,12,21.22,3,3,0,0,0,16.82,20L17,20a4,4,0,0,0,3.5-5.89A4,4,0,0,0,22,11ZM11,8.55a4.72,4.72,0,0,0-.68-.32,1,1,0,0,0-.64,1.9A2,2,0,0,1,11,12v1.55a4.72,4.72,0,0,0-.68-.32,1,1,0,0,0-.64,1.9A2,2,0,0,1,11,17v2a1,1,0,0,1-1,1,1,1,0,0,1-.91-.6,4.07,4.07,0,0,0,.48-.33,1,1,0,1,0-1.28-1.54A2,2,0,0,1,7,18a2,2,0,0,1-2-2,2,2,0,0,1,.32-1.06A3.82,3.82,0,0,0,6,15a1,1,0,0,0,0-2,1.84,1.84,0,0,1-.69-.13A2,2,0,0,1,5,9.25a3.1,3.1,0,0,0,.46.35,1,1,0,1,0,1-1.74.9.9,0,0,1-.34-.33A.92.92,0,0,1,6,7,1,1,0,0,1,7,6a.76.76,0,0,1,.21,0,3.85,3.85,0,0,0,.19.47,1,1,0,0,0,1.37.37A1,1,0,0,0,9.13,5.5,1.06,1.06,0,0,1,9,5a1,1,0,0,1,2,0Zm7.69,4.32A1.84,1.84,0,0,1,18,13a1,1,0,0,0,0,2,3.82,3.82,0,0,0,.68-.06A2,2,0,0,1,19,16a2,2,0,0,1-2,2,2,2,0,0,1-1.29-.47,1,1,0,0,0-1.28,1.54,4.07,4.07,0,0,0,.48.33A1,1,0,0,1,14,20a1,1,0,0,1-1-1V17a2,2,0,0,1,1.32-1.87,1,1,0,0,0-.64-1.9,4.72,4.72,0,0,0-.68.32V12a2,2,0,0,1,1.32-1.87,1,1,0,0,0-.64-1.9,4.72,4.72,0,0,0-.68.32V5a1,1,0,0,1,2,0,1.06,1.06,0,0,1-.13.5,1,1,0,0,0,.36,1.37A1,1,0,0,0,16.6,6.5,3.85,3.85,0,0,0,16.79,6,.76.76,0,0,1,17,6a1,1,0,0,1,1,1,1,1,0,0,1-.17.55.9.9,0,0,1-.33.31,1,1,0,0,0,1,1.74A2.66,2.66,0,0,0,19,9.25a2,2,0,0,1-.27,3.62Z' - })); -}; - -UilBrain.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrain; \ No newline at end of file diff --git a/icons/uil-briefcase-alt.js b/icons/uil-briefcase-alt.js deleted file mode 100644 index 88a79a74..00000000 --- a/icons/uil-briefcase-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBriefcaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a21.27,21.27,0,0,0,3,.94v.59a1,1,0,0,0,2,0v-.21a23,23,0,0,0,3,.21,23,23,0,0,0,3-.21v.21a1,1,0,0,0,2,0v-.59A21.27,21.27,0,0,0,20,13Zm0-7.69a20.39,20.39,0,0,1-3,1V11.5a1,1,0,0,0-2,0v.74a20.11,20.11,0,0,1-6,0V11.5a1,1,0,0,0-2,0v.33a20.39,20.39,0,0,1-3-1V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' - })); -}; - -UilBriefcaseAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBriefcaseAlt; \ No newline at end of file diff --git a/icons/uil-briefcase.js b/icons/uil-briefcase.js deleted file mode 100644 index 407eacec..00000000 --- a/icons/uil-briefcase.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBriefcase = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,6H17V5a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5V6H3A1,1,0,0,0,2,7v4a3,3,0,0,0,1,2.22V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V13.22A3,3,0,0,0,22,11V7A1,1,0,0,0,21,6ZM9,5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1V6H9ZM19,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H7v1a1,1,0,0,0,2,0V14h6v1a1,1,0,0,0,2,0V14h2Zm1-8a1,1,0,0,1-1,1H17V11a1,1,0,0,0-2,0v1H9V11a1,1,0,0,0-2,0v1H5a1,1,0,0,1-1-1V8H20Z' - })); -}; - -UilBriefcase.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBriefcase; \ No newline at end of file diff --git a/icons/uil-bright.js b/icons/uil-bright.js deleted file mode 100644 index 2cc8e132..00000000 --- a/icons/uil-bright.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBright = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Zm9.71-2.71L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' - })); -}; - -UilBright.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBright; \ No newline at end of file diff --git a/icons/uil-brightness-empty.js b/icons/uil-brightness-empty.js deleted file mode 100644 index c9f459b2..00000000 --- a/icons/uil-brightness-empty.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightnessEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,11.29,19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' - })); -}; - -UilBrightnessEmpty.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightnessEmpty; \ No newline at end of file diff --git a/icons/uil-brightness-half.js b/icons/uil-brightness-half.js deleted file mode 100644 index 173eb734..00000000 --- a/icons/uil-brightness-half.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightnessHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8a1,1,0,0,0,0,2,2,2,0,0,1,0,4,1,1,0,0,0,0,2,4,4,0,0,0,0-8Zm9.71,3.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' - })); -}; - -UilBrightnessHalf.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightnessHalf; \ No newline at end of file diff --git a/icons/uil-brightness-low.js b/icons/uil-brightness-low.js deleted file mode 100644 index beca5b23..00000000 --- a/icons/uil-brightness-low.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightnessLow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,11a1,1,0,1,0,1,1A1,1,0,0,0,3,11Zm1.93,6.66a1,1,0,1,0,1.41,0A1,1,0,0,0,4.93,17.66ZM6.34,6.34a1,1,0,1,0-1.41,0A1,1,0,0,0,6.34,6.34ZM12,4a1,1,0,1,0-1-1A1,1,0,0,0,12,4Zm5.66,13.66a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,17.66ZM21,11a1,1,0,1,0,1,1A1,1,0,0,0,21,11ZM17.66,4.93a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,4.93ZM12,20a1,1,0,1,0,1,1A1,1,0,0,0,12,20ZM12,6a6,6,0,1,0,6,6A6,6,0,0,0,12,6Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' - })); -}; - -UilBrightnessLow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightnessLow; \ No newline at end of file diff --git a/icons/uil-brightness-minus.js b/icons/uil-brightness-minus.js deleted file mode 100644 index 9cbbe980..00000000 --- a/icons/uil-brightness-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightnessMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm7.71.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' - })); -}; - -UilBrightnessMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightnessMinus; \ No newline at end of file diff --git a/icons/uil-brightness-plus.js b/icons/uil-brightness-plus.js deleted file mode 100644 index 22179ac7..00000000 --- a/icons/uil-brightness-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightnessPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Zm7.71.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' - })); -}; - -UilBrightnessPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightnessPlus; \ No newline at end of file diff --git a/icons/uil-brightness.js b/icons/uil-brightness.js deleted file mode 100644 index 4171662b..00000000 --- a/icons/uil-brightness.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrightness = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,12a1,1,0,0,0-1-1H3a1,1,0,0,0,0,2H4A1,1,0,0,0,5,12ZM5.64,17l-.71.71a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l.71-.71A1,1,0,0,0,5.64,17ZM12,5a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4A1,1,0,0,0,12,5Zm5.66,2.34a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,5.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,7.34Zm-12-.29a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,6.34ZM21,11H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM18.36,17A1,1,0,0,0,17,18.36l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM12,6.5A5.5,5.5,0,1,0,17.5,12,5.51,5.51,0,0,0,12,6.5Zm0,9A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5ZM12,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19Z' - })); -}; - -UilBrightness.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrightness; \ No newline at end of file diff --git a/icons/uil-bring-bottom.js b/icons/uil-bring-bottom.js deleted file mode 100644 index e3af1d9e..00000000 --- a/icons/uil-bring-bottom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBringBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H19a1,1,0,1,0,0,2h1v4H4V16h7a1,1,0,0,0,0-2H10V9A1,1,0,0,0,9,8H3A1,1,0,0,0,2,9v6H2v6a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V15A1,1,0,0,0,21,14ZM4,10H8v4H4ZM12.71,6.7,14,5.41V17a1,1,0,1,0,2,0V5.41L17.29,6.7A1,1,0,0,0,18,7a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,0,1.41A1,1,0,0,0,12.71,6.7Z' - })); -}; - -UilBringBottom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBringBottom; \ No newline at end of file diff --git a/icons/uil-bring-front.js b/icons/uil-bring-front.js deleted file mode 100644 index af36587e..00000000 --- a/icons/uil-bring-front.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBringFront = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,17.3,10,18.59V7A1,1,0,0,0,8,7v11.6L6.71,17.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,17.3ZM22,3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V9a1,1,0,0,0,1,1H5A1,1,0,0,0,5,8H4V4H20V8H13a1,1,0,0,0,0,2h1v5a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V9h0ZM20,14H16V10h4Z' - })); -}; - -UilBringFront.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBringFront; \ No newline at end of file diff --git a/icons/uil-brush-alt.js b/icons/uil-brush-alt.js deleted file mode 100644 index 3985486c..00000000 --- a/icons/uil-brush-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBrushAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,18a1,1,0,1,0,1,1A1,1,0,0,0,12,18ZM18,1H6A1,1,0,0,0,5,2v9a3,3,0,0,0,3,3H9v2.37a4,4,0,1,0,6,0V14h1a3,3,0,0,0,3-3V2A1,1,0,0,0,18,1ZM12,21a2,2,0,0,1-1.33-3.48,1,1,0,0,0,.33-.74V14h2v2.78a1,1,0,0,0,.33.74A2,2,0,0,1,12,21Zm5-10a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V10H17Zm0-3H7V3H17Z' - })); -}; - -UilBrushAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBrushAlt; \ No newline at end of file diff --git a/icons/uil-bug.js b/icons/uil-bug.js deleted file mode 100644 index 194f0796..00000000 --- a/icons/uil-bug.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBug = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,14h2a1,1,0,0,0,0-2H19V11a5.15,5.15,0,0,0-.21-1.36A5,5,0,0,0,22,5a1,1,0,0,0-2,0,3,3,0,0,1-2.14,2.87A5,5,0,0,0,16,6.4,2.58,2.58,0,0,0,16,6,4,4,0,0,0,8,6a2.58,2.58,0,0,0,0,.4,5,5,0,0,0-1.9,1.47A3,3,0,0,1,4,5,1,1,0,0,0,2,5,5,5,0,0,0,5.21,9.64,5.15,5.15,0,0,0,5,11v1H3a1,1,0,0,0,0,2H5v1a7,7,0,0,0,.14,1.38A5,5,0,0,0,2,21a1,1,0,0,0,2,0,3,3,0,0,1,1.81-2.74,7,7,0,0,0,12.38,0A3,3,0,0,1,20,21a1,1,0,0,0,2,0,5,5,0,0,0-3.14-4.62A7,7,0,0,0,19,15Zm-8,5.9A5,5,0,0,1,7,15V11a3,3,0,0,1,3-3h1ZM10,6a2,2,0,0,1,4,0Zm7,9a5,5,0,0,1-4,4.9V8h1a3,3,0,0,1,3,3Z' - })); -}; - -UilBug.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBug; \ No newline at end of file diff --git a/icons/uil-building.js b/icons/uil-building.js deleted file mode 100644 index 78166d1b..00000000 --- a/icons/uil-building.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBuilding = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,8h1a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2Zm0,4h1a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2ZM9,8h1a1,1,0,0,0,0-2H9A1,1,0,0,0,9,8Zm0,4h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm12,8H20V3a1,1,0,0,0-1-1H5A1,1,0,0,0,4,3V20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-8,0H11V16h2Zm5,0H15V15a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v5H6V4H18Z' - })); -}; - -UilBuilding.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBuilding; \ No newline at end of file diff --git a/icons/uil-bullseye.js b/icons/uil-bullseye.js deleted file mode 100644 index bfc84dfb..00000000 --- a/icons/uil-bullseye.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBullseye = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,5a7,7,0,1,0,7,7A7,7,0,0,0,12,5Zm0,12a5,5,0,1,1,5-5A5,5,0,0,1,12,17Zm0-8a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13ZM12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' - })); -}; - -UilBullseye.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBullseye; \ No newline at end of file diff --git a/icons/uil-bus-alt.js b/icons/uil-bus-alt.js deleted file mode 100644 index 3f049fe7..00000000 --- a/icons/uil-bus-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.5,2H6.5a3,3,0,0,0-3,3V17a3,3,0,0,0,2,2.82V21a1,1,0,0,0,2,0V20h10v1a1,1,0,0,0,2,0V19.82a3,3,0,0,0,2-2.82V5A3,3,0,0,0,18.5,2ZM5.5,8h6v4h-6Zm14,9a1,1,0,0,1-1,1H6.5a1,1,0,0,1-1-1V14h14Zm0-5h-6V8h6Zm0-6H5.5V5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1ZM16.12,16.92a1,1,0,0,0,.38.08,1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12a.76.76,0,0,0-.18-.09A.64.64,0,0,0,16.7,15a1,1,0,0,0-.91.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,16.12,16.92Zm-8,0A1,1,0,0,0,8.5,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12-.18-.09L8.7,15a1,1,0,0,0-.91.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,8.12,16.92Z' - })); -}; - -UilBusAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBusAlt; \ No newline at end of file diff --git a/icons/uil-bus-school.js b/icons/uil-bus-school.js deleted file mode 100644 index 2c8a17eb..00000000 --- a/icons/uil-bus-school.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBusSchool = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M1,12.5v4a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V6.5a3,3,0,0,0-3-3H8.44A3,3,0,0,0,5.6,5.55L4.16,9.86,1.45,11.67A1,1,0,0,0,1,12.5Zm20-3H19v-4h1a1,1,0,0,1,1,1Zm-4,8a1,1,0,1,1,1,1A1,1,0,0,1,17,17.5Zm-2-6h6v4h-.78a3,3,0,0,0-4.44,0H15Zm0-6h2v4H15Zm-4,6h2v4H11Zm0-6h2v4H11Zm-2,4H6.39l1.1-3.32a1,1,0,0,1,.95-.68H9Zm-4,8a1,1,0,1,1,1,1A1,1,0,0,1,5,17.5ZM3,13,5.3,11.5H9v4H8.22a3,3,0,0,0-4.44,0H3Z' - })); -}; - -UilBusSchool.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBusSchool; \ No newline at end of file diff --git a/icons/uil-bus.js b/icons/uil-bus.js deleted file mode 100644 index e892a2ff..00000000 --- a/icons/uil-bus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilBus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1,1,0,0,0-.33-.21A1,1,0,0,0,8.3,15l-.18.06-.18.09a1.58,1.58,0,0,0-.15.12l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,1,1Zm8,0a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,16.5,17Zm-3-12h-2a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm5-3H6.5a3,3,0,0,0-3,3V17a3,3,0,0,0,2,2.82V21a1,1,0,0,0,2,0V20h10v1a1,1,0,0,0,2,0V19.82a3,3,0,0,0,2-2.82V5A3,3,0,0,0,18.5,2Zm1,15a1,1,0,0,1-1,1H6.5a1,1,0,0,1-1-1V14h14Zm0-5H5.5V5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1Z' - })); -}; - -UilBus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilBus; \ No newline at end of file diff --git a/icons/uil-calculator-alt.js b/icons/uil-calculator-alt.js deleted file mode 100644 index e5c70962..00000000 --- a/icons/uil-calculator-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalculatorAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.5,8H6v.5a1,1,0,0,0,2,0V8h.5a1,1,0,0,0,0-2H8V5.5a1,1,0,0,0-2,0V6H5.5a1,1,0,0,0,0,2ZM4.88,19.12a1,1,0,0,0,1.41,0L7,18.41l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L8.41,17l.71-.71a1,1,0,0,0-1.41-1.41L7,15.59l-.71-.71a1,1,0,0,0-1.41,1.41l.71.71-.71.71A1,1,0,0,0,4.88,19.12ZM20,1H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1ZM11,21H4a1,1,0,0,1-1-1V13h8Zm0-10H3V4A1,1,0,0,1,4,3h7Zm10,9a1,1,0,0,1-1,1H13V13h8Zm0-9H13V3h7a1,1,0,0,1,1,1Zm-5.5,5.5h3a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2ZM18.5,6h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm-3,13.5h3a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2Z' - })); -}; - -UilCalculatorAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalculatorAlt; \ No newline at end of file diff --git a/icons/uil-calculator.js b/icons/uil-calculator.js deleted file mode 100644 index f84d5b45..00000000 --- a/icons/uil-calculator.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalculator = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,17.29a1,1,0,0,0-.16-.12.56.56,0,0,0-.17-.09.6.6,0,0,0-.19-.06.93.93,0,0,0-.57.06.9.9,0,0,0-.54.54A.84.84,0,0,0,11,18a1,1,0,0,0,.07.38,1.46,1.46,0,0,0,.22.33A1,1,0,0,0,12,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13,18a1,1,0,0,0-.08-.38A1,1,0,0,0,12.71,17.29ZM8.55,13.17a.56.56,0,0,0-.17-.09A.6.6,0,0,0,8.19,13a.86.86,0,0,0-.39,0l-.18.06-.18.09-.15.12A1.05,1.05,0,0,0,7,14a1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21A1,1,0,0,0,9,14a1.05,1.05,0,0,0-.29-.71Zm.16,4.12a1,1,0,0,0-.33-.21A1,1,0,0,0,7.8,17l-.18.06a.76.76,0,0,0-.18.09,1.58,1.58,0,0,0-.15.12,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,8,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,8.71,17.29Zm2.91-4.21a1,1,0,0,0-.33.21A1.05,1.05,0,0,0,11,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,11.62,13.08Zm5.09,4.21a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,16,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1,1,0,0,0,16.71,17.29ZM16,5H8A1,1,0,0,0,7,6v4a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V6A1,1,0,0,0,16,5ZM15,9H9V7h6Zm3-8H6A3,3,0,0,0,3,4V20a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V4A3,3,0,0,0,18,1Zm1,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V4A1,1,0,0,1,6,3H18a1,1,0,0,1,1,1Zm-2.45-6.83a.56.56,0,0,0-.17-.09.6.6,0,0,0-.19-.06.86.86,0,0,0-.39,0l-.18.06-.18.09-.15.12A1.05,1.05,0,0,0,15,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,17,14a1.05,1.05,0,0,0-.29-.71Z' - })); -}; - -UilCalculator.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalculator; \ No newline at end of file diff --git a/icons/uil-calendar-alt.js b/icons/uil-calendar-alt.js deleted file mode 100644 index 40f696be..00000000 --- a/icons/uil-calendar-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalendarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,19a1,1,0,1,0-1-1A1,1,0,0,0,12,19Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,19Zm0-4a1,1,0,1,0-1-1A1,1,0,0,0,17,15Zm-5,0a1,1,0,1,0-1-1A1,1,0,0,0,12,15ZM19,3H18V2a1,1,0,0,0-2,0V3H8V2A1,1,0,0,0,6,2V3H5A3,3,0,0,0,2,6V20a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11H20ZM20,9H4V6A1,1,0,0,1,5,5H6V6A1,1,0,0,0,8,6V5h8V6a1,1,0,0,0,2,0V5h1a1,1,0,0,1,1,1ZM7,15a1,1,0,1,0-1-1A1,1,0,0,0,7,15Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,7,19Z' - })); -}; - -UilCalendarAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalendarAlt; \ No newline at end of file diff --git a/icons/uil-calendar-slash.js b/icons/uil-calendar-slash.js deleted file mode 100644 index 56b07aaf..00000000 --- a/icons/uil-calendar-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalendarSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.66,7H15V8a1,1,0,0,0,2,0V7h1a1,1,0,0,1,1,1v3H17.66a1,1,0,0,0,0,2H19v1.34a1,1,0,1,0,2,0V8a3,3,0,0,0-3-3H17V4a1,1,0,0,0-2,0V5H11.66a1,1,0,0,0,0,2ZM21.71,20.29l-1.6-1.6h0L3.71,2.29A1,1,0,0,0,2.29,3.71L4.2,5.61A3,3,0,0,0,3,8V18a3,3,0,0,0,3,3H18a3,3,0,0,0,1.29-.3l1,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,8a1,1,0,0,1,.66-.93L9.59,11H5ZM6,19a1,1,0,0,1-1-1V13h6.59l6,6Z' - })); -}; - -UilCalendarSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalendarSlash; \ No newline at end of file diff --git a/icons/uil-calendar.js b/icons/uil-calendar.js deleted file mode 100644 index 6e9c4a15..00000000 --- a/icons/uil-calendar.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalendar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H17V3a1,1,0,0,0-2,0V4H9V3A1,1,0,0,0,7,3V4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm1,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H20Zm0-9H4V7A1,1,0,0,1,5,6H7V7A1,1,0,0,0,9,7V6h6V7a1,1,0,0,0,2,0V6h2a1,1,0,0,1,1,1Z' - })); -}; - -UilCalendar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalendar; \ No newline at end of file diff --git a/icons/uil-calling.js b/icons/uil-calling.js deleted file mode 100644 index 65157dc1..00000000 --- a/icons/uil-calling.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCalling = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.47,9a1,1,0,1,0-1-1A1,1,0,0,0,20.47,9Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,17.47,9Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,14.47,9ZM18.91,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.48,12.48,0,0,1-2.67-2,12.83,12.83,0,0,1-2-2.66L10,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.23-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-2.24,1,3,3,0,0,0-.73,2.39A19,19,0,0,0,18,21.91a2.56,2.56,0,0,0,.39,0,3,3,0,0,0,3-3v-3A3,3,0,0,0,18.91,13Zm.49,6a1,1,0,0,1-1.15,1,17.12,17.12,0,0,1-9.87-4.85A17.14,17.14,0,0,1,3.54,5.22a1,1,0,0,1,.25-.82,1,1,0,0,1,.74-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.56-.52l.63-1.4a13.69,13.69,0,0,0,1.58.46c.26.06.54.11.81.15a1,1,0,0,1,.78,1Z' - })); -}; - -UilCalling.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCalling; \ No newline at end of file diff --git a/icons/uil-camera-change.js b/icons/uil-camera-change.js deleted file mode 100644 index a68509c3..00000000 --- a/icons/uil-camera-change.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCameraChange = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.29,5.21l1.5,1.5a1,1,0,0,0,1.42,0,1,1,0,0,0,.13-1.21H19a1,1,0,0,0,0-2H15.34a1,1,0,0,0-.13-1.21,1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,12.29,5.21ZM22.92,9.12a1,1,0,0,0-.21-.33l-1.5-1.5a1,1,0,0,0-1.42,0,1,1,0,0,0-.13,1.21H16a1,1,0,0,0,0,2h3.66a1,1,0,0,0,.13,1.21,1,1,0,0,0,1.42,0l1.5-1.5a1,1,0,0,0,.21-.33A1,1,0,0,0,22.92,9.12ZM11,10a4,4,0,1,0,4,4A4,4,0,0,0,11,10Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,11,16Zm9-3a1,1,0,0,0-1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H6a1,1,0,0,0,1-.69l.54-1.62A1,1,0,0,1,8.44,7H10a1,1,0,0,0,0-2H8.44A3,3,0,0,0,5.59,7.06L5.28,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V14A1,1,0,0,0,20,13Z' - })); -}; - -UilCameraChange.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCameraChange; \ No newline at end of file diff --git a/icons/uil-camera-plus.js b/icons/uil-camera-plus.js deleted file mode 100644 index 7b0bdd5a..00000000 --- a/icons/uil-camera-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCameraPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,10.5a1,1,0,0,0-1,1v7a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H6a1,1,0,0,0,1-.68l.54-1.64a1,1,0,0,1,.95-.68H14a1,1,0,0,0,0-2H8.44A3,3,0,0,0,5.6,6.55l-.32,1H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3v-7A1,1,0,0,0,20,10.5Zm-9-1a4,4,0,1,0,4,4A4,4,0,0,0,11,9.5Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,11,15.5Zm11-11H21v-1a1,1,0,0,0-2,0v1H18a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Z' - })); -}; - -UilCameraPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCameraPlus; \ No newline at end of file diff --git a/icons/uil-camera-slash.js b/icons/uil-camera-slash.js deleted file mode 100644 index 541f4088..00000000 --- a/icons/uil-camera-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCameraSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.71,2.29A1,1,0,0,0,2.29,3.71L5.09,6.5H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19.08l1.21,1.22a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6.49,9.33,2.68,2.68a2,2,0,0,1-.88.2,2,2,0,0,1-2-2A2,2,0,0,1,10.2,11.62ZM5,18.5a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H7.07l1.7,1.69A3.92,3.92,0,0,0,8,12.5a4,4,0,0,0,4,4,3.92,3.92,0,0,0,2.32-.77l2.77,2.77Zm14-12H17.72l-.31-1a3,3,0,0,0-2.85-2h-4.4a1,1,0,0,0,0,2h4.4a1,1,0,0,1,.95.68l.54,1.63A1,1,0,0,0,17,8.5h2a1,1,0,0,1,1,1v5.84a1,1,0,1,0,2,0V9.5A3,3,0,0,0,19,6.5Z' - })); -}; - -UilCameraSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCameraSlash; \ No newline at end of file diff --git a/icons/uil-camera.js b/icons/uil-camera.js deleted file mode 100644 index 5fd5cb1e..00000000 --- a/icons/uil-camera.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCamera = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6.5H17.72l-.32-1a3,3,0,0,0-2.84-2H9.44A3,3,0,0,0,6.6,5.55l-.32,1H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-8A3,3,0,0,0,19,6.5Zm1,11a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H7a1,1,0,0,0,1-.68l.54-1.64a1,1,0,0,1,.95-.68h5.12a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,17,8.5h2a1,1,0,0,1,1,1Zm-8-9a4,4,0,1,0,4,4A4,4,0,0,0,12,8.5Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14.5Z' - })); -}; - -UilCamera.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCamera; \ No newline at end of file diff --git a/icons/uil-cancel.js b/icons/uil-cancel.js deleted file mode 100644 index 1875018b..00000000 --- a/icons/uil-cancel.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCancel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.77,11.36l-5-6A1,1,0,0,0,16,5H5A3,3,0,0,0,2,8v8a3,3,0,0,0,3,3H16a1,1,0,0,0,.77-.36l5-6A1,1,0,0,0,21.77,11.36ZM15.53,17H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7H15.53l4.17,5ZM12.71,9.29a1,1,0,0,0-1.42,0L10,10.59,8.71,9.29a1,1,0,1,0-1.42,1.42L8.59,12l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L10,13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,12l1.3-1.29A1,1,0,0,0,12.71,9.29Z' - })); -}; - -UilCancel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCancel; \ No newline at end of file diff --git a/icons/uil-capsule.js b/icons/uil-capsule.js deleted file mode 100644 index ff22bd82..00000000 --- a/icons/uil-capsule.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCapsule = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.5,4.5a5.12,5.12,0,0,0-7.24,0L4.5,12.26a5.12,5.12,0,1,0,7.24,7.24l7.76-7.76A5.12,5.12,0,0,0,19.5,4.5ZM10.32,18.09a3.21,3.21,0,0,1-4.41,0,3.13,3.13,0,0,1,0-4.41L9.09,10.5l4.41,4.41Zm7.77-7.77L14.91,13.5,10.5,9.09l3.18-3.18a3.12,3.12,0,0,1,4.41,4.41Z' - })); -}; - -UilCapsule.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCapsule; \ No newline at end of file diff --git a/icons/uil-capture.js b/icons/uil-capture.js deleted file mode 100644 index a348fcf6..00000000 --- a/icons/uil-capture.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCapture = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2Zm2,13a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15Z' - })); -}; - -UilCapture.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCapture; \ No newline at end of file diff --git a/icons/uil-car-sideview.js b/icons/uil-car-sideview.js deleted file mode 100644 index 5a134abb..00000000 --- a/icons/uil-car-sideview.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCarSideview = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,9.5h-.32L17.43,6.38A3,3,0,0,0,14.65,4.5h-6A3,3,0,0,0,5.7,6.91L5.18,9.5H5a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1H4a3,3,0,0,0,6,0h4a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1v-3A3,3,0,0,0,19,9.5Zm-6-3h1.65a1,1,0,0,1,.92.63l.95,2.37H13Zm-5.34.8a1,1,0,0,1,1-.8H11v3H7.22ZM7,17.5a1,1,0,1,1,1-1A1,1,0,0,1,7,17.5Zm10,0a1,1,0,1,1,1-1A1,1,0,0,1,17,17.5Zm3-3h-.78a3,3,0,0,0-4.44,0H9.22a3,3,0,0,0-4.44,0H4v-2a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCarSideview.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCarSideview; \ No newline at end of file diff --git a/icons/uil-car-slash.js b/icons/uil-car-slash.js deleted file mode 100644 index a5430724..00000000 --- a/icons/uil-car-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCarSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,13a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM19.76,9.11,18.41,5.05a3,3,0,0,0-2.85-2H9.66a1,1,0,0,0,0,2h5.9a1,1,0,0,1,1,.69L17.61,9H15.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v3.34a1,1,0,1,0,2,0V12A3,3,0,0,0,19.76,9.11Zm-16-6.82A1,1,0,0,0,2.29,3.71L5.11,6.52,4.24,9.11A3,3,0,0,0,2,12v4a3,3,0,0,0,2,2.82V20a1,1,0,0,0,2,0V19H17.59l.41.41V20a1,1,0,0,0,1,1,.91.91,0,0,0,.46-.13l.83.84a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm3,5.81.9.9H6.39ZM5,17a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H9.59l2,2H11a1,1,0,0,0,0,2h2a.91.91,0,0,0,.46-.13L15.59,17Z' - })); -}; - -UilCarSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCarSlash; \ No newline at end of file diff --git a/icons/uil-car-wash.js b/icons/uil-car-wash.js deleted file mode 100644 index 3cee78e6..00000000 --- a/icons/uil-car-wash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCarWash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.5,4a1,1,0,0,0,.71-.29l1-1A1,1,0,0,0,7.79,1.29l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,7.5,4Zm4,0a1,1,0,0,0,.71-.29l1-1a1,1,0,1,0-1.42-1.42l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,11.5,4Zm4,0a1,1,0,0,0,.71-.29l1-1a1,1,0,1,0-1.42-1.42l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,15.5,4Zm2.42,11.62a.76.76,0,0,0-.09-.18l-.12-.15-.15-.12a.76.76,0,0,0-.18-.09.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7.91.91,0,0,0,.33.22A1,1,0,0,0,17,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,17.92,15.62Zm1.84-4.51L18.4,7.05a3,3,0,0,0-2.84-2H8.44A3,3,0,0,0,5.6,7.05L4.24,11.11A3,3,0,0,0,2,14v4a3,3,0,0,0,2,2.82V22a1,1,0,0,0,2,0V21H18v1a1,1,0,0,0,2,0V20.82A3,3,0,0,0,22,18V14A3,3,0,0,0,19.76,11.11ZM7.49,7.68A1,1,0,0,1,8.44,7h7.12a1,1,0,0,1,1,.68L17.61,11H6.39ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-7-3H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm-5.08.62a.76.76,0,0,0-.09-.18l-.12-.15a1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18A.64.64,0,0,0,6,15.8,1.36,1.36,0,0,0,6,16a1,1,0,0,0,1.71.7A1,1,0,0,0,8,16a1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,7.92,15.62Z' - })); -}; - -UilCarWash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCarWash; \ No newline at end of file diff --git a/icons/uil-car.js b/icons/uil-car.js deleted file mode 100644 index e1aa7662..00000000 --- a/icons/uil-car.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.62,13.08a.9.9,0,0,0-.54.54,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,8,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,6.62,13.08Zm13.14-4L18.4,5.05a3,3,0,0,0-2.84-2H8.44A3,3,0,0,0,5.6,5.05L4.24,9.11A3,3,0,0,0,2,12v4a3,3,0,0,0,2,2.82V20a1,1,0,0,0,2,0V19H18v1a1,1,0,0,0,2,0V18.82A3,3,0,0,0,22,16V12A3,3,0,0,0,19.76,9.11ZM7.49,5.68A1,1,0,0,1,8.44,5h7.12a1,1,0,0,1,1,.68L17.61,9H6.39ZM20,16a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-3.38-2.92a.9.9,0,0,0-.54.54,1,1,0,0,0,1.3,1.3.9.9,0,0,0,.54-.54A.84.84,0,0,0,18,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,16.62,13.08ZM13,13H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' - })); -}; - -UilCar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCar; \ No newline at end of file diff --git a/icons/uil-card-atm.js b/icons/uil-card-atm.js deleted file mode 100644 index cb8b946e..00000000 --- a/icons/uil-card-atm.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCardAtm = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4.5H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,4.5Zm1,12a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1v-9a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-4-6a3,3,0,0,0-1.51.42,3,3,0,1,0,0,5.16A3,3,0,1,0,16,10.5Zm-2.83,4a1,1,0,0,1-.17,0,1,1,0,0,1,0-2,1,1,0,0,1,.17,0,2.8,2.8,0,0,0,0,1.92Zm2.83,0a1,1,0,1,1,1-1A1,1,0,0,1,16,14.5Z' - })); -}; - -UilCardAtm.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCardAtm; \ No newline at end of file diff --git a/icons/uil-caret-right.js b/icons/uil-caret-right.js deleted file mode 100644 index 2abaf89c..00000000 --- a/icons/uil-caret-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCaretRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.5,11.13,5.5,3.05a1,1,0,0,0-1,0,1,1,0,0,0-.5.87V20.08a1,1,0,0,0,.5.87,1,1,0,0,0,1,0l14-8.08a1,1,0,0,0,0-1.74ZM6,18.35V5.65L17,12Z' - })); -}; - -UilCaretRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCaretRight; \ No newline at end of file diff --git a/icons/uil-cell.js b/icons/uil-cell.js deleted file mode 100644 index 9268ffa7..00000000 --- a/icons/uil-cell.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCell = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.49,4.73,17,2.17a1,1,0,0,0-1,0L12,4.45,8,2.17a1,1,0,0,0-1,0L2.51,4.73A1,1,0,0,0,2,5.6v5.12a1,1,0,0,0,.51.87l4,2.27V18.4a1,1,0,0,0,.51.87l4.5,2.56a1,1,0,0,0,1,0L17,19.27a1,1,0,0,0,.51-.87V13.86l4-2.27a1,1,0,0,0,.51-.87V5.6A1,1,0,0,0,21.49,4.73ZM4,10.14v-4l3.5-2,3.5,2v4l-3.5,2Zm11.5,7.68-3.5,2-3.5-2v-4l3.5-2,3.5,2ZM20,10.14l-3.5,2-3.5-2v-4l3.5-2,3.5,2Z' - })); -}; - -UilCell.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCell; \ No newline at end of file diff --git a/icons/uil-celsius.js b/icons/uil-celsius.js deleted file mode 100644 index 8df227a3..00000000 --- a/icons/uil-celsius.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCelsius = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,19H15a3,3,0,0,1-3-3V8a3,3,0,0,1,3-3h6a1,1,0,0,0,0-2H15a5,5,0,0,0-5,5v8a5,5,0,0,0,5,5h6a1,1,0,0,0,0-2ZM5,3A3,3,0,1,0,8,6,3,3,0,0,0,5,3ZM5,7A1,1,0,1,1,6,6,1,1,0,0,1,5,7Z' - })); -}; - -UilCelsius.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCelsius; \ No newline at end of file diff --git a/icons/uil-channel-add.js b/icons/uil-channel-add.js deleted file mode 100644 index 058298c4..00000000 --- a/icons/uil-channel-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChannelAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18 7h1v1a1 1 0 0 0 2 0V7h1a1 1 0 0 0 0-2h-1V4a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2Zm2 9a3 3 0 0 0-1.73.56l-2.45-1.45A3.74 3.74 0 0 0 16 14a4 4 0 0 0-3-3.86V7.82a3 3 0 1 0-2 0v2.32A4 4 0 0 0 8 14a3.74 3.74 0 0 0 .18 1.11l-2.45 1.45A3 3 0 0 0 4 16a3 3 0 1 0 3 3 3 3 0 0 0-.12-.8l2.3-1.37a4 4 0 0 0 5.64 0l2.3 1.37A3 3 0 1 0 20 16ZM4 20a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm8-16a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 12a2 2 0 1 1 2-2 2 2 0 0 1-2 2Zm8 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' - })); -}; - -UilChannelAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChannelAdd; \ No newline at end of file diff --git a/icons/uil-channel.js b/icons/uil-channel.js deleted file mode 100644 index 710e4f2c..00000000 --- a/icons/uil-channel.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChannel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20 16a3 3 0 0 0-1.73.56l-2.45-1.45A3.74 3.74 0 0 0 16 14a4 4 0 0 0-3-3.86V7.82a3 3 0 1 0-2 0v2.32A4 4 0 0 0 8 14a3.74 3.74 0 0 0 .18 1.11l-2.45 1.45A3 3 0 0 0 4 16a3 3 0 1 0 3 3 3 3 0 0 0-.12-.8l2.3-1.37a4 4 0 0 0 5.64 0l2.3 1.37A3 3 0 1 0 20 16ZM4 20a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm8-16a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 12a2 2 0 1 1 2-2 2 2 0 0 1-2 2Zm8 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' - })); -}; - -UilChannel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChannel; \ No newline at end of file diff --git a/icons/uil-chart-bar-alt.js b/icons/uil-chart-bar-alt.js deleted file mode 100644 index 93ca4b07..00000000 --- a/icons/uil-chart-bar-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartBarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H4V18H7a1,1,0,0,0,0-2H4V14H15a1,1,0,0,0,0-2H4V10h7a1,1,0,0,0,0-2H4V6H19a1,1,0,0,0,0-2H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' - })); -}; - -UilChartBarAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartBarAlt; \ No newline at end of file diff --git a/icons/uil-chart-bar.js b/icons/uil-chart-bar.js deleted file mode 100644 index 137920bc..00000000 --- a/icons/uil-chart-bar.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartBar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H20V5a1,1,0,0,0-2,0V20H16V13a1,1,0,0,0-2,0v7H12V9a1,1,0,0,0-2,0V20H8V17a1,1,0,0,0-2,0v3H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' - })); -}; - -UilChartBar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartBar; \ No newline at end of file diff --git a/icons/uil-chart-down.js b/icons/uil-chart-down.js deleted file mode 100644 index d8a7669b..00000000 --- a/icons/uil-chart-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11a1,1,0,0,0-1,1v2.59l-6.29-6.3a1,1,0,0,0-1.42,0L9,11.59,3.71,6.29A1,1,0,0,0,2.29,7.71l6,6a1,1,0,0,0,1.42,0L13,10.41,18.59,16H16a1,1,0,0,0,0,2h5a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,17V12A1,1,0,0,0,21,11Z' - })); -}; - -UilChartDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartDown; \ No newline at end of file diff --git a/icons/uil-chart-growth-alt.js b/icons/uil-chart-growth-alt.js deleted file mode 100644 index dda5d04f..00000000 --- a/icons/uil-chart-growth-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartGrowthAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H4V18H7a1,1,0,0,0,0-2H4V14h7a1,1,0,0,0,0-2H4V10H15a1,1,0,0,0,0-2H4V6H19a1,1,0,0,0,0-2H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' - })); -}; - -UilChartGrowthAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartGrowthAlt; \ No newline at end of file diff --git a/icons/uil-chart-growth.js b/icons/uil-chart-growth.js deleted file mode 100644 index 3557d60e..00000000 --- a/icons/uil-chart-growth.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartGrowth = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H20V5a1,1,0,0,0-2,0V20H16V9a1,1,0,0,0-2,0V20H12V13a1,1,0,0,0-2,0v7H8V17a1,1,0,0,0-2,0v3H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' - })); -}; - -UilChartGrowth.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartGrowth; \ No newline at end of file diff --git a/icons/uil-chart-line.js b/icons/uil-chart-line.js deleted file mode 100644 index 03eab95c..00000000 --- a/icons/uil-chart-line.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,16a1.5,1.5,0,0,0,1.5-1.5.77.77,0,0,0,0-.15l2.79-2.79.23,0,.23,0,1.61,1.61s0,.05,0,.08a1.5,1.5,0,1,0,3,0v-.08L20,9.5h0A1.5,1.5,0,1,0,18.5,8a.77.77,0,0,0,0,.15l-3.61,3.61h-.16L13,10a1.49,1.49,0,0,0-3,0L7,13H7a1.5,1.5,0,0,0,0,3Zm13.5,4H3.5V3a1,1,0,0,0-2,0V21a1,1,0,0,0,1,1h18a1,1,0,0,0,0-2Z' - })); -}; - -UilChartLine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartLine; \ No newline at end of file diff --git a/icons/uil-chart-pie-alt.js b/icons/uil-chart-pie-alt.js deleted file mode 100644 index 7a0f1441..00000000 --- a/icons/uil-chart-pie-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartPieAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,12h-7V5c0-0.6-0.4-1-1-1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9C20,12.4,19.6,12,19,12z M12,19.9c-3.8,0.6-7.4-2.1-7.9-5.9C3.5,10.2,6.2,6.6,10,6.1V13c0,0.6,0.4,1,1,1h6.9C17.5,17.1,15.1,19.5,12,19.9z M15,2c-0.6,0-1,0.4-1,1v6c0,0.6,0.4,1,1,1h6c0.6,0,1-0.4,1-1C22,5.1,18.9,2,15,2z M16,8V4.1C18,4.5,19.5,6,19.9,8H16z' - })); -}; - -UilChartPieAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartPieAlt; \ No newline at end of file diff --git a/icons/uil-chart-pie.js b/icons/uil-chart-pie.js deleted file mode 100644 index 7bb313ef..00000000 --- a/icons/uil-chart-pie.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChartPie = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2a10,10,0,1,0,4.93,18.69l.07,0,.05,0A10,10,0,0,0,12,2Zm1,2.07A8,8,0,0,1,19.93,11H13ZM12,20A8,8,0,0,1,11,4.07V12a1.09,1.09,0,0,0,.07.35l0,.08,0,.07,4,6.87A7.81,7.81,0,0,1,12,20Zm4.83-1.64L13.73,13h6.2A8,8,0,0,1,16.83,18.36Z' - })); -}; - -UilChartPie.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChartPie; \ No newline at end of file diff --git a/icons/uil-chart.js b/icons/uil-chart.js deleted file mode 100644 index 466331f8..00000000 --- a/icons/uil-chart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6a1,1,0,0,0-1,1V17a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6ZM7,12a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V13A1,1,0,0,0,7,12Zm10-2a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V11A1,1,0,0,0,17,10Zm2-8H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilChart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChart; \ No newline at end of file diff --git a/icons/uil-chat-bubble-user.js b/icons/uil-chat-bubble-user.js deleted file mode 100644 index af7eb352..00000000 --- a/icons/uil-chat-bubble-user.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChatBubbleUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.58,11.3a3.24,3.24,0,0,0,.71-2,3.29,3.29,0,0,0-6.58,0,3.24,3.24,0,0,0,.71,2,5,5,0,0,0-2,2.31,1,1,0,1,0,1.84.78A3,3,0,0,1,12,12.57h0a3,3,0,0,1,2.75,1.82,1,1,0,0,0,.92.61,1.09,1.09,0,0,0,.39-.08,1,1,0,0,0,.53-1.31A5,5,0,0,0,14.58,11.3ZM12,10.57h0a1.29,1.29,0,1,1,1.29-1.28A1.29,1.29,0,0,1,12,10.57ZM18,2H6A3,3,0,0,0,3,5V16a3,3,0,0,0,3,3H8.59l2.7,2.71A1,1,0,0,0,12,22a1,1,0,0,0,.65-.24L15.87,19H18a3,3,0,0,0,3-3V5A3,3,0,0,0,18,2Zm1,14a1,1,0,0,1-1,1H15.5a1,1,0,0,0-.65.24l-2.8,2.4L9.71,17.29A1,1,0,0,0,9,17H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1Z' - })); -}; - -UilChatBubbleUser.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChatBubbleUser; \ No newline at end of file diff --git a/icons/uil-chat-info.js b/icons/uil-chat-info.js deleted file mode 100644 index 52fa544e..00000000 --- a/icons/uil-chat-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChatInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.29,3.71a1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,21,3a1,1,0,0,0-.29-.71l-.15-.12a.76.76,0,0,0-.18-.09,1,1,0,0,0-1.09.21A1,1,0,0,0,19,3a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,19.29,3.71ZM20,5a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V6A1,1,0,0,0,20,5Zm.06,8a1,1,0,0,0-1.11.87A7,7,0,0,1,12,20H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,12,6a6.91,6.91,0,0,1,3.49.94,1,1,0,0,0,1-1.72A8.84,8.84,0,0,0,12,4,9,9,0,0,0,5,18.62L3.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,22h8a9,9,0,0,0,8.93-7.88A1,1,0,0,0,20.06,13Z' - })); -}; - -UilChatInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChatInfo; \ No newline at end of file diff --git a/icons/uil-chat.js b/icons/uil-chat.js deleted file mode 100644 index 5f1defe9..00000000 --- a/icons/uil-chat.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilChat = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,2H6A3,3,0,0,0,3,5V16a3,3,0,0,0,3,3H8.59l2.7,2.71A1,1,0,0,0,12,22a1,1,0,0,0,.65-.24L15.87,19H18a3,3,0,0,0,3-3V5A3,3,0,0,0,18,2Zm1,14a1,1,0,0,1-1,1H15.5a1,1,0,0,0-.65.24l-2.8,2.4L9.71,17.29A1,1,0,0,0,9,17H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1Z' - })); -}; - -UilChat.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilChat; \ No newline at end of file diff --git a/icons/uil-check-circle.js b/icons/uil-check-circle.js deleted file mode 100644 index ba5b69b1..00000000 --- a/icons/uil-check-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCheckCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.72,8.79l-4.29,4.3L8.78,11.44a1,1,0,1,0-1.41,1.41l2.35,2.36a1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l5-5a1,1,0,0,0,0-1.42A1,1,0,0,0,14.72,8.79ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilCheckCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCheckCircle; \ No newline at end of file diff --git a/icons/uil-check-square.js b/icons/uil-check-square.js deleted file mode 100644 index cd3e0a55..00000000 --- a/icons/uil-check-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCheckSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.21,14.75a1,1,0,0,0,1.42,0l4.08-4.08a1,1,0,0,0-1.42-1.42l-3.37,3.38L9.71,11.41a1,1,0,0,0-1.42,1.42ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilCheckSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCheckSquare; \ No newline at end of file diff --git a/icons/uil-check.js b/icons/uil-check.js deleted file mode 100644 index f95a9a2f..00000000 --- a/icons/uil-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z' - })); -}; - -UilCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCheck; \ No newline at end of file diff --git a/icons/uil-circle-layer.js b/icons/uil-circle-layer.js deleted file mode 100644 index ea563880..00000000 --- a/icons/uil-circle-layer.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCircleLayer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,2A7,7,0,0,0,8.12,7.74,6,6,0,0,0,5,12.41,5,5,0,1,0,11.59,19a6,6,0,0,0,4.67-3.09A7,7,0,0,0,15,2ZM10,17.43c0,.1,0,.2-.07.31h0a3,3,0,1,1-3.64-3.64h0L6.57,14A2.94,2.94,0,0,1,10,17.43Zm5-3.67a1.8,1.8,0,0,1-.05.19,3.74,3.74,0,0,1-.17.54,4,4,0,0,1-2.7,2.4c0-.18,0-.35-.06-.53s0-.27,0-.4-.12-.38-.18-.57-.07-.24-.12-.36a4.21,4.21,0,0,0-.3-.55c0-.09-.09-.19-.15-.28a5.3,5.3,0,0,0-.6-.73l-.2-.17a5.52,5.52,0,0,0-.53-.43,2.9,2.9,0,0,0-.34-.19,4,4,0,0,0-.5-.27,2.34,2.34,0,0,0-.4-.13,3.13,3.13,0,0,0-.52-.16c-.14,0-.29,0-.44-.06L7.13,12A4,4,0,0,1,9.52,9.3a3.27,3.27,0,0,1,.53-.17l.2-.05A3.74,3.74,0,0,1,11,9a4,4,0,0,1,4,4A3.84,3.84,0,0,1,14.92,13.76Zm2-.16q0-.3,0-.6a6,6,0,0,0-6-6q-.3,0-.6,0A5,5,0,1,1,17,13.6Z' - })); -}; - -UilCircleLayer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCircleLayer; \ No newline at end of file diff --git a/icons/uil-circle.js b/icons/uil-circle.js deleted file mode 100644 index 27812071..00000000 --- a/icons/uil-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCircle; \ No newline at end of file diff --git a/icons/uil-circuit.js b/icons/uil-circuit.js deleted file mode 100644 index 9329d483..00000000 --- a/icons/uil-circuit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCircuit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,13a1,1,0,1,0,1,1A1,1,0,0,0,10,13Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,10,9Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,14,9Zm7,4a1,1,0,0,0,0-2H19V9h2a1,1,0,0,0,0-2H18.82A3,3,0,0,0,17,5.18V3a1,1,0,0,0-2,0V5H13V3a1,1,0,0,0-2,0V5H9V3A1,1,0,0,0,7,3V5.18A3,3,0,0,0,5.18,7H3A1,1,0,0,0,3,9H5v2H3a1,1,0,0,0,0,2H5v2H3a1,1,0,0,0,0,2H5.18A3,3,0,0,0,7,18.82V21a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V18.82A3,3,0,0,0,18.82,17H21a1,1,0,0,0,0-2H19V13Zm-4,3a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8A1,1,0,0,1,8,7h8a1,1,0,0,1,1,1Zm-3-3a1,1,0,1,0,1,1A1,1,0,0,0,14,13Z' - })); -}; - -UilCircuit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCircuit; \ No newline at end of file diff --git a/icons/uil-clapper-board.js b/icons/uil-clapper-board.js deleted file mode 100644 index 8dccba23..00000000 --- a/icons/uil-clapper-board.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClapperBoard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM16.09,4l-4,4H7.91l4-4ZM4,5A1,1,0,0,1,5,4H9.09l-4,4H4ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V10H20ZM20,8H14.91l4-4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilClapperBoard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClapperBoard; \ No newline at end of file diff --git a/icons/uil-clinic-medical.js b/icons/uil-clinic-medical.js deleted file mode 100644 index 1805b91a..00000000 --- a/icons/uil-clinic-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClinicMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11 12v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2h-1v-1a1 1 0 0 0-2 0Zm10.664-1.748-9-8a.999.999 0 0 0-1.328 0l-9 8a1 1 0 0 0 1.328 1.496L4 11.449V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.551l.336.299a1 1 0 0 0 1.328-1.496ZM18 20H6V9.671l6-5.333 6 5.333Z' - })); -}; - -UilClinicMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClinicMedical; \ No newline at end of file diff --git a/icons/uil-clipboard-alt.js b/icons/uil-clipboard-alt.js deleted file mode 100644 index e5ea667d..00000000 --- a/icons/uil-clipboard-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClipboardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H11a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm2-6H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Z' - })); -}; - -UilClipboardAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClipboardAlt; \ No newline at end of file diff --git a/icons/uil-clipboard-blank.js b/icons/uil-clipboard-blank.js deleted file mode 100644 index 17ff2af1..00000000 --- a/icons/uil-clipboard-blank.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClipboardBlank = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,4H16a2,2,0,0,0-2-2H10A2,2,0,0,0,8,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,4h4V5h0V6H10V4Zm8,15a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2h1a1,1,0,0,1,1,1Z' - })); -}; - -UilClipboardBlank.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClipboardBlank; \ No newline at end of file diff --git a/icons/uil-clipboard-notes.js b/icons/uil-clipboard-notes.js deleted file mode 100644 index 2f81420d..00000000 --- a/icons/uil-clipboard-notes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClipboardNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,14H9a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2ZM17,4H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Zm-3-9H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilClipboardNotes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClipboardNotes; \ No newline at end of file diff --git a/icons/uil-clipboard.js b/icons/uil-clipboard.js deleted file mode 100644 index c7baaf54..00000000 --- a/icons/uil-clipboard.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClipboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,4H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Z' - })); -}; - -UilClipboard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClipboard; \ No newline at end of file diff --git a/icons/uil-clock-eight.js b/icons/uil-clock-eight.js deleted file mode 100644 index 9a12041c..00000000 --- a/icons/uil-clock-eight.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockEight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6a.99974.99974,0,0,0-1,1v4.38379L8.56934,12.60693a.99968.99968,0,1,0,.89843,1.78614l2.98145-1.5A.99874.99874,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilClockEight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockEight; \ No newline at end of file diff --git a/icons/uil-clock-five.js b/icons/uil-clock-five.js deleted file mode 100644 index 40fe7890..00000000 --- a/icons/uil-clock-five.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockFive = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm1-8.251V7a1,1,0,0,0-2,0v5a1.00586,1.00586,0,0,0,.11816.47217l1.5,2.79883a1.00029,1.00029,0,0,0,1.76368-.94434Z' - })); -}; - -UilClockFive.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockFive; \ No newline at end of file diff --git a/icons/uil-clock-nine.js b/icons/uil-clock-nine.js deleted file mode 100644 index a7b95461..00000000 --- a/icons/uil-clock-nine.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockNine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6a.99974.99974,0,0,0-1,1v4H9a1,1,0,0,0,0,2h3a.99974.99974,0,0,0,1-1V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilClockNine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockNine; \ No newline at end of file diff --git a/icons/uil-clock-seven.js b/icons/uil-clock-seven.js deleted file mode 100644 index 17ca4d50..00000000 --- a/icons/uil-clock-seven.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockSeven = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20ZM12,6a.99974.99974,0,0,0-1,1v4.749L9.61816,14.32666a1.00029,1.00029,0,0,0,1.76368.94434l1.5-2.79883A1.00586,1.00586,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Z' - })); -}; - -UilClockSeven.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockSeven; \ No newline at end of file diff --git a/icons/uil-clock-ten.js b/icons/uil-clock-ten.js deleted file mode 100644 index 144837db..00000000 --- a/icons/uil-clock-ten.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockTen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6a.99974.99974,0,0,0-1,1v3.26758L9.90234,9.63379a1.00016,1.00016,0,0,0-1,1.73242l2.59766,1.5A1,1,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilClockTen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockTen; \ No newline at end of file diff --git a/icons/uil-clock-three.js b/icons/uil-clock-three.js deleted file mode 100644 index 2328307c..00000000 --- a/icons/uil-clock-three.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockThree = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,11H13V7a1,1,0,0,0-2,0v5a1,1,0,0,0,1,1h3a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilClockThree.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockThree; \ No newline at end of file diff --git a/icons/uil-clock-two.js b/icons/uil-clock-two.js deleted file mode 100644 index ab82ea7a..00000000 --- a/icons/uil-clock-two.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClockTwo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20ZM14.09814,9.63379,13,10.26807V7a1,1,0,0,0-2,0v5a1.00025,1.00025,0,0,0,1.5.86621l2.59814-1.5a1.00016,1.00016,0,1,0-1-1.73242Z' - })); -}; - -UilClockTwo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClockTwo; \ No newline at end of file diff --git a/icons/uil-clock.js b/icons/uil-clock.js deleted file mode 100644 index a13a55eb..00000000 --- a/icons/uil-clock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.09814,12.63379,13,11.42285V7a1,1,0,0,0-2,0v5a.99985.99985,0,0,0,.5.86621l2.59814,1.5a1.00016,1.00016,0,1,0,1-1.73242ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilClock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClock; \ No newline at end of file diff --git a/icons/uil-closed-captioning-slash.js b/icons/uil-closed-captioning-slash.js deleted file mode 100644 index bc216b86..00000000 --- a/icons/uil-closed-captioning-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClosedCaptioningSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L7.2,8.61A3,3,0,0,0,6,11v2a3,3,0,0,0,5.59,1.5,1,1,0,1,0-1.72-1,1,1,0,0,1-1.58.19A.93.93,0,0,1,8,13V11a1,1,0,0,1,.67-.92L12,13.46A3,3,0,0,0,14.54,16l2.36,2.36A7.92,7.92,0,0,1,12,20Zm6.31-3.1-1.52-1.52a2.94,2.94,0,0,0,.8-.88,1,1,0,1,0-1.72-1,1,1,0,0,1-.55.41L14,12.59V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,12,10.62l-.35-.35a1,1,0,0,0-.1-.79,3.08,3.08,0,0,0-.46-.59,2.94,2.94,0,0,0-1.67-.84L7.1,5.69A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' - })); -}; - -UilClosedCaptioningSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClosedCaptioningSlash; \ No newline at end of file diff --git a/icons/uil-closed-captioning.js b/icons/uil-closed-captioning.js deleted file mode 100644 index 85343b22..00000000 --- a/icons/uil-closed-captioning.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClosedCaptioning = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.24,13.14a1,1,0,0,0-1.37.36,1,1,0,0,1-1.58.19A.93.93,0,0,1,8,13V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,9,8a3,3,0,0,0-3,3v2a3,3,0,0,0,5.59,1.5A1,1,0,0,0,11.24,13.14Zm6,0a1,1,0,0,0-1.37.36,1,1,0,0,1-1.58.19A.93.93,0,0,1,14,13V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,15,8a3,3,0,0,0-3,3v2a3,3,0,0,0,5.59,1.5A1,1,0,0,0,17.24,13.14ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilClosedCaptioning.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClosedCaptioning; \ No newline at end of file diff --git a/icons/uil-cloud-block.js b/icons/uil-cloud-block.js deleted file mode 100644 index 46b98680..00000000 --- a/icons/uil-cloud-block.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72Zm-9.25,6a4,4,0,1,0,5.66,0A4.1,4.1,0,0,0,9.17,13.67ZM10,16.5a2,2,0,0,1,2-2,2.09,2.09,0,0,1,.51.07L10.07,17A2.09,2.09,0,0,1,10,16.5Zm3.41,1.41a2,2,0,0,1-1.91.5L13.93,16a2.09,2.09,0,0,1,.07.51A2,2,0,0,1,13.41,17.91Z' - })); -}; - -UilCloudBlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudBlock; \ No newline at end of file diff --git a/icons/uil-cloud-bookmark.js b/icons/uil-cloud-bookmark.js deleted file mode 100644 index 8bdd980e..00000000 --- a/icons/uil-cloud-bookmark.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,11H10a1,1,0,0,0-1,1v8a1,1,0,0,0,1.56.83l1.94-1.3,1.89,1.26A1,1,0,0,0,15,21a1,1,0,0,0,.44-.1A1,1,0,0,0,16,20V12A1,1,0,0,0,15,11Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.64V13h3Zm4.42-10.9A7,7,0,0,0,5.06,9.11,4,4,0,0,0,6,17a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Z' - })); -}; - -UilCloudBookmark.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudBookmark; \ No newline at end of file diff --git a/icons/uil-cloud-check.js b/icons/uil-cloud-check.js deleted file mode 100644 index 895ab612..00000000 --- a/icons/uil-cloud-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.29,14.19,11,17.48,9.71,16.19a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,0-1.41A1,1,0,0,0,14.29,14.19Zm4.13-5.87a7,7,0,0,0-13.36,1.9,4,4,0,0,0-.38,7.65A1,1,0,1,0,5.32,16,2,2,0,0,1,4,14.1a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.6,1,1,0,0,0,.78.66A3,3,0,0,1,17.75,16,1,1,0,0,0,18,18l.25,0a5,5,0,0,0,.17-9.62Z' - })); -}; - -UilCloudCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudCheck; \ No newline at end of file diff --git a/icons/uil-cloud-computing.js b/icons/uil-cloud-computing.js deleted file mode 100644 index df00e193..00000000 --- a/icons/uil-cloud-computing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudComputing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H18a1,1,0,0,1-1-1V16a5,5,0,0,0,1.42-9.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16H7v3a1,1,0,0,1-1,1H3a1,1,0,0,0,0,2H6a3,3,0,0,0,3-3V16h2v5a1,1,0,0,0,2,0V16h2v3a3,3,0,0,0,3,3h3a1,1,0,0,0,0-2ZM6,14a2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a3,3,0,0,1-3,3Z' - })); -}; - -UilCloudComputing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudComputing; \ No newline at end of file diff --git a/icons/uil-cloud-data-connection.js b/icons/uil-cloud-data-connection.js deleted file mode 100644 index 620dde90..00000000 --- a/icons/uil-cloud-data-connection.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudDataConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18.5H14.82A3,3,0,0,0,13,16.68V13.5h3.17A4.33,4.33,0,0,0,17.47,5,6,6,0,0,0,6.06,6.63,3.5,3.5,0,0,0,7,13.5h4v3.18A3,3,0,0,0,9.18,18.5H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2Zm-14-7a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.79-1.29,1,1,0,0,0,.78.67A2.31,2.31,0,0,1,18.5,9.17a2.34,2.34,0,0,1-2.33,2.33Zm5,9a1,1,0,1,1,1-1A1,1,0,0,1,12,20.5Z' - })); -}; - -UilCloudDataConnection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudDataConnection; \ No newline at end of file diff --git a/icons/uil-cloud-database-tree.js b/icons/uil-cloud-database-tree.js deleted file mode 100644 index f147007e..00000000 --- a/icons/uil-cloud-database-tree.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudDatabaseTree = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.5,14.5a2,2,0,0,0-2-2h-6a2,2,0,0,0-2,2h-3v-3h2.33A3.66,3.66,0,0,0,13,4.37,5,5,0,0,0,3.57,5.65,3,3,0,0,0,4.5,11.5h3v8a1,1,0,0,0,1,1h4a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2v-2a2,2,0,0,0-.28-1,2,2,0,0,0,.28-1Zm-18-5a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.66A1.65,1.65,0,0,1,13.5,7.83,1.67,1.67,0,0,1,11.83,9.5Zm8,9h-3v-2h3a2,2,0,0,0,.28,1A2,2,0,0,0,12.5,18.5Zm2,2v-2h6v2Zm0-4v-2h6v2Z' - })); -}; - -UilCloudDatabaseTree.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudDatabaseTree; \ No newline at end of file diff --git a/icons/uil-cloud-download.js b/icons/uil-cloud-download.js deleted file mode 100644 index 71ca7242..00000000 --- a/icons/uil-cloud-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.29,17.29,13,18.59V13a1,1,0,0,0-2,0v5.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42ZM18.42,6.22A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16a1,1,0,0,0,0-2,2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,1,0,.5,1.94,5,5,0,0,0,.17-9.62Z' - })); -}; - -UilCloudDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudDownload; \ No newline at end of file diff --git a/icons/uil-cloud-drizzle.js b/icons/uil-cloud-drizzle.js deleted file mode 100644 index ce0ca580..00000000 --- a/icons/uil-cloud-drizzle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudDrizzle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19ZM8,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V17A1,1,0,0,0,8,16Zm4-2a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,12,14Zm6.42-7.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,16,11Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V17A1,1,0,0,0,16,16ZM12,9a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V10A1,1,0,0,0,12,9Z' - })); -}; - -UilCloudDrizzle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudDrizzle; \ No newline at end of file diff --git a/icons/uil-cloud-exclamation.js b/icons/uil-cloud-exclamation.js deleted file mode 100644 index 2b7c4cf0..00000000 --- a/icons/uil-cloud-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,18.79a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.3-1.3A1,1,0,0,0,12.71,18.79ZM12,12.5a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,12.5Zm6.42-4.79A7,7,0,0,0,5.06,9.61,4,4,0,0,0,6,17.5H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,15.5H16a1,1,0,0,0,0,2h1a5,5,0,0,0,1.42-9.79Z' - })); -}; - -UilCloudExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudExclamation; \ No newline at end of file diff --git a/icons/uil-cloud-hail.js b/icons/uil-cloud-hail.js deleted file mode 100644 index 6eb92fea..00000000 --- a/icons/uil-cloud-hail.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,17a1,1,0,1,0,1,1A1,1,0,0,0,12,17ZM8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm4,2a1,1,0,1,0,1,1A1,1,0,0,0,12,13ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,8,15Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,16,15ZM12,9a1,1,0,1,0,1,1A1,1,0,0,0,12,9Zm4,2a1,1,0,1,0,1,1A1,1,0,0,0,16,11Zm2.42-4.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,19a1,1,0,1,0,1,1A1,1,0,0,0,16,19Z' - })); -}; - -UilCloudHail.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudHail; \ No newline at end of file diff --git a/icons/uil-cloud-heart.js b/icons/uil-cloud-heart.js deleted file mode 100644 index eaa867fa..00000000 --- a/icons/uil-cloud-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72ZM12,12.83a2.94,2.94,0,0,0-3.43.53,2.93,2.93,0,0,0,0,4.13l2.72,2.72a1,1,0,0,0,1.42,0l2.72-2.72a2.93,2.93,0,0,0,0-4.13A2.94,2.94,0,0,0,12,12.83Zm2,3.24-2,2-2-2a.88.88,0,0,1-.27-.65.89.89,0,0,1,.27-.65.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0,.94.94,0,0,1,1.3,0,.89.89,0,0,1,.27.65A.88.88,0,0,1,14,16.07Z' - })); -}; - -UilCloudHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudHeart; \ No newline at end of file diff --git a/icons/uil-cloud-info.js b/icons/uil-cloud-info.js deleted file mode 100644 index f2759884..00000000 --- a/icons/uil-cloud-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,12.29A1,1,0,0,0,12,14l.19,0a.6.6,0,0,0,.19-.06.56.56,0,0,0,.17-.09l.15-.12a1,1,0,0,0,0-1.42A1,1,0,0,0,11.29,12.29ZM12,15a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V16A1,1,0,0,0,12,15Zm6.42-6.78A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,13a3,3,0,0,1-3,3H16a1,1,0,0,0,0,2h1a5,5,0,0,0,1.42-9.78Z' - })); -}; - -UilCloudInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudInfo; \ No newline at end of file diff --git a/icons/uil-cloud-lock.js b/icons/uil-cloud-lock.js deleted file mode 100644 index 4552cd72..00000000 --- a/icons/uil-cloud-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,6.72A7,7,0,0,0,5.06,8.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,12.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,11.5,5,5,0,0,0,18.42,6.72Zm-3.42,9V14.5a3,3,0,0,0-6,0v1.18a3,3,0,0,0,1,5.82h4a3,3,0,0,0,1-5.82ZM11,14.5a1,1,0,0,1,2,0v1H11Zm3,5H10a1,1,0,0,1,0-2h4a1,1,0,0,1,0,2Z' - })); -}; - -UilCloudLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudLock; \ No newline at end of file diff --git a/icons/uil-cloud-meatball.js b/icons/uil-cloud-meatball.js deleted file mode 100644 index 3f703aa7..00000000 --- a/icons/uil-cloud-meatball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.5,15.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H9.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,0,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Zm3.92-7.79A7,7,0,0,0,5.06,10,4,4,0,0,0,2,13.92a4,4,0,0,0,3.34,3.93l.16,0a1,1,0,0,0,.16-2,2,2,0,0,1-1.66-2,2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66,3,3,0,0,1,.62,5.72,1,1,0,1,0,.74,1.85,5,5,0,0,0-.45-9.41Z' - })); -}; - -UilCloudMeatball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-moon-hail.js b/icons/uil-cloud-moon-hail.js deleted file mode 100644 index 5d03b08f..00000000 --- a/icons/uil-cloud-moon-hail.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoonHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.21,16.29a1,1,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33A.84.84,0,0,0,7.5,17a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,9.21,16.29Zm0,4a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33,1,1,0,1,0,1.84,0A1.15,1.15,0,0,0,9.21,20.29Zm3.85-6.12-.18-.09L12.7,14a1,1,0,0,0-.58.06.93.93,0,0,0-.33.21,1,1,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13.5,15a1.05,1.05,0,0,0-.29-.71Zm.15,4.12a1,1,0,0,0-1.09-.21.9.9,0,0,0-.54.54,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,13.21,18.29ZM21.7,7.07a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,4.06,4.06,0,0,1,2.19.66h0a4,4,0,0,1,1.58,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89Z' - })); -}; - -UilCloudMoonHail.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoonHail; \ No newline at end of file diff --git a/icons/uil-cloud-moon-meatball.js b/icons/uil-cloud-moon-meatball.js deleted file mode 100644 index a7f9d788..00000000 --- a/icons/uil-cloud-moon-meatball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoonMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.7,8a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.05,3.05,0,0,1,.08-.66,1,1,0,0,0-.26-.94A1,1,0,0,0,16,2.94a5,5,0,0,0-3.83,4.22,5.86,5.86,0,0,0-1.67-.24A6,6,0,0,0,4.56,12,3.52,3.52,0,0,0,2,15.42a3.47,3.47,0,0,0,1.41,2.79A1,1,0,1,0,4.59,16.6,1.46,1.46,0,0,1,4,15.42a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,6.17-3.35l0,0a3.9,3.9,0,0,1,1.57,2,1,1,0,0,0,.78.66,2.33,2.33,0,0,1,.54,4.44,1,1,0,0,0-.52,1.32,1,1,0,0,0,.92.6,1,1,0,0,0,.4-.09,4.33,4.33,0,0,0,2.6-4,4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.92,1,1,0,0,0,21.7,8Zm-4.59,2.82a2.72,2.72,0,0,1-.42,0,4.6,4.6,0,0,0-.72-.31,5.91,5.91,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.22A3,3,0,0,1,17.11,10.81ZM12.5,16.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H7.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,1,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Z' - })); -}; - -UilCloudMoonMeatball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoonMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-moon-rain.js b/icons/uil-cloud-moon-rain.js deleted file mode 100644 index bf6bb5ad..00000000 --- a/icons/uil-cloud-moon-rain.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoonRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,14a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,8.5,19ZM21.7,7.07a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.91,3.91,0,0,1,2.17.66l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89ZM12.5,13a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V19A1,1,0,0,0,12.5,18Z' - })); -}; - -UilCloudMoonRain.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoonRain; \ No newline at end of file diff --git a/icons/uil-cloud-moon-showers.js b/icons/uil-cloud-moon-showers.js deleted file mode 100644 index cffe5b9a..00000000 --- a/icons/uil-cloud-moon-showers.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoonShowers = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm4-1a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Zm9.2-5.93a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.91,3.91,0,0,1,2.17.66l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89Z' - })); -}; - -UilCloudMoonShowers.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoonShowers; \ No newline at end of file diff --git a/icons/uil-cloud-moon-tear.js b/icons/uil-cloud-moon-tear.js deleted file mode 100644 index 4553ac40..00000000 --- a/icons/uil-cloud-moon-tear.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoonTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.7,7.57a1,1,0,0,0-.93-.26,3.2,3.2,0,0,1-.66.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2.53a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,15a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.92,3.92,0,0,1,2.18.66h0a4,4,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,16.11a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,14.17a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.5,1,1,0,0,0,21.7,7.57Zm-4.59,2.82a2.61,2.61,0,0,1-.42,0A4.6,4.6,0,0,0,16,10a6,6,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,10.39Zm-6,3.94a1,1,0,0,0-1.12,0C9.84,14.41,7.5,16,7.5,18.5a3,3,0,0,0,6,0C13.5,16,11.15,14.4,11.06,14.33ZM10.5,19.5a1,1,0,0,1-1-1,3,3,0,0,1,1-2,3,3,0,0,1,1,2A1,1,0,0,1,10.5,19.5Z' - })); -}; - -UilCloudMoonTear.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoonTear; \ No newline at end of file diff --git a/icons/uil-cloud-moon.js b/icons/uil-cloud-moon.js deleted file mode 100644 index 695de862..00000000 --- a/icons/uil-cloud-moon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.7,9.07a1,1,0,0,0-.93-.26,3.13,3.13,0,0,1-.66.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,4a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,8a6,6,0,0,0-5.94,5.13A3.5,3.5,0,0,0,5.5,20h9.17A4.33,4.33,0,0,0,19,15.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,10,1,1,0,0,0,21.7,9.07Zm-7,8.93H5.5a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,6.18-3.34l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,14.67,18Zm2.44-6.11a2.61,2.61,0,0,1-.42,0,4.6,4.6,0,0,0-.72-.31,6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,11.89Z' - })); -}; - -UilCloudMoon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudMoon; \ No newline at end of file diff --git a/icons/uil-cloud-question.js b/icons/uil-cloud-question.js deleted file mode 100644 index 548eaa1f..00000000 --- a/icons/uil-cloud-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,13a3,3,0,0,1-3,3,1,1,0,0,0,0,2,5,5,0,0,0,1.42-9.78Zm-5.5,10.4a.56.56,0,0,0-.09-.17l-.12-.16a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21l-.12.16a.56.56,0,0,0-.09.17.64.64,0,0,0-.06.18,1.5,1.5,0,0,0,0,.2,1.23,1.23,0,0,0,0,.19.6.6,0,0,0,.06.19.56.56,0,0,0,.09.17l.12.16A1.05,1.05,0,0,0,12,20a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21l.12-.16a.56.56,0,0,0,.09-.17.6.6,0,0,0,.06-.19A1.23,1.23,0,0,0,13,19a1.5,1.5,0,0,0,0-.2A.64.64,0,0,0,12.92,18.62ZM12,11a3,3,0,0,0-2.6,1.5,1,1,0,0,0,.37,1.37,1,1,0,0,0,1.36-.37A1,1,0,0,1,12,13a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Z' - })); -}; - -UilCloudQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudQuestion; \ No newline at end of file diff --git a/icons/uil-cloud-rain-sun.js b/icons/uil-cloud-rain-sun.js deleted file mode 100644 index aacfa06d..00000000 --- a/icons/uil-cloud-rain-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudRainSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3ZM8.5,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm4-1a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Z' - })); -}; - -UilCloudRainSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudRainSun; \ No newline at end of file diff --git a/icons/uil-cloud-rain.js b/icons/uil-cloud-rain.js deleted file mode 100644 index 4fb50e46..00000000 --- a/icons/uil-cloud-rain.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.56,12.67a1,1,0,0,0-1.12,0c-.11.08-2.69,1.86-2.69,4.58a3.25,3.25,0,0,0,6.5,0C15.25,14.5,12.67,12.74,12.56,12.67ZM12,18.5a1.25,1.25,0,0,1-1.25-1.25A3.66,3.66,0,0,1,12,14.8a3.61,3.61,0,0,1,1.25,2.45A1.25,1.25,0,0,1,12,18.5ZM18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0,.61,7.87h.08a1,1,0,0,0,1-.92,1,1,0,0,0-.92-1.08A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.43,5.79,1,1,0,0,0,.62,1.9,5,5,0,0,0-.14-9.53Z' - })); -}; - -UilCloudRain.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudRain; \ No newline at end of file diff --git a/icons/uil-cloud-redo.js b/icons/uil-cloud-redo.js deleted file mode 100644 index 7c1e649e..00000000 --- a/icons/uil-cloud-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,12.5a1,1,0,0,0-.91.6,4,4,0,1,0,.55,6.4A1,1,0,1,0,13.32,18a2,2,0,0,1-1.32.5,2,2,0,1,1,1-3.75h-.22a1,1,0,0,0,0,2H15a1,1,0,0,0,1-1V13.5A1,1,0,0,0,15,12.5Zm3.42-4.78A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72Z' - })); -}; - -UilCloudRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudRedo; \ No newline at end of file diff --git a/icons/uil-cloud-share.js b/icons/uil-cloud-share.js deleted file mode 100644 index aa00f6f3..00000000 --- a/icons/uil-cloud-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.5,15a2,2,0,1,0-2-2l-1.9.87a2,2,0,0,0-1.1-.33,2,2,0,0,0,0,4,1.88,1.88,0,0,0,.92-.24l2.1,1a2,2,0,1,0,.8-1.84l-1.75-.8,1.91-.88A2,2,0,0,0,14.5,15Zm3.92-7.78A7,7,0,0,0,5.06,9.11a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Z' - })); -}; - -UilCloudShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudShare; \ No newline at end of file diff --git a/icons/uil-cloud-shield.js b/icons/uil-cloud-shield.js deleted file mode 100644 index 9afb67ed..00000000 --- a/icons/uil-cloud-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,7.22A7,7,0,0,0,5.06,9.11a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Zm-3.63,4.44a2.73,2.73,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.72,2.72,0,0,1-2.2.47,1,1,0,0,0-.84.2,1,1,0,0,0-.37.77V16a4.63,4.63,0,0,0,1.84,3.7l1.57,1.15a1,1,0,0,0,1.18,0l1.57-1.16A4.6,4.6,0,0,0,16,16V12.63a1,1,0,0,0-.37-.77A1,1,0,0,0,14.79,11.66ZM14,16A2.62,2.62,0,0,1,13,18l-1,.72L11,18A2.62,2.62,0,0,1,10,16V13.72a4.68,4.68,0,0,0,2-.55,4.68,4.68,0,0,0,2,.55Z' - })); -}; - -UilCloudShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudShield; \ No newline at end of file diff --git a/icons/uil-cloud-showers-alt.js b/icons/uil-cloud-showers-alt.js deleted file mode 100644 index d22b5f68..00000000 --- a/icons/uil-cloud-showers-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudShowersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,13a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V14A1,1,0,0,0,8,13Zm4-2a1,1,0,0,0-1,1v9a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm6.42-4.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,13a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V14A1,1,0,0,0,16,13Z' - })); -}; - -UilCloudShowersAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudShowersAlt; \ No newline at end of file diff --git a/icons/uil-cloud-showers-heavy.js b/icons/uil-cloud-showers-heavy.js deleted file mode 100644 index 95e22f4f..00000000 --- a/icons/uil-cloud-showers-heavy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudShowersHeavy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.89,18.06a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,12.89,18.06Zm-4,0a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,8.89,18.06Zm0-7a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,7.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,8.89,11.06Zm4,0a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,11.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,12.89,11.06Zm5.53-4.84A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16.89,18.06a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,16.89,18.06Zm0-7a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,15.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,16.89,11.06Z' - })); -}; - -UilCloudShowersHeavy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudShowersHeavy; \ No newline at end of file diff --git a/icons/uil-cloud-showers.js b/icons/uil-cloud-showers.js deleted file mode 100644 index 0f100e77..00000000 --- a/icons/uil-cloud-showers.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudShowers = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11Zm4,6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,12,17ZM8,17a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,8,17ZM18.42,6.22A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM12,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm4,0a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,16,11Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,16,17Z' - })); -}; - -UilCloudShowers.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudShowers; \ No newline at end of file diff --git a/icons/uil-cloud-slash.js b/icons/uil-cloud-slash.js deleted file mode 100644 index 2b74d83b..00000000 --- a/icons/uil-cloud-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.71,16.29h0l-13-13A1,1,0,0,0,2.29,4.71L5.65,8.06a7,7,0,0,0-.59,2A4,4,0,0,0,6,18h9.59l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,16a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,.2-1.39L13.59,16ZM18.42,8.22A7,7,0,0,0,12,4a6.74,6.74,0,0,0-2.32.4,1,1,0,0,0,.66,1.88A4.91,4.91,0,0,1,12,6a5,5,0,0,1,4.73,3.39,1,1,0,0,0,.78.67,3,3,0,0,1,1.85,4.79,1,1,0,0,0,.16,1.4,1,1,0,0,0,.62.22,1,1,0,0,0,.78-.38,5,5,0,0,0-2.5-7.87Z' - })); -}; - -UilCloudSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSlash; \ No newline at end of file diff --git a/icons/uil-cloud-sun-hail.js b/icons/uil-cloud-sun-hail.js deleted file mode 100644 index aa08a793..00000000 --- a/icons/uil-cloud-sun-hail.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSunHail = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.21,20.29a1,1,0,0,0-1.09-.21.93.93,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76.9.9,0,0,0,.54.54.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,9.5,21a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,9.21,20.29Zm4-2a.93.93,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,13.21,18.29Zm-4-2a1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,9.5,17a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,9.21,16.29Zm2.91-2.21a1,1,0,0,0-.33.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.84.84,0,0,0,.38.08,1,1,0,0,0,1-1,1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,12.12,14.08ZM21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3Z' - })); -}; - -UilCloudSunHail.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSunHail; \ No newline at end of file diff --git a/icons/uil-cloud-sun-meatball.js b/icons/uil-cloud-sun-meatball.js deleted file mode 100644 index 5e0f11b3..00000000 --- a/icons/uil-cloud-sun-meatball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSunMeatball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.5,16.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H7.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,1,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Zm8.5-9h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.72v-.8a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.56c-.09.16-.16.33-.24.49a5.85,5.85,0,0,0-1.58-.22A6,6,0,0,0,4.56,12,3.52,3.52,0,0,0,2,15.42a3.47,3.47,0,0,0,1.41,2.79A1,1,0,1,0,4.59,16.6,1.46,1.46,0,0,1,4,15.42a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.66,2.33,2.33,0,0,1,.54,4.44,1,1,0,0,0-.52,1.32,1,1,0,0,0,.92.6.93.93,0,0,0,.4-.09,4.33,4.33,0,0,0,2.6-4A4.29,4.29,0,0,0,18.7,13l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42l-.56-.56a4.2,4.2,0,0,0,.52-1.26H21a1,1,0,0,0,0-2Zm-3.34,2.64h0a1.89,1.89,0,0,1-.6.41A4.15,4.15,0,0,0,16,10.46,6,6,0,0,0,13.88,8a2.18,2.18,0,0,1,.46-.7h0a2.42,2.42,0,0,1,3.3,0h0a2.34,2.34,0,0,1,0,3.29Z' - })); -}; - -UilCloudSunMeatball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSunMeatball; \ No newline at end of file diff --git a/icons/uil-cloud-sun-rain-alt.js b/icons/uil-cloud-sun-rain-alt.js deleted file mode 100644 index 59bbd912..00000000 --- a/icons/uil-cloud-sun-rain-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSunRainAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,8.5,19Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14ZM21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3ZM12.5,18a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V19A1,1,0,0,0,12.5,18Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Z' - })); -}; - -UilCloudSunRainAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSunRainAlt; \ No newline at end of file diff --git a/icons/uil-cloud-sun-rain.js b/icons/uil-cloud-sun-rain.js deleted file mode 100644 index 6f637e98..00000000 --- a/icons/uil-cloud-sun-rain.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSunRain = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.5,15a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V16A1,1,0,0,0,7.5,15ZM22,7H20.9a5.22,5.22,0,0,0-.73-1.76L21,4.47a1,1,0,1,0-1.42-1.42l-.77.78A5,5,0,0,0,17,3.1V2a1,1,0,0,0-2,0V3.1a5.22,5.22,0,0,0-1.76.73l-.77-.78a1,1,0,0,0-1.42,1.42l.78.77a5.06,5.06,0,0,0-.77,2A5.76,5.76,0,0,0,9.5,7a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,3,15.5,1.5,1.5,0,0,1,4.5,14a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,15,16.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,18,14.67a4.41,4.41,0,0,0-.45-1.92,5.17,5.17,0,0,0,1.21-.58l.77.78A1,1,0,0,0,21,13a1,1,0,0,0,0-1.42l-.78-.77A5,5,0,0,0,20.9,9H22a1,1,0,0,0,0-2Zm-3.87,3.12A3,3,0,0,1,16,11h-.06a4.12,4.12,0,0,0-1-.46,5.93,5.93,0,0,0-2-2.38c0-.06,0-.1,0-.16a3,3,0,0,1,.87-2.12,3.1,3.1,0,0,1,4.25,0,3,3,0,0,1,0,4.25ZM7.5,20a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V21A1,1,0,0,0,7.5,20Zm4-1a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,11.5,19Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,11.5,14Z' - })); -}; - -UilCloudSunRain.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSunRain; \ No newline at end of file diff --git a/icons/uil-cloud-sun-tear.js b/icons/uil-cloud-sun-tear.js deleted file mode 100644 index 7babfcc4..00000000 --- a/icons/uil-cloud-sun-tear.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSunTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.05,14.33a1,1,0,0,0-1.11,0C9.84,14.41,7.5,16,7.5,18.5a3,3,0,0,0,6,0C13.5,16,11.16,14.4,11.05,14.33ZM10.5,19.5a1,1,0,0,1-1-1,3,3,0,0,1,1-2,3,3,0,0,1,1,2A1,1,0,0,1,10.5,19.5ZM21,7.5h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.3V3.5a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,15a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,16.11a1,1,0,0,0,1.1,1.68,4.3,4.3,0,0,0,1.65-5.18l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9.5H21a1,1,0,0,0,0-2Zm-3.34,2.65h0a2.45,2.45,0,0,1-.6.41A4.17,4.17,0,0,0,16,10a6.12,6.12,0,0,0-2.09-2.49,2.25,2.25,0,0,1,.46-.69h0a2.42,2.42,0,0,1,3.29,0h0a2.37,2.37,0,0,1,0,3.3Z' - })); -}; - -UilCloudSunTear.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSunTear; \ No newline at end of file diff --git a/icons/uil-cloud-sun.js b/icons/uil-cloud-sun.js deleted file mode 100644 index 8dcb7b35..00000000 --- a/icons/uil-cloud-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,9h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,5.8V5a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,8a6,6,0,0,0-5.94,5.13A3.5,3.5,0,0,0,5.5,20h9.17A4.33,4.33,0,0,0,19,15.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,11H21a1,1,0,0,0,0-2Zm-6.33,9H5.5a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,14.67,18Zm3-6.35h0a2.17,2.17,0,0,1-.6.4A4.49,4.49,0,0,0,16,11.54a6.12,6.12,0,0,0-2.09-2.49,2.25,2.25,0,0,1,.46-.69h0a2.42,2.42,0,0,1,3.29,0h0a2.37,2.37,0,0,1,0,3.3Z' - })); -}; - -UilCloudSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudSun; \ No newline at end of file diff --git a/icons/uil-cloud-times.js b/icons/uil-cloud-times.js deleted file mode 100644 index 45125303..00000000 --- a/icons/uil-cloud-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,0,0,.5,1.94,5,5,0,0,0,.17-9.62Zm-3.71,6.07a1,1,0,0,0-1.42,0L12,15.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L10.59,17l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,18.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,17l1.3-1.29A1,1,0,0,0,14.71,14.29Z' - })); -}; - -UilCloudTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudTimes; \ No newline at end of file diff --git a/icons/uil-cloud-unlock.js b/icons/uil-cloud-unlock.js deleted file mode 100644 index 082a8a8e..00000000 --- a/icons/uil-cloud-unlock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudUnlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,15.5H11v-1A1,1,0,0,1,12.88,14a1,1,0,0,0,1.37.34A1,1,0,0,0,14.59,13a3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,12,11.5a3,3,0,0,0-3,3v1.18a3,3,0,0,0,1,5.82h4a3,3,0,0,0,0-6Zm0,4H10a1,1,0,0,1,0-2h4a1,1,0,0,1,0,2ZM18.42,6.72A7,7,0,0,0,5.06,8.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,12.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,11.5,5,5,0,0,0,18.42,6.72Z' - })); -}; - -UilCloudUnlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudUnlock; \ No newline at end of file diff --git a/icons/uil-cloud-upload.js b/icons/uil-cloud-upload.js deleted file mode 100644 index 80fe8871..00000000 --- a/icons/uil-cloud-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,0,0,.5,1.94,5,5,0,0,0,.17-9.62Zm-5.71,2.07a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L11,13.41V19a1,1,0,0,0,2,0V13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilCloudUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudUpload; \ No newline at end of file diff --git a/icons/uil-cloud-wifi.js b/icons/uil-cloud-wifi.js deleted file mode 100644 index 819bc1d7..00000000 --- a/icons/uil-cloud-wifi.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudWifi = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,5.94a7.1,7.1,0,0,1,7,0,1,1,0,0,0,1.37-.37,1,1,0,0,0-.37-1.36,9.14,9.14,0,0,0-9,0,1,1,0,0,0-.37,1.36A1,1,0,0,0,8.5,5.94Zm9.92,5.27a5.91,5.91,0,0,0-.36-.71,1,1,0,0,0-1.38-.33,1,1,0,0,0-.33,1.37,4.58,4.58,0,0,1,.38.84,1,1,0,0,0,.78.67A3,3,0,0,1,20,16a3,3,0,0,1-3,3L5.66,19A2,2,0,0,1,4,17.4,2,2,0,0,1,6,15a1,1,0,0,0,1-1,4.92,4.92,0,0,1,.67-2.49,1,1,0,0,0-.37-1.37,1,1,0,0,0-1.36.37,6.75,6.75,0,0,0-.88,2.6,4,4,0,0,0-2.13,1.33A4,4,0,0,0,5.46,21h.13L17,21a5,5,0,0,0,1.42-9.79ZM14.87,9s0,0,0-.06A.92.92,0,0,0,15,8.74a1,1,0,0,0-.57-1.29,6.36,6.36,0,0,0-1.74-.38c-.1,0-.2,0-.3,0a5.47,5.47,0,0,0-.81,0,3,3,0,0,0-.31,0,6.36,6.36,0,0,0-1.74.38A1,1,0,0,0,9,8.74a1.22,1.22,0,0,0,.12.19.61.61,0,0,0,0,.11,1,1,0,0,0,1.37.36,3.08,3.08,0,0,1,3,0A1,1,0,0,0,14.87,9ZM11,12a1,1,0,1,0,1-1A1,1,0,0,0,11,12Z' - })); -}; - -UilCloudWifi.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudWifi; \ No newline at end of file diff --git a/icons/uil-cloud-wind.js b/icons/uil-cloud-wind.js deleted file mode 100644 index 764f93b2..00000000 --- a/icons/uil-cloud-wind.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloudWind = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,18a1,1,0,1,0,1,1A1,1,0,0,0,5,18Zm14-4H12a1,1,0,0,0,0,2h7a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm-5-3a1,1,0,0,0,1,1h4a3,3,0,0,0,3-3,1,1,0,0,0-2,0,1,1,0,0,1-1,1H15A1,1,0,0,0,14,11Zm-4,4a1,1,0,0,0-1-1H6a2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,1,0,1.9-.64A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16H9A1,1,0,0,0,10,15Zm0-4a1,1,0,1,0,1-1A1,1,0,0,0,10,11Zm4,7H9a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0A3,3,0,0,0,14,18Z' - })); -}; - -UilCloudWind.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloudWind; \ No newline at end of file diff --git a/icons/uil-cloud.js b/icons/uil-cloud.js deleted file mode 100644 index f952f157..00000000 --- a/icons/uil-cloud.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCloud = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.42,9.21a7,7,0,0,0-13.36,1.9A4,4,0,0,0,6,19H17a5,5,0,0,0,1.42-9.79ZM17,17H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,17Z' - })); -}; - -UilCloud.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCloud; \ No newline at end of file diff --git a/icons/uil-clouds.js b/icons/uil-clouds.js deleted file mode 100644 index 1d217ab8..00000000 --- a/icons/uil-clouds.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClouds = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.47,10.54A6,6,0,0,0,14,7a5.82,5.82,0,0,0-1.39.18,5,5,0,0,0-9,2A3,3,0,0,0,4.5,15h1a4,4,0,0,0,0,.5A3.5,3.5,0,0,0,9,19h9.17a4.33,4.33,0,0,0,1.3-8.46ZM4.5,13a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,3-3,3,3,0,0,1,2.22,1,6,6,0,0,0-2.66,4.13,3.49,3.49,0,0,0-1.5.87Zm13.67,4H9a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,18.17,17Z' - })); -}; - -UilClouds.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClouds; \ No newline at end of file diff --git a/icons/uil-club.js b/icons/uil-club.js deleted file mode 100644 index e5334e8b..00000000 --- a/icons/uil-club.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilClub = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,12.5a5.52,5.52,0,0,0-3.51-5.12,5.49,5.49,0,0,0-11,0A5.5,5.5,0,0,0,8.5,18l.2,0a6.91,6.91,0,0,1-1.24,2.39A1,1,0,0,0,8.24,22h7.52a1,1,0,0,0,.78-1.63A6.91,6.91,0,0,1,15.3,18l.2,0A5.51,5.51,0,0,0,21,12.5ZM10.06,20a8.89,8.89,0,0,0,.81-2.56,5.47,5.47,0,0,0,1.13-.7,5.47,5.47,0,0,0,1.13.7A8.89,8.89,0,0,0,13.94,20Zm2.72-5.3-.08-.08-.08-.08-.07,0-.18-.09-.18-.06h-.38l-.18.06a.56.56,0,0,0-.17.09l-.08,0-.08.08-.08.08A3.5,3.5,0,1,1,7.75,9.08,1.11,1.11,0,0,0,7.91,9a1.42,1.42,0,0,0,.18-.08.83.83,0,0,0,.14-.13.62.62,0,0,0,.21-.31.61.61,0,0,0,.07-.17.69.69,0,0,0,0-.2,1,1,0,0,0,0-.17,3.4,3.4,0,0,1,0-.45,3.5,3.5,0,0,1,7,0,3.4,3.4,0,0,1,0,.45.81.81,0,0,0,0,.16.74.74,0,0,0,0,.21.61.61,0,0,0,.07.17.62.62,0,0,0,.21.31.83.83,0,0,0,.14.13,1.42,1.42,0,0,0,.18.08,1.11,1.11,0,0,0,.16.07,3.5,3.5,0,1,1-3.47,5.62Z' - })); -}; - -UilClub.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilClub; \ No newline at end of file diff --git a/icons/uil-code-branch.js b/icons/uil-code-branch.js deleted file mode 100644 index c17d8d20..00000000 --- a/icons/uil-code-branch.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCodeBranch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17 6.06a3 3 0 0 0-1.15 5.77A2 2 0 0 1 14 13.06h-4a3.91 3.91 0 0 0-2 .56V7.88a3 3 0 1 0-2 0v8.36a3 3 0 1 0 2.16.05A2 2 0 0 1 10 15.06h4a4 4 0 0 0 3.91-3.16A3 3 0 0 0 17 6.06Zm-10-2a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 16a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm10-10a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' - })); -}; - -UilCodeBranch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCodeBranch; \ No newline at end of file diff --git a/icons/uil-coffee.js b/icons/uil-coffee.js deleted file mode 100644 index c14a14f5..00000000 --- a/icons/uil-coffee.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCoffee = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,17h4a5,5,0,0,0,5-5V11h1a3,3,0,0,0,0-6H18V4a1,1,0,0,0-1-1H5A1,1,0,0,0,4,4v8A5,5,0,0,0,9,17ZM18,7h1a1,1,0,0,1,0,2H18ZM6,5H16v7a3,3,0,0,1-3,3H9a3,3,0,0,1-3-3ZM21,19H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilCoffee.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCoffee; \ No newline at end of file diff --git a/icons/uil-cog.js b/icons/uil-cog.js deleted file mode 100644 index f5a29e33..00000000 --- a/icons/uil-cog.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCog = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.32,9.55l-1.89-.63.89-1.78A1,1,0,0,0,20.13,6L18,3.87a1,1,0,0,0-1.15-.19l-1.78.89-.63-1.89A1,1,0,0,0,13.5,2h-3a1,1,0,0,0-.95.68L8.92,4.57,7.14,3.68A1,1,0,0,0,6,3.87L3.87,6a1,1,0,0,0-.19,1.15l.89,1.78-1.89.63A1,1,0,0,0,2,10.5v3a1,1,0,0,0,.68.95l1.89.63-.89,1.78A1,1,0,0,0,3.87,18L6,20.13a1,1,0,0,0,1.15.19l1.78-.89.63,1.89a1,1,0,0,0,.95.68h3a1,1,0,0,0,.95-.68l.63-1.89,1.78.89A1,1,0,0,0,18,20.13L20.13,18a1,1,0,0,0,.19-1.15l-.89-1.78,1.89-.63A1,1,0,0,0,22,13.5v-3A1,1,0,0,0,21.32,9.55ZM20,12.78l-1.2.4A2,2,0,0,0,17.64,16l.57,1.14-1.1,1.1L16,17.64a2,2,0,0,0-2.79,1.16l-.4,1.2H11.22l-.4-1.2A2,2,0,0,0,8,17.64l-1.14.57-1.1-1.1L6.36,16A2,2,0,0,0,5.2,13.18L4,12.78V11.22l1.2-.4A2,2,0,0,0,6.36,8L5.79,6.89l1.1-1.1L8,6.36A2,2,0,0,0,10.82,5.2l.4-1.2h1.56l.4,1.2A2,2,0,0,0,16,6.36l1.14-.57,1.1,1.1L17.64,8a2,2,0,0,0,1.16,2.79l1.2.4ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Z' - })); -}; - -UilCog.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCog; \ No newline at end of file diff --git a/icons/uil-coins.js b/icons/uil-coins.js deleted file mode 100644 index bfb419c5..00000000 --- a/icons/uil-coins.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCoins = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.22,12A3,3,0,0,0,22,10a3,3,0,0,0-3-3H13.82A3,3,0,0,0,11,3H5A3,3,0,0,0,2,6a3,3,0,0,0,.78,2,3,3,0,0,0,0,4,3,3,0,0,0,0,4A3,3,0,0,0,2,18a3,3,0,0,0,3,3H19a3,3,0,0,0,2.22-5,3,3,0,0,0,0-4ZM11,19H5a1,1,0,0,1,0-2h6a1,1,0,0,1,0,2Zm0-4H5a1,1,0,0,1,0-2h6a1,1,0,0,1,0,2Zm0-4H5A1,1,0,0,1,5,9h6a1,1,0,0,1,0,2Zm0-4H5A1,1,0,0,1,5,5h6a1,1,0,0,1,0,2Zm8.69,11.71A.93.93,0,0,1,19,19H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,18.71Zm0-4A.93.93,0,0,1,19,15H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,14.71Zm0-4A.93.93,0,0,1,19,11H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,10.71Z' - })); -}; - -UilCoins.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCoins; \ No newline at end of file diff --git a/icons/uil-columns.js b/icons/uil-columns.js deleted file mode 100644 index edee0992..00000000 --- a/icons/uil-columns.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilColumns = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V4h7Zm9,0H13V4h7Z' - })); -}; - -UilColumns.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilColumns; \ No newline at end of file diff --git a/icons/uil-comment-add.js b/icons/uil-comment-add.js deleted file mode 100644 index 329e4175..00000000 --- a/icons/uil-comment-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5 8a1 1 0 0 0 2 0V7h1a1 1 0 0 0 0-2H7V4a1 1 0 0 0-2 0v1H4a1 1 0 0 0 0 2h1Zm13-3h-6a1 1 0 0 0 0 2h6a1 1 0 0 1 1 1v9.72l-1.57-1.45a1 1 0 0 0-.68-.27H8a1 1 0 0 1-1-1v-3a1 1 0 0 0-2 0v3a3 3 0 0 0 3 3h8.36l3 2.73A1 1 0 0 0 20 21a1.1 1.1 0 0 0 .4-.08A1 1 0 0 0 21 20V8a3 3 0 0 0-3-3Z' - })); -}; - -UilCommentAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAdd; \ No newline at end of file diff --git a/icons/uil-comment-alt-block.js b/icons/uil-comment-alt-block.js deleted file mode 100644 index 84bb8560..00000000 --- a/icons/uil-comment-alt-block.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Zm-8.46,4.54A5,5,0,1,0,7,12,5,5,0,0,0,10.54,10.54ZM4,7A3,3,0,0,1,7,4a3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,4,7ZM9.7,5.71A3,3,0,0,1,10,7,3,3,0,0,1,5.72,9.7Z' - })); -}; - -UilCommentAltBlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltBlock; \ No newline at end of file diff --git a/icons/uil-comment-alt-chart-lines.js b/icons/uil-comment-alt-chart-lines.js deleted file mode 100644 index eff9108a..00000000 --- a/icons/uil-comment-alt-chart-lines.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltChartLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8ZM8,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM16,6a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V7A1,1,0,0,0,16,6Z' - })); -}; - -UilCommentAltChartLines.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltChartLines; \ No newline at end of file diff --git a/icons/uil-comment-alt-check.js b/icons/uil-comment-alt-check.js deleted file mode 100644 index 3314feea..00000000 --- a/icons/uil-comment-alt-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.77,9.15l5.44-5.44a1,1,0,1,0-1.42-1.42L6.06,7,4.21,5.17A1,1,0,0,0,2.79,6.59L5.35,9.15a1,1,0,0,0,1.42,0ZM18.5,6H13a1,1,0,0,0,0,2h5.5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V12.5a1,1,0,0,0-2,0V16a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' - })); -}; - -UilCommentAltCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltCheck; \ No newline at end of file diff --git a/icons/uil-comment-alt-dots.js b/icons/uil-comment-alt-dots.js deleted file mode 100644 index f18eb656..00000000 --- a/icons/uil-comment-alt-dots.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltDots = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9a1,1,0,1,0,1,1A1,1,0,0,0,12,9Zm7-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM8,9a1,1,0,1,0,1,1A1,1,0,0,0,8,9Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,16,9Z' - })); -}; - -UilCommentAltDots.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltDots; \ No newline at end of file diff --git a/icons/uil-comment-alt-download.js b/icons/uil-comment-alt-download.js deleted file mode 100644 index 48db9e95..00000000 --- a/icons/uil-comment-alt-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.12,11.92a.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,1,0,8.79,7.29L7.5,8.59V3a1,1,0,0,0-2,0V8.59L4.21,7.29A1,1,0,1,0,2.79,8.71l3,3A1,1,0,0,0,6.12,11.92ZM18.5,6h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' - })); -}; - -UilCommentAltDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltDownload; \ No newline at end of file diff --git a/icons/uil-comment-alt-edit.js b/icons/uil-comment-alt-edit.js deleted file mode 100644 index a2d73121..00000000 --- a/icons/uil-comment-alt-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.5,5.5h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1v-1a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V8.5A3,3,0,0,0,18.5,5.5Zm-9.42,7H11.5a1,1,0,0,0,1-1V9.08a1,1,0,0,0-.29-.71L6.63,2.79a1,1,0,0,0-1.41,0L2.79,5.22a1,1,0,0,0,0,1.41l5.58,5.58A1,1,0,0,0,9.08,12.5ZM5.92,4.91,10.5,9.49v1h-1L4.91,5.92Z' - })); -}; - -UilCommentAltEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltEdit; \ No newline at end of file diff --git a/icons/uil-comment-alt-exclamation.js b/icons/uil-comment-alt-exclamation.js deleted file mode 100644 index 3f8cdb02..00000000 --- a/icons/uil-comment-alt-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,12a1,1,0,1,0,1,1A1,1,0,0,0,12,12Zm0-6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Z' - })); -}; - -UilCommentAltExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltExclamation; \ No newline at end of file diff --git a/icons/uil-comment-alt-heart.js b/icons/uil-comment-alt-heart.js deleted file mode 100644 index 27f6f7bc..00000000 --- a/icons/uil-comment-alt-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6.35a3.07,3.07,0,0,0-3.54.53,3,3,0,0,0,0,4.24L11.29,14a1,1,0,0,0,1.42,0l2.83-2.83a3,3,0,0,0,0-4.24A3.07,3.07,0,0,0,12,6.35Zm2.12,3.36L12,11.83,9.88,9.71a1,1,0,0,1,0-1.42,1,1,0,0,1,1.41,0,1,1,0,0,0,1.42,0,1,1,0,0,1,1.41,0A1,1,0,0,1,14.12,9.71ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltHeart; \ No newline at end of file diff --git a/icons/uil-comment-alt-image.js b/icons/uil-comment-alt-image.js deleted file mode 100644 index eccc475a..00000000 --- a/icons/uil-comment-alt-image.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2ZM5.77,16H5a1,1,0,0,1-1-1v-.42l3.3-3.29a1,1,0,0,1,1.41,0l.87.87ZM20,18.59l-2.29-2.3A1,1,0,0,0,17,16H8.59L15.3,9.29a1,1,0,0,1,1.4,0L20,12.58Zm0-8.83L18.12,7.89a3,3,0,0,0-4.24,0L11,10.76l-.88-.87a3.06,3.06,0,0,0-4.24,0L4,11.76V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltImage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltImage; \ No newline at end of file diff --git a/icons/uil-comment-alt-info.js b/icons/uil-comment-alt-info.js deleted file mode 100644 index 78ebdc03..00000000 --- a/icons/uil-comment-alt-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,11a1,1,0,0,0,1-1V6A1,1,0,0,0,4,6v4A1,1,0,0,0,5,11ZM4.29,3.71a1,1,0,0,0,1.09.21,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,6,3a1,1,0,0,0-.29-.71,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21A1,1,0,0,0,4,3a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,4.29,3.71ZM17,6H9A1,1,0,0,0,9,8h8a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H7a1,1,0,0,1-1-1V14a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,19,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,20,21V9A3,3,0,0,0,17,6Z' - })); -}; - -UilCommentAltInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltInfo; \ No newline at end of file diff --git a/icons/uil-comment-alt-lines.js b/icons/uil-comment-alt-lines.js deleted file mode 100644 index 1a84bbf4..00000000 --- a/icons/uil-comment-alt-lines.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,11H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4-4H7A1,1,0,0,0,7,9H17a1,1,0,0,0,0-2Zm2-5H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltLines.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltLines; \ No newline at end of file diff --git a/icons/uil-comment-alt-lock.js b/icons/uil-comment-alt-lock.js deleted file mode 100644 index a3face86..00000000 --- a/icons/uil-comment-alt-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10V8a3,3,0,0,0-2-2.82V4A3,3,0,0,0,4,4V5.18A3,3,0,0,0,2,8v2a3,3,0,0,0,3,3H9A3,3,0,0,0,12,10ZM6,4A1,1,0,0,1,8,4V5H6ZM4,10V8A1,1,0,0,1,5,7H9a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H5A1,1,0,0,1,4,10ZM19,7H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,23a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,22V10A3,3,0,0,0,19,7Z' - })); -}; - -UilCommentAltLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltLock; \ No newline at end of file diff --git a/icons/uil-comment-alt-medical.js b/icons/uil-comment-alt-medical.js deleted file mode 100644 index 98faac08..00000000 --- a/icons/uil-comment-alt-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9H13V8a1,1,0,0,0-2,0V9H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V11h1a1,1,0,0,0,0-2Zm5-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltMedical; \ No newline at end of file diff --git a/icons/uil-comment-alt-message.js b/icons/uil-comment-alt-message.js deleted file mode 100644 index fa8cf089..00000000 --- a/icons/uil-comment-alt-message.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,7H7A1,1,0,0,0,7,9H17a1,1,0,0,0,0-2Zm0,4H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm2-9H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltMessage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltMessage; \ No newline at end of file diff --git a/icons/uil-comment-alt-notes.js b/icons/uil-comment-alt-notes.js deleted file mode 100644 index b8b9142c..00000000 --- a/icons/uil-comment-alt-notes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,7A1,1,0,1,0,8,8,1,1,0,0,0,7,7Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,7,11Zm10,0H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm2-5H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltNotes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltNotes; \ No newline at end of file diff --git a/icons/uil-comment-alt-plus.js b/icons/uil-comment-alt-plus.js deleted file mode 100644 index 272a8f28..00000000 --- a/icons/uil-comment-alt-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,9H13V7a1,1,0,0,0-2,0V9H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V11h2a1,1,0,0,0,0-2Zm4-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltPlus; \ No newline at end of file diff --git a/icons/uil-comment-alt-question.js b/icons/uil-comment-alt-question.js deleted file mode 100644 index 95a987c0..00000000 --- a/icons/uil-comment-alt-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.29,10.3a1,1,0,0,0,1.09,1.63,1.19,1.19,0,0,0,.33-.22,1,1,0,0,0,.21-.32A.85.85,0,0,0,8,11a1,1,0,0,0-.29-.7A1,1,0,0,0,6.29,10.3ZM7,5A1,1,0,0,1,7,7,1,1,0,0,0,7,9,3,3,0,1,0,4.4,4.5a1,1,0,0,0,.37,1.37A1,1,0,0,0,6.13,5.5,1,1,0,0,1,7,5ZM19,6H13a1,1,0,0,0,0,2h6a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Z' - })); -}; - -UilCommentAltQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltQuestion; \ No newline at end of file diff --git a/icons/uil-comment-alt-redo.js b/icons/uil-comment-alt-redo.js deleted file mode 100644 index a42f248a..00000000 --- a/icons/uil-comment-alt-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.3,10.75A1,1,0,1,0,9,9.25,3,3,0,1,1,7,4,3,3,0,0,1,9.23,5H8A1,1,0,0,0,8,7h3a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0h0a5,5,0,1,0,.3,7.75ZM19,6H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Z' - })); -}; - -UilCommentAltRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltRedo; \ No newline at end of file diff --git a/icons/uil-comment-alt-search.js b/icons/uil-comment-alt-search.js deleted file mode 100644 index d184ebd4..00000000 --- a/icons/uil-comment-alt-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H14a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V14a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6ZM8.57,10l1.72,1.73a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L10,8.57a4.37,4.37,0,0,0,.65-2.26A4.32,4.32,0,1,0,2,6.31a4.32,4.32,0,0,0,4.31,4.32A4.35,4.35,0,0,0,8.57,10ZM4,6.31a2.29,2.29,0,0,1,.68-1.63A2.32,2.32,0,0,1,8,4.68,2.31,2.31,0,0,1,8,8,2.32,2.32,0,0,1,4,6.31Z' - })); -}; - -UilCommentAltSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltSearch; \ No newline at end of file diff --git a/icons/uil-comment-alt-share.js b/icons/uil-comment-alt-share.js deleted file mode 100644 index 02531fd8..00000000 --- a/icons/uil-comment-alt-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.5,6.5h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9.5a1,1,0,0,1-1-1v-2a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9.5A3,3,0,0,0,19.5,6.5Zm-10,5A2,2,0,1,0,8.32,7.89l-1.75-.8,1.91-.88a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,4.5,5a2,2,0,0,0,0,4,2,2,0,0,0,.93-.24l2.09,1A2,2,0,0,0,9.5,11.5Z' - })); -}; - -UilCommentAltShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltShare; \ No newline at end of file diff --git a/icons/uil-comment-alt-shield.js b/icons/uil-comment-alt-shield.js deleted file mode 100644 index fe82b968..00000000 --- a/icons/uil-comment-alt-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.57,12a1,1,0,0,0,.58-.19l1.62-1.16A4.56,4.56,0,0,0,10.68,7V3.63a1,1,0,0,0-.37-.77,1,1,0,0,0-.84-.2,3,3,0,0,1-2.33-.48A1,1,0,0,0,6,2.18a3,3,0,0,1-2.33.48,1,1,0,0,0-1.2,1V7a4.55,4.55,0,0,0,1.9,3.7L6,11.81A.94.94,0,0,0,6.57,12ZM4.46,7V4.72a5.16,5.16,0,0,0,2.11-.55,5.12,5.12,0,0,0,2.11.55V7A2.57,2.57,0,0,1,7.61,9l-1,.74L5.53,9A2.57,2.57,0,0,1,4.46,7ZM18.54,6h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72L18,17.27a.94.94,0,0,0-.68-.27H8.54a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3H16.9l3,2.73a1,1,0,0,0,.67.27,1.15,1.15,0,0,0,.41-.08,1,1,0,0,0,.59-.92V9A3,3,0,0,0,18.54,6Z' - })); -}; - -UilCommentAltShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltShield; \ No newline at end of file diff --git a/icons/uil-comment-alt-slash.js b/icons/uil-comment-alt-slash.js deleted file mode 100644 index 95f4e4f8..00000000 --- a/icons/uil-comment-alt-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.66,6H17a1,1,0,0,1,1,1v6.34a1,1,0,1,0,2,0V7a3,3,0,0,0-3-3H10.66a1,1,0,0,0,0,2ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l2,2A3,3,0,0,0,4,7V19a1,1,0,0,0,.62.92A.84.84,0,0,0,5,20a1,1,0,0,0,.71-.29L8.41,17h7.18l4.7,4.71a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM8,15a1,1,0,0,0-.71.29L6,16.59V7.41L13.59,15Z' - })); -}; - -UilCommentAltSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltSlash; \ No newline at end of file diff --git a/icons/uil-comment-alt-upload.js b/icons/uil-comment-alt-upload.js deleted file mode 100644 index 0d149979..00000000 --- a/icons/uil-comment-alt-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.5,11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3A1,1,0,0,0,4.21,6.71L5.5,5.41Zm13-5h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' - })); -}; - -UilCommentAltUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltUpload; \ No newline at end of file diff --git a/icons/uil-comment-alt-verify.js b/icons/uil-comment-alt-verify.js deleted file mode 100644 index 7afd8093..00000000 --- a/icons/uil-comment-alt-verify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAltVerify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.71,6.29l-5.3,5.3L8.29,9.47a1,1,0,1,0-1.41,1.41l2.83,2.83a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29l6-6a1,1,0,0,0,0-1.42A1,1,0,0,0,15.71,6.29ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAltVerify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAltVerify; \ No newline at end of file diff --git a/icons/uil-comment-alt.js b/icons/uil-comment-alt.js deleted file mode 100644 index 656b1847..00000000 --- a/icons/uil-comment-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentAlt; \ No newline at end of file diff --git a/icons/uil-comment-block.js b/icons/uil-comment-block.js deleted file mode 100644 index e3d181b0..00000000 --- a/icons/uil-comment-block.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.22a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14ZM20.54,3.46A5,5,0,1,0,22,7,5,5,0,0,0,20.54,3.46ZM14,7a3,3,0,0,1,3-3,3,3,0,0,1,1.29.3l-4,4A3,3,0,0,1,14,7Zm5.12,2.12a3.08,3.08,0,0,1-3.4.57l4-4A3,3,0,0,1,20,7,3,3,0,0,1,19.12,9.12Z' - })); -}; - -UilCommentBlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentBlock; \ No newline at end of file diff --git a/icons/uil-comment-chart-line.js b/icons/uil-comment-chart-line.js deleted file mode 100644 index 74e33001..00000000 --- a/icons/uil-comment-chart-line.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentChartLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10ZM8,13a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,8,13ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20ZM16,8a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V9A1,1,0,0,0,16,8Z' - })); -}; - -UilCommentChartLine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentChartLine; \ No newline at end of file diff --git a/icons/uil-comment-check.js b/icons/uil-comment-check.js deleted file mode 100644 index 0fd412ab..00000000 --- a/icons/uil-comment-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.29,7.13a1,1,0,0,0,0,1.42l1.92,1.92a1,1,0,0,0,1.42,0l4.08-4.08A1,1,0,1,0,19.29,5L15.92,8.35,14.71,7.13A1,1,0,0,0,13.29,7.13Zm6.62,3.51A1,1,0,0,0,19,11.72,2.62,2.62,0,0,1,19,12a7,7,0,0,1-7,7H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,10.53,5.15a7.14,7.14,0,0,1,2.8,0,1,1,0,1,0,.4-2,9.15,9.15,0,0,0-3.61,0A9.05,9.05,0,0,0,3,12a9,9,0,0,0,2,5.62L3.29,19.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,21h8a9,9,0,0,0,9-9c0-.15,0-.29,0-.44A1,1,0,0,0,19.91,10.64Z' - })); -}; - -UilCommentCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentCheck; \ No newline at end of file diff --git a/icons/uil-comment-dots.js b/icons/uil-comment-dots.js deleted file mode 100644 index 30874bf6..00000000 --- a/icons/uil-comment-dots.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentDots = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,16,11ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Z' - })); -}; - -UilCommentDots.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentDots; \ No newline at end of file diff --git a/icons/uil-comment-download.js b/icons/uil-comment-download.js deleted file mode 100644 index 4a511c93..00000000 --- a/icons/uil-comment-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a8.49,8.49,0,0,1,.88,0,1,1,0,1,0,.24-2A8.32,8.32,0,0,0,11,4,9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14Zm2.71-6.74a1,1,0,0,0-1.42,0L19,8.59V3a1,1,0,0,0-2,0V8.59l-1.29-1.3a1,1,0,1,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,21.71,7.29Z' - })); -}; - -UilCommentDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentDownload; \ No newline at end of file diff --git a/icons/uil-comment-edit.js b/icons/uil-comment-edit.js deleted file mode 100644 index 3cf41bcf..00000000 --- a/icons/uil-comment-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,4.72,19.28,2.29a1,1,0,0,0-1.41,0L12.29,7.87a1,1,0,0,0-.29.71V11a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l5.58-5.58A1,1,0,0,0,21.71,4.72ZM15,10H14V9l4.58-4.58,1,1Zm4,2h0a1,1,0,0,0-1,1,7,7,0,0,1-7,7H5.41l.64-.63a1,1,0,0,0,0-1.42A7,7,0,0,1,11,6a1,1,0,0,0,0-2h0A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,9-9A1,1,0,0,0,19,12Z' - })); -}; - -UilCommentEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentEdit; \ No newline at end of file diff --git a/icons/uil-comment-exclamation.js b/icons/uil-comment-exclamation.js deleted file mode 100644 index 980762c2..00000000 --- a/icons/uil-comment-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,14a1,1,0,1,0,1,1A1,1,0,0,0,12,14ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20ZM12,8a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8Z' - })); -}; - -UilCommentExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentExclamation; \ No newline at end of file diff --git a/icons/uil-comment-heart.js b/icons/uil-comment-heart.js deleted file mode 100644 index ac9b3f37..00000000 --- a/icons/uil-comment-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8.35a3.07,3.07,0,0,0-3.54.53,3,3,0,0,0,0,4.24L11.29,16a1,1,0,0,0,1.42,0l2.83-2.83a3,3,0,0,0,0-4.24A3.07,3.07,0,0,0,12,8.35Zm2.12,3.36L12,13.83,9.88,11.71a1,1,0,0,1,0-1.42,1,1,0,0,1,1.41,0,1,1,0,0,0,1.42,0,1,1,0,0,1,1.41,0A1,1,0,0,1,14.12,11.71ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' - })); -}; - -UilCommentHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentHeart; \ No newline at end of file diff --git a/icons/uil-comment-image.js b/icons/uil-comment-image.js deleted file mode 100644 index d55f551e..00000000 --- a/icons/uil-comment-image.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,2.44,14.91a.29.29,0,0,0,0,.1,9.83,9.83,0,0,0,1.79,3.32l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9a10,10,0,0,0,9.46-6.78l0-.08A9.89,9.89,0,0,0,22,12,10,10,0,0,0,12,2Zm0,18H5.41l.3-.29,8.41-8.42a1,1,0,0,1,1.4,0l3.62,3.6.23.22A8,8,0,0,1,12,20ZM4.54,14.87l1.58-1.58a1,1,0,0,1,1.41,0l.87.87L5.68,16.9A7.67,7.67,0,0,1,4.54,14.87Zm15.41-2-3-3a3,3,0,0,0-4.24,0L9.82,12.76l-.88-.87a3,3,0,0,0-4.23,0L4,12.56A5.25,5.25,0,0,1,4,12a8,8,0,0,1,16,0A8.27,8.27,0,0,1,20,12.86Z' - })); -}; - -UilCommentImage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentImage; \ No newline at end of file diff --git a/icons/uil-comment-info-alt.js b/icons/uil-comment-info-alt.js deleted file mode 100644 index dc8fd2ba..00000000 --- a/icons/uil-comment-info-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentInfoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V10A1,1,0,0,0,12,9Zm7-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,6a1,1,0,1,0,1,1A1,1,0,0,0,12,6Z' - })); -}; - -UilCommentInfoAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentInfoAlt; \ No newline at end of file diff --git a/icons/uil-comment-info.js b/icons/uil-comment-info.js deleted file mode 100644 index bfb5bf22..00000000 --- a/icons/uil-comment-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm0-3a1,1,0,1,0,1,1A1,1,0,0,0,12,8Zm0-6A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Z' - })); -}; - -UilCommentInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentInfo; \ No newline at end of file diff --git a/icons/uil-comment-lines.js b/icons/uil-comment-lines.js deleted file mode 100644 index 79d22fe2..00000000 --- a/icons/uil-comment-lines.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm-4,4H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' - })); -}; - -UilCommentLines.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentLines; \ No newline at end of file diff --git a/icons/uil-comment-lock.js b/icons/uil-comment-lock.js deleted file mode 100644 index c1a4dbb9..00000000 --- a/icons/uil-comment-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.92,16.13a1,1,0,0,0-1.37.37A7,7,0,0,1,11.5,20H5.91l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,10.62,6.05a1,1,0,1,0-.24-2A9,9,0,0,0,4.47,18.62L2.79,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3.5,22h8a9,9,0,0,0,7.79-4.5A1,1,0,0,0,18.92,16.13Zm.58-9.95V5a3,3,0,0,0-6,0V6.18A3,3,0,0,0,11.5,9v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V9A3,3,0,0,0,19.5,6.18ZM15.5,5a1,1,0,0,1,2,0V6h-2Zm4,6a1,1,0,0,1-1,1h-4a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentLock; \ No newline at end of file diff --git a/icons/uil-comment-medical.js b/icons/uil-comment-medical.js deleted file mode 100644 index 8f67a52d..00000000 --- a/icons/uil-comment-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm2-9H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Z' - })); -}; - -UilCommentMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentMedical; \ No newline at end of file diff --git a/icons/uil-comment-message.js b/icons/uil-comment-message.js deleted file mode 100644 index 1d13ceb4..00000000 --- a/icons/uil-comment-message.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm5-9H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm-2,4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,9h6a1,1,0,0,0,0-2H9A1,1,0,0,0,9,9Z' - })); -}; - -UilCommentMessage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentMessage; \ No newline at end of file diff --git a/icons/uil-comment-notes.js b/icons/uil-comment-notes.js deleted file mode 100644 index 7416ba36..00000000 --- a/icons/uil-comment-notes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,11h6a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2ZM7,9a1,1,0,1,0,1,1A1,1,0,0,0,7,9Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Zm5-7H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilCommentNotes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentNotes; \ No newline at end of file diff --git a/icons/uil-comment-plus.js b/icons/uil-comment-plus.js deleted file mode 100644 index 5cc356d5..00000000 --- a/icons/uil-comment-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm3-9H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2Z' - })); -}; - -UilCommentPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentPlus; \ No newline at end of file diff --git a/icons/uil-comment-question.js b/icons/uil-comment-question.js deleted file mode 100644 index aaa8f75e..00000000 --- a/icons/uil-comment-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.77,5.87a1,1,0,0,0,1.36-.37A1,1,0,0,1,18,6a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,1,0-2.6-4.5A1,1,0,0,0,14.77,5.87ZM19.07,13a1,1,0,0,0-1.12.86A7,7,0,0,1,11,20H5.41l.65-.65a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a1,1,0,0,0,0-2A9,9,0,0,0,4,18.61L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.93-7.87A1,1,0,0,0,19.07,13Zm-1.69-2.93A1,1,0,0,0,16.8,10l-.18.06-.18.09-.15.13a1,1,0,0,0-.21.32A.84.84,0,0,0,16,11a1,1,0,0,0,.07.39,1,1,0,0,0,.22.32A1,1,0,0,0,17,12a1,1,0,0,0,1-1,.84.84,0,0,0-.08-.38,1.07,1.07,0,0,0-.54-.54Z' - })); -}; - -UilCommentQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentQuestion; \ No newline at end of file diff --git a/icons/uil-comment-redo.js b/icons/uil-comment-redo.js deleted file mode 100644 index a6e583d2..00000000 --- a/icons/uil-comment-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.22a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14ZM21,2a1,1,0,0,0-1,1h0a5,5,0,1,0,.3,7.75A1,1,0,1,0,19,9.25,3,3,0,1,1,17,4a3,3,0,0,1,2.23,1H18a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2Z' - })); -}; - -UilCommentRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentRedo; \ No newline at end of file diff --git a/icons/uil-comment-search.js b/icons/uil-comment-search.js deleted file mode 100644 index 970deb85..00000000 --- a/icons/uil-comment-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.21,10.29,19.48,8.57a4.37,4.37,0,0,0,.65-2.26,4.31,4.31,0,1,0-4.32,4.32A4.35,4.35,0,0,0,18.07,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,21.21,10.29ZM17.45,8A2.32,2.32,0,0,1,13.5,6.31a2.29,2.29,0,0,1,.68-1.63,2.32,2.32,0,0,1,3.27,0,2.31,2.31,0,0,1,0,3.27ZM19.5,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11.5,20H5.91l.64-.63a1,1,0,0,0,0-1.41,7,7,0,0,1-2-5A7,7,0,0,1,8.87,6.52a1,1,0,1,0-.74-1.86,9,9,0,0,0-3.66,14L2.79,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3.5,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19.5,14Z' - })); -}; - -UilCommentSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentSearch; \ No newline at end of file diff --git a/icons/uil-comment-share.js b/icons/uil-comment-share.js deleted file mode 100644 index 06e28cfa..00000000 --- a/icons/uil-comment-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.06,13.51a1,1,0,0,0-1.11.87A7,7,0,0,1,11,20.5H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.72a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,19.12L2.29,20.79a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22.5h8a9,9,0,0,0,8.93-7.88A1,1,0,0,0,19.06,13.51ZM19,7.5a2,2,0,0,0-1.18.39l-1.75-.8L18,6.21a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,14,5a2,2,0,0,0,0,4,2,2,0,0,0,.93-.24l2.09,1A2,2,0,1,0,19,7.5Z' - })); -}; - -UilCommentShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentShare; \ No newline at end of file diff --git a/icons/uil-comment-shield.js b/icons/uil-comment-shield.js deleted file mode 100644 index 52e994de..00000000 --- a/icons/uil-comment-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.7,2.86a1,1,0,0,0-.84-.2,3,3,0,0,1-2.33-.48,1,1,0,0,0-1.15,0,3,3,0,0,1-2.33.48,1,1,0,0,0-.84.2,1,1,0,0,0-.37.77V7a4.56,4.56,0,0,0,1.91,3.7l1.62,1.16a1,1,0,0,0,1.17,0l1.62-1.16A4.56,4.56,0,0,0,22.07,7V3.63A1,1,0,0,0,21.7,2.86ZM20.07,7A2.57,2.57,0,0,1,19,9l-1,.74L16.91,9A2.57,2.57,0,0,1,15.84,7V4.72A5.17,5.17,0,0,0,18,4.17a5.12,5.12,0,0,0,2.11.55ZM18.93,14a1,1,0,0,0-1.21.72A7,7,0,0,1,10.93,20H5.35L6,19.37A1,1,0,0,0,6,18,7,7,0,0,1,10.93,6a1,1,0,0,0,0-2,9,9,0,0,0-7,14.62L2.23,20.29A1,1,0,0,0,2.93,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,18.93,14Z' - })); -}; - -UilCommentShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentShield; \ No newline at end of file diff --git a/icons/uil-comment-slash.js b/icons/uil-comment-slash.js deleted file mode 100644 index 72aa519f..00000000 --- a/icons/uil-comment-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.19,5.23A7.12,7.12,0,0,1,12,5a7,7,0,0,1,7,7,7.12,7.12,0,0,1-.23,1.81,1,1,0,0,0,.7,1.23,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,1-.74A8.91,8.91,0,0,0,21,12a9,9,0,0,0-9-9,8.91,8.91,0,0,0-2.33.3A1,1,0,0,0,9,4.53,1,1,0,0,0,10.19,5.23ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L5,6.38A9,9,0,0,0,5,17.62L3.29,19.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,21h8a9,9,0,0,0,5.62-2l2.67,2.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM12,19H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,6.4,7.81l9.79,9.79A7,7,0,0,1,12,19Z' - })); -}; - -UilCommentSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentSlash; \ No newline at end of file diff --git a/icons/uil-comment-upload.js b/icons/uil-comment-upload.js deleted file mode 100644 index 7d30ed1a..00000000 --- a/icons/uil-comment-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a1,1,0,0,0,0-2A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14Zm2.71-8.74-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L17,5.41V11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,5.29Z' - })); -}; - -UilCommentUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentUpload; \ No newline at end of file diff --git a/icons/uil-comment-verify.js b/icons/uil-comment-verify.js deleted file mode 100644 index f8574c2b..00000000 --- a/icons/uil-comment-verify.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentVerify = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.29,8.85l-4.73,4.74L8.71,11.73a1,1,0,0,0-1.42,1.42l2.56,2.56a1,1,0,0,0,1.42,0l5.44-5.44a1,1,0,1,0-1.42-1.42ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' - })); -}; - -UilCommentVerify.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentVerify; \ No newline at end of file diff --git a/icons/uil-comment.js b/icons/uil-comment.js deleted file mode 100644 index d17ded2d..00000000 --- a/icons/uil-comment.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilComment = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' - })); -}; - -UilComment.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilComment; \ No newline at end of file diff --git a/icons/uil-comments-alt.js b/icons/uil-comments-alt.js deleted file mode 100644 index 0638709a..00000000 --- a/icons/uil-comments-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCommentsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,8H18V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V17a1,1,0,0,0,.62.92A.84.84,0,0,0,3,18a1,1,0,0,0,.71-.29l2.81-2.82H8v1.44a3,3,0,0,0,3,3h6.92l2.37,2.38A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V11A3,3,0,0,0,19,8ZM8,11v1.89H6.11a1,1,0,0,0-.71.29L4,14.59V5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V8H11A3,3,0,0,0,8,11Zm12,7.59-1-1a1,1,0,0,0-.71-.3H11a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Z' - })); -}; - -UilCommentsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCommentsAlt; \ No newline at end of file diff --git a/icons/uil-comments.js b/icons/uil-comments.js deleted file mode 100644 index 7381a527..00000000 --- a/icons/uil-comments.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilComments = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.61,19.19A7,7,0,0,0,17.87,8.62,8,8,0,1,0,3.68,14.91L2.29,16.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,18H8.69A7,7,0,0,0,15,22h6a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09ZM8,15a6.63,6.63,0,0,0,.08,1H5.41l.35-.34a1,1,0,0,0,0-1.42A5.93,5.93,0,0,1,4,10a6,6,0,0,1,6-6,5.94,5.94,0,0,1,5.65,4c-.22,0-.43,0-.65,0A7,7,0,0,0,8,15ZM18.54,20l.05.05H15a5,5,0,1,1,3.54-1.46,1,1,0,0,0-.3.7A1,1,0,0,0,18.54,20Z' - })); -}; - -UilComments.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilComments; \ No newline at end of file diff --git a/icons/uil-compact-disc.js b/icons/uil-compact-disc.js deleted file mode 100644 index 3b332d30..00000000 --- a/icons/uil-compact-disc.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompactDisc = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' - })); -}; - -UilCompactDisc.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompactDisc; \ No newline at end of file diff --git a/icons/uil-comparison.js b/icons/uil-comparison.js deleted file mode 100644 index 860d6322..00000000 --- a/icons/uil-comparison.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilComparison = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21 20H4v-.54l5-5 3.8 3.8a1 1 0 0 0 1.41 0l7.5-7.5a1 1 0 0 0 0-1.42 1 1 0 0 0-1.41 0l-6.8 6.8-3.79-3.8a1 1 0 0 0-1.41 0L4 16.63v-5.17l5-5 2.8 2.8a1 1 0 0 0 1.41 0L18 4.47l2.19 2.19a1 1 0 0 0 1.41-1.42l-2.91-2.89a1 1 0 0 0-1.41 0l-4.8 4.8-2.79-2.8a1 1 0 0 0-1.41 0L4 8.63V3a1 1 0 0 0-2 0v18a1 1 0 0 0 1 1h18a1 1 0 0 0 0-2Z' - })); -}; - -UilComparison.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilComparison; \ No newline at end of file diff --git a/icons/uil-compass.js b/icons/uil-compass.js deleted file mode 100644 index 1f427f20..00000000 --- a/icons/uil-compass.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompass = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm1,17.93V19a1,1,0,0,0-2,0v.93A8,8,0,0,1,4.07,13H5a1,1,0,0,0,0-2H4.07A8,8,0,0,1,11,4.07V5a1,1,0,0,0,2,0V4.07A8,8,0,0,1,19.93,11H19a1,1,0,0,0,0,2h.93A8,8,0,0,1,13,19.93ZM15.14,7.55l-5,2.12a1,1,0,0,0-.52.52l-2.12,5a1,1,0,0,0,.21,1.1,1,1,0,0,0,.7.3.93.93,0,0,0,.4-.09l5-2.12a1,1,0,0,0,.52-.52l2.12-5a1,1,0,0,0-1.31-1.31Zm-2.49,5.1-2.28,1,1-2.28,2.28-1Z' - })); -}; - -UilCompass.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompass; \ No newline at end of file diff --git a/icons/uil-compress-alt-left.js b/icons/uil-compress-alt-left.js deleted file mode 100644 index 1d3a8663..00000000 --- a/icons/uil-compress-alt-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressAltLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,5.5a1,1,0,0,0-1,1V8.09L3.71,2.29A1,1,0,0,0,2.29,3.71L8.09,9.5H6.5a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54,1,1,0,0,0,.08-.38v-4A1,1,0,0,0,10.5,5.5ZM21.71,20.29l-5.8-5.79H17.5a1,1,0,0,0,0-2h-4a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54,1,1,0,0,0-.08.38v4a1,1,0,0,0,2,0V15.91l5.79,5.8a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Z' - })); -}; - -UilCompressAltLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressAltLeft; \ No newline at end of file diff --git a/icons/uil-compress-alt.js b/icons/uil-compress-alt.js deleted file mode 100644 index 1a5a7bc0..00000000 --- a/icons/uil-compress-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,2.29a1,1,0,0,0-1.42,0L14.5,8.09V6.5a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54,1,1,0,0,0,.38.08h4a1,1,0,0,0,0-2H15.91l5.8-5.79A1,1,0,0,0,21.71,2.29ZM10.88,12.58a1,1,0,0,0-.38-.08h-4a1,1,0,0,0,0,2H8.09l-5.8,5.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5.79-5.8V17.5a1,1,0,0,0,2,0v-4a1,1,0,0,0-.08-.38A1,1,0,0,0,10.88,12.58Z' - })); -}; - -UilCompressAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressAlt; \ No newline at end of file diff --git a/icons/uil-compress-arrows.js b/icons/uil-compress-arrows.js deleted file mode 100644 index 2771c5bd..00000000 --- a/icons/uil-compress-arrows.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.38,13.08A1,1,0,0,0,10,13H6a1,1,0,0,0,0,2H7.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,16.41V18a1,1,0,0,0,2,0V14a1,1,0,0,0-.08-.38A1,1,0,0,0,10.38,13.08ZM10,5A1,1,0,0,0,9,6V7.59L3.71,2.29A1,1,0,0,0,2.29,3.71L7.59,9H6a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,11,10V6A1,1,0,0,0,10,5Zm3.62,5.92A1,1,0,0,0,14,11h4a1,1,0,0,0,0-2H16.41l5.3-5.29a1,1,0,1,0-1.42-1.42L15,7.59V6a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38A1,1,0,0,0,13.62,10.92ZM16.41,15H18a1,1,0,0,0,0-2H14a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,13,14v4a1,1,0,0,0,2,0V16.41l5.29,5.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilCompressArrows.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressArrows; \ No newline at end of file diff --git a/icons/uil-compress-lines.js b/icons/uil-compress-lines.js deleted file mode 100644 index 3052d12a..00000000 --- a/icons/uil-compress-lines.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressLines = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,20H13V16.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V20H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2ZM7,4h4V7.59l-.79-.8A1,1,0,1,0,8.79,8.21l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,1,0-1.42-1.42l-.79.8V4h4a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4Z' - })); -}; - -UilCompressLines.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressLines; \ No newline at end of file diff --git a/icons/uil-compress-point.js b/icons/uil-compress-point.js deleted file mode 100644 index bdcb0aa5..00000000 --- a/icons/uil-compress-point.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressPoint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29,15.41,14H17a1,1,0,0,0,0-2H13.41l5.66-5.66a1,1,0,1,0-1.41-1.41L12,10.59V7a1,1,0,0,0-2,0V8.59L3.71,2.29A1,1,0,0,0,2.29,3.71L8.59,10H7a1,1,0,0,0,0,2h3.59L4.93,17.66a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L12,13.41V17a1,1,0,0,0,2,0V15.41l6.29,6.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Z' - })); -}; - -UilCompressPoint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressPoint; \ No newline at end of file diff --git a/icons/uil-compress-v.js b/icons/uil-compress-v.js deleted file mode 100644 index 8ff5f827..00000000 --- a/icons/uil-compress-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompressV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,13.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V21a1,1,0,0,0,2,0V16.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-1.42-2.58a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,1,0-1.42-1.42l-.79.8V3a1,1,0,0,0-2,0V7.59l-.79-.8A1,1,0,1,0,8.79,8.21Z' - })); -}; - -UilCompressV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompressV; \ No newline at end of file diff --git a/icons/uil-compress.js b/icons/uil-compress.js deleted file mode 100644 index bf479ccb..00000000 --- a/icons/uil-compress.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCompress = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,9h5a1,1,0,0,0,0-2H17V3a1,1,0,0,0-2,0V8A1,1,0,0,0,16,9ZM8,15H3a1,1,0,0,0,0,2H7v4a1,1,0,0,0,2,0V16A1,1,0,0,0,8,15ZM8,2A1,1,0,0,0,7,3V7H3A1,1,0,0,0,3,9H8A1,1,0,0,0,9,8V3A1,1,0,0,0,8,2ZM21,15H16a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V17h4a1,1,0,0,0,0-2Z' - })); -}; - -UilCompress.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCompress; \ No newline at end of file diff --git a/icons/uil-confused.js b/icons/uil-confused.js deleted file mode 100644 index 82c75328..00000000 --- a/icons/uil-confused.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilConfused = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Zm5.66,4.56-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilConfused.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilConfused; \ No newline at end of file diff --git a/icons/uil-constructor.js b/icons/uil-constructor.js deleted file mode 100644 index 370f601f..00000000 --- a/icons/uil-constructor.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilConstructor = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,9.67V9.5a7.95,7.95,0,0,0-5.59-7.62l-.06,0a8.32,8.32,0,0,0-2.59-.36A8.21,8.21,0,0,0,4,9.67a3,3,0,0,0,0,5.66,8,8,0,0,0,8,7.17h.23a8.13,8.13,0,0,0,7.68-7.16A3,3,0,0,0,20,9.67ZM12.18,20.5a6,6,0,0,1-6.09-5H17.86A6.09,6.09,0,0,1,12.18,20.5Zm6.82-7H5a1,1,0,0,1,0-2H7a1,1,0,0,0,0-2H6A6.4,6.4,0,0,1,9,4.35V7.5a1,1,0,0,0,2,0V3.59a7.34,7.34,0,0,1,.82-.09H12a6.64,6.64,0,0,1,1,.09V7.5a1,1,0,0,0,2,0V4.32a6.65,6.65,0,0,1,1.18.87A6,6,0,0,1,18,9.5H17a1,1,0,0,0,0,2h2a1,1,0,0,1,0,2Z' - })); -}; - -UilConstructor.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilConstructor; \ No newline at end of file diff --git a/icons/uil-copy-alt.js b/icons/uil-copy-alt.js deleted file mode 100644 index 46a094ad..00000000 --- a/icons/uil-copy-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCopyAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,20H8a3,3,0,0,1-3-3V7A1,1,0,0,0,3,7V17a5,5,0,0,0,5,5h8a1,1,0,0,0,0-2ZM21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L14.06,2H10A3,3,0,0,0,7,5V15a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM19,15a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilCopyAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCopyAlt; \ No newline at end of file diff --git a/icons/uil-copy-landscape.js b/icons/uil-copy-landscape.js deleted file mode 100644 index 67ed3db3..00000000 --- a/icons/uil-copy-landscape.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCopyLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,19H6a3,3,0,0,1-3-3V8A1,1,0,0,0,1,8v8a5,5,0,0,0,5,5H18a1,1,0,0,0,0-2Zm5-9.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L16.06,3H8A3,3,0,0,0,5,6v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM21,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3Z' - })); -}; - -UilCopyLandscape.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCopyLandscape; \ No newline at end of file diff --git a/icons/uil-copy.js b/icons/uil-copy.js deleted file mode 100644 index f1fa2489..00000000 --- a/icons/uil-copy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCopy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,14.05,2H10A3,3,0,0,0,7,5V6H6A3,3,0,0,0,3,9V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V18h1a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM15,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8H7v7a3,3,0,0,0,3,3h5Zm4-4a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilCopy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCopy; \ No newline at end of file diff --git a/icons/uil-copyright.js b/icons/uil-copyright.js deleted file mode 100644 index 7d287da1..00000000 --- a/icons/uil-copyright.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCopyright = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,9h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v4a3,3,0,0,0,3,3h2a3,3,0,0,0,3-3,1,1,0,0,0-2,0,1,1,0,0,1-1,1H11a1,1,0,0,1-1-1V10A1,1,0,0,1,11,9Zm1-7A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilCopyright.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCopyright; \ No newline at end of file diff --git a/icons/uil-corner-down-left.js b/icons/uil-corner-down-left.js deleted file mode 100644 index 96ad36f9..00000000 --- a/icons/uil-corner-down-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerDownLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.69,2a1,1,0,0,0-1,1V13.37a2,2,0,0,1-2,2h-8l2.92-2.92A1,1,0,0,0,9.24,11L4.61,15.66a1.19,1.19,0,0,0-.22.33,1,1,0,0,0,0,.76,1,1,0,0,0,.22.33l4.63,4.63a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L7.73,17.37h8a4,4,0,0,0,4-4V3A1,1,0,0,0,18.69,2Z' - })); -}; - -UilCornerDownLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerDownLeft; \ No newline at end of file diff --git a/icons/uil-corner-down-right-alt.js b/icons/uil-corner-down-right-alt.js deleted file mode 100644 index b2e988bd..00000000 --- a/icons/uil-corner-down-right-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerDownRightAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.92,12.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,12H8a1,1,0,0,1-1-1V7A1,1,0,0,0,5,7v4a3,3,0,0,0,3,3h9.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,12.62Z' - })); -}; - -UilCornerDownRightAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerDownRightAlt; \ No newline at end of file diff --git a/icons/uil-corner-down-right.js b/icons/uil-corner-down-right.js deleted file mode 100644 index e7efcc13..00000000 --- a/icons/uil-corner-down-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerDownRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.61,16a1.19,1.19,0,0,0-.22-.33L14.76,11a1,1,0,0,0-1.41,1.41l2.92,2.92h-7a3,3,0,0,1-3-3V3a1,1,0,1,0-2,0v9.37a5,5,0,0,0,5,5h7l-2.92,2.92a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l4.63-4.63a1,1,0,0,0,.22-.33A1,1,0,0,0,19.61,16Z' - })); -}; - -UilCornerDownRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerDownRight; \ No newline at end of file diff --git a/icons/uil-corner-left-down.js b/icons/uil-corner-left-down.js deleted file mode 100644 index 68abc36b..00000000 --- a/icons/uil-corner-left-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerLeftDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,4.31H11.63a5,5,0,0,0-5,5v7L3.71,13.35a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l4.63,4.63a1,1,0,0,0,.33.22.94.94,0,0,0,.76,0,1.19,1.19,0,0,0,.33-.22L13,14.76a1,1,0,0,0-1.41-1.41L8.63,16.27v-7a3,3,0,0,1,3-3H21a1,1,0,0,0,0-2Z' - })); -}; - -UilCornerLeftDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerLeftDown; \ No newline at end of file diff --git a/icons/uil-corner-right-down.js b/icons/uil-corner-right-down.js deleted file mode 100644 index a38350e0..00000000 --- a/icons/uil-corner-right-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerRightDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,13.35a1,1,0,0,0-1.42,0l-2.92,2.92v-8a4,4,0,0,0-4-4H3a1,1,0,1,0,0,2H13.37a2,2,0,0,1,2,2v8l-2.92-2.92A1,1,0,0,0,11,14.76l4.62,4.63a1.19,1.19,0,0,0,.33.22.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.22l4.63-4.63A1,1,0,0,0,21.71,13.35Z' - })); -}; - -UilCornerRightDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerRightDown; \ No newline at end of file diff --git a/icons/uil-corner-up-left.js b/icons/uil-corner-up-left.js deleted file mode 100644 index 1565cb62..00000000 --- a/icons/uil-corner-up-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerUpLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.69,6.63h-7l2.92-2.92a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L4.61,6.92a1,1,0,0,0-.22.33,1,1,0,0,0,0,.76,1.19,1.19,0,0,0,.22.33L9.24,13a1,1,0,0,0,.7.3,1,1,0,0,0,.71-1.71L7.73,8.63h7a3,3,0,0,1,3,3V21a1,1,0,0,0,2,0V11.63A5,5,0,0,0,14.69,6.63Z' - })); -}; - -UilCornerUpLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerUpLeft; \ No newline at end of file diff --git a/icons/uil-corner-up-right-alt.js b/icons/uil-corner-up-right-alt.js deleted file mode 100644 index 4c346bed..00000000 --- a/icons/uil-corner-up-right-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerUpRightAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.92,10.12a1,1,0,0,0-.21-.33l-3-3a1,1,0,1,0-1.42,1.42l1.3,1.29H7a3,3,0,0,0-3,3v4a1,1,0,0,0,2,0v-4a1,1,0,0,1,1-1h9.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,19.92,10.12Z' - })); -}; - -UilCornerUpRightAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerUpRightAlt; \ No newline at end of file diff --git a/icons/uil-corner-up-right.js b/icons/uil-corner-up-right.js deleted file mode 100644 index 3b3b81e4..00000000 --- a/icons/uil-corner-up-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCornerUpRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.61,7.25a1,1,0,0,0-.22-.33L14.76,2.29a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l2.92,2.92h-8a4,4,0,0,0-4,4V21a1,1,0,0,0,2,0V10.63a2,2,0,0,1,2-2h8l-2.92,2.92a1,1,0,0,0,.71,1.71,1,1,0,0,0,.7-.3l4.63-4.62A1.19,1.19,0,0,0,19.61,8,1,1,0,0,0,19.61,7.25Z' - })); -}; - -UilCornerUpRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCornerUpRight; \ No newline at end of file diff --git a/icons/uil-coronavirus.js b/icons/uil-coronavirus.js deleted file mode 100644 index 684a8b9a..00000000 --- a/icons/uil-coronavirus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCoronavirus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.5 9a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 9.5 9ZM9 14a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm6-6a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm-.5 4a1.5 1.5 0 1 0 1.5 1.5 1.5 1.5 0 0 0-1.5-1.5Zm7.5-1h-1.059a8.952 8.952 0 0 0-1.916-4.61l.753-.754a1 1 0 0 0-1.414-1.414l-.753.753A8.952 8.952 0 0 0 13 3.059V2a1 1 0 0 0-2 0v1.059a8.952 8.952 0 0 0-4.61 1.916l-.754-.753a1 1 0 0 0-1.414 1.414l.753.753A8.952 8.952 0 0 0 3.059 11H2a1 1 0 0 0 0 2h1.059a8.952 8.952 0 0 0 1.916 4.61l-.753.754a1 1 0 1 0 1.414 1.414l.753-.753A8.952 8.952 0 0 0 11 20.941V22a1 1 0 0 0 2 0v-1.059a8.952 8.952 0 0 0 4.61-1.916l.754.753a1 1 0 0 0 1.414-1.414l-.753-.753A8.952 8.952 0 0 0 20.941 13H22a1 1 0 0 0 0-2Zm-4 2h.92A7.004 7.004 0 0 1 13 18.92V17a1 1 0 0 0-2 0v1.92A7.004 7.004 0 0 1 5.08 13H6a1 1 0 0 0 0-2h-.92A7.004 7.004 0 0 1 11 5.08V7a1 1 0 0 0 2 0V5.08A7.004 7.004 0 0 1 18.92 11H18a1 1 0 0 0 0 2Z' - })); -}; - -UilCoronavirus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCoronavirus; \ No newline at end of file diff --git a/icons/uil-create-dashboard.js b/icons/uil-create-dashboard.js deleted file mode 100644 index 9846ea6e..00000000 --- a/icons/uil-create-dashboard.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCreateDashboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10 13H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1Zm-1 6H5v-4h4ZM20 3h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Zm-1 6h-4V5h4Zm1 7h-2v-2a1 1 0 0 0-2 0v2h-2a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0-2ZM10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM9 9H5V5h4Z' - })); -}; - -UilCreateDashboard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCreateDashboard; \ No newline at end of file diff --git a/icons/uil-creative-commons-pd.js b/icons/uil-creative-commons-pd.js deleted file mode 100644 index 97d760fa..00000000 --- a/icons/uil-creative-commons-pd.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCreativeCommonsPd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L8.05,9.47A3.07,3.07,0,0,0,8,10v4a3,3,0,0,0,3,3h2a3,3,0,0,0,1.89-.69l2,2A7.92,7.92,0,0,1,12,20Zm-2-6V11.41l3.46,3.46A.91.91,0,0,1,13,15H11A1,1,0,0,1,10,14Zm8.31,2.9L16,14.53A3.07,3.07,0,0,0,16,14a1,1,0,0,0-1-1,.91.91,0,0,0-.46.13l-4-4A.91.91,0,0,1,11,9h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11a3,3,0,0,0-1.89.69l-2-2A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' - })); -}; - -UilCreativeCommonsPd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCreativeCommonsPd; \ No newline at end of file diff --git a/icons/uil-credit-card-search.js b/icons/uil-credit-card-search.js deleted file mode 100644 index 5e43f885..00000000 --- a/icons/uil-credit-card-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCreditCardSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20 17.57a4.3 4.3 0 1 0-3.67 2.06 4.37 4.37 0 0 0 2.24-.63l1.72 1.73a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42ZM18 17a2.37 2.37 0 0 1-3.27 0 2.32 2.32 0 0 1 0-3.27 2.31 2.31 0 0 1 3.27 0A2.32 2.32 0 0 1 18 17Zm1-14H5a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h4a1 1 0 0 0 0-2H5a1 1 0 0 1-1-1V9h16v1a1 1 0 0 0 2 0V6a3 3 0 0 0-3-3Zm1 4H4V6a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1Zm-10 4H7a1 1 0 0 0 0 2h3a1 1 0 0 0 0-2Z' - })); -}; - -UilCreditCardSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCreditCardSearch; \ No newline at end of file diff --git a/icons/uil-credit-card.js b/icons/uil-credit-card.js deleted file mode 100644 index 71e04171..00000000 --- a/icons/uil-credit-card.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCreditCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,15h3a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2ZM19,5H5A3,3,0,0,0,2,8v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8A3,3,0,0,0,19,5Zm1,12a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11H20Zm0-8H4V8A1,1,0,0,1,5,7H19a1,1,0,0,1,1,1Z' - })); -}; - -UilCreditCard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCreditCard; \ No newline at end of file diff --git a/icons/uil-crockery.js b/icons/uil-crockery.js deleted file mode 100644 index a547f9c6..00000000 --- a/icons/uil-crockery.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCrockery = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,12.15V3a1,1,0,0,0-2,0v9.15a4.16,4.16,0,0,0-3,4c0,2.05,1.52,5.8,4,5.8s4-3.75,4-5.8A4.16,4.16,0,0,0,18,12.15ZM17,20c-.8,0-2-2.27-2-3.8A2.11,2.11,0,0,1,17,14a2.11,2.11,0,0,1,2,2.2C19,17.73,17.8,20,17,20ZM10,2A1,1,0,0,0,9,3V8.46L8,9.13V3A1,1,0,0,0,6,3V9.13L5,8.46V3A1,1,0,0,0,3,3V9a1,1,0,0,0,.45.83L6,11.54V21a1,1,0,0,0,2,0V11.54l2.55-1.71A1,1,0,0,0,11,9V3A1,1,0,0,0,10,2Z' - })); -}; - -UilCrockery.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCrockery; \ No newline at end of file diff --git a/icons/uil-crop-alt-rotate-left.js b/icons/uil-crop-alt-rotate-left.js deleted file mode 100644 index 4bde84d9..00000000 --- a/icons/uil-crop-alt-rotate-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCropAltRotateLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.71,16.29a1,1,0,0,0-1.42,1.42l.3.29H8a3,3,0,0,1-3-3V13a1,1,0,0,0-2,0v2a5,5,0,0,0,5,5h.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.42ZM20,12H19V5a1,1,0,0,0-1-1H11V3A1,1,0,0,0,9,3V4H8A1,1,0,0,0,8,6H9v7a1,1,0,0,0,1,1h7v1a1,1,0,0,0,2,0V14h1a1,1,0,0,0,0-2Zm-3,0H11V6h6Z' - })); -}; - -UilCropAltRotateLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCropAltRotateLeft; \ No newline at end of file diff --git a/icons/uil-crop-alt-rotate-right.js b/icons/uil-crop-alt-rotate-right.js deleted file mode 100644 index 17413f79..00000000 --- a/icons/uil-crop-alt-rotate-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCropAltRotateRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,4h-.59l.3-.29a1,1,0,1,0-1.42-1.42l-2,2a1,1,0,0,0,0,1.42l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L15.41,6H16a3,3,0,0,1,3,3v2a1,1,0,0,0,2,0V9A5,5,0,0,0,16,4Zm0,14H15V11a1,1,0,0,0-1-1H7V9A1,1,0,0,0,5,9v1H4a1,1,0,0,0,0,2H5v7a1,1,0,0,0,1,1h7v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2Zm-3,0H7V12h6Z' - })); -}; - -UilCropAltRotateRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCropAltRotateRight; \ No newline at end of file diff --git a/icons/uil-crop-alt.js b/icons/uil-crop-alt.js deleted file mode 100644 index 59f686c6..00000000 --- a/icons/uil-crop-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCropAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,16H18V7a1,1,0,0,0-1-1H8V5A1,1,0,0,0,6,5V6H5A1,1,0,0,0,5,8H6v9a1,1,0,0,0,1,1h9v1a1,1,0,0,0,2,0V18h1a1,1,0,0,0,0-2Zm-3,0H8V8h8Z' - })); -}; - -UilCropAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCropAlt; \ No newline at end of file diff --git a/icons/uil-crosshair-alt.js b/icons/uil-crosshair-alt.js deleted file mode 100644 index c12da593..00000000 --- a/icons/uil-crosshair-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCrosshairAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm0-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm1,17.93V17a1,1,0,0,0-2,0v2.93A8,8,0,0,1,4.07,13H7a1,1,0,0,0,0-2H4.07A8,8,0,0,1,11,4.07V7a1,1,0,0,0,2,0V4.07A8,8,0,0,1,19.93,11H17a1,1,0,0,0,0,2h2.93A8,8,0,0,1,13,19.93Z' - })); -}; - -UilCrosshairAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCrosshairAlt; \ No newline at end of file diff --git a/icons/uil-crosshair.js b/icons/uil-crosshair.js deleted file mode 100644 index cb369a4d..00000000 --- a/icons/uil-crosshair.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCrosshair = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-4,2h.91A6,6,0,0,1,13,17.91V17a1,1,0,0,0-2,0v.91A6,6,0,0,1,6.09,13H7a1,1,0,0,0,0-2H6.09A6,6,0,0,1,11,6.09V7a1,1,0,0,0,2,0V6.09A6,6,0,0,1,17.91,11H17a1,1,0,0,0,0,2Zm-5-2a1,1,0,1,0,1,1A1,1,0,0,0,12,11Z' - })); -}; - -UilCrosshair.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCrosshair; \ No newline at end of file diff --git a/icons/uil-crosshairs.js b/icons/uil-crosshairs.js deleted file mode 100644 index 9ccdd1a5..00000000 --- a/icons/uil-crosshairs.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCrosshairs = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-9,7a6,6,0,1,1,6-6A6,6,0,0,1,12,18Zm0-9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' - })); -}; - -UilCrosshairs.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCrosshairs; \ No newline at end of file diff --git a/icons/uil-css3-simple.js b/icons/uil-css3-simple.js deleted file mode 100644 index 2651a794..00000000 --- a/icons/uil-css3-simple.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCss3Simple = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.772,3.36426A1.00062,1.00062,0,0,0,20,3H6A1,1,0,0,0,6,5H18.78613l-.78094,4H5a1,1,0,0,0,0,2H17.61475l-1.1626,5.95508-6.32324,1.99658L4.71875,17.25244l.20361-1.06494a1.00015,1.00015,0,0,0-1.96484-.375L2.5874,17.75244A1.00059,1.00059,0,0,0,3.27,18.894L9.83008,20.9541a1.00175,1.00175,0,0,0,.60107-.00049l7.18994-2.27a1.00064,1.00064,0,0,0,.68018-.7622l2.68018-13.73A1.00008,1.00008,0,0,0,20.772,3.36426Z' - })); -}; - -UilCss3Simple.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCss3Simple; \ No newline at end of file diff --git a/icons/uil-cube.js b/icons/uil-cube.js deleted file mode 100644 index 837baa40..00000000 --- a/icons/uil-cube.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilCube = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.47,7.37s0,0,0-.08l-.06-.15a.71.71,0,0,0-.07-.09.94.94,0,0,0-.09-.12l-.09-.07L20,6.78l-7.5-4.63a1,1,0,0,0-1.06,0L4,6.78l-.09.08-.09.07a.94.94,0,0,0-.09.12.71.71,0,0,0-.07.09l-.06.15s0,0,0,.08a1.15,1.15,0,0,0,0,.26v8.74a1,1,0,0,0,.47.85l7.5,4.63h0a.47.47,0,0,0,.15.06s.05,0,.08,0a.86.86,0,0,0,.52,0s.05,0,.08,0a.47.47,0,0,0,.15-.06h0L20,17.22a1,1,0,0,0,.47-.85V7.63A1.15,1.15,0,0,0,20.47,7.37ZM11,19.21l-5.5-3.4V9.43L11,12.82Zm1-8.12L6.4,7.63,12,4.18l5.6,3.45Zm6.5,4.72L13,19.21V12.82l5.5-3.39Z' - })); -}; - -UilCube.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilCube; \ No newline at end of file diff --git a/icons/uil-dashboard.js b/icons/uil-dashboard.js deleted file mode 100644 index 327480e3..00000000 --- a/icons/uil-dashboard.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDashboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.088,4.95453c-.00732-.00781-.00952-.01819-.01715-.02582s-.01819-.00995-.02606-.01733a9.97886,9.97886,0,0,0-14.08948,0c-.00787.00738-.01837.00964-.02606.01733s-.00983.018-.01715.02582a10,10,0,1,0,14.1759,0ZM12,20a7.9847,7.9847,0,0,1-6.235-3H9.78027a2.9636,2.9636,0,0,0,4.43946,0h4.01532A7.9847,7.9847,0,0,1,12,20Zm-1-5a1,1,0,1,1,1,1A1.001,1.001,0,0,1,11,15Zm8.41022.00208L19.3999,15H15a2.99507,2.99507,0,0,0-2-2.81573V9a1,1,0,0,0-2,0v3.18427A2.99507,2.99507,0,0,0,9,15H4.6001l-.01032.00208A7.93083,7.93083,0,0,1,4.06946,13H5a1,1,0,0,0,0-2H4.06946A7.95128,7.95128,0,0,1,5.68854,7.10211l.65472.65473A.99989.99989,0,1,0,7.75732,6.34277l-.65466-.65466A7.95231,7.95231,0,0,1,11,4.06946V5a1,1,0,0,0,2,0V4.06946a7.95231,7.95231,0,0,1,3.89734,1.61865l-.65466.65466a.99989.99989,0,1,0,1.41406,1.41407l.65472-.65473A7.95128,7.95128,0,0,1,19.93054,11H19a1,1,0,0,0,0,2h.93054A7.93083,7.93083,0,0,1,19.41022,15.00208Z' - })); -}; - -UilDashboard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDashboard; \ No newline at end of file diff --git a/icons/uil-data-sharing.js b/icons/uil-data-sharing.js deleted file mode 100644 index 909f902f..00000000 --- a/icons/uil-data-sharing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDataSharing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.52,3.87A5,5,0,0,0,11.44,4H7A3,3,0,0,0,4,7v4a1,1,0,0,0,2,0V7A1,1,0,0,1,7,6H9.78A3,3,0,0,0,9,8a3,3,0,0,0,3,3h7.33a3.66,3.66,0,0,0,1.19-7.13ZM19.33,9H12a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.67A1.65,1.65,0,0,1,21,7.33,1.67,1.67,0,0,1,19.33,9ZM19,13a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H14.74a3.66,3.66,0,0,0-2.22-2.13,5,5,0,0,0-9.45,1.28A3,3,0,0,0,4,23h7.33a3.66,3.66,0,0,0,3.6-3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13Zm-7.67,8H4a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.67A1.65,1.65,0,0,1,13,19.33,1.67,1.67,0,0,1,11.33,21Z' - })); -}; - -UilDataSharing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDataSharing; \ No newline at end of file diff --git a/icons/uil-database-alt.js b/icons/uil-database-alt.js deleted file mode 100644 index d9bdae0d..00000000 --- a/icons/uil-database-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDatabaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,17a1,1,0,1,0,1,1A1,1,0,0,0,8,17Zm0-6a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm8-9H8A4,4,0,0,0,4,6V18a4,4,0,0,0,4,4h8a4,4,0,0,0,4-4V6A4,4,0,0,0,16,2Zm2,16a2,2,0,0,1-2,2H8a2,2,0,0,1-2-2V15.44A3.91,3.91,0,0,0,8,16h8a3.91,3.91,0,0,0,2-.56Zm0-6a2,2,0,0,1-2,2H8a2,2,0,0,1-2-2V9.44A3.91,3.91,0,0,0,8,10h8a3.91,3.91,0,0,0,2-.56ZM16,8H8A2,2,0,0,1,8,4h8a2,2,0,0,1,0,4Z' - })); -}; - -UilDatabaseAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDatabaseAlt; \ No newline at end of file diff --git a/icons/uil-database.js b/icons/uil-database.js deleted file mode 100644 index e11c36ce..00000000 --- a/icons/uil-database.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDatabase = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,16.5a1,1,0,1,0,1,1A1,1,0,0,0,8,16.5ZM12,2C8,2,4,3.37,4,6V18c0,2.63,4,4,8,4s8-1.37,8-4V6C20,3.37,16,2,12,2Zm6,16c0,.71-2.28,2-6,2s-6-1.29-6-2V14.73A13.16,13.16,0,0,0,12,16a13.16,13.16,0,0,0,6-1.27Zm0-6c0,.71-2.28,2-6,2s-6-1.29-6-2V8.73A13.16,13.16,0,0,0,12,10a13.16,13.16,0,0,0,6-1.27ZM12,8C8.28,8,6,6.71,6,6s2.28-2,6-2,6,1.29,6,2S15.72,8,12,8ZM8,10.5a1,1,0,1,0,1,1A1,1,0,0,0,8,10.5Z' - })); -}; - -UilDatabase.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDatabase; \ No newline at end of file diff --git a/icons/uil-desert.js b/icons/uil-desert.js deleted file mode 100644 index daa40b22..00000000 --- a/icons/uil-desert.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesert = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,2a4,4,0,1,0,4,4A4,4,0,0,0,18,2Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,18,8ZM15,20H13V18a1,1,0,0,0-2,0v2H9V16.62l3.45-1.73A1,1,0,0,0,13,14V10a1,1,0,0,0-2,0v3.38l-2,1V8A1,1,0,0,0,7,8v8.38l-2-1V13a1,1,0,0,0-2,0v3a1,1,0,0,0,.55.89L7,18.62V20H3a1,1,0,0,0,0,2H15a1,1,0,0,0,0-2Z' - })); -}; - -UilDesert.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesert; \ No newline at end of file diff --git a/icons/uil-desktop-alt-slash.js b/icons/uil-desktop-alt-slash.js deleted file mode 100644 index 8ce42eeb..00000000 --- a/icons/uil-desktop-alt-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesktopAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l1,1A3,3,0,0,0,3,6v8a3,3,0,0,0,3,3H9v2H6a1,1,0,0,0,0,2H18a1,1,0,0,0,.93-.66l1.36,1.37a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,6.41,9.59,11H5ZM13,19H11V17h2ZM6,15a1,1,0,0,1-1-1V13h6.59l2,2Zm9,4V17h.59l2,2ZM9.66,5H18a1,1,0,0,1,1,1v5H17.66a1,1,0,0,0,0,2H19v1a.37.37,0,0,1,0,.11,1,1,0,0,0,.78,1.18l.2,0a1,1,0,0,0,1-.8A2.84,2.84,0,0,0,21,14V6a3,3,0,0,0-3-3H9.66a1,1,0,0,0,0,2Z' - })); -}; - -UilDesktopAltSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesktopAltSlash; \ No newline at end of file diff --git a/icons/uil-desktop-alt.js b/icons/uil-desktop-alt.js deleted file mode 100644 index 932cec34..00000000 --- a/icons/uil-desktop-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesktopAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H8v2H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2H16V18h3a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,20H10V18h4Zm6-5a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Zm0-3H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilDesktopAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesktopAlt; \ No newline at end of file diff --git a/icons/uil-desktop-cloud-alt.js b/icons/uil-desktop-cloud-alt.js deleted file mode 100644 index b8db254e..00000000 --- a/icons/uil-desktop-cloud-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesktopCloudAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.5,10H10a3,3,0,0,0,1.07-5.8,4,4,0,0,0-7.48,1A2.5,2.5,0,0,0,4.5,10Zm0-3a1,1,0,0,0,1-1,2,2,0,0,1,3.89-.64,1,1,0,0,0,.78.66A1,1,0,0,1,11,7a1,1,0,0,1-1,1H4.5a.5.5,0,0,1,0-1ZM19,2H14a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v7H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H8v2H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2H16V18h3a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,20H10V18h4Zm6-5a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Z' - })); -}; - -UilDesktopCloudAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesktopCloudAlt; \ No newline at end of file diff --git a/icons/uil-desktop-slash.js b/icons/uil-desktop-slash.js deleted file mode 100644 index ca52f6cd..00000000 --- a/icons/uil-desktop-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesktopSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.66,6H18a1,1,0,0,1,1,1v6a.94.94,0,0,1-.14.5,1,1,0,0,0,.31,1.38.94.94,0,0,0,.53.16,1,1,0,0,0,.84-.46A2.94,2.94,0,0,0,21,13V7a3,3,0,0,0-3-3H10.66a1,1,0,0,0,0,2ZM21.71,20.29,5.86,4.45h0L3.71,2.29A1,1,0,0,0,2.29,3.71L3.69,5.1A3,3,0,0,0,3,7v6a3,3,0,0,0,3,3h5v2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,.93-.66l2.36,2.37a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,14a1,1,0,0,1-1-1V7a1,1,0,0,1,.12-.46L12.59,14Zm7,4V16h1.59l2,2Z' - })); -}; - -UilDesktopSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesktopSlash; \ No newline at end of file diff --git a/icons/uil-desktop.js b/icons/uil-desktop.js deleted file mode 100644 index 95beffee..00000000 --- a/icons/uil-desktop.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDesktop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,3H5A3,3,0,0,0,2,6v8a3,3,0,0,0,3,3h6v2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2H13V17h6a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Zm1,11a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1Z' - })); -}; - -UilDesktop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDesktop; \ No newline at end of file diff --git a/icons/uil-dialpad-alt.js b/icons/uil-dialpad-alt.js deleted file mode 100644 index ace0c62a..00000000 --- a/icons/uil-dialpad-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDialpadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,9.25A2.75,2.75,0,1,0,7.75,12,2.75,2.75,0,0,0,5,9.25Zm0,4A1.25,1.25,0,1,1,6.25,12,1.25,1.25,0,0,1,5,13.25Zm7-4A2.75,2.75,0,1,0,14.75,12,2.75,2.75,0,0,0,12,9.25Zm0,4A1.25,1.25,0,1,1,13.25,12,1.25,1.25,0,0,1,12,13.25Zm7-5.5A2.75,2.75,0,1,0,16.25,5,2.75,2.75,0,0,0,19,7.75Zm0-4A1.25,1.25,0,1,1,17.75,5,1.25,1.25,0,0,1,19,3.75Zm0,5.5A2.75,2.75,0,1,0,21.75,12,2.75,2.75,0,0,0,19,9.25Zm0,4A1.25,1.25,0,1,1,20.25,12,1.25,1.25,0,0,1,19,13.25ZM5,2.25A2.75,2.75,0,1,0,7.75,5,2.75,2.75,0,0,0,5,2.25Zm0,4A1.25,1.25,0,1,1,6.25,5,1.25,1.25,0,0,1,5,6.25Zm7,10A2.75,2.75,0,1,0,14.75,19,2.75,2.75,0,0,0,12,16.25Zm0,4A1.25,1.25,0,1,1,13.25,19,1.25,1.25,0,0,1,12,20.25Zm0-18A2.75,2.75,0,1,0,14.75,5,2.75,2.75,0,0,0,12,2.25Zm0,4A1.25,1.25,0,1,1,13.25,5,1.25,1.25,0,0,1,12,6.25Z' - })); -}; - -UilDialpadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDialpadAlt; \ No newline at end of file diff --git a/icons/uil-dialpad.js b/icons/uil-dialpad.js deleted file mode 100644 index 3fbe2917..00000000 --- a/icons/uil-dialpad.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDialpad = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,2.25H3A.76.76,0,0,0,2.25,3V7A.76.76,0,0,0,3,7.75H7A.76.76,0,0,0,7.75,7V3A.76.76,0,0,0,7,2.25Zm-.75,4H3.75V3.75h2.5ZM21,2.25H17a.76.76,0,0,0-.75.75V7a.76.76,0,0,0,.75.75h4A.76.76,0,0,0,21.75,7V3A.76.76,0,0,0,21,2.25Zm-.75,4h-2.5V3.75h2.5ZM14,2.25H10A.76.76,0,0,0,9.25,3V7a.76.76,0,0,0,.75.75h4A.76.76,0,0,0,14.75,7V3A.76.76,0,0,0,14,2.25Zm-.75,4h-2.5V3.75h2.5ZM7,9.25H3a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75H7A.76.76,0,0,0,7.75,14V10A.76.76,0,0,0,7,9.25Zm-.75,4H3.75v-2.5h2.5Zm7.75-4H10a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V10A.76.76,0,0,0,14,9.25Zm-.75,4h-2.5v-2.5h2.5Zm7.75-4H17a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V10A.76.76,0,0,0,21,9.25Zm-.75,4h-2.5v-2.5h2.5Zm-6.25,3H10a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V17A.76.76,0,0,0,14,16.25Zm-.75,4h-2.5v-2.5h2.5Z' - })); -}; - -UilDialpad.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDialpad; \ No newline at end of file diff --git a/icons/uil-diamond.js b/icons/uil-diamond.js deleted file mode 100644 index ae6140cc..00000000 --- a/icons/uil-diamond.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiamond = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,10.35,14.22,2.94A3.06,3.06,0,0,0,9.75,3L4,10.35A3.05,3.05,0,0,0,3.51,12,3.09,3.09,0,0,0,4,13.58l.06.07,5.74,7.41A3,3,0,0,0,12,22a3.06,3.06,0,0,0,2.26-1L20,13.65a3,3,0,0,0-.06-3.3Zm-1.57,2.14-5.67,7.22a1.11,1.11,0,0,1-1.42.07L5.65,12.47A1,1,0,0,1,5.51,12a1.11,1.11,0,0,1,.1-.45l5.67-7.22a1.11,1.11,0,0,1,1.42-.07l5.63,7.28a1,1,0,0,1,.16.54A1.11,1.11,0,0,1,18.39,12.49Z' - })); -}; - -UilDiamond.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiamond; \ No newline at end of file diff --git a/icons/uil-diary-alt.js b/icons/uil-diary-alt.js deleted file mode 100644 index 7833850c..00000000 --- a/icons/uil-diary-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiaryAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H5A1,1,0,0,0,4,3V21a1,1,0,0,0,1,1H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2ZM8,20H6V4H8Zm10-1a1,1,0,0,1-1,1H10V4h7a1,1,0,0,1,1,1Z' - })); -}; - -UilDiaryAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiaryAlt; \ No newline at end of file diff --git a/icons/uil-diary.js b/icons/uil-diary.js deleted file mode 100644 index 7b40533d..00000000 --- a/icons/uil-diary.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiary = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H5A1,1,0,0,0,4,3V19a1,1,0,0,0,1,1H6v1a1,1,0,0,0,1,1H7a1,1,0,0,0,1-1V20h9a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2ZM14,18H6V4h8Zm4-1a1,1,0,0,1-1,1H16V4h1a1,1,0,0,1,1,1Z' - })); -}; - -UilDiary.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiary; \ No newline at end of file diff --git a/icons/uil-dice-five.js b/icons/uil-dice-five.js deleted file mode 100644 index 104a6c74..00000000 --- a/icons/uil-dice-five.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceFive = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3ZM8,15a1,1,0,1,0,1,1A1,1,0,0,0,8,15Zm4-4a1,1,0,1,0,1,1A1,1,0,0,0,12,11ZM8,7A1,1,0,1,0,9,8,1,1,0,0,0,8,7Zm8,8a1,1,0,1,0,1,1A1,1,0,0,0,16,15Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,16,7Z' - })); -}; - -UilDiceFive.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceFive; \ No newline at end of file diff --git a/icons/uil-dice-four.js b/icons/uil-dice-four.js deleted file mode 100644 index 456711dc..00000000 --- a/icons/uil-dice-four.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceFour = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,14a1,1,0,1,0,1,1A1,1,0,0,0,15,14ZM9,8a1,1,0,1,0,1,1A1,1,0,0,0,9,8Zm0,6a1,1,0,1,0,1,1A1,1,0,0,0,9,14Zm6-6a1,1,0,1,0,1,1A1,1,0,0,0,15,8Zm2-6H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Z' - })); -}; - -UilDiceFour.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceFour; \ No newline at end of file diff --git a/icons/uil-dice-one.js b/icons/uil-dice-one.js deleted file mode 100644 index 9d26d4be..00000000 --- a/icons/uil-dice-one.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceOne = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-8-6a1,1,0,1,0,1,1A1,1,0,0,0,12,11Z' - })); -}; - -UilDiceOne.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceOne; \ No newline at end of file diff --git a/icons/uil-dice-six.js b/icons/uil-dice-six.js deleted file mode 100644 index 0f721d6c..00000000 --- a/icons/uil-dice-six.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceSix = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0,1,1A1,1,0,0,0,9,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,9,15ZM9,7a1,1,0,1,0,1,1A1,1,0,0,0,9,7Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,15,7Zm2-5H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-5-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,15,15Z' - })); -}; - -UilDiceSix.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceSix; \ No newline at end of file diff --git a/icons/uil-dice-three.js b/icons/uil-dice-three.js deleted file mode 100644 index fe0bbbec..00000000 --- a/icons/uil-dice-three.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceThree = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11ZM8,7A1,1,0,1,0,9,8,1,1,0,0,0,8,7Zm9-5H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-4-2a1,1,0,1,0,1,1A1,1,0,0,0,16,15Z' - })); -}; - -UilDiceThree.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceThree; \ No newline at end of file diff --git a/icons/uil-dice-two.js b/icons/uil-dice-two.js deleted file mode 100644 index a890c239..00000000 --- a/icons/uil-dice-two.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiceTwo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0,1,1A1,1,0,0,0,9,11Zm8-9H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-5-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11Z' - })); -}; - -UilDiceTwo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiceTwo; \ No newline at end of file diff --git a/icons/uil-direction.js b/icons/uil-direction.js deleted file mode 100644 index 108aaca4..00000000 --- a/icons/uil-direction.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.71,10.21,12,7.91l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42Zm4.58,4.58L12,17.09l-2.29-2.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilDirection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDirection; \ No newline at end of file diff --git a/icons/uil-directions.js b/icons/uil-directions.js deleted file mode 100644 index 5a43956d..00000000 --- a/icons/uil-directions.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDirections = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.12,9.88l-7-7a3.08,3.08,0,0,0-4.24,0l-7,7a3,3,0,0,0,0,4.24l7,7a3,3,0,0,0,4.24,0l7-7A3,3,0,0,0,21.12,9.88Zm-1.41,2.83-7,7a1,1,0,0,1-1.42,0h0l-7-7a1,1,0,0,1,0-1.42l7-7a1,1,0,0,1,1.42,0l7,7A1,1,0,0,1,19.71,12.71Zm-5.5-3.42a1,1,0,0,0-1.42,1.42l.3.29H9.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V13h2.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.42Z' - })); -}; - -UilDirections.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDirections; \ No newline at end of file diff --git a/icons/uil-discord.js b/icons/uil-discord.js deleted file mode 100644 index cbc4f1bf..00000000 --- a/icons/uil-discord.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDiscord = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.13831,10.62982h-.00013a1.05288,1.05288,0,1,0,.00013,0Zm3.75427,0a1.14582,1.14582,0,1,0,1.04907,1.14166A1.09586,1.09586,0,0,0,13.89258,10.62982Zm4.99878-8.6297H5.10864A2.11364,2.11364,0,0,0,3,4.119V18.02527A2.11368,2.11368,0,0,0,5.10864,20.1441H16.77258l-.54516-1.90289,1.31653,1.224,1.24462,1.152L21,22.57153V4.119A2.11364,2.11364,0,0,0,18.89136,2.00012ZM14.92114,15.43323v.00006s-.37036-.44232-.67895-.83319a3.2459,3.2459,0,0,0,1.86181-1.224,5.87837,5.87837,0,0,1-1.18286.60681,6.76974,6.76974,0,0,1-1.49145.44232,7.206,7.206,0,0,1-2.66394-.01025,8.64456,8.64456,0,0,1-1.51209-.44226,6.03735,6.03735,0,0,1-.75085-.34973c-.03089-.02063-.06165-.03089-.09253-.05146a.14171.14171,0,0,1-.04114-.03082c-.18506-.10284-.28809-.17487-.28809-.17487A3.19975,3.19975,0,0,0,9.8811,14.57953c-.30847.39093-.68908.8537-.68908.8537a3.72892,3.72892,0,0,1-3.13709-1.56342A13.775,13.775,0,0,1,7.536,7.87323a5.08641,5.08641,0,0,1,2.89026-1.08l.10278.12348A6.93762,6.93762,0,0,0,7.824,8.2641s.22632-.12341.60682-.29828a7.722,7.722,0,0,1,2.335-.64795,1.00465,1.00465,0,0,1,.17492-.02063,8.702,8.702,0,0,1,2.07764-.02051,8.384,8.384,0,0,1,3.096.98737,6.84576,6.84576,0,0,0-2.561-1.30628l.14392-.16449a5.08575,5.08575,0,0,1,2.89026,1.08,13.77368,13.77368,0,0,1,1.4812,5.99652A3.75972,3.75972,0,0,1,14.92114,15.43323Z' - })); -}; - -UilDiscord.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDiscord; \ No newline at end of file diff --git a/icons/uil-dizzy-meh.js b/icons/uil-dizzy-meh.js deleted file mode 100644 index 22360436..00000000 --- a/icons/uil-dizzy-meh.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDizzyMeh = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' - })); -}; - -UilDizzyMeh.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDizzyMeh; \ No newline at end of file diff --git a/icons/uil-dna.js b/icons/uil-dna.js deleted file mode 100644 index 24296c6c..00000000 --- a/icons/uil-dna.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDna = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.2,13.73a1,1,0,0,0-1.41-.05A11.18,11.18,0,0,0,4,22a1,1,0,0,0,2,0,9.15,9.15,0,0,1,3.15-6.86A1,1,0,0,0,9.2,13.73Zm10.17,4.64a10.86,10.86,0,0,0-1.6-3A14.31,14.31,0,0,0,14.06,12C16.3,10.57,20,7.4,20,2a1,1,0,0,0-2,0c0,5.4-4.59,8.17-6,8.89A13.42,13.42,0,0,1,9.31,9H12a1,1,0,0,0,0-2H7.55a9.39,9.39,0,0,1-1-2H15a1,1,0,0,0,0-2H6.06A8.14,8.14,0,0,1,6,2,1,1,0,0,0,4,2c0,7.57,7.3,10.79,7.61,10.92h0A12.93,12.93,0,0,1,14.7,15H12a1,1,0,0,0,0,2h4.43a9.07,9.07,0,0,1,1,2H9a1,1,0,0,0,0,2h8.94A8.26,8.26,0,0,1,18,22a1,1,0,0,0,2,0,10.5,10.5,0,0,0-.22-2.19A9.23,9.23,0,0,0,19.37,18.37Z' - })); -}; - -UilDna.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDna; \ No newline at end of file diff --git a/icons/uil-docker.js b/icons/uil-docker.js deleted file mode 100644 index dbd4179a..00000000 --- a/icons/uil-docker.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDocker = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.8 8.8h1.8c.1 0 .2-.1.2-.2V7.1c0-.1-.1-.2-.2-.2H8.8c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.4 2.3H13c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm0-2.3H13c.1 0 .2-.1.2-.2V7.1l-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.5 2.3h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm-2.5-4.6H13c.1 0 .2-.1.2-.2V4.8c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.1.2.1zm-7.4 4.6h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H3.8c-.1 0-.2.1-.2.2v1.6l.2.2zm18-1c-.5-.3-1.1-.5-1.6-.4-.3 0-.6 0-.8.1-.2-.9-.7-1.7-1.4-2.1l-.3-.2-.2.3c-.3.2-.5.6-.6 1.1-.2.8-.1 1.6.3 2.2-.5.2-1 .3-1.5.4H2.6c-.3 0-.6.3-.6.6 0 1.2.2 2.3.6 3.4.4 1.1 1.1 2 2 2.6 1.4.7 2.9 1 4.4.9.8 0 1.6-.1 2.4-.2 1.1-.2 2.2-.6 3.2-1.2.8-.5 1.5-1.1 2.2-1.8.9-1.1 1.6-2.3 2.1-3.7h.2c.8 0 1.6-.3 2.2-.8.3-.2.5-.5.6-.9l.1-.2-.2-.1zm-15.5 1H8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H6.3c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm0-2.3H8c.1 0 .2-.1.2-.2V7.1c0-.1-.1-.2-.2-.2H6.3c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.5 2.3h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H8.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2z' - })); -}; - -UilDocker.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDocker; \ No newline at end of file diff --git a/icons/uil-document-info.js b/icons/uil-document-info.js deleted file mode 100644 index 9014a64c..00000000 --- a/icons/uil-document-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDocumentInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,14a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,12,14Zm.38-2.92A1,1,0,0,0,11.8,11l-.18.06-.18.09-.15.12A1,1,0,0,0,11,12a1,1,0,0,0,.29.71,1,1,0,0,0,.33.21A.84.84,0,0,0,12,13a1,1,0,0,0,.71-.29A1,1,0,0,0,13,12a1,1,0,0,0-.29-.71A1.15,1.15,0,0,0,12.38,11.08ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilDocumentInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDocumentInfo; \ No newline at end of file diff --git a/icons/uil-document-layout-center.js b/icons/uil-document-layout-center.js deleted file mode 100644 index d351f9ff..00000000 --- a/icons/uil-document-layout-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDocumentLayoutCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,12h6a1,1,0,0,0,1-1V5a1,1,0,0,0-1-1H9A1,1,0,0,0,8,5v6A1,1,0,0,0,9,12Zm1-6h4v4H10Zm11,4H19a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2ZM19,8h2a1,1,0,0,0,0-2H19a1,1,0,0,0,0,2ZM3,8H5A1,1,0,0,0,5,6H3A1,1,0,0,0,3,8Zm0,4H5a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-8,4H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Z' - })); -}; - -UilDocumentLayoutCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDocumentLayoutCenter; \ No newline at end of file diff --git a/icons/uil-document-layout-left.js b/icons/uil-document-layout-left.js deleted file mode 100644 index 1c45b822..00000000 --- a/icons/uil-document-layout-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDocumentLayoutLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,12H9a1,1,0,0,0,1-1V5A1,1,0,0,0,9,4H3A1,1,0,0,0,2,5v6A1,1,0,0,0,3,12ZM4,6H8v4H4Zm9,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2Zm0,10H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Zm8-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilDocumentLayoutLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDocumentLayoutLeft; \ No newline at end of file diff --git a/icons/uil-document-layout-right.js b/icons/uil-document-layout-right.js deleted file mode 100644 index 5b928d1b..00000000 --- a/icons/uil-document-layout-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDocumentLayoutRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,18H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2ZM3,8h8a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm0,4h8a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM21,4H15a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V5A1,1,0,0,0,21,4Zm-1,6H16V6h4Z' - })); -}; - -UilDocumentLayoutRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDocumentLayoutRight; \ No newline at end of file diff --git a/icons/uil-dollar-alt.js b/icons/uil-dollar-alt.js deleted file mode 100644 index 117c08ca..00000000 --- a/icons/uil-dollar-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDollarAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H13V7h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h1v4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Zm-3,0H10a2,2,0,0,1,0-4h1Zm3,6H13V13h1a2,2,0,0,1,0,4Z' - })); -}; - -UilDollarAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDollarAlt; \ No newline at end of file diff --git a/icons/uil-dollar-sign-alt.js b/icons/uil-dollar-sign-alt.js deleted file mode 100644 index a18a60a6..00000000 --- a/icons/uil-dollar-sign-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDollarSignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H10a2,2,0,0,1,0-4h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h4a2,2,0,0,1,0,4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Z' - })); -}; - -UilDollarSignAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDollarSignAlt; \ No newline at end of file diff --git a/icons/uil-dollar-sign.js b/icons/uil-dollar-sign.js deleted file mode 100644 index f1c62e74..00000000 --- a/icons/uil-dollar-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDollarSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H10a2,2,0,0,1,0-4h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h4a2,2,0,0,1,0,4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Z' - })); -}; - -UilDollarSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDollarSign; \ No newline at end of file diff --git a/icons/uil-download-alt.js b/icons/uil-download-alt.js deleted file mode 100644 index 3e1b8d40..00000000 --- a/icons/uil-download-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.29,13.29a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42L13,14.59V3a1,1,0,0,0-2,0V14.59l-1.29-1.3A1,1,0,0,0,8.29,13.29ZM18,9H16a1,1,0,0,0,0,2h2a1,1,0,0,1,1,1v7a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H8A1,1,0,0,0,8,9H6a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A3,3,0,0,0,18,9Z' - })); -}; - -UilDownloadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDownloadAlt; \ No newline at end of file diff --git a/icons/uil-draggabledots.js b/icons/uil-draggabledots.js deleted file mode 100644 index 3e8359be..00000000 --- a/icons/uil-draggabledots.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDraggabledots = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,10a2,2,0,1,0,2,2A2,2,0,0,0,8.5,10Zm0,7a2,2,0,1,0,2,2A2,2,0,0,0,8.5,17Zm7-10a2,2,0,1,0-2-2A2,2,0,0,0,15.5,7Zm-7-4a2,2,0,1,0,2,2A2,2,0,0,0,8.5,3Zm7,14a2,2,0,1,0,2,2A2,2,0,0,0,15.5,17Zm0-7a2,2,0,1,0,2,2A2,2,0,0,0,15.5,10Z' - })); -}; - -UilDraggabledots.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDraggabledots; \ No newline at end of file diff --git a/icons/uil-dribbble.js b/icons/uil-dribbble.js deleted file mode 100644 index 7dfacd44..00000000 --- a/icons/uil-dribbble.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDribbble = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,2a7.94,7.94,0,0,1,5.51,2.22A24.93,24.93,0,0,1,12.68,8.4,29.07,29.07,0,0,0,9.81,4.31,7.94,7.94,0,0,1,12,4ZM7.89,5.15A27.16,27.16,0,0,1,10.7,9a25.11,25.11,0,0,1-6,.74H4.34A8,8,0,0,1,7.89,5.15ZM6,17.31A7.9,7.9,0,0,1,4,12c0-.1,0-.2,0-.29h.68a26.67,26.67,0,0,0,7-1c.32.61.62,1.24.91,1.89a14.3,14.3,0,0,0-4.29,2.41l-.3.24A21,21,0,0,0,6,17.31ZM12,20a7.92,7.92,0,0,1-4.47-1.37,17.92,17.92,0,0,1,1.56-1.58l.32-.27a12.63,12.63,0,0,1,4-2.27,32,32,0,0,1,1.4,5A8.08,8.08,0,0,1,12,20Zm4.63-1.49a34.87,34.87,0,0,0-1.28-4.46l.34,0a.25.25,0,0,1,.12,0h.11l.1,0,.48,0a9.43,9.43,0,0,1,3.09.53A7.94,7.94,0,0,1,16.63,18.51ZM16.5,12c-.21,0-.42,0-.62,0a1.56,1.56,0,0,0-.39,0,6.64,6.64,0,0,0-.81.1h-.1c-.29-.67-.59-1.32-.92-2a26.57,26.57,0,0,0,5.13-2.4A8,8,0,0,1,20,12c0,.17,0,.34,0,.51A11.48,11.48,0,0,0,16.5,12Z' - })); -}; - -UilDribbble.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDribbble; \ No newline at end of file diff --git a/icons/uil-drill.js b/icons/uil-drill.js deleted file mode 100644 index 87561f19..00000000 --- a/icons/uil-drill.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDrill = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H9A1,1,0,0,0,8,5V7H3A1,1,0,0,0,3,9H8v4a1,1,0,0,0,2,0V12h4v7a1,1,0,0,0,1,1h2a3,3,0,0,0,3-3V11.82A3,3,0,0,0,22,9V7A3,3,0,0,0,19,4ZM18,17a1,1,0,0,1-1,1H16V12h2Zm2-8a1,1,0,0,1-1,1H10V6h6V7a1,1,0,0,0,2,0V6h1a1,1,0,0,1,1,1Z' - })); -}; - -UilDrill.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDrill; \ No newline at end of file diff --git a/icons/uil-dropbox.js b/icons/uil-dropbox.js deleted file mode 100644 index 5249fd64..00000000 --- a/icons/uil-dropbox.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDropbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.61,11.81,18.36,9.28l3.26-2.56A1,1,0,0,0,22,5.86a1.06,1.06,0,0,0-.5-.8L16.36,2.13a1,1,0,0,0-1.15.12L12,5.05,8.79,2.25a1,1,0,0,0-1.15-.12L2.5,5.06a1.06,1.06,0,0,0-.5.8,1,1,0,0,0,.38.86L5.64,9.28,2.39,11.77a1,1,0,0,0-.39.86,1,1,0,0,0,.5.8l3.41,2v2.47a1,1,0,0,0,.48.85l5.09,3.13a1,1,0,0,0,1,0l5.09-3.13a1,1,0,0,0,.48-.85V15.42l3.41-1.95a1,1,0,0,0,.5-.8A1,1,0,0,0,21.61,11.81ZM16,4.22l3.23,1.84-2.55,2-3-1.84ZM14.91,9.34l-2.91,2-2.91-2L12,7.55ZM4.79,6.06,8,4.22l2.31,2-3,1.84Zm0,6.39,2.5-1.92,3,2.08L8.07,14.34Zm11.29,4.86L12,19.83,7.91,17.31v-.8a1,1,0,0,0,.85-.18L12,13.83l3.24,2.5a1,1,0,0,0,.61.21,1,1,0,0,0,.24,0Zm-.15-3L13.7,12.61l3-2.08,2.51,1.94Z' - })); -}; - -UilDropbox.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDropbox; \ No newline at end of file diff --git a/icons/uil-dumbbell.js b/icons/uil-dumbbell.js deleted file mode 100644 index efb6da37..00000000 --- a/icons/uil-dumbbell.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilDumbbell = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.48,6.55v0h0L14.64,3.71a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l2.12,2.12-8.1,8.1L5.12,13.22a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l2.81,2.81v0h0l2.81,2.81a1,1,0,0,0,.71.3,1,1,0,0,0,.71-1.71L8.66,16.76l8.1-8.1,2.12,2.12a1,1,0,1,0,1.41-1.42ZM3.71,17.46a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42Zm18-12.34L18.88,2.29a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,5.12Z' - })); -}; - -UilDumbbell.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilDumbbell; \ No newline at end of file diff --git a/icons/uil-ear.js b/icons/uil-ear.js deleted file mode 100644 index 12aba389..00000000 --- a/icons/uil-ear.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8a1.00067,1.00067,0,0,1,1,1,1,1,0,0,0,2,0,2.9995,2.9995,0,1,0-5.01758,2.2207c.01.0091.16113.16992.19336.21485a.9875.9875,0,0,1,0,1.11914.99952.99952,0,1,0,1.64844,1.13086,2.98332,2.98332,0,0,0-.00488-3.38867,7.12392,7.12392,0,0,0-.49122-.55665,1.05523,1.05523,0,0,1-.1582-.18164A1.00072,1.00072,0,0,1,12,8Zm0-6a7.0006,7.0006,0,0,0-6.76172,8.81152A.99989.99989,0,0,0,7.16992,10.294,5.00018,5.00018,0,1,1,17,9a5.11412,5.11412,0,0,1-.70508,2.56738L12.73145,19A2.00462,2.00462,0,0,1,11,20a2.027,2.027,0,0,1-2-2,1.99224,1.99224,0,0,1,.26855-.999,1.00065,1.00065,0,0,0-1.73242-1.002,3.9988,3.9988,0,1,0,6.96289,3.9336L18.0625,12.5A7.00044,7.00044,0,0,0,12,2Z' - })); -}; - -UilEar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEar; \ No newline at end of file diff --git a/icons/uil-edit-alt.js b/icons/uil-edit-alt.js deleted file mode 100644 index e05fa9ea..00000000 --- a/icons/uil-edit-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEditAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,18H9.24a1,1,0,0,0,.71-.29l6.92-6.93h0L19.71,8a1,1,0,0,0,0-1.42L15.47,2.29a1,1,0,0,0-1.42,0L11.23,5.12h0L4.29,12.05a1,1,0,0,0-.29.71V17A1,1,0,0,0,5,18ZM14.76,4.41l2.83,2.83L16.17,8.66,13.34,5.83ZM6,13.17l5.93-5.93,2.83,2.83L8.83,16H6ZM21,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilEditAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEditAlt; \ No newline at end of file diff --git a/icons/uil-edit.js b/icons/uil-edit.js deleted file mode 100644 index ad1e6e75..00000000 --- a/icons/uil-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,12a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h6a1,1,0,0,0,0-2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM6,12.76V17a1,1,0,0,0,1,1h4.24a1,1,0,0,0,.71-.29l6.92-6.93h0L21.71,8a1,1,0,0,0,0-1.42L17.47,2.29a1,1,0,0,0-1.42,0L13.23,5.12h0L6.29,12.05A1,1,0,0,0,6,12.76ZM16.76,4.41l2.83,2.83L18.17,8.66,15.34,5.83ZM8,13.17l5.93-5.93,2.83,2.83L10.83,16H8Z' - })); -}; - -UilEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEdit; \ No newline at end of file diff --git a/icons/uil-elipsis-double-v-alt.js b/icons/uil-elipsis-double-v-alt.js deleted file mode 100644 index ee5b38a2..00000000 --- a/icons/uil-elipsis-double-v-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilElipsisDoubleVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5 17c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-10c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-7 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-7-14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z' - })); -}; - -UilElipsisDoubleVAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilElipsisDoubleVAlt; \ No newline at end of file diff --git a/icons/uil-ellipsis-h.js b/icons/uil-ellipsis-h.js deleted file mode 100644 index 3e59ff43..00000000 --- a/icons/uil-ellipsis-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEllipsisH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10a2,2,0,1,0,2,2A2,2,0,0,0,12,10ZM5,10a2,2,0,1,0,2,2A2,2,0,0,0,5,10Zm14,0a2,2,0,1,0,2,2A2,2,0,0,0,19,10Z' - })); -}; - -UilEllipsisH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEllipsisH; \ No newline at end of file diff --git a/icons/uil-ellipsis-v.js b/icons/uil-ellipsis-v.js deleted file mode 100644 index c9edfce6..00000000 --- a/icons/uil-ellipsis-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEllipsisV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,7a2,2,0,1,0-2-2A2,2,0,0,0,12,7Zm0,10a2,2,0,1,0,2,2A2,2,0,0,0,12,17Zm0-7a2,2,0,1,0,2,2A2,2,0,0,0,12,10Z' - })); -}; - -UilEllipsisV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEllipsisV; \ No newline at end of file diff --git a/icons/uil-emoji.js b/icons/uil-emoji.js deleted file mode 100644 index 16a91b98..00000000 --- a/icons/uil-emoji.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEmoji = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,11a1,1,0,1,0-1-1A1,1,0,0,0,15,11ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4.28-7.12a1,1,0,0,0-1.4-.16A2.78,2.78,0,0,0,14,14H10.35a2.81,2.81,0,0,0-.88-1.31,1,1,0,0,0-1.36.2,1,1,0,0,0,.14,1.39A1,1,0,0,1,8.5,15a1.09,1.09,0,0,1-.25.72A1,1,0,1,0,9.5,17.28,2.89,2.89,0,0,0,10.34,16H14a2.72,2.72,0,0,0,.89,1.31,1,1,0,0,0,.57.18,1,1,0,0,0,.78-.38,1,1,0,0,0-.14-1.39,1,1,0,0,1-.25-.72,1.09,1.09,0,0,1,.25-.72A1,1,0,0,0,16.28,12.88Z' - })); -}; - -UilEmoji.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEmoji; \ No newline at end of file diff --git a/icons/uil-english-to-chinese.js b/icons/uil-english-to-chinese.js deleted file mode 100644 index 24afccaf..00000000 --- a/icons/uil-english-to-chinese.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnglishToChinese = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.022,7h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15ZM9.05176,11.24268a1.00011,1.00011,0,0,0,1.94043-.48536L9.23486,3.72754a2.28107,2.28107,0,0,0-4.42578,0L3.05176,10.75732a1.00011,1.00011,0,0,0,1.94043.48536L5.5528,9H8.49115ZM6.0528,7l.69671-2.78711a.2913.2913,0,0,1,.54492,0L7.99115,7Z' - })); -}; - -UilEnglishToChinese.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnglishToChinese; \ No newline at end of file diff --git a/icons/uil-enter.js b/icons/uil-enter.js deleted file mode 100644 index 32c38b58..00000000 --- a/icons/uil-enter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H7.41l1.3-1.29A1,1,0,0,0,7.29,9.29l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L7.41,14H17a3,3,0,0,0,3-3V7A1,1,0,0,0,19,6Z' - })); -}; - -UilEnter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnter; \ No newline at end of file diff --git a/icons/uil-envelope-add.js b/icons/uil-envelope-add.js deleted file mode 100644 index 6e54617c..00000000 --- a/icons/uil-envelope-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,7h1V8a1,1,0,0,0,2,0V7h1a1,1,0,0,0,0-2H20V4a1,1,0,0,0-2,0V5H17a1,1,0,0,0,0,2Zm4,4a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,4.24,0l2.47-2.47a1,1,0,0,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V12A1,1,0,0,0,21,11Z' - })); -}; - -UilEnvelopeAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeAdd; \ No newline at end of file diff --git a/icons/uil-envelope-alt.js b/icons/uil-envelope-alt.js deleted file mode 100644 index 8ef107b6..00000000 --- a/icons/uil-envelope-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM5,6H19a1,1,0,0,1,1,1l-8,4.88L4,7A1,1,0,0,1,5,6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.28l7.48,4.57a1,1,0,0,0,1,0L20,9.28Z' - })); -}; - -UilEnvelopeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeAlt; \ No newline at end of file diff --git a/icons/uil-envelope-block.js b/icons/uil-envelope-block.js deleted file mode 100644 index 4cdc07d6..00000000 --- a/icons/uil-envelope-block.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.5,13.26A5,5,0,1,0,14,11.79,5,5,0,0,0,17.5,13.26Zm2.12-2.88a3,3,0,0,1-3.4.58l4-4A3,3,0,0,1,19.62,10.38ZM15.38,6.14a3,3,0,0,1,2.12-.88,3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,15.38,6.14Zm5.12,8.12a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.16-.91,1,1,0,0,0,0-1.39,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L4.91,8.26H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-4A1,1,0,0,0,20.5,14.26Z' - })); -}; - -UilEnvelopeBlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeBlock; \ No newline at end of file diff --git a/icons/uil-envelope-bookmark.js b/icons/uil-envelope-bookmark.js deleted file mode 100644 index 20edfe97..00000000 --- a/icons/uil-envelope-bookmark.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeBookmark = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,15.26a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.89a3,3,0,0,0,2.1.87,3,3,0,0,0,1.43-.36,1,1,0,0,0,.4-1.36,1,1,0,0,0-1.36-.4,1,1,0,0,1-1.15-.17L5.41,8.26H12a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Zm0-12H16a1,1,0,0,0-1,1v8a1,1,0,0,0,1.57.82l1.93-1.29,1.91,1.28a1.06,1.06,0,0,0,.59.19,1,1,0,0,0,.41-.09,1,1,0,0,0,.59-.91v-8A1,1,0,0,0,21,3.26Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.63V5.26h3Z' - })); -}; - -UilEnvelopeBookmark.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeBookmark; \ No newline at end of file diff --git a/icons/uil-envelope-check.js b/icons/uil-envelope-check.js deleted file mode 100644 index f4578c71..00000000 --- a/icons/uil-envelope-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.29,8.71a1,1,0,0,0,1.42,0l4-4a1,1,0,1,0-1.42-1.42L17,6.59l-1.29-1.3a1,1,0,0,0-1.42,1.42ZM21,8a1,1,0,0,0-1,1v9a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H11a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A1,1,0,0,0,21,8Z' - })); -}; - -UilEnvelopeCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeCheck; \ No newline at end of file diff --git a/icons/uil-envelope-download-alt.js b/icons/uil-envelope-download-alt.js deleted file mode 100644 index 45a2fa9e..00000000 --- a/icons/uil-envelope-download-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,8.79a1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L13,5.67V2.92a1,1,0,0,0-2,0V5.67l-.29-.29a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41ZM16,11.08H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,11.08Zm-.42,2L12.7,16a1,1,0,0,1-1.4,0L8.42,13.08Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V14.49l2.88,2.88a3,3,0,0,0,4.24,0L17,14.49Z' - })); -}; - -UilEnvelopeDownloadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeDownloadAlt; \ No newline at end of file diff --git a/icons/uil-envelope-download.js b/icons/uil-envelope-download.js deleted file mode 100644 index 332241fc..00000000 --- a/icons/uil-envelope-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H11.5a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Zm1.71-6.71a1,1,0,0,0-1.42,0L19.5,8.59V3a1,1,0,0,0-2,0V8.59l-1.29-1.3a1,1,0,1,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,22.21,7.29Z' - })); -}; - -UilEnvelopeDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeDownload; \ No newline at end of file diff --git a/icons/uil-envelope-edit.js b/icons/uil-envelope-edit.js deleted file mode 100644 index dca81930..00000000 --- a/icons/uil-envelope-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11.51h2.42a1,1,0,0,0,.71-.29l4.58-4.58a1,1,0,0,0,0-1.42L19.29,2.8a1,1,0,0,0-1.42,0L13.29,7.38a1.05,1.05,0,0,0-.29.71v2.42A1,1,0,0,0,14,11.51Zm1-3,3.58-3.58,1,1L16,9.51H15Zm6,2a1,1,0,0,0-1,1v7a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.9l5.88,5.89a3,3,0,0,0,4.27,0,1,1,0,0,0,0-1.4,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L5.41,7.49H10a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-7A1,1,0,0,0,21,10.49Z' - })); -}; - -UilEnvelopeEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeEdit; \ No newline at end of file diff --git a/icons/uil-envelope-exclamation.js b/icons/uil-envelope-exclamation.js deleted file mode 100644 index faca82f1..00000000 --- a/icons/uil-envelope-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,7.5H17a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5Zm0-11a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A1,1,0,0,0,21,2.5Zm-.2,7a.64.64,0,0,0-.18.06.76.76,0,0,0-.18.09l-.15.12a1.05,1.05,0,0,0-.29.71,1.23,1.23,0,0,0,0,.19.6.6,0,0,0,.06.19.76.76,0,0,0,.09.18,1.58,1.58,0,0,0,.12.15,1,1,0,0,0,1.42,0l.12-.15a.76.76,0,0,0,.09-.18.6.6,0,0,0,.06-.19,1.23,1.23,0,0,0,0-.19,1,1,0,0,0-1.2-1Z' - })); -}; - -UilEnvelopeExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeExclamation; \ No newline at end of file diff --git a/icons/uil-envelope-heart.js b/icons/uil-envelope-heart.js deleted file mode 100644 index c2a74c7f..00000000 --- a/icons/uil-envelope-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,13a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V8.41L9.38,14.3a3,3,0,0,0,2.11.87,3,3,0,0,0,2.15-.9l.89-.88A1,1,0,0,0,13.13,12l-.93.91a1,1,0,0,1-1.4,0L4.91,7H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3V18a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V14A1,1,0,0,0,20.5,13Zm1.05-9a3.33,3.33,0,0,0-3.88-.54,3.25,3.25,0,0,0-3.88,5.13L17,11.71a1.05,1.05,0,0,0,.71.29,1,1,0,0,0,.71-.29l3.17-3.17A3.26,3.26,0,0,0,21.55,4ZM20.14,7.12,17.67,9.59,15.21,7.12A1.24,1.24,0,0,1,17,5.36a1,1,0,0,0,1.42,0,1.28,1.28,0,0,1,1.76,0A1.26,1.26,0,0,1,20.14,7.12Z' - })); -}; - -UilEnvelopeHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeHeart; \ No newline at end of file diff --git a/icons/uil-envelope-info.js b/icons/uil-envelope-info.js deleted file mode 100644 index c2d923ff..00000000 --- a/icons/uil-envelope-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,7.5H17a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5Zm0-9a1.05,1.05,0,0,0,.71-.29l.12-.16a.56.56,0,0,0,.09-.17A.64.64,0,0,0,22,3.7a1.36,1.36,0,0,0,0-.2,1.05,1.05,0,0,0-.29-.71,1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.42A1.05,1.05,0,0,0,21,4.5Zm0,1a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A1,1,0,0,0,21,5.5Z' - })); -}; - -UilEnvelopeInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeInfo; \ No newline at end of file diff --git a/icons/uil-envelope-lock.js b/icons/uil-envelope-lock.js deleted file mode 100644 index b5988707..00000000 --- a/icons/uil-envelope-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,7.44V6.26a3,3,0,1,0-6,0V7.44a3,3,0,0,0-2,2.82v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3v-2A3,3,0,0,0,20.5,7.44Zm-4-1.18a1,1,0,1,1,2,0v1h-2Zm4,6a1,1,0,0,1-1,1h-4a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a1,1,0,0,0,1.42-1.41L4.91,8.26H10.5a1,1,0,0,0,0-2h-6a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-1A1,1,0,0,0,20.5,17.26Z' - })); -}; - -UilEnvelopeLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeLock; \ No newline at end of file diff --git a/icons/uil-envelope-minus.js b/icons/uil-envelope-minus.js deleted file mode 100644 index b5ac4864..00000000 --- a/icons/uil-envelope-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,8a1,1,0,0,0-1,1v8a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7.41l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,6H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A1,1,0,0,0,21,8ZM17,6h4a1,1,0,0,0,0-2H17a1,1,0,0,0,0,2Z' - })); -}; - -UilEnvelopeMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeMinus; \ No newline at end of file diff --git a/icons/uil-envelope-open.js b/icons/uil-envelope-open.js deleted file mode 100644 index 444dff1d..00000000 --- a/icons/uil-envelope-open.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.21,8.82h0l0,0h0L14,2.78a2.83,2.83,0,0,0-3.9,0l-6.21,6h0v0A2.6,2.6,0,0,0,3,10.71v8.58A2.75,2.75,0,0,0,5.78,22H18.22A2.75,2.75,0,0,0,21,19.29V10.71A2.67,2.67,0,0,0,20.21,8.82Zm-8.77-4.6a.83.83,0,0,1,1.12,0L18,9.5l-5.47,5.28a.83.83,0,0,1-1.12,0L6,9.5ZM19,19.29a.76.76,0,0,1-.78.71H5.78A.76.76,0,0,1,5,19.29V11.35l4.05,3.9-1.66,1.6a1,1,0,0,0,0,1.41,1,1,0,0,0,.72.31,1,1,0,0,0,.69-.28l1.77-1.7a2.8,2.8,0,0,0,2.92,0l1.77,1.7a1,1,0,0,0,.69.28,1,1,0,0,0,.72-.31,1,1,0,0,0,0-1.41L15,15.25l4-3.9Z' - })); -}; - -UilEnvelopeOpen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeOpen; \ No newline at end of file diff --git a/icons/uil-envelope-question.js b/icons/uil-envelope-question.js deleted file mode 100644 index b20d49ad..00000000 --- a/icons/uil-envelope-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.77,5.37A1,1,0,0,0,18.13,5,1,1,0,0,1,19,4.5a1,1,0,0,1,0,2,1,1,0,0,0,0,2A3,3,0,1,0,16.4,4,1,1,0,0,0,16.77,5.37ZM21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91L9.88,14.8a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.7,13.38a1,1,0,0,1-1.4,0L5.41,7.5H13a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5ZM18.29,9.79a1,1,0,0,0,0,1.42l.15.12a.76.76,0,0,0,.18.09.64.64,0,0,0,.18.06l.2,0a1,1,0,0,0,.71-1.71A1,1,0,0,0,18.29,9.79Z' - })); -}; - -UilEnvelopeQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeQuestion; \ No newline at end of file diff --git a/icons/uil-envelope-receive.js b/icons/uil-envelope-receive.js deleted file mode 100644 index 84df16c8..00000000 --- a/icons/uil-envelope-receive.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeReceive = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.29,6.21l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29H15a1,1,0,0,0,0-2H11.41l.3-.29a1,1,0,1,0-1.42-1.42l-2,2a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,8.29,6.21ZM16,10.5H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,10.5Zm-.42,2L12.7,15.38a1,1,0,0,1-1.4,0L8.42,12.5Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V13.91l2.88,2.87a2.94,2.94,0,0,0,2.12.89,3,3,0,0,0,2.12-.88L17,13.91Z' - })); -}; - -UilEnvelopeReceive.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeReceive; \ No newline at end of file diff --git a/icons/uil-envelope-redo.js b/icons/uil-envelope-redo.js deleted file mode 100644 index 6b0379e5..00000000 --- a/icons/uil-envelope-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,14.26a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.16-.91,1,1,0,0,0,0-1.39,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L4.91,8.26H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-4A1,1,0,0,0,20.5,14.26Zm1-11a1,1,0,0,0-1,1h0a5,5,0,1,0-3,9A5,5,0,0,0,20.8,12a1,1,0,0,0-1.32-1.51,3,3,0,1,1,.25-4.24H18.5a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1v-3A1,1,0,0,0,21.5,3.26Z' - })); -}; - -UilEnvelopeRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeRedo; \ No newline at end of file diff --git a/icons/uil-envelope-search.js b/icons/uil-envelope-search.js deleted file mode 100644 index 11c1d391..00000000 --- a/icons/uil-envelope-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.21,10.29,20.48,8.57a4.37,4.37,0,0,0,.65-2.26,4.31,4.31,0,1,0-4.32,4.32A4.37,4.37,0,0,0,19.07,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,22.21,10.29ZM18.45,8a2.37,2.37,0,0,1-3.27,0,2.3,2.3,0,0,1-.68-1.64A2.32,2.32,0,0,1,16.81,4a2.3,2.3,0,0,1,1.64.68,2.28,2.28,0,0,1,.68,1.63A2.3,2.3,0,0,1,18.45,8ZM20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0L15,13.88a1,1,0,0,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Z' - })); -}; - -UilEnvelopeSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeSearch; \ No newline at end of file diff --git a/icons/uil-envelope-send.js b/icons/uil-envelope-send.js deleted file mode 100644 index c06840a8..00000000 --- a/icons/uil-envelope-send.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeSend = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,10.5H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,10.5Zm-.42,2L12.7,15.38a1,1,0,0,1-1.4,0L8.42,12.5Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V13.91l2.88,2.87a2.94,2.94,0,0,0,2.12.89,3,3,0,0,0,2.12-.88L17,13.91ZM9,6.5h3.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-2-2a1,1,0,0,0-1.42,1.42l.3.29H9a1,1,0,0,0,0,2Z' - })); -}; - -UilEnvelopeSend.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeSend; \ No newline at end of file diff --git a/icons/uil-envelope-share.js b/icons/uil-envelope-share.js deleted file mode 100644 index 05713585..00000000 --- a/icons/uil-envelope-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V9.41L8.88,15.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L11.7,13.88a1,1,0,0,1-1.4,0L4.41,8H10a1,1,0,0,0,0-2H4A3,3,0,0,0,1,9V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V15A1,1,0,0,0,20,14Zm0-6a2,2,0,0,0-1.18.39l-1.75-.8L19,6.71A2,2,0,0,0,20,7a2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,15,5.5a2,2,0,0,0,0,4,1.88,1.88,0,0,0,.92-.24l2.1,1A2,2,0,1,0,20,8Z' - })); -}; - -UilEnvelopeShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeShare; \ No newline at end of file diff --git a/icons/uil-envelope-shield.js b/icons/uil-envelope-shield.js deleted file mode 100644 index c08cd456..00000000 --- a/icons/uil-envelope-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.63,5.12a1,1,0,0,0-.84-.2,2.74,2.74,0,0,1-2.2-.46,1,1,0,0,0-1.18,0,2.74,2.74,0,0,1-2.2.46A1,1,0,0,0,14,5.9V9.21a4.62,4.62,0,0,0,1.84,3.7l1.57,1.16a1,1,0,0,0,1.18,0l1.57-1.16A4.62,4.62,0,0,0,22,9.21V5.9A1,1,0,0,0,21.63,5.12ZM20,9.21a2.61,2.61,0,0,1-1,2.09L18,12l-1-.72a2.61,2.61,0,0,1-1-2.09V7a4.67,4.67,0,0,0,2-.54A4.67,4.67,0,0,0,20,7Zm1,6a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.15-.9l-.7-.71-.74-.68a1,1,0,0,1-1.4,0L5.41,8.26H11a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Z' - })); -}; - -UilEnvelopeShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeShield; \ No newline at end of file diff --git a/icons/uil-envelope-star.js b/icons/uil-envelope-star.js deleted file mode 100644 index ce0a2761..00000000 --- a/icons/uil-envelope-star.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeStar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.64,9.74l-.29,1.73A1.55,1.55,0,0,0,14,13a1.46,1.46,0,0,0,1.58.09L17,12.28l1.44.79A1.46,1.46,0,0,0,20,13a1.55,1.55,0,0,0,.63-1.51l-.29-1.73,1.2-1.22a1.54,1.54,0,0,0-.85-2.6l-1.62-.24-.73-1.55a1.5,1.5,0,0,0-2.72,0l-.73,1.55-1.62.24a1.54,1.54,0,0,0-.85,2.6Zm1.83-2.13a1.51,1.51,0,0,0,1.14-.85L17,5.93l.39.83a1.55,1.55,0,0,0,1.14.86l1,.14-.73.74a1.57,1.57,0,0,0-.42,1.34l.16,1-.79-.43a1.48,1.48,0,0,0-1.44,0l-.79.43.16-1a1.54,1.54,0,0,0-.42-1.33l-.73-.75ZM21,15.26a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.88a2.94,2.94,0,0,0,2.1.88l.27,0a1,1,0,0,0,.91-1.08,1,1,0,0,0-1.09-.91.94.94,0,0,1-.77-.28L5.41,8.26H9a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Z' - })); -}; - -UilEnvelopeStar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeStar; \ No newline at end of file diff --git a/icons/uil-envelope-times.js b/icons/uil-envelope-times.js deleted file mode 100644 index c239e1c3..00000000 --- a/icons/uil-envelope-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V12A1,1,0,0,0,21,11Zm-.59-5,1.3-1.29a1,1,0,1,0-1.42-1.42L19,4.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L17.59,6l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L19,7.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilEnvelopeTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeTimes; \ No newline at end of file diff --git a/icons/uil-envelope-upload-alt.js b/icons/uil-envelope-upload-alt.js deleted file mode 100644 index badb0429..00000000 --- a/icons/uil-envelope-upload-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,11.08H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,11.08Zm-.42,2L12.7,16a1,1,0,0,1-1.4,0L8.42,13.08Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V14.49l2.88,2.88a3,3,0,0,0,4.24,0L17,14.49ZM10.71,5.62,11,5.33V8.08a1,1,0,0,0,2,0V5.33l.29.29a1,1,0,1,0,1.42-1.41l-2-2a1,1,0,0,0-1.42,0l-2,2a1,1,0,0,0,0,1.41A1,1,0,0,0,10.71,5.62Z' - })); -}; - -UilEnvelopeUploadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeUploadAlt; \ No newline at end of file diff --git a/icons/uil-envelope-upload.js b/icons/uil-envelope-upload.js deleted file mode 100644 index 3db01679..00000000 --- a/icons/uil-envelope-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopeUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H11.5a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Zm1.71-8.71-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42l1.29-1.3V11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,22.21,5.29Z' - })); -}; - -UilEnvelopeUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopeUpload; \ No newline at end of file diff --git a/icons/uil-envelope.js b/icons/uil-envelope.js deleted file mode 100644 index dde8c1d9..00000000 --- a/icons/uil-envelope.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelope = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm-.41,2-5.88,5.88a1,1,0,0,1-1.42,0L5.41,6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7.41l5.88,5.88a3,3,0,0,0,4.24,0L20,7.41Z' - })); -}; - -UilEnvelope.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelope; \ No newline at end of file diff --git a/icons/uil-envelopes.js b/icons/uil-envelopes.js deleted file mode 100644 index ac811047..00000000 --- a/icons/uil-envelopes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEnvelopes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,21.63H5a3,3,0,0,1-3-3v-8a1,1,0,0,0-2,0v8a5,5,0,0,0,5,5H17a1,1,0,0,0,0-2Zm4-18H7a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3v-10A3,3,0,0,0,21,3.63Zm-.41,2-5.88,5.88a1,1,0,0,1-1.42,0L7.41,5.63Zm1.41,11a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7l5.88,5.88a3,3,0,0,0,4.24,0L22,7Z' - })); -}; - -UilEnvelopes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEnvelopes; \ No newline at end of file diff --git a/icons/uil-equal-circle.js b/icons/uil-equal-circle.js deleted file mode 100644 index f6cffb04..00000000 --- a/icons/uil-equal-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEqualCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,13H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilEqualCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEqualCircle; \ No newline at end of file diff --git a/icons/uil-estate.js b/icons/uil-estate.js deleted file mode 100644 index 5a9e575e..00000000 --- a/icons/uil-estate.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEstate = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8h0L14,2.74a3,3,0,0,0-4,0L4,8a3,3,0,0,0-1,2.26V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V10.25A3,3,0,0,0,20,8ZM14,20H10V15a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1Zm5-1a1,1,0,0,1-1,1H16V15a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v5H6a1,1,0,0,1-1-1V10.25a1,1,0,0,1,.34-.75l6-5.25a1,1,0,0,1,1.32,0l6,5.25a1,1,0,0,1,.34.75Z' - })); -}; - -UilEstate.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEstate; \ No newline at end of file diff --git a/icons/uil-euro-circle.js b/icons/uil-euro-circle.js deleted file mode 100644 index 32ba504a..00000000 --- a/icons/uil-euro-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEuroCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Zm.59-13.33a3.34,3.34,0,0,1,2.62,1.38,1,1,0,0,0,1.4.19,1,1,0,0,0,.18-1.41,5.32,5.32,0,0,0-4.2-2.16A5.57,5.57,0,0,0,7.46,9.5H6a1,1,0,0,0,0,2H7c0,.17,0,.33,0,.5s0,.33,0,.5H6a1,1,0,0,0,0,2H7.46a5.57,5.57,0,0,0,5.13,3.83,5.32,5.32,0,0,0,4.2-2.16A1,1,0,1,0,15.21,15a3.34,3.34,0,0,1-2.62,1.38A3.42,3.42,0,0,1,9.67,14.5H12a1,1,0,0,0,0-2H9.05A4.23,4.23,0,0,1,9,12a4.23,4.23,0,0,1,.05-.5H12a1,1,0,0,0,0-2H9.67A3.42,3.42,0,0,1,12.59,7.67Z' - })); -}; - -UilEuroCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEuroCircle; \ No newline at end of file diff --git a/icons/uil-euro.js b/icons/uil-euro.js deleted file mode 100644 index fe8963ac..00000000 --- a/icons/uil-euro.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEuro = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.2,17.41A6,6,0,0,1,14.46,20c-2.68,0-5-2-6-5H14a1,1,0,0,0,0-2H8.05c0-.33-.05-.67-.05-1s0-.67.05-1H14a1,1,0,0,0,0-2H8.47c1-3,3.31-5,6-5A6,6,0,0,1,19.2,6.59a1,1,0,1,0,1.6-1.18A7.92,7.92,0,0,0,14.46,2c-3.76,0-7,2.84-8.07,7H4a1,1,0,0,0,0,2H6.05c0,.33,0,.67,0,1s0,.67,0,1H4a1,1,0,0,0,0,2H6.39c1.09,4.16,4.31,7,8.07,7a7.92,7.92,0,0,0,6.34-3.41,1,1,0,0,0-1.6-1.18Z' - })); -}; - -UilEuro.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEuro; \ No newline at end of file diff --git a/icons/uil-exchange-alt.js b/icons/uil-exchange-alt.js deleted file mode 100644 index 50e5221e..00000000 --- a/icons/uil-exchange-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExchangeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,9.29l-4-4a1,1,0,0,0-1.42,1.42L18.59,9H7a1,1,0,0,0,0,2H21a1,1,0,0,0,.92-.62A1,1,0,0,0,21.71,9.29ZM17,13H3a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,15H17a1,1,0,0,0,0-2Z' - })); -}; - -UilExchangeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExchangeAlt; \ No newline at end of file diff --git a/icons/uil-exchange.js b/icons/uil-exchange.js deleted file mode 100644 index a9d7ae52..00000000 --- a/icons/uil-exchange.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExchange = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,10a1,1,0,0,0-1-1H5.41l2.3-2.29A1,1,0,0,0,6.29,5.29l-4,4a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,11H17A1,1,0,0,0,18,10Zm3.92,3.62A1,1,0,0,0,21,13H7a1,1,0,0,0,0,2H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4A1,1,0,0,0,21.92,13.62Z' - })); -}; - -UilExchange.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExchange; \ No newline at end of file diff --git a/icons/uil-exclamation-circle.js b/icons/uil-exclamation-circle.js deleted file mode 100644 index b715284d..00000000 --- a/icons/uil-exclamation-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExclamationCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,14a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,14Zm0-1.5a1,1,0,0,0,1-1v-3a1,1,0,0,0-2,0v3A1,1,0,0,0,12,12.5ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' - })); -}; - -UilExclamationCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExclamationCircle; \ No newline at end of file diff --git a/icons/uil-exclamation-octagon.js b/icons/uil-exclamation-octagon.js deleted file mode 100644 index c1b8c165..00000000 --- a/icons/uil-exclamation-octagon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExclamationOctagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,7a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V8A1,1,0,0,0,12,7Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,12,15Zm9.71-7.44L16.44,2.29A1.05,1.05,0,0,0,15.73,2H8.27a1.05,1.05,0,0,0-.71.29L2.29,7.56A1.05,1.05,0,0,0,2,8.27v7.46a1.05,1.05,0,0,0,.29.71l5.27,5.27a1.05,1.05,0,0,0,.71.29h7.46a1.05,1.05,0,0,0,.71-.29l5.27-5.27a1.05,1.05,0,0,0,.29-.71V8.27A1.05,1.05,0,0,0,21.71,7.56ZM20,15.31,15.31,20H8.69L4,15.31V8.69L8.69,4h6.62L20,8.69Z' - })); -}; - -UilExclamationOctagon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExclamationOctagon; \ No newline at end of file diff --git a/icons/uil-exclamation-triangle.js b/icons/uil-exclamation-triangle.js deleted file mode 100644 index ca0620ba..00000000 --- a/icons/uil-exclamation-triangle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExclamationTriangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,16a1,1,0,1,0,1,1A1,1,0,0,0,12,16Zm10.67,1.47-8.05-14a3,3,0,0,0-5.24,0l-8,14A3,3,0,0,0,3.94,22H20.06a3,3,0,0,0,2.61-4.53Zm-1.73,2a1,1,0,0,1-.88.51H3.94a1,1,0,0,1-.88-.51,1,1,0,0,1,0-1l8-14a1,1,0,0,1,1.78,0l8.05,14A1,1,0,0,1,20.94,19.49ZM12,8a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8Z' - })); -}; - -UilExclamationTriangle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExclamationTriangle; \ No newline at end of file diff --git a/icons/uil-exclamation.js b/icons/uil-exclamation.js deleted file mode 100644 index f0ba797a..00000000 --- a/icons/uil-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,14a1,1,0,0,0,1-1V7a1,1,0,0,0-2,0v6A1,1,0,0,0,12,14Zm0,4a1.25,1.25,0,1,0-1.25-1.25A1.25,1.25,0,0,0,12,18Z' - })); -}; - -UilExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExclamation; \ No newline at end of file diff --git a/icons/uil-exclude.js b/icons/uil-exclude.js deleted file mode 100644 index a5aad014..00000000 --- a/icons/uil-exclude.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExclude = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.54,7.54h-1a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0,1,1,0,1,0,0-2Zm5.92,5.92a1,1,0,0,0-1,1,1,1,0,0,0,0,2h1a1,1,0,0,0,1-1v-1A1,1,0,0,0,15.46,13.46ZM21,7.54H16.46V3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V15.46a1,1,0,0,0,1,1H7.54V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V16.46a1,1,0,0,0,0-2,1,1,0,0,0-2,0H4V4H14.46V7.54a1,1,0,0,0,0,2,1,1,0,0,0,2,0H20Z' - })); -}; - -UilExclude.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExclude; \ No newline at end of file diff --git a/icons/uil-expand-alt.js b/icons/uil-expand-alt.js deleted file mode 100644 index a4cb4170..00000000 --- a/icons/uil-expand-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.79,12.79,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41l5.8-5.79a1,1,0,0,0-1.42-1.42ZM21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59l-5.8,5.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilExpandAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandAlt; \ No newline at end of file diff --git a/icons/uil-expand-arrows-alt.js b/icons/uil-expand-arrows-alt.js deleted file mode 100644 index ef3375dc..00000000 --- a/icons/uil-expand-arrows-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandArrowsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.29,13.29,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41l5.3-5.29a1,1,0,0,0-1.42-1.42ZM5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41l5.29,5.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,16a1,1,0,0,0-1,1v1.59l-5.29-5.3a1,1,0,0,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Zm.92-13.38a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilExpandArrowsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandArrowsAlt; \ No newline at end of file diff --git a/icons/uil-expand-arrows.js b/icons/uil-expand-arrows.js deleted file mode 100644 index 571cf2ed..00000000 --- a/icons/uil-expand-arrows.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,8a1,1,0,0,0,1-1V3a1,1,0,0,0-.08-.38,1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59L12,10.59,5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L10.59,12,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41L12,13.41,18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17a1,1,0,0,0-2,0v1.59L13.41,12,20,5.41V7A1,1,0,0,0,21,8Z' - })); -}; - -UilExpandArrows.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandArrows; \ No newline at end of file diff --git a/icons/uil-expand-from-corner.js b/icons/uil-expand-from-corner.js deleted file mode 100644 index 7525a0ff..00000000 --- a/icons/uil-expand-from-corner.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandFromCorner = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,12H3a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V13A1,1,0,0,0,11,12Zm-1,8H4V14h6ZM21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilExpandFromCorner.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandFromCorner; \ No newline at end of file diff --git a/icons/uil-expand-left.js b/icons/uil-expand-left.js deleted file mode 100644 index c18a051a..00000000 --- a/icons/uil-expand-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.17,10.17a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L8.46,9.88A1,1,0,0,0,9.17,10.17Zm6.37-1.71a1,1,0,0,0-1.42,0L8.46,14.12a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l5.66-5.66A1,1,0,0,0,15.54,8.46ZM21,16a1,1,0,0,0-1,1v1.59l-4.46-4.47a1,1,0,1,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' - })); -}; - -UilExpandLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandLeft; \ No newline at end of file diff --git a/icons/uil-expand-right.js b/icons/uil-expand-right.js deleted file mode 100644 index f4454143..00000000 --- a/icons/uil-expand-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExpandRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,14.1L4,18.6V17c0-0.6-0.4-1-1-1s-1,0.4-1,1v4c0,0.1,0,0.3,0.1,0.4c0.1,0.2,0.3,0.4,0.5,0.5C2.7,22,2.9,22,3,22h4c0.6,0,1-0.4,1-1s-0.4-1-1-1H5.4l4.5-4.5c0.4-0.4,0.4-1,0-1.4C9.5,13.7,8.9,13.7,8.5,14.1z M21.7,2.3C21.7,2.3,21.7,2.3,21.7,2.3C21.5,2.1,21.2,2,21,2h-4c-0.6,0-1,0.4-1,1s0.4,1,1,1h1.6l-4.5,4.5c-0.4,0.4-0.4,1,0,1.4l0,0c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3L20,5.4V7c0,0.6,0.4,1,1,1s1-0.4,1-1V3C22,2.8,21.9,2.5,21.7,2.3z M15.5,14.1L9.9,8.5c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l5.7,5.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3C15.9,15.2,15.9,14.5,15.5,14.1C15.5,14.1,15.5,14.1,15.5,14.1z' - })); -}; - -UilExpandRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExpandRight; \ No newline at end of file diff --git a/icons/uil-export.js b/icons/uil-export.js deleted file mode 100644 index 712535a6..00000000 --- a/icons/uil-export.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExport = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.71,7.71,11,5.41V15a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71ZM21,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14Z' - })); -}; - -UilExport.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExport; \ No newline at end of file diff --git a/icons/uil-exposure-alt.js b/icons/uil-exposure-alt.js deleted file mode 100644 index 5bd53aaa..00000000 --- a/icons/uil-exposure-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExposureAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,6H7A1,1,0,0,0,7,8h4a1,1,0,0,0,0-2Zm8-4H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM4,18.59V5A1,1,0,0,1,5,4H18.59ZM20,19a1,1,0,0,1-1,1H5.41L20,5.41Zm-7-2h1v1a1,1,0,0,0,2,0V17h1a1,1,0,0,0,0-2H16V14a1,1,0,0,0-2,0v1H13a1,1,0,0,0,0,2Z' - })); -}; - -UilExposureAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExposureAlt; \ No newline at end of file diff --git a/icons/uil-exposure-increase.js b/icons/uil-exposure-increase.js deleted file mode 100644 index 80374887..00000000 --- a/icons/uil-exposure-increase.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExposureIncrease = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,7H10V6A1,1,0,0,0,8,6V7H7A1,1,0,0,0,7,9H8v1a1,1,0,0,0,2,0V9h1a1,1,0,0,0,0-2Zm2,11h4a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM4,18.59V5A1,1,0,0,1,5,4H18.59ZM20,19a1,1,0,0,1-1,1H5.41L20,5.41Z' - })); -}; - -UilExposureIncrease.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExposureIncrease; \ No newline at end of file diff --git a/icons/uil-external-link-alt.js b/icons/uil-external-link-alt.js deleted file mode 100644 index 5ff85de3..00000000 --- a/icons/uil-external-link-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilExternalLinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilExternalLinkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilExternalLinkAlt; \ No newline at end of file diff --git a/icons/uil-eye-slash.js b/icons/uil-eye-slash.js deleted file mode 100644 index 3b458260..00000000 --- a/icons/uil-eye-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEyeSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.94,6.08A6.93,6.93,0,0,1,12,6c3.18,0,6.17,2.29,7.91,6a15.23,15.23,0,0,1-.9,1.64,1,1,0,0,0-.16.55,1,1,0,0,0,1.86.5,15.77,15.77,0,0,0,1.21-2.3,1,1,0,0,0,0-.79C19.9,6.91,16.1,4,12,4a7.77,7.77,0,0,0-1.4.12,1,1,0,1,0,.34,2ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.39,6.8a14.62,14.62,0,0,0-3.31,4.8,1,1,0,0,0,0,.8C4.1,17.09,7.9,20,12,20a9.26,9.26,0,0,0,5.05-1.54l3.24,3.25a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6.36,9.19,2.45,2.45A1.81,1.81,0,0,1,12,14a2,2,0,0,1-2-2A1.81,1.81,0,0,1,10.07,11.48ZM12,18c-3.18,0-6.17-2.29-7.9-6A12.09,12.09,0,0,1,6.8,8.21L8.57,10A4,4,0,0,0,14,15.43L15.59,17A7.24,7.24,0,0,1,12,18Z' - })); -}; - -UilEyeSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEyeSlash; \ No newline at end of file diff --git a/icons/uil-eye.js b/icons/uil-eye.js deleted file mode 100644 index fa1d815d..00000000 --- a/icons/uil-eye.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilEye = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,11.6C19.9,6.91,16.1,4,12,4S4.1,6.91,2.08,11.6a1,1,0,0,0,0,.8C4.1,17.09,7.9,20,12,20s7.9-2.91,9.92-7.6A1,1,0,0,0,21.92,11.6ZM12,18c-3.17,0-6.17-2.29-7.9-6C5.83,8.29,8.83,6,12,6s6.17,2.29,7.9,6C18.17,15.71,15.17,18,12,18ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Z' - })); -}; - -UilEye.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilEye; \ No newline at end of file diff --git a/icons/uil-facebook-f.js b/icons/uil-facebook-f.js deleted file mode 100644 index 016d9169..00000000 --- a/icons/uil-facebook-f.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFacebookF = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.12,5.32H17V2.14A26.11,26.11,0,0,0,14.26,2C11.54,2,9.68,3.66,9.68,6.7V9.32H6.61v3.56H9.68V22h3.68V12.88h3.06l.46-3.56H13.36V7.05C13.36,6,13.64,5.32,15.12,5.32Z' - })); -}; - -UilFacebookF.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFacebookF; \ No newline at end of file diff --git a/icons/uil-facebook-messenger-alt.js b/icons/uil-facebook-messenger-alt.js deleted file mode 100644 index 73698ee5..00000000 --- a/icons/uil-facebook-messenger-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFacebookMessengerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.99121,1.00044a10.61443,10.61443,0,0,0-11,10.70019,10.46132,10.46132,0,0,0,3.41406,7.86524L4.457,21.2563a1.79959,1.79959,0,0,0,1.79883,1.74316,1.81992,1.81992,0,0,0,.72656-.15234l1.9209-.84668a11.89548,11.89548,0,0,0,3.08789.40039,10.61525,10.61525,0,0,0,11.001-10.7002A10.61525,10.61525,0,0,0,11.99121,1.00044Zm0,19.40039a9.86205,9.86205,0,0,1-2.63476-.35059,1.79856,1.79856,0,0,0-1.19629.0918l-1.71387.75586-.04492-1.49316a1.80968,1.80968,0,0,0-.60157-1.27442,8.4876,8.4876,0,0,1-2.80859-6.42969,8.65949,8.65949,0,0,1,9-8.70019,8.70522,8.70522,0,1,1,0,17.40039ZM15.72559,8.5854l-2.3125,2.75488L10.06641,9.28364a.99809.99809,0,0,0-1.28907.21L5.72559,13.13032a.99955.99955,0,1,0,1.53125,1.28516l2.498-2.97559,3.34668,2.05567a.99823.99823,0,0,0,1.28906-.209l2.86622-3.416A.99955.99955,0,1,0,15.72559,8.5854Z' - })); -}; - -UilFacebookMessengerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFacebookMessengerAlt; \ No newline at end of file diff --git a/icons/uil-facebook-messenger.js b/icons/uil-facebook-messenger.js deleted file mode 100644 index 7902d408..00000000 --- a/icons/uil-facebook-messenger.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFacebookMessenger = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A9.65,9.65,0,0,0,2,11.7a9.51,9.51,0,0,0,3.14,7.18.81.81,0,0,1,.27.56l0,1.78a.81.81,0,0,0,1.13.71l2-.87a.75.75,0,0,1,.53,0,11,11,0,0,0,2.9.38A9.7,9.7,0,1,0,12,2Zm6,7.46-2.93,4.66a1.5,1.5,0,0,1-2.17.4l-2.34-1.75a.6.6,0,0,0-.72,0l-3.16,2.4A.47.47,0,0,1,6,14.54L8.93,9.88a1.5,1.5,0,0,1,2.17-.4l2.34,1.75a.6.6,0,0,0,.72,0l3.16-2.4A.47.47,0,0,1,18,9.46Z' - })); -}; - -UilFacebookMessenger.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFacebookMessenger; \ No newline at end of file diff --git a/icons/uil-facebook.js b/icons/uil-facebook.js deleted file mode 100644 index 76a5f2e4..00000000 --- a/icons/uil-facebook.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFacebook = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.9,2H3.1A1.1,1.1,0,0,0,2,3.1V20.9A1.1,1.1,0,0,0,3.1,22h9.58V14.25h-2.6v-3h2.6V9a3.64,3.64,0,0,1,3.88-4,20.26,20.26,0,0,1,2.33.12v2.7H17.3c-1.26,0-1.5.6-1.5,1.47v1.93h3l-.39,3H15.8V22h5.1A1.1,1.1,0,0,0,22,20.9V3.1A1.1,1.1,0,0,0,20.9,2Z' - })); -}; - -UilFacebook.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFacebook; \ No newline at end of file diff --git a/icons/uil-fahrenheit.js b/icons/uil-fahrenheit.js deleted file mode 100644 index 440b31f5..00000000 --- a/icons/uil-fahrenheit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFahrenheit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,3h-7a3,3,0,0,0-3,3V20a1,1,0,0,0,2,0V13h6a1,1,0,0,0,0-2h-6V6a1,1,0,0,1,1-1h7a1,1,0,0,0,0-2ZM5.5,3a3,3,0,1,0,3,3A3,3,0,0,0,5.5,3Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,5.5,7Z' - })); -}; - -UilFahrenheit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFahrenheit; \ No newline at end of file diff --git a/icons/uil-fast-mail-alt.js b/icons/uil-fast-mail-alt.js deleted file mode 100644 index 7208d10b..00000000 --- a/icons/uil-fast-mail-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFastMailAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.69,9a2.93,2.93,0,0,0-1-1.71v0h0a3,3,0,0,0-2-.74H4.8A3,3,0,0,0,2.5,7.57h0l0,0,0,.06A3,3,0,0,0,1.84,10l.88,5a3,3,0,0,0,3,2.48h7.94a3,3,0,0,0,2.29-1.07A3,3,0,0,0,16.57,14ZM12.28,8.5,9.94,11.14a1,1,0,0,1-1.38.11L5.17,8.5Zm2.1,6.64a1,1,0,0,1-.76.36H5.68a1,1,0,0,1-1-.83L3.87,10,7.3,12.8a3,3,0,0,0,4.14-.34L13.8,9.8l.8,4.53A1,1,0,0,1,14.38,15.14Zm6.83-4.64h-2a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm0-2a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2Z' - })); -}; - -UilFastMailAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFastMailAlt; \ No newline at end of file diff --git a/icons/uil-fast-mail.js b/icons/uil-fast-mail.js deleted file mode 100644 index 88a299ca..00000000 --- a/icons/uil-fast-mail.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFastMail = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.79,10.5h-2a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2ZM21.57,7.66l0-.06,0,0h0A3,3,0,0,0,19.2,6.5H11.27a3,3,0,0,0-2,.74h0v0A2.93,2.93,0,0,0,8.31,9l-.88,5a3,3,0,0,0,.66,2.45,3,3,0,0,0,2.29,1.07h7.94a3,3,0,0,0,3-2.48l.88-5A3,3,0,0,0,21.57,7.66Zm-2.74.84-3.4,2.76a1,1,0,0,1-1.38-.12L11.72,8.5Zm.48,6.17a1,1,0,0,1-1,.83H10.38a1,1,0,0,1-.76-.36,1,1,0,0,1-.22-.81l.8-4.53,2.35,2.66a3,3,0,0,0,4.14.35L20.13,10ZM5.79,6.5h-3a1,1,0,1,0,0,2h3a1,1,0,0,0,0-2Z' - })); -}; - -UilFastMail.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFastMail; \ No newline at end of file diff --git a/icons/uil-favorite.js b/icons/uil-favorite.js deleted file mode 100644 index 54116908..00000000 --- a/icons/uil-favorite.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFavorite = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68A1,1,0,0,0,6.9,21.44L12,18.77l5.1,2.67a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67Zm-6.15,4a1,1,0,0,0-.29.88l.72,4.2-3.76-2a1.06,1.06,0,0,0-.94,0l-3.76,2,.72-4.2a1,1,0,0,0-.29-.88l-3-3,4.21-.61a1,1,0,0,0,.76-.55L12,5.7l1.88,3.82a1,1,0,0,0,.76.55l4.21.61Z' - })); -}; - -UilFavorite.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFavorite; \ No newline at end of file diff --git a/icons/uil-feedback.js b/icons/uil-feedback.js deleted file mode 100644 index 0874f705..00000000 --- a/icons/uil-feedback.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFeedback = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,1H15a2.44,2.44,0,0,0-2.41,2l-.92,5.05a2.44,2.44,0,0,0,.53,2,2.47,2.47,0,0,0,1.88.88H17l-.25.66A3.26,3.26,0,0,0,19.75,16a1,1,0,0,0,.92-.59l2.24-5.06A1,1,0,0,0,23,10V2A1,1,0,0,0,22,1ZM21,9.73l-1.83,4.13a1.33,1.33,0,0,1-.45-.4,1.23,1.23,0,0,1-.14-1.16l.38-1a1.68,1.68,0,0,0-.2-1.58A1.7,1.7,0,0,0,17.35,9H14.06a.46.46,0,0,1-.35-.16.5.5,0,0,1-.09-.37l.92-5A.44.44,0,0,1,15,3h6ZM9.94,13.05H7.05l.25-.66A3.26,3.26,0,0,0,4.25,8a1,1,0,0,0-.92.59L1.09,13.65a1,1,0,0,0-.09.4v8a1,1,0,0,0,1,1H9a2.44,2.44,0,0,0,2.41-2l.92-5a2.44,2.44,0,0,0-.53-2A2.47,2.47,0,0,0,9.94,13.05Zm-.48,7.58A.44.44,0,0,1,9,21H3V14.27l1.83-4.13a1.33,1.33,0,0,1,.45.4,1.23,1.23,0,0,1,.14,1.16l-.38,1a1.68,1.68,0,0,0,.2,1.58,1.7,1.7,0,0,0,1.41.74H9.94a.46.46,0,0,1,.35.16.5.5,0,0,1,.09.37Z' - })); -}; - -UilFeedback.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFeedback; \ No newline at end of file diff --git a/icons/uil-fidget-spinner.js b/icons/uil-fidget-spinner.js deleted file mode 100644 index ea023571..00000000 --- a/icons/uil-fidget-spinner.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFidgetSpinner = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12 7a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm-5.696 9.134a1 1 0 1 0 1.366.366 1 1 0 0 0-1.366-.366Zm11.392 0a1 1 0 1 0 .366 1.366 1 1 0 0 0-.366-1.366Zm2.914-2.791a4.918 4.918 0 0 0-4.526-1.197l-.419-.763a4.989 4.989 0 0 0-2.503-8.251 5.035 5.035 0 0 0-4.279.958A4.978 4.978 0 0 0 7 8a4.929 4.929 0 0 0 1.352 3.392l-.419.75a4.989 4.989 0 0 0-5.926 6.286 5.03 5.03 0 0 0 2.97 3.226 4.97 4.97 0 0 0 6.588-3.19l.867.014a4.981 4.981 0 0 0 4.76 3.524 5.017 5.017 0 0 0 4.8-3.573 4.95 4.95 0 0 0-1.382-5.086Zm-.528 4.495a3.006 3.006 0 0 1-4.386 1.76 2.965 2.965 0 0 1-1.352-1.705 1.994 1.994 0 0 0-1.91-1.43h-.869a1.995 1.995 0 0 0-1.91 1.43 2.98 2.98 0 0 1-3.948 1.899 2.993 2.993 0 0 1 1.767-5.704 1.967 1.967 0 0 0 2.173-.942l.436-.754a1.995 1.995 0 0 0-.281-2.369 2.98 2.98 0 0 1 .329-4.37 2.993 2.993 0 0 1 4.069 4.369 2 2 0 0 0-.283 2.37l.435.753a1.974 1.974 0 0 0 2.174.943 2.988 2.988 0 0 1 3.556 3.75Z' - })); -}; - -UilFidgetSpinner.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFidgetSpinner; \ No newline at end of file diff --git a/icons/uil-file-alt.js b/icons/uil-file-alt.js deleted file mode 100644 index cd8dcecf..00000000 --- a/icons/uil-file-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm0,2a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-3-3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilFileAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileAlt; \ No newline at end of file diff --git a/icons/uil-file-blank.js b/icons/uil-file-blank.js deleted file mode 100644 index 0853d4a2..00000000 --- a/icons/uil-file-blank.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileBlank = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileBlank.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileBlank; \ No newline at end of file diff --git a/icons/uil-file-block-alt.js b/icons/uil-file-block-alt.js deleted file mode 100644 index 704f38c5..00000000 --- a/icons/uil-file-block-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileBlockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,8a1,1,0,0,0,0,2H8A1,1,0,0,0,8,8Zm5,12H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.06,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1Zm8.83,9.76a4.1,4.1,0,0,0-5.66,0,4,4,0,1,0,5.66,0ZM16,18a2,2,0,0,1,2-2,2.09,2.09,0,0,1,.51.07l-2.44,2.44A2.09,2.09,0,0,1,16,18Zm3.41,1.41a2,2,0,0,1-1.91.5l2.43-2.42A2.09,2.09,0,0,1,20,18,2,2,0,0,1,19.41,19.41ZM11,18a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm2-6H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilFileBlockAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileBlockAlt; \ No newline at end of file diff --git a/icons/uil-file-bookmark-alt.js b/icons/uil-file-bookmark-alt.js deleted file mode 100644 index 8a748eab..00000000 --- a/icons/uil-file-bookmark-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileBookmarkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.5,10h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm4,6h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm0-4h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6.92-2.62a1,1,0,0,0-.21-1.09l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2h-6a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h4A1,1,0,0,0,18.42,9.38ZM13.5,8a1,1,0,0,1-1-1V5.41L15.09,8Zm7,4h-5a1,1,0,0,0-1,1v8a1,1,0,0,0,.53.88,1,1,0,0,0,1-.05L18,20.53,20,21.83A1,1,0,0,0,21.5,21V13A1,1,0,0,0,20.5,12Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.63V14h3Z' - })); -}; - -UilFileBookmarkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileBookmarkAlt; \ No newline at end of file diff --git a/icons/uil-file-check-alt.js b/icons/uil-file-check-alt.js deleted file mode 100644 index 2807aea1..00000000 --- a/icons/uil-file-check-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileCheckAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.5,20h-6a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3v5a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2Zm1-14.59L15.09,8H13.5a1,1,0,0,1-1-1ZM7.5,14h6a1,1,0,0,0,0-2h-6a1,1,0,0,0,0,2Zm4,2h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-4-6h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm13.71,6.29a1,1,0,0,0-1.42,0l-3.29,3.3-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4A1,1,0,0,0,21.21,16.29Z' - })); -}; - -UilFileCheckAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileCheckAlt; \ No newline at end of file diff --git a/icons/uil-file-check.js b/icons/uil-file-check.js deleted file mode 100644 index 42a99f5d..00000000 --- a/icons/uil-file-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-3.71-6.71L11,15.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilFileCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileCheck; \ No newline at end of file diff --git a/icons/uil-file-contract-dollar.js b/icons/uil-file-contract-dollar.js deleted file mode 100644 index 406aedfb..00000000 --- a/icons/uil-file-contract-dollar.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileContractDollar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29,20,18.56c0-.11,0-.21,0-.31a2.75,2.75,0,0,0-2.75-2.75h-.34l-1.44-1.44a.67.67,0,0,1,.28-.06H19a1,1,0,0,0,0-2H17.5V11a1,1,0,0,0-2,0v1a2.74,2.74,0,0,0-1.47.59l-1.32-1.33a1,1,0,0,0-1.42,1.42L13,14.44c0,.11,0,.21,0,.31a2.75,2.75,0,0,0,2.75,2.75h.34l1.44,1.44a.67.67,0,0,1-.28.06H14a1,1,0,0,0,0,2h1.5v1a1,1,0,0,0,2,0V21A2.74,2.74,0,0,0,19,20.38l1.32,1.33a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM10,19H5a1,1,0,0,1-1-1V4A1,1,0,0,1,5,3h6V7a1,1,0,0,0,1,1h5a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-5-5h0a1.07,1.07,0,0,0-.28-.19l-.09,0A1.31,1.31,0,0,0,12.06,1H5A3,3,0,0,0,2,4V18a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM13,4.41,14.59,6H13Z' - })); -}; - -UilFileContractDollar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileContractDollar; \ No newline at end of file diff --git a/icons/uil-file-contract.js b/icons/uil-file-contract.js deleted file mode 100644 index 541896e6..00000000 --- a/icons/uil-file-contract.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileContract = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.2 15c-.2.1-.4.1-.6.2-.1-.2-.2-.4-.3-.5-.8-.7-2-.8-3-.2C8.5 15 8 16 8 17c0 .5.5 1 1 .9.5 0 1-.5 1-1 0-.3.1-.5.3-.7.1 0 .2-.1.3-.1-.3.6-.1 1.3.5 1.7.2.1.3.1.5.1.4 0 .8-.2 1.1-.5.1-.1.3-.2.5-.3.1.4.5.8 1 .8h.8c.6 0 1-.4 1-1 0-.5-.4-.9-.9-1-.1-.2-.1-.3-.3-.5-.3-.3-1-.5-1.6-.4zM20 8.9c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.2-.2-.3l-6-6c-.1-.1-.2-.1-.3-.2h-.1c-.1 0-.2 0-.3-.1H7C5.3 2 4 3.3 4 5v14c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3V8.9c0 .1 0 .1 0 0zm-6-3.5L16.6 8H15c-.6 0-1-.4-1-1V5.4zM18 19c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h5v3c0 1.7 1.3 3 3 3h3v9zm-9-9h1c.6 0 1-.4 1-1s-.4-1-1-1H9c-.6 0-1 .4-1 1s.4 1 1 1z' - })); -}; - -UilFileContract.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileContract; \ No newline at end of file diff --git a/icons/uil-file-copy-alt.js b/icons/uil-file-copy-alt.js deleted file mode 100644 index 409fb326..00000000 --- a/icons/uil-file-copy-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileCopyAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,20H8a3,3,0,0,1-3-3V7A1,1,0,0,0,3,7V17a5,5,0,0,0,5,5h8a1,1,0,0,0,0-2Zm-6-7a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H11A1,1,0,0,0,10,13ZM21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,14.05,2H10A3,3,0,0,0,7,5V15a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM19,15a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,.18,1H11a1,1,0,0,0,0,2h8Z' - })); -}; - -UilFileCopyAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileCopyAlt; \ No newline at end of file diff --git a/icons/uil-file-download-alt.js b/icons/uil-file-download-alt.js deleted file mode 100644 index 456e0ff8..00000000 --- a/icons/uil-file-download-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileDownloadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,12H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM14,12H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm6.71,6.29a1,1,0,0,0-1.42,0l-.29.3V16a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2A1,1,0,0,0,20.71,18.29ZM12,18a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' - })); -}; - -UilFileDownloadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileDownloadAlt; \ No newline at end of file diff --git a/icons/uil-file-download.js b/icons/uil-file-download.js deleted file mode 100644 index 7fc6ec69..00000000 --- a/icons/uil-file-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-4.71-4.71-.29.3V12a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilFileDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileDownload; \ No newline at end of file diff --git a/icons/uil-file-edit-alt.js b/icons/uil-file-edit-alt.js deleted file mode 100644 index c3ee714e..00000000 --- a/icons/uil-file-edit-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileEditAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.71,16.71l-2.42-2.42a1,1,0,0,0-1.42,0l-3.58,3.58a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58A1,1,0,0,0,20.71,16.71ZM16,20H15V19l2.58-2.58,1,1Zm-6,0H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h4a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,14h6a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0-4H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm2,6H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' - })); -}; - -UilFileEditAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileEditAlt; \ No newline at end of file diff --git a/icons/uil-file-exclamation-alt.js b/icons/uil-file-exclamation-alt.js deleted file mode 100644 index 87130ebb..00000000 --- a/icons/uil-file-exclamation-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileExclamationAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,2H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0,4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4.71,4.29a1.58,1.58,0,0,0-.15-.12.76.76,0,0,0-.18-.09L19.2,20a1,1,0,0,0-.58.06.9.9,0,0,0-.54.54A.84.84,0,0,0,18,21a1,1,0,1,0,1.92-.38A1.15,1.15,0,0,0,19.71,20.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9S20,9,20,8.94ZM15,8a1,1,0,0,1-1-1V5.41L16.59,8Zm4,7a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V16A1,1,0,0,0,19,15Z' - })); -}; - -UilFileExclamationAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileExclamationAlt; \ No newline at end of file diff --git a/icons/uil-file-exclamation.js b/icons/uil-file-exclamation.js deleted file mode 100644 index 48ea2893..00000000 --- a/icons/uil-file-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.92,16.62a.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.5,1.5,0,0,0,0,.2.84.84,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,12,18a.84.84,0,0,0,.38-.08.9.9,0,0,0,.54-.54A.84.84,0,0,0,13,17a1.5,1.5,0,0,0,0-.2A.64.64,0,0,0,12.92,16.62ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6-8a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Z' - })); -}; - -UilFileExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileExclamation; \ No newline at end of file diff --git a/icons/uil-file-export.js b/icons/uil-file-export.js deleted file mode 100644 index bfb51f48..00000000 --- a/icons/uil-file-export.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileExport = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.92 15.62a1.15 1.15 0 0 0-.21-.33l-3-3a1 1 0 0 0-1.42 1.42l1.3 1.29H12a1 1 0 0 0 0 2h5.59l-1.3 1.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3-3a.93.93 0 0 0 .21-.33 1 1 0 0 0 0-.76ZM14 20H6a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5v3a3 3 0 0 0 3 3h4a1 1 0 0 0 .92-.62 1 1 0 0 0-.21-1.09l-6-6a1.07 1.07 0 0 0-.28-.19h-.09l-.28-.1H6a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h8a1 1 0 0 0 0-2ZM13 5.41 15.59 8H14a1 1 0 0 1-1-1Z' - })); -}; - -UilFileExport.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileExport; \ No newline at end of file diff --git a/icons/uil-file-graph.js b/icons/uil-file-graph.js deleted file mode 100644 index 0dc69a13..00000000 --- a/icons/uil-file-graph.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileGraph = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm5.21045,2.38623-1.67334,2.15186-.86816-.78125a.9997.9997,0,0,0-1.44971.11865l-2,2.5a.9998.9998,0,1,0,1.56152,1.249l1.33789-1.67236.87891.791a.99989.99989,0,0,0,1.45849-.12939l2.3335-3a1.00005,1.00005,0,0,0-1.5791-1.22754Zm5.7771-3.44794a1.0088,1.0088,0,0,0-.27936-.64373l-.00146-.0019L13.70734,2.29327l-.00183-.00146a.99022.99022,0,0,0-.28608-.19281c-.0299-.014-.061-.02191-.09246-.033a.98253.98253,0,0,0-.26667-.05383C13.03925,2.01086,13.02136,2,13,2H7A3.00328,3.00328,0,0,0,4,5V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V9C20,8.97809,19.989,8.95984,19.98755,8.93829ZM14,5.41406,16.58594,8H15a1.0013,1.0013,0,0,1-1-1ZM18,19a1.0013,1.0013,0,0,1-1,1H7a1.0013,1.0013,0,0,1-1-1V5A1.0013,1.0013,0,0,1,7,4h5V7a3.00328,3.00328,0,0,0,3,3h3Z' - })); -}; - -UilFileGraph.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileGraph; \ No newline at end of file diff --git a/icons/uil-file-heart.js b/icons/uil-file-heart.js deleted file mode 100644 index ae698421..00000000 --- a/icons/uil-file-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6-7.66A2.92,2.92,0,0,0,8.57,16l2.72,2.72a1,1,0,0,0,1.42,0L15.43,16A2.92,2.92,0,0,0,12,11.34Zm2,1.93a.92.92,0,0,1,0,1.3l-2,2-2-2a.92.92,0,0,1,0-1.3.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0A.92.92,0,0,1,14,13.27Z' - })); -}; - -UilFileHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileHeart; \ No newline at end of file diff --git a/icons/uil-file-import.js b/icons/uil-file-import.js deleted file mode 100644 index a001aa80..00000000 --- a/icons/uil-file-import.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileImport = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11 20H6a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5v3a3 3 0 0 0 3 3h3v2a1 1 0 0 0 2 0V8.94a1.31 1.31 0 0 0-.06-.27v-.09a1.32 1.32 0 0 0-.19-.29l-6-6a1.32 1.32 0 0 0-.29-.19.32.32 0 0 0-.09 0l-.31-.1H6a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h5a1 1 0 0 0 0-2Zm2-14.59L15.59 8H14a1 1 0 0 1-1-1ZM19 15h-5.59l1.3-1.29a1 1 0 0 0-1.42-1.42l-3 3a1.15 1.15 0 0 0-.21.33 1 1 0 0 0 0 .76.93.93 0 0 0 .21.33l3 3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 17H19a1 1 0 0 0 0-2Z' - })); -}; - -UilFileImport.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileImport; \ No newline at end of file diff --git a/icons/uil-file-info-alt.js b/icons/uil-file-info-alt.js deleted file mode 100644 index 113dd604..00000000 --- a/icons/uil-file-info-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileInfoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,16H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,2H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4.71,3.29a1,1,0,0,0-.33-.21.92.92,0,0,0-.76,0,1,1,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,.21,1.09A1,1,0,0,0,19,17a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,19.71,15.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9S20,9,20,8.94ZM15,8a1,1,0,0,1-1-1V5.41L16.59,8Zm4,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,19,18Z' - })); -}; - -UilFileInfoAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileInfoAlt; \ No newline at end of file diff --git a/icons/uil-file-landscape-alt.js b/icons/uil-file-landscape-alt.js deleted file mode 100644 index 1df1bfbd..00000000 --- a/icons/uil-file-landscape-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileLandscapeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,15.06,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V11S22,11,22,10.94ZM16,7.41,18.59,10H17a1,1,0,0,1-1-1ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6h9V9a3,3,0,0,0,3,3h3ZM7,12h4a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm0,2a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' - })); -}; - -UilFileLandscapeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileLandscapeAlt; \ No newline at end of file diff --git a/icons/uil-file-landscape.js b/icons/uil-file-landscape.js deleted file mode 100644 index 4c8ffdac..00000000 --- a/icons/uil-file-landscape.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,15.06,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V11S22,11,22,10.94ZM16,7.41,18.59,10H17a1,1,0,0,1-1-1ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6h9V9a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileLandscape.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileLandscape; \ No newline at end of file diff --git a/icons/uil-file-lanscape-slash.js b/icons/uil-file-lanscape-slash.js deleted file mode 100644 index afa99aa3..00000000 --- a/icons/uil-file-lanscape-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileLanscapeSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,15.05,4H10.66a1,1,0,0,0,0,2H14V9a3,3,0,0,0,3,3h3v3.34a1,1,0,1,0,2,0V11S22,11,22,10.94ZM17,10a1,1,0,0,1-1-1V7.41L18.59,10ZM3.71,2.29A1,1,0,0,0,2.29,3.71l.91.9A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H18.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM5,18a1,1,0,0,1-1-1V7a1,1,0,0,1,.66-.93L16.59,18Z' - })); -}; - -UilFileLanscapeSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileLanscapeSlash; \ No newline at end of file diff --git a/icons/uil-file-lock-alt.js b/icons/uil-file-lock-alt.js deleted file mode 100644 index dcafa902..00000000 --- a/icons/uil-file-lock-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileLockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,20H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h4a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.06,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1ZM13,13a1,1,0,0,0-1-1H7a1,1,0,0,0,0,2h5A1,1,0,0,0,13,13ZM7,10H8A1,1,0,0,0,8,8H7a1,1,0,0,0,0,2Zm0,6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm13-.82V15a3,3,0,0,0-6,0v.18A3,3,0,0,0,12,18v1a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V18A3,3,0,0,0,20,15.18ZM17,14a1,1,0,0,1,1,1H16A1,1,0,0,1,17,14Zm3,5a1,1,0,0,1-1,1H15a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' - })); -}; - -UilFileLockAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileLockAlt; \ No newline at end of file diff --git a/icons/uil-file-medical-alt.js b/icons/uil-file-medical-alt.js deleted file mode 100644 index 0112e7f6..00000000 --- a/icons/uil-file-medical-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileMedicalAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,18a1,1,0,0,0-1,1,1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27.32.32,0,0,0,0-.09,1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.14,1.14,0,0,0,12.07,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3A1,1,0,0,0,18,18ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,14H17.5a1,1,0,0,0-.71.29l-1.24,1.25-2.8-3.2a1,1,0,0,0-1.46-.05L9.59,14H8a1,1,0,0,0,0,2h2a1,1,0,0,0,.71-.29L12,14.46l2.8,3.2a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29L17.91,16H20a1,1,0,0,0,0-2Z' - })); -}; - -UilFileMedicalAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileMedicalAlt; \ No newline at end of file diff --git a/icons/uil-file-medical.js b/icons/uil-file-medical.js deleted file mode 100644 index 16c5cfc0..00000000 --- a/icons/uil-file-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,14H13V13a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V16h1a1,1,0,0,0,0-2Zm6-5.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileMedical; \ No newline at end of file diff --git a/icons/uil-file-minus-alt.js b/icons/uil-file-minus-alt.js deleted file mode 100644 index 5fae26cc..00000000 --- a/icons/uil-file-minus-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileMinusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,12H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v5a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,18H16a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-7-2H8a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1-4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilFileMinusAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileMinusAlt; \ No newline at end of file diff --git a/icons/uil-file-minus.js b/icons/uil-file-minus.js deleted file mode 100644 index 19270d84..00000000 --- a/icons/uil-file-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,14H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-5.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileMinus; \ No newline at end of file diff --git a/icons/uil-file-network.js b/icons/uil-file-network.js deleted file mode 100644 index 667c203d..00000000 --- a/icons/uil-file-network.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,19H14.82A3,3,0,0,0,13,17.18V15h3a3,3,0,0,0,3-3V8s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,12.05,1H8A3,3,0,0,0,5,4v8a3,3,0,0,0,3,3h3v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM13,4.41,15.59,7H14a1,1,0,0,1-1-1ZM8,13a1,1,0,0,1-1-1V4A1,1,0,0,1,8,3h3V6a3,3,0,0,0,3,3h3v3a1,1,0,0,1-1,1Zm4,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21Z' - })); -}; - -UilFileNetwork.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileNetwork; \ No newline at end of file diff --git a/icons/uil-file-plus-alt.js b/icons/uil-file-plus-alt.js deleted file mode 100644 index eb55faf9..00000000 --- a/icons/uil-file-plus-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilePlusAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,18H19V17a1,1,0,0,0-2,0v1H16a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2Zm-7,2H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,8H8a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1-4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilFilePlusAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilePlusAlt; \ No newline at end of file diff --git a/icons/uil-file-plus.js b/icons/uil-file-plus.js deleted file mode 100644 index c9db1645..00000000 --- a/icons/uil-file-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-4-5H13V13a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V16h1a1,1,0,0,0,0-2Z' - })); -}; - -UilFilePlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilePlus; \ No newline at end of file diff --git a/icons/uil-file-question-alt.js b/icons/uil-file-question-alt.js deleted file mode 100644 index e8f0fcfd..00000000 --- a/icons/uil-file-question-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileQuestionAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.07,12h-5a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1,8h-8a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9a.14.14,0,0,0,0-.06A.86.86,0,0,0,19,8.67l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1,1,0,0,0-.29-.19s-.05,0-.08,0A.88.88,0,0,0,12.12,2h-6a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2Zm-1-14.59L15.65,8H14.07a1,1,0,0,1-1-1Zm5.57,14.88a1.58,1.58,0,0,0-.15-.12,1.08,1.08,0,0,0-.36-.15,1,1,0,0,0-.9.27,1,1,0,0,0,0,1.42,1,1,0,0,0,.7.29,1,1,0,0,0,.93-1.38A1.19,1.19,0,0,0,18.64,20.29ZM13.07,16h-5a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm4.86-3a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.74,1,1,1,0,1,1,.86,1.5,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM8.07,10h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Z' - })); -}; - -UilFileQuestionAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileQuestionAlt; \ No newline at end of file diff --git a/icons/uil-file-question.js b/icons/uil-file-question.js deleted file mode 100644 index 1cc7d821..00000000 --- a/icons/uil-file-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.57,17.29a1,1,0,0,0-1.41,0,1.06,1.06,0,0,0-.22.33,1.07,1.07,0,0,0,0,.76,1.19,1.19,0,0,0,.22.33,1,1,0,0,0,.32.21,1,1,0,0,0,.39.08,1,1,0,0,0,.92-1.38A.91.91,0,0,0,12.57,17.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6.13-9a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.73,1,1,1,0,0,1,.87-.5,1,1,0,0,1,0,2,1,1,0,1,0,0,2,3,3,0,0,0,0-6Z' - })); -}; - -UilFileQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileQuestion; \ No newline at end of file diff --git a/icons/uil-file-redo-alt.js b/icons/uil-file-redo-alt.js deleted file mode 100644 index 9bde5116..00000000 --- a/icons/uil-file-redo-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileRedoAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,13a1,1,0,0,0-1-1H8a1,1,0,0,0,0,2h5A1,1,0,0,0,14,13Zm-3,7H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.18,1.18,0,0,0-.06-.27l0-.09a.92.92,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.86.86,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,14a1,1,0,0,0-.91.6A4.07,4.07,0,0,0,17,14a4,4,0,1,0,2.64,7,1,1,0,0,0-1.32-1.51A2,2,0,0,1,17,20a2,2,0,1,1,1-3.75h-.22a1,1,0,0,0,0,2H20a1,1,0,0,0,1-1V15A1,1,0,0,0,20,14ZM8,10H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm0,6a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' - })); -}; - -UilFileRedoAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileRedoAlt; \ No newline at end of file diff --git a/icons/uil-file-search-alt.js b/icons/uil-file-search-alt.js deleted file mode 100644 index ebe754f1..00000000 --- a/icons/uil-file-search-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileSearchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,20H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,11.05,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1ZM7,8a1,1,0,0,0,0,2H8A1,1,0,0,0,8,8ZM21.71,20.29l-1.17-1.16A3.44,3.44,0,0,0,20,15h0A3.49,3.49,0,0,0,14,17.49a3.46,3.46,0,0,0,5.13,3.05l1.16,1.17a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Zm-3.17-1.75a1.54,1.54,0,0,1-2.11,0A1.5,1.5,0,0,1,16,17.49a1.46,1.46,0,0,1,.44-1.06,1.48,1.48,0,0,1,1-.43A1.47,1.47,0,0,1,19,17.49,1.5,1.5,0,0,1,18.54,18.54ZM13,12H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm-2,6a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Z' - })); -}; - -UilFileSearchAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileSearchAlt; \ No newline at end of file diff --git a/icons/uil-file-share-alt.js b/icons/uil-file-share-alt.js deleted file mode 100644 index 1666ee0c..00000000 --- a/icons/uil-file-share-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileShareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.5,12.5a1,1,0,0,0-1-1h-5a1,1,0,0,0,0,2h5A1,1,0,0,0,13.5,12.5Zm5,5a2,2,0,0,0-1.18.39l-1.75-.8,1.91-.88a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.89.87A2,2,0,1,0,13.5,19a1.88,1.88,0,0,0,.92-.24l2.1,1a2,2,0,1,0,2-2.23Zm-8,2h-5a1,1,0,0,1-1-1V4.5a1,1,0,0,1,1-1h5v3a3,3,0,0,0,3,3h3a1,1,0,0,0,2,0v-1s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0,1.1,1.1,0,0,0-.26-.06H5.5a3,3,0,0,0-3,3v14a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2Zm2-14.59L15.09,7.5H13.5a1,1,0,0,1-1-1ZM7.5,15.5a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm0-6h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Z' - })); -}; - -UilFileShareAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileShareAlt; \ No newline at end of file diff --git a/icons/uil-file-shield-alt.js b/icons/uil-file-shield-alt.js deleted file mode 100644 index f61ad944..00000000 --- a/icons/uil-file-shield-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileShieldAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,20h-5a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2Zm2-14.59L15.09,8H13.5a1,1,0,0,1-1-1ZM7.5,8a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm13.63,5.86a1,1,0,0,0-.84-.2,2.77,2.77,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.78,2.78,0,0,1-2.2.47,1,1,0,0,0-1.21,1V17a4.6,4.6,0,0,0,1.84,3.69L16.9,21.8a1,1,0,0,0,1.2,0l1.56-1.16A4.6,4.6,0,0,0,21.5,17V14.63A1,1,0,0,0,21.13,13.86ZM19.5,17a2.62,2.62,0,0,1-1,2.09l-1,.72-1-.72a2.62,2.62,0,0,1-1-2.09V15.72a4.68,4.68,0,0,0,2-.55,4.68,4.68,0,0,0,2,.55Zm-9-.95h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm1-4h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' - })); -}; - -UilFileShieldAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileShieldAlt; \ No newline at end of file diff --git a/icons/uil-file-slash.js b/icons/uil-file-slash.js deleted file mode 100644 index 4e9708ce..00000000 --- a/icons/uil-file-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L4,5.41V19a3,3,0,0,0,3,3H17a3,3,0,0,0,2.39-1.2l.9.91a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM17,20H7a1,1,0,0,1-1-1V7.41L17.93,19.34A1,1,0,0,1,17,20ZM8.66,4H12V7a3,3,0,0,0,3,3h3v3.34a1,1,0,1,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L13.06,2H8.66a1,1,0,0,0,0,2ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1Z' - })); -}; - -UilFileSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileSlash; \ No newline at end of file diff --git a/icons/uil-file-times-alt.js b/icons/uil-file-times-alt.js deleted file mode 100644 index f9444096..00000000 --- a/icons/uil-file-times-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileTimesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,12H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm5.41,7,1.3-1.29a1,1,0,0,0-1.42-1.42L18,17.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L16.59,19l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L18,20.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,20H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm4,8H8a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' - })); -}; - -UilFileTimesAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileTimesAlt; \ No newline at end of file diff --git a/icons/uil-file-times.js b/icons/uil-file-times.js deleted file mode 100644 index 46accb8e..00000000 --- a/icons/uil-file-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.71,12.29a1,1,0,0,0-1.42,0L12,13.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L10.59,15l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,16.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,15l1.3-1.29A1,1,0,0,0,14.71,12.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileTimes; \ No newline at end of file diff --git a/icons/uil-file-upload-alt.js b/icons/uil-file-upload-alt.js deleted file mode 100644 index 00b6e17a..00000000 --- a/icons/uil-file-upload-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,20H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,12.05,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm6,4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm6.71,5.29-2-2a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V21a1,1,0,0,0,2,0V18.41l.29.3a1,1,0,0,0,1.42,0A1,1,0,0,0,20.71,17.29ZM12,18a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' - })); -}; - -UilFileUploadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileUploadAlt; \ No newline at end of file diff --git a/icons/uil-file-upload.js b/icons/uil-file-upload.js deleted file mode 100644 index 5a0250b5..00000000 --- a/icons/uil-file-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFileUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,11.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V17a1,1,0,0,0,2,0V14.41l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFileUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFileUpload; \ No newline at end of file diff --git a/icons/uil-file.js b/icons/uil-file.js deleted file mode 100644 index 805f3a7e..00000000 --- a/icons/uil-file.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFile = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H14ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V9a1,1,0,0,0,1,1h5Z' - })); -}; - -UilFile.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFile; \ No newline at end of file diff --git a/icons/uil-files-landscapes-alt.js b/icons/uil-files-landscapes-alt.js deleted file mode 100644 index f1fc9e85..00000000 --- a/icons/uil-files-landscapes-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilesLandscapesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,19H6a3,3,0,0,1-3-3V8A1,1,0,0,0,1,8v8a5,5,0,0,0,5,5H18a1,1,0,0,0,0-2Zm-4-8H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm9-1.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,16.05,3H8A3,3,0,0,0,5,6v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM21,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3ZM10,9h2a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' - })); -}; - -UilFilesLandscapesAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilesLandscapesAlt; \ No newline at end of file diff --git a/icons/uil-files-landscapes.js b/icons/uil-files-landscapes.js deleted file mode 100644 index 6e41d3cf..00000000 --- a/icons/uil-files-landscapes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilesLandscapes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M23,9.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,16.05,3H8A3,3,0,0,0,5,6V7H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V17h1a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM17,18a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V10A1,1,0,0,1,4,9H5v5a3,3,0,0,0,3,3h9Zm4-4a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3Z' - })); -}; - -UilFilesLandscapes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilesLandscapes; \ No newline at end of file diff --git a/icons/uil-film.js b/icons/uil-film.js deleted file mode 100644 index da0ed3c7..00000000 --- a/icons/uil-film.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilm = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2a1,1,0,0,0-1,1V5H18V3a1,1,0,0,0-2,0V4H8V3A1,1,0,0,0,6,3V5H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,2,0V19H6v2a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2ZM6,17H4V15H6Zm0-4H4V11H6ZM6,9H4V7H6Zm10,9H8V13h8Zm0-7H8V6h8Zm4,6H18V15h2Zm0-4H18V11h2Zm0-4H18V7h2Z' - })); -}; - -UilFilm.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilm; \ No newline at end of file diff --git a/icons/uil-filter-slash.js b/icons/uil-filter-slash.js deleted file mode 100644 index 8c4c102b..00000000 --- a/icons/uil-filter-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilterSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.22,6H12.66a1,1,0,0,0,0,2h6.56a.78.78,0,0,1,.78.78v.78H16.22a1,1,0,1,0,0,2h2.37l-.7.69a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l1.88-1.88a2.51,2.51,0,0,0,.54-.8h0l0-.1A2.59,2.59,0,0,0,22,9.82v-1A2.79,2.79,0,0,0,19.22,6ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.14,6.55A2.73,2.73,0,0,0,4,8.78v1a2.65,2.65,0,0,0,.24,1.1l0,.06a2.61,2.61,0,0,0,.54.81l5.41,5.4V21a1,1,0,0,0,.47.85,1,1,0,0,0,.53.15,1,1,0,0,0,.45-.11l3.56-1.78a1,1,0,0,0,.55-.89v-2h0l4.51,4.52a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,8.78a.76.76,0,0,1,.5-.72L6.59,8,8.15,9.56H6Zm8.07,7.29a1,1,0,0,0-.29.71V18.6l-1.56.78v-2.6a1,1,0,0,0-.29-.71L7.41,11.56h2.74l4.22,4.22Z' - })); -}; - -UilFilterSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilterSlash; \ No newline at end of file diff --git a/icons/uil-filter.js b/icons/uil-filter.js deleted file mode 100644 index 659cfadf..00000000 --- a/icons/uil-filter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFilter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V6.17a3,3,0,0,0,.25,1.2l0,.06a2.81,2.81,0,0,0,.59.86L9,14.41V21a1,1,0,0,0,.47.85A1,1,0,0,0,10,22a1,1,0,0,0,.45-.11l4-2A1,1,0,0,0,15,19V14.41l6.12-6.12a2.81,2.81,0,0,0,.59-.86l0-.06A3,3,0,0,0,22,6.17V5A3,3,0,0,0,19,2ZM13.29,13.29A1,1,0,0,0,13,14v4.38l-2,1V14a1,1,0,0,0-.29-.71L5.41,8H18.59ZM20,6H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilFilter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFilter; \ No newline at end of file diff --git a/icons/uil-fire.js b/icons/uil-fire.js deleted file mode 100644 index 75b7ab4d..00000000 --- a/icons/uil-fire.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFire = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm8.468 8.395-.002.001-.003.002Zm9.954-.187a1.237 1.237 0 0 0-.23-.175 1 1 0 0 0-1.4.411 5.782 5.782 0 0 1-1.398 1.778 8.664 8.664 0 0 0 .134-1.51 8.714 8.714 0 0 0-4.4-7.582 1 1 0 0 0-1.492.806 7.017 7.017 0 0 1-2.471 4.942l-.23.187a8.513 8.513 0 0 0-1.988 1.863 8.983 8.983 0 0 0 3.656 13.908 1 1 0 0 0 1.377-.926 1.05 1.05 0 0 0-.05-.312 6.977 6.977 0 0 1-.19-2.581 9.004 9.004 0 0 0 4.313 4.016.997.997 0 0 0 .715.038 8.995 8.995 0 0 0 3.654-14.863Zm-3.905 12.831a6.964 6.964 0 0 1-3.577-4.402 8.908 8.908 0 0 1-.18-.964 1 1 0 0 0-.799-.845.982.982 0 0 0-.191-.018 1 1 0 0 0-.867.5 8.959 8.959 0 0 0-1.205 4.718 6.985 6.985 0 0 1-1.176-9.868 6.555 6.555 0 0 1 1.562-1.458.745.745 0 0 0 .075-.055s.296-.245.306-.25a8.968 8.968 0 0 0 2.9-4.633 6.736 6.736 0 0 1 1.385 8.088 1 1 0 0 0 1.184 1.418 7.856 7.856 0 0 0 3.862-2.688 7 7 0 0 1-3.279 10.457Z' - })); -}; - -UilFire.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFire; \ No newline at end of file diff --git a/icons/uil-flask-potion.js b/icons/uil-flask-potion.js deleted file mode 100644 index 97c3afe7..00000000 --- a/icons/uil-flask-potion.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlaskPotion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.93,11.67a.42.42,0,0,0,0-.1A7.4,7.4,0,0,0,15,7.62V4h1a1,1,0,0,0,0-2H8A1,1,0,0,0,8,4H9V7.62a7.4,7.4,0,0,0-3.89,4,.42.42,0,0,0,0,.1,7.5,7.5,0,1,0,13.86,0ZM10.31,9.26A1,1,0,0,0,11,8.31V4h2V8.31a1,1,0,0,0,.69.95A5.43,5.43,0,0,1,16.23,11H7.77A5.43,5.43,0,0,1,10.31,9.26ZM12,20a5.51,5.51,0,0,1-5.5-5.5A5.34,5.34,0,0,1,6.72,13H17.28a5.34,5.34,0,0,1,.22,1.5A5.51,5.51,0,0,1,12,20Zm2-4a1,1,0,1,0,1,1A1,1,0,0,0,14,16Zm-4-1a1,1,0,1,0,1,1A1,1,0,0,0,10,15Z' - })); -}; - -UilFlaskPotion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlaskPotion; \ No newline at end of file diff --git a/icons/uil-flask.js b/icons/uil-flask.js deleted file mode 100644 index ba00146e..00000000 --- a/icons/uil-flask.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlask = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.11,17.49,15,8.73V4h1a1,1,0,0,0,0-2H8A1,1,0,0,0,8,4H9V8.73L3.89,17.49A3,3,0,0,0,6.48,22h11a3,3,0,0,0,2.59-4.51Zm-9.25-8A1,1,0,0,0,11,9V4h2V9a1,1,0,0,0,.14.5L14,11H10Zm7.52,10a1,1,0,0,1-.86.5h-11a1,1,0,0,1-.86-.5,1,1,0,0,1,0-1L8.83,13h6.35l3.2,5.5A1,1,0,0,1,18.38,19.5ZM10,15a1,1,0,1,0,1,1A1,1,0,0,0,10,15Zm4,1a1,1,0,1,0,1,1A1,1,0,0,0,14,16Z' - })); -}; - -UilFlask.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlask; \ No newline at end of file diff --git a/icons/uil-flip-h-alt.js b/icons/uil-flip-h-alt.js deleted file mode 100644 index 37d963cd..00000000 --- a/icons/uil-flip-h-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlipHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.21,5.7a1,1,0,0,0,.24,0l1.94-.49A1,1,0,0,0,16.12,4a1,1,0,0,0-1.21-.73L13,3.73a1,1,0,0,0,.24,2ZM9.51,9h-2a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2Zm4,0a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2ZM7.39,7.15l.24,0,1.94-.48A1,1,0,0,0,9.09,4.7l-1.94.48a1,1,0,0,0,.24,2ZM4,10.51a1,1,0,0,0,1-1v-2a1,1,0,0,0-2,0v2A1,1,0,0,0,4,10.51Zm16.62-8.3A1,1,0,0,0,19.76,2l-1,.24a1,1,0,0,0-.73,1.21,1,1,0,0,0,1,.76A1,1,0,0,0,21,4V3A1,1,0,0,0,20.62,2.21ZM20,7a1,1,0,0,0-1,1V9.14A1,1,0,0,0,19.51,11H20a1,1,0,0,0,1-1V8A1,1,0,0,0,20,7Zm0,6H4a1,1,0,0,0-1,1v3a1,1,0,0,0,.76,1l16,4A1,1,0,0,0,20,22a1,1,0,0,0,1-1V14A1,1,0,0,0,20,13Zm-1,6.72L5,16.22V15H19Z' - })); -}; - -UilFlipHAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlipHAlt; \ No newline at end of file diff --git a/icons/uil-flip-h.js b/icons/uil-flip-h.js deleted file mode 100644 index 58ccfa40..00000000 --- a/icons/uil-flip-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlipH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM10.93,9h1.5a1,1,0,0,0,0-2h-1.5a1,1,0,0,0,0,2Zm4.5-1a1,1,0,0,0,1,1H17a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-.66-.65a1,1,0,0,0-1.41,0,1,1,0,0,0-.19,1.15A1.49,1.49,0,0,0,15.43,8ZM11.65,4.77,12,4.41l.81.81a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L13.16,2.75a.91.91,0,0,0-.26-.19,1,1,0,0,0-1.61-.27L10.23,3.35a1,1,0,0,0,1.42,1.42ZM17,15H7a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09l5,5a1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,.21-1.09A1,1,0,0,0,17,15Zm-5,4.59L9.41,17h5.18ZM7.05,9a1,1,0,0,0,.71-.29L8.82,7.6A1,1,0,0,0,7.4,6.18L6.34,7.24a1,1,0,0,0,0,1.42A1,1,0,0,0,7.05,9Z' - })); -}; - -UilFlipH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlipH; \ No newline at end of file diff --git a/icons/uil-flip-v-alt.js b/icons/uil-flip-v-alt.js deleted file mode 100644 index 513ffd30..00000000 --- a/icons/uil-flip-v-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlipVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.94,12.24A1,1,0,0,0,3.73,13l-.49,1.94A1,1,0,0,0,4,16.12a1,1,0,0,0,1.21-.73l.49-1.94A1,1,0,0,0,4.94,12.24Zm17,7.52-4-16A1,1,0,0,0,17,3H14a1,1,0,0,0-1,1V20a1,1,0,0,0,1,1h7a1,1,0,0,0,.79-.38A1,1,0,0,0,22,19.76ZM15,19V5h1.22l3.5,14ZM6.4,6.42a1,1,0,0,0-1.22.73L4.7,9.09a1,1,0,0,0,.73,1.21l.24,0a1,1,0,0,0,1-.76l.48-1.94A1,1,0,0,0,6.4,6.42ZM7.51,5h2a1,1,0,0,0,0-2h-2a1,1,0,0,0,0,2ZM4.24,19a1,1,0,0,0-2-.24l-.24,1a1,1,0,0,0,.18.86A1,1,0,0,0,3,21H4a1,1,0,0,0,.24-2ZM10,6.51a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,10,6.51Zm0,6a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,10,12.51Zm0,6a1,1,0,0,0-.86.49H8a1,1,0,0,0,0,2h2a1,1,0,0,0,1-1v-.49A1,1,0,0,0,10,18.51Z' - })); -}; - -UilFlipVAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlipVAlt; \ No newline at end of file diff --git a/icons/uil-flip-v.js b/icons/uil-flip-v.js deleted file mode 100644 index 937ff309..00000000 --- a/icons/uil-flip-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlipV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.6,15.18A1,1,0,0,0,6.18,16.6l1.06,1.06a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM3.81,9.78,2.75,10.84a.91.91,0,0,0-.19.26,1,1,0,0,0-.27,1.61l1.06,1.06a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L4.41,12l.81-.81A1,1,0,0,0,3.81,9.78ZM8,10.57a1,1,0,0,0-1,1v1.5a1,1,0,0,0,2,0v-1.5A1,1,0,0,0,8,10.57Zm13.71.72-5-5a1,1,0,0,0-1.09-.21A1,1,0,0,0,15,7V17a1,1,0,0,0,.62.92A.84.84,0,0,0,16,18a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM17,14.59V9.41L19.59,12ZM12,2a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V3A1,1,0,0,0,12,2ZM8.38,6.08a1,1,0,0,0-1.09.21L6.64,7a1,1,0,0,0,0,1.41,1,1,0,0,0,.7.3,1,1,0,0,0,.45-.11A1,1,0,0,0,9,7.57V7A1,1,0,0,0,8.38,6.08Z' - })); -}; - -UilFlipV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlipV; \ No newline at end of file diff --git a/icons/uil-flower.js b/icons/uil-flower.js deleted file mode 100644 index fa851f5a..00000000 --- a/icons/uil-flower.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFlower = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.68,6.88a4.4,4.4,0,0,0-3.31-.32,4.37,4.37,0,0,0-8.73,0,4.48,4.48,0,0,0-3.31.29,4.37,4.37,0,0,0,.61,8,4.4,4.4,0,0,0-.8,2.5,5,5,0,0,0,.07.75A4.34,4.34,0,0,0,8.5,21.73a4.68,4.68,0,0,0,.64,0A4.42,4.42,0,0,0,12,20a4.42,4.42,0,0,0,2.86,1.69,4.68,4.68,0,0,0,.64,0,4.36,4.36,0,0,0,3.56-6.87,4.36,4.36,0,0,0,.62-8ZM10.34,4.94a2.4,2.4,0,0,1,3.32,0,2.43,2.43,0,0,1,.52,2.66l-.26.59-.66.58A4.07,4.07,0,0,0,12,8.55a4,4,0,0,0-1.61.34L9.83,7.6A2.39,2.39,0,0,1,10.34,4.94Zm-6.1,6.84A2.37,2.37,0,0,1,7.94,9l.49.43.35.8A3.92,3.92,0,0,0,8,12.55,2.85,2.85,0,0,0,8,13l-.55,0h0l-.84.08A2.37,2.37,0,0,1,4.24,11.78Zm6.6,6.08a2.38,2.38,0,0,1-4.66-.08,3.07,3.07,0,0,1,0-.42,2.33,2.33,0,0,1,1.17-2L7.86,15l.91-.1a4,4,0,0,0,2.38,1.57ZM12,14.55a2,2,0,1,1,2-2A2,2,0,0,1,12,14.55Zm5.82,3.22a2.36,2.36,0,0,1-2.68,1.94,2.39,2.39,0,0,1-2-1.85l-.14-.6.21-.92a4,4,0,0,0,2.2-1.76l.5.3.09,0,.66.39A2.38,2.38,0,0,1,17.82,17.77Zm1.94-6a2.39,2.39,0,0,1-2.13,1.33h-.24L16.75,13,16,12.59v0a4,4,0,0,0-1-2.64l.43-.37,0,0L16.06,9a2.37,2.37,0,0,1,3.7,2.82Z' - })); -}; - -UilFlower.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFlower; \ No newline at end of file diff --git a/icons/uil-focus-add.js b/icons/uil-focus-add.js deleted file mode 100644 index 5adf26d2..00000000 --- a/icons/uil-focus-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFocusAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2ZM3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2ZM16,12a1,1,0,0,0-1-1H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V13h2A1,1,0,0,0,16,12Zm5,3a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15Z' - })); -}; - -UilFocusAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFocusAdd; \ No newline at end of file diff --git a/icons/uil-focus-target.js b/icons/uil-focus-target.js deleted file mode 100644 index fcea9a30..00000000 --- a/icons/uil-focus-target.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFocusTarget = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2Zm9-7a1,1,0,0,0,0-2H15.86A4,4,0,0,0,13,8.14V7a1,1,0,0,0-2,0V8.14A4,4,0,0,0,8.14,11H7a1,1,0,0,0,0,2H8.14A4,4,0,0,0,11,15.86V17a1,1,0,0,0,2,0V15.86A4,4,0,0,0,15.86,13Zm-5,1a2,2,0,1,1,2-2A2,2,0,0,1,12,14Zm9,1a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2Z' - })); -}; - -UilFocusTarget.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFocusTarget; \ No newline at end of file diff --git a/icons/uil-focus.js b/icons/uil-focus.js deleted file mode 100644 index a30031d1..00000000 --- a/icons/uil-focus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFocus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,2H3A1,1,0,0,0,2,3V8A1,1,0,0,0,4,8V4H8A1,1,0,0,0,8,2ZM8,20H4V16a1,1,0,0,0-2,0v5a1,1,0,0,0,1,1H8a1,1,0,0,0,0-2ZM21,2H16a1,1,0,0,0,0,2h4V8a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2Zm0,13a1,1,0,0,0-1,1v4H16a1,1,0,0,0,0,2h5a1,1,0,0,0,1-1V16A1,1,0,0,0,21,15Z' - })); -}; - -UilFocus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFocus; \ No newline at end of file diff --git a/icons/uil-folder-check.js b/icons/uil-folder-check.js deleted file mode 100644 index fba6818a..00000000 --- a/icons/uil-folder-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.29,10.79,11,14.09l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0-1.42-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderCheck; \ No newline at end of file diff --git a/icons/uil-folder-download.js b/icons/uil-folder-download.js deleted file mode 100644 index 409812de..00000000 --- a/icons/uil-folder-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.29,13.79l-.29.3V11.5a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderDownload; \ No newline at end of file diff --git a/icons/uil-folder-exclamation.js b/icons/uil-folder-exclamation.js deleted file mode 100644 index 5f04566e..00000000 --- a/icons/uil-folder-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.92,16.12a.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12-.18-.09a.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33,1,1,0,0,0,1.09.22,1.46,1.46,0,0,0,.33-.22,1.46,1.46,0,0,0,.22-.33A1,1,0,0,0,13,16.5a1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,12.92,16.12ZM12,10.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,12,10.5Zm7-5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderExclamation; \ No newline at end of file diff --git a/icons/uil-folder-heart.js b/icons/uil-folder-heart.js deleted file mode 100644 index 1f892eb0..00000000 --- a/icons/uil-folder-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9.84a2.92,2.92,0,0,0-3.43,4.65l2.72,2.72a1,1,0,0,0,1.42,0l2.72-2.72A2.92,2.92,0,0,0,12,9.84Zm2,3.23-2,2-2-2a.92.92,0,0,1,0-1.3.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0,.92.92,0,0,1,1.3,1.3ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderHeart; \ No newline at end of file diff --git a/icons/uil-folder-info.js b/icons/uil-folder-info.js deleted file mode 100644 index 3c559098..00000000 --- a/icons/uil-folder-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,12,13.5Zm7-8H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Zm-7.29-7.71a1,1,0,0,0-1.09-.21.93.93,0,0,0-.33.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.7,1,1,0,0,0,1.42,0,1,1,0,0,0,.29-.7,1,1,0,0,0-.08-.38A.93.93,0,0,0,12.71,10.79Z' - })); -}; - -UilFolderInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderInfo; \ No newline at end of file diff --git a/icons/uil-folder-lock.js b/icons/uil-folder-lock.js deleted file mode 100644 index f9c0320d..00000000 --- a/icons/uil-folder-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4,4H8.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,11,7h7a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11.72l-.32-1A3,3,0,0,0,8.56,2H4A3,3,0,0,0,1,5V18a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4ZM21,15.18V14a3,3,0,0,0-6,0v1.18A3,3,0,0,0,13,18v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V18A3,3,0,0,0,21,15.18ZM17,14a1,1,0,0,1,2,0v1H17Zm4,6a1,1,0,0,1-1,1H16a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderLock; \ No newline at end of file diff --git a/icons/uil-folder-medical.js b/icons/uil-folder-medical.js deleted file mode 100644 index 9396f68e..00000000 --- a/icons/uil-folder-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,12.5H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderMedical; \ No newline at end of file diff --git a/icons/uil-folder-minus.js b/icons/uil-folder-minus.js deleted file mode 100644 index 4f370416..00000000 --- a/icons/uil-folder-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,12.5H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderMinus; \ No newline at end of file diff --git a/icons/uil-folder-network.js b/icons/uil-folder-network.js deleted file mode 100644 index 00751a34..00000000 --- a/icons/uil-folder-network.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18H14.82A3,3,0,0,0,13,16.18V14h3.67A2.34,2.34,0,0,0,19,11.67V6.33A2.34,2.34,0,0,0,16.67,4h-4l-.13-.41A2.34,2.34,0,0,0,10.37,2h-3A2.34,2.34,0,0,0,5,4.33v7.34A2.34,2.34,0,0,0,7.33,14H11v2.18A3,3,0,0,0,9.18,18H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM7.33,12A.33.33,0,0,1,7,11.67V4.33A.33.33,0,0,1,7.33,4h3a.33.33,0,0,1,.32.23l.36,1.09A1,1,0,0,0,12,6h4.67a.33.33,0,0,1,.33.33v5.34a.33.33,0,0,1-.33.33ZM12,20a1,1,0,1,1,1-1A1,1,0,0,1,12,20Z' - })); -}; - -UilFolderNetwork.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderNetwork; \ No newline at end of file diff --git a/icons/uil-folder-open.js b/icons/uil-folder-open.js deleted file mode 100644 index 682b84be..00000000 --- a/icons/uil-folder-open.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderOpen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.78 10.37A1 1 0 0 0 22 10h-2V9a3 3 0 0 0-3-3h-6.28l-.32-1a3 3 0 0 0-2.84-2H4a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14.4a3 3 0 0 0 2.92-2.35L23 11.22a1 1 0 0 0-.22-.85ZM5.37 18.22a1 1 0 0 1-1 .78H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h3.56a1 1 0 0 1 1 .68l.54 1.64A1 1 0 0 0 10 8h7a1 1 0 0 1 1 1v1H8a1 1 0 0 0-1 .78Zm14 0a1 1 0 0 1-1 .78H7.21a1.42 1.42 0 0 0 .11-.35L8.8 12h12Z' - })); -}; - -UilFolderOpen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderOpen; \ No newline at end of file diff --git a/icons/uil-folder-plus.js b/icons/uil-folder-plus.js deleted file mode 100644 index 39ec7885..00000000 --- a/icons/uil-folder-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,12.5H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderPlus; \ No newline at end of file diff --git a/icons/uil-folder-question.js b/icons/uil-folder-question.js deleted file mode 100644 index 3fc54843..00000000 --- a/icons/uil-folder-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.57,16.3a.64.64,0,0,0-.15-.13l-.17-.09L12.06,16a1,1,0,0,0-.9.28,1,1,0,0,0-.22.32,1,1,0,0,0-.07.39,1,1,0,0,0,.29.7,1,1,0,0,0,.32.22,1,1,0,0,0,.39.07,1,1,0,0,0,.38-.07,1,1,0,0,0,.32-.22,1,1,0,0,0,.3-.7,1,1,0,0,0-.08-.39A.87.87,0,0,0,12.57,16.3ZM11.87,9a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.73,1,1,1,0,0,1,1.87.5,1,1,0,0,1-1,1,1,1,0,1,0,0,2,3,3,0,0,0,0-6ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderQuestion; \ No newline at end of file diff --git a/icons/uil-folder-slash.js b/icons/uil-folder-slash.js deleted file mode 100644 index ff5628dd..00000000 --- a/icons/uil-folder-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-1.6-1.6h0L3.71,2.29A1,1,0,0,0,2.29,3.71L3.69,5.1A3,3,0,0,0,3,7V18a3,3,0,0,0,3,3H18a3,3,0,0,0,1.29-.3l1,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,19a1,1,0,0,1-1-1V7a1,1,0,0,1,.12-.46L17.59,19ZM10.62,6a1,1,0,0,1,.89.67l.54,1.64A1,1,0,0,0,13,9h5a1,1,0,0,1,1,1v4.34a1,1,0,1,0,2,0V10a3,3,0,0,0-3-3H13.72L13.4,6a3,3,0,0,0-2.68-2,1,1,0,0,0-.1,2Z' - })); -}; - -UilFolderSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderSlash; \ No newline at end of file diff --git a/icons/uil-folder-times.js b/icons/uil-folder-times.js deleted file mode 100644 index 8280e7db..00000000 --- a/icons/uil-folder-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.71,10.79a1,1,0,0,0-1.42,0L12,12.09l-1.29-1.3a1,1,0,0,0-1.42,1.42l1.3,1.29-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,14.91l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-1.3-1.29,1.3-1.29A1,1,0,0,0,14.71,10.79ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderTimes; \ No newline at end of file diff --git a/icons/uil-folder-upload.js b/icons/uil-folder-upload.js deleted file mode 100644 index b605b407..00000000 --- a/icons/uil-folder-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolderUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,10.79a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V16.5a1,1,0,0,0,2,0V13.91l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolderUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolderUpload; \ No newline at end of file diff --git a/icons/uil-folder.js b/icons/uil-folder.js deleted file mode 100644 index a0ae3819..00000000 --- a/icons/uil-folder.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFolder = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilFolder.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFolder; \ No newline at end of file diff --git a/icons/uil-font.js b/icons/uil-font.js deleted file mode 100644 index afda51ef..00000000 --- a/icons/uil-font.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFont = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H20V3a1,1,0,0,0-1-1H15.5a1,1,0,0,0-.86.5L4.43,20H3a1,1,0,0,0,0,2H7a1,1,0,0,0,0-2H6.74l3.5-6H18v6H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-3-8H11.41l4.66-8H18Z' - })); -}; - -UilFont.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFont; \ No newline at end of file diff --git a/icons/uil-football-american.js b/icons/uil-football-american.js deleted file mode 100644 index 92d5f72a..00000000 --- a/icons/uil-football-american.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFootballAmerican = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.84,5.56A4.08,4.08,0,0,0,20.7,3.31h0a4.08,4.08,0,0,0-2.25-1.14,13.65,13.65,0,0,0-5.29.24,1.17,1.17,0,0,0-.2.06,14.44,14.44,0,0,0-6.69,3.8A14.59,14.59,0,0,0,2.45,13c0,.06,0,.12-.05.19a13.7,13.7,0,0,0-.24,5.3A4.08,4.08,0,0,0,3.3,20.69h0a4.08,4.08,0,0,0,2.25,1.14A13.12,13.12,0,0,0,7.63,22a13.8,13.8,0,0,0,3.26-.41l.14,0a14.54,14.54,0,0,0,10.52-10.5c0-.06,0-.12.05-.19A13.7,13.7,0,0,0,21.84,5.56ZM16.37,4a10.44,10.44,0,0,1,1.76.14,1.68,1.68,0,0,1,.24.07L17,5.59,15.46,4.05C15.76,4,16.07,4,16.37,4ZM7.67,7.67a12.72,12.72,0,0,1,5.4-3.19L15.59,7,13.44,9.15l-.73-.73a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l.73.73L10.56,12l-.73-.73a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.73.73L7,15.59,4.49,13.08A12.67,12.67,0,0,1,7.67,7.67ZM4.21,18.37a1.68,1.68,0,0,1-.07-.24A11.38,11.38,0,0,1,4,15.46L5.59,17Zm1.66,1.49a1.68,1.68,0,0,1-.24-.07L7,18.41,8.54,20A11.38,11.38,0,0,1,5.87,19.86Zm10.46-3.53a12.67,12.67,0,0,1-5.41,3.18L8.41,17l2.15-2.15.73.73a1,1,0,1,0,1.42-1.41L12,13.44,13.44,12l.73.73a1,1,0,0,0,.71.29,1,1,0,0,0,.7-1.71l-.73-.73L17,8.41l2.51,2.51A12.67,12.67,0,0,1,16.33,16.33ZM20,8.54,18.41,7l1.38-1.37a1.68,1.68,0,0,1,.07.24A11.38,11.38,0,0,1,20,8.54Z' - })); -}; - -UilFootballAmerican.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFootballAmerican; \ No newline at end of file diff --git a/icons/uil-football-ball.js b/icons/uil-football-ball.js deleted file mode 100644 index cef0131d..00000000 --- a/icons/uil-football-ball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFootballBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.84,5.56A4.08,4.08,0,0,0,20.7,3.31h0a4.08,4.08,0,0,0-2.25-1.14A14.45,14.45,0,0,0,2.16,18.44,4.08,4.08,0,0,0,3.3,20.69h0a4.08,4.08,0,0,0,2.25,1.14A13.12,13.12,0,0,0,7.63,22a14.37,14.37,0,0,0,10.11-4.26A14.23,14.23,0,0,0,21.84,5.56ZM4.21,18.37a1.68,1.68,0,0,1-.07-.24A12.21,12.21,0,0,1,7.67,7.67,12.39,12.39,0,0,1,16.37,4a10.44,10.44,0,0,1,1.76.14,1.68,1.68,0,0,1,.24.07L13.44,9.15l-.73-.73a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l.73.73L10.56,12l-.73-.73a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.73.73Zm12.12-2A12.24,12.24,0,0,1,5.87,19.86a1.68,1.68,0,0,1-.24-.07l4.93-4.94.73.73a1,1,0,1,0,1.42-1.41L12,13.44,13.44,12l.73.73a1,1,0,0,0,.71.29,1,1,0,0,0,.7-1.71l-.73-.73,4.94-4.93a1.68,1.68,0,0,1,.07.24A12.21,12.21,0,0,1,16.33,16.33Z' - })); -}; - -UilFootballBall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFootballBall; \ No newline at end of file diff --git a/icons/uil-football.js b/icons/uil-football.js deleted file mode 100644 index f9299362..00000000 --- a/icons/uil-football.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFootball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.07,6.11a9.85,9.85,0,0,0-4.3-3.36A10,10,0,0,0,2,12c0,.19,0,.38,0,.56A9.94,9.94,0,0,0,3.33,17a10,10,0,0,0,5.89,4.65h0A10.11,10.11,0,0,0,12,22a9.45,9.45,0,0,0,1.88-.18,10,10,0,0,0,8-8.41A9.46,9.46,0,0,0,22,12,9.83,9.83,0,0,0,20.07,6.11Zm-2,.77L17,9.74l-1.62.44L13,8.49V6.64l2.49-1.81A7.81,7.81,0,0,1,18.11,6.88ZM14,11.67,13.22,14H10.77L10,11.67l2-1.43ZM12,4a8,8,0,0,1,1.11.09L12,4.89l-1.11-.8A8,8,0,0,1,12,4ZM4.88,8.37l.4,1.32-1.13.79A7.88,7.88,0,0,1,4.88,8.37Zm1.37,9.17,1.38.05L8,18.92A8.32,8.32,0,0,1,6.25,17.54ZM8,15.6l-3.15-.11A7.83,7.83,0,0,1,4.07,13l2.49-1.74L8,11.88l.89,2.76Zm.86-5.53-1.56-.7-.91-3A7.93,7.93,0,0,1,8.5,4.83L11,6.64V8.49ZM13,19.93a8.08,8.08,0,0,1-2.63-.12l-.83-2.92.83-.89h3.07l.67,1Zm2.41-.7L15.87,18l1.36.07A7.83,7.83,0,0,1,15.38,19.23Zm3.46-3.12L15.76,16l-.71-1.1.89-2.76,1.51-.41,2.36,2A7.84,7.84,0,0,1,18.84,16.11Zm.05-5.83L19.4,9a7.4,7.4,0,0,1,.53,2.13Z' - })); -}; - -UilFootball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFootball; \ No newline at end of file diff --git a/icons/uil-forwaded-call.js b/icons/uil-forwaded-call.js deleted file mode 100644 index 409e1f7d..00000000 --- a/icons/uil-forwaded-call.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilForwadedCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.94,6.56h3.58l-.79.8a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l2.5-2.5a1,1,0,0,0,0-1.41l-2.5-2.5a1,1,0,0,0-1.41,1.41l.79.79H14.94a1,1,0,0,0,0,2ZM19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' - })); -}; - -UilForwadedCall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilForwadedCall; \ No newline at end of file diff --git a/icons/uil-forward.js b/icons/uil-forward.js deleted file mode 100644 index 54ff5b1c..00000000 --- a/icons/uil-forward.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.67,9.69,14,5.84a2.67,2.67,0,0,0-4,2.31h0L6,5.84A2.67,2.67,0,0,0,2,8.15v7.7a2.63,2.63,0,0,0,1.33,2.3,2.61,2.61,0,0,0,1.34.37A2.69,2.69,0,0,0,6,18.16l4-2.31h0a2.65,2.65,0,0,0,1.33,2.31,2.66,2.66,0,0,0,2.67,0l6.67-3.85a2.67,2.67,0,0,0,0-4.62ZM10,13.54,5,16.42a.67.67,0,0,1-1-.57V8.15a.67.67,0,0,1,1-.57l5,2.88Zm9.67-1L13,16.43a.69.69,0,0,1-.67,0,.66.66,0,0,1-.33-.58V8.15a.66.66,0,0,1,.33-.58.78.78,0,0,1,.34-.09.63.63,0,0,1,.33.09l6.67,3.85a.67.67,0,0,1,0,1.16Z' - })); -}; - -UilForward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilForward; \ No newline at end of file diff --git a/icons/uil-frown.js b/icons/uil-frown.js deleted file mode 100644 index 6222a7d9..00000000 --- a/icons/uil-frown.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilFrown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9Z' - })); -}; - -UilFrown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilFrown; \ No newline at end of file diff --git a/icons/uil-game-structure.js b/icons/uil-game-structure.js deleted file mode 100644 index 09e3068c..00000000 --- a/icons/uil-game-structure.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGameStructure = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18H19V15a1,1,0,0,0-1-1H13V11.29l1.13.59a1,1,0,0,0,1.45-1.05l-.4-2.37L16.9,6.77a1,1,0,0,0,.26-1,1,1,0,0,0-.81-.68L14,4.72,12.9,2.56a1,1,0,0,0-1.8,0L10,4.72l-2.39.35a1,1,0,0,0-.81.68,1,1,0,0,0,.26,1L8.82,8.46l-.4,2.37a1,1,0,0,0,1.45,1.05L11,11.29V14H6a1,1,0,0,0-1,1v3H3a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V20H8v1a1,1,0,0,0,2,0V19a1,1,0,0,0-1-1H7V16H17v2H15a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V20h4v1a1,1,0,0,0,2,0V19A1,1,0,0,0,21,18ZM12,8.63a1,1,0,0,0-.47.12l-.8.42.15-.9a1,1,0,0,0-.29-.88l-.65-.64.9-.13a1,1,0,0,0,.76-.54l.4-.82.4.82a1,1,0,0,0,.76.54l.9.13-.65.64a1,1,0,0,0-.29.88l.15.9-.8-.42A1,1,0,0,0,12,8.63Z' - })); -}; - -UilGameStructure.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGameStructure; \ No newline at end of file diff --git a/icons/uil-gift.js b/icons/uil-gift.js deleted file mode 100644 index a48c07e4..00000000 --- a/icons/uil-gift.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGift = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,7h-.35A3.45,3.45,0,0,0,18,5.5a3.49,3.49,0,0,0-6-2.44A3.49,3.49,0,0,0,6,5.5,3.45,3.45,0,0,0,6.35,7H6a3,3,0,0,0-3,3v2a1,1,0,0,0,1,1H5v6a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V13h1a1,1,0,0,0,1-1V10A3,3,0,0,0,18,7ZM11,20H8a1,1,0,0,1-1-1V13h4Zm0-9H5V10A1,1,0,0,1,6,9h5Zm0-4H9.5A1.5,1.5,0,1,1,11,5.5Zm2-1.5A1.5,1.5,0,1,1,14.5,7H13ZM17,19a1,1,0,0,1-1,1H13V13h4Zm2-8H13V9h5a1,1,0,0,1,1,1Z' - })); -}; - -UilGift.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGift; \ No newline at end of file diff --git a/icons/uil-github-alt.js b/icons/uil-github-alt.js deleted file mode 100644 index 06fe4f31..00000000 --- a/icons/uil-github-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGithubAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.07031,20.50291a1.00008,1.00008,0,0,0-1.18115-.9834c-1.30908.24024-2.96191.27637-3.40137-.958a5.70754,5.70754,0,0,0-1.83691-2.415,1.20073,1.20073,0,0,1-.1665-.10938,1,1,0,0,0-.93067-.64551H2.54883a.99965.99965,0,0,0-1,.99512c-.00391.81543.811,1.33789,1.1416,1.51465a4.4408,4.4408,0,0,1,.92383,1.35937c.36426,1.02344,1.42285,2.57617,4.46582,2.376.001.03516.00195.06836.00244.09863l.00439.26758a1,1,0,0,0,2,0l-.00488-.31836C10.07715,21.4951,10.07031,21.22068,10.07031,20.50291Zm10.667-15.126c.03174-.125.063-.26367.09034-.41992a6.27792,6.27792,0,0,0-.40821-3.293,1.002,1.002,0,0,0-.61572-.58007c-.356-.12012-1.67041-.35645-4.18408,1.25a13.86918,13.86918,0,0,0-6.354,0C6.76221.751,5.45459.9658,5.10205,1.07908a.99744.99744,0,0,0-.63135.584,6.3003,6.3003,0,0,0-.40332,3.35644c.02442.12793.05078.2461.07813.35449A6.26928,6.26928,0,0,0,2.89014,9.20311a8.42168,8.42168,0,0,0,.04248.92187c.334,4.60254,3.334,5.98438,5.42431,6.459-.04345.125-.083.25878-.11816.40039a1.00023,1.00023,0,0,0,1.94238.47851,1.6784,1.6784,0,0,1,.46778-.87793.99947.99947,0,0,0-.5459-1.74512c-3.4541-.39453-4.95362-1.80175-5.1792-4.89843a6.61076,6.61076,0,0,1-.03369-.73828,4.25769,4.25769,0,0,1,.91943-2.71289,3.022,3.022,0,0,1,.1958-.23145.99988.99988,0,0,0,.188-1.02441,3.3876,3.3876,0,0,1-.15527-.55567A4.09356,4.09356,0,0,1,6.1167,3.06346a7.54263,7.54263,0,0,1,2.415,1.17968,1.00877,1.00877,0,0,0,.82764.13282,11.77716,11.77716,0,0,1,6.17285.001,1.00549,1.00549,0,0,0,.83056-.13769,7.572,7.572,0,0,1,2.40528-1.19043,4.03977,4.03977,0,0,1,.0874,1.57812,3.205,3.205,0,0,1-.16895.60743.9999.9999,0,0,0,.188,1.02441c.07715.08691.1543.18066.22363.26855A4.12186,4.12186,0,0,1,20,9.20311a7.03888,7.03888,0,0,1-.0376.77734c-.22021,3.05566-1.72558,4.46387-5.1958,4.85937a1,1,0,0,0-.54541,1.7461,1.63079,1.63079,0,0,1,.46631.9082,3.06079,3.06079,0,0,1,.09229.81934v2.334C14.77,21.2949,14.77,21.78025,14.77,22.00291a1,1,0,1,0,2,0c0-.2168,0-.69238.00977-1.33984V18.31346a4.8815,4.8815,0,0,0-.15479-1.31153,4.25638,4.25638,0,0,0-.11621-.416,6.51258,6.51258,0,0,0,5.44531-6.42383A8.69677,8.69677,0,0,0,22,9.20311,6.13062,6.13062,0,0,0,20.7373,5.37693Z' - })); -}; - -UilGithubAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGithubAlt; \ No newline at end of file diff --git a/icons/uil-github.js b/icons/uil-github.js deleted file mode 100644 index 1ad20835..00000000 --- a/icons/uil-github.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGithub = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2.2467A10.00042,10.00042,0,0,0,8.83752,21.73419c.5.08752.6875-.21247.6875-.475,0-.23749-.01251-1.025-.01251-1.86249C7,19.85919,6.35,18.78423,6.15,18.22173A3.636,3.636,0,0,0,5.125,16.8092c-.35-.1875-.85-.65-.01251-.66248A2.00117,2.00117,0,0,1,6.65,17.17169a2.13742,2.13742,0,0,0,2.91248.825A2.10376,2.10376,0,0,1,10.2,16.65923c-2.225-.25-4.55-1.11254-4.55-4.9375a3.89187,3.89187,0,0,1,1.025-2.6875,3.59373,3.59373,0,0,1,.1-2.65s.83747-.26251,2.75,1.025a9.42747,9.42747,0,0,1,5,0c1.91248-1.3,2.75-1.025,2.75-1.025a3.59323,3.59323,0,0,1,.1,2.65,3.869,3.869,0,0,1,1.025,2.6875c0,3.83747-2.33752,4.6875-4.5625,4.9375a2.36814,2.36814,0,0,1,.675,1.85c0,1.33752-.01251,2.41248-.01251,2.75,0,.26251.1875.575.6875.475A10.0053,10.0053,0,0,0,12,2.2467Z' - })); -}; - -UilGithub.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGithub; \ No newline at end of file diff --git a/icons/uil-gitlab.js b/icons/uil-gitlab.js deleted file mode 100644 index 71c70478..00000000 --- a/icons/uil-gitlab.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGitlab = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm21.94 12.865-1.066-3.28.001.005v-.005l-2.115-6.51a.833.833 0 0 0-.799-.57.822.822 0 0 0-.788.576l-2.007 6.178H8.834L6.824 3.08a.822.822 0 0 0-.788-.575H6.03a.839.839 0 0 0-.796.575L3.127 9.584l-.002.006.001-.005-1.069 3.28a1.195 1.195 0 0 0 .435 1.34l9.229 6.705.004.003.012.008-.011-.008.002.001.001.001a.466.466 0 0 0 .045.028l.006.004.004.002.003.001h.002l.005.003.025.01.023.01h.001l.004.002.005.002h.002l.006.002h.003c.011.004.022.006.034.009l.013.003h.002l.005.002.007.001h.007a.467.467 0 0 0 .066.006h.001a.469.469 0 0 0 .067-.005h.007l.007-.002.004-.001h.002l.014-.004.034-.008h.002l.006-.003h.002l.005-.002.004-.001h.001l.025-.011.023-.01.005-.002h.002l.003-.002.004-.002.007-.004a.468.468 0 0 0 .044-.027l.004-.003.005-.003 9.23-6.706a1.195 1.195 0 0 0 .434-1.339Zm-3.973-9.18 1.81 5.574h-3.62Zm-11.937 0L7.843 9.26h-3.62Zm-2.984 9.757a.255.255 0 0 1-.092-.285l.794-2.438 5.822 7.464Zm1.494-3.24h3.61l2.573 7.927Zm7.165 10.696-.006-.005-.011-.01-.02-.018.002.001.002.002a.473.473 0 0 0 .043.037l.002.002Zm.293-1.894-1.514-4.665-1.344-4.138h5.72Zm.31 1.88-.01.008-.002.001-.005.005-.012.009.002-.002a.455.455 0 0 0 .043-.036l.001-.002.002-.002ZM15.851 10.2h3.61l-.74.947-5.447 6.98Zm5.1 3.241-6.523 4.74 5.824-7.463.791 2.437a.255.255 0 0 1-.092.286Z' - })); -}; - -UilGitlab.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGitlab; \ No newline at end of file diff --git a/icons/uil-glass-martini-alt-slash.js b/icons/uil-glass-martini-alt-slash.js deleted file mode 100644 index 8c34fa72..00000000 --- a/icons/uil-glass-martini-alt-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlassMartiniAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.71,16.29l-14-14A1,1,0,0,0,4.29,3.71L6.59,6H5a1,1,0,0,0-.9.57,1,1,0,0,0,.12,1L11,16.1V20H6.75a1,1,0,0,0,0,2h10.5a1,1,0,0,0,0-2H13V16.1l1.64-2,3.65,3.65a1,1,0,0,0,1.42,0A1,1,0,0,0,19.71,16.29ZM7.08,8H8.59l1.89,1.89H8.59ZM12,14.15l-1.81-2.26h2.29l.74.74ZM14.66,8h2.26l-.63.79a1,1,0,0,0,.15,1.4,1,1,0,0,0,.63.22,1,1,0,0,0,.78-.37l1.93-2.42a1,1,0,0,0,.12-1A1,1,0,0,0,19,6H14.66a1,1,0,0,0,0,2Z' - })); -}; - -UilGlassMartiniAltSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlassMartiniAltSlash; \ No newline at end of file diff --git a/icons/uil-glass-martini-alt.js b/icons/uil-glass-martini-alt.js deleted file mode 100644 index f54f72e4..00000000 --- a/icons/uil-glass-martini-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlassMartiniAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.78,3.62a1,1,0,0,0,.12-1.05A1,1,0,0,0,21,2H3a1,1,0,0,0-.9.57,1,1,0,0,0,.12,1.05L11,14.6V20H5.25a1,1,0,0,0,0,2h13.5a1,1,0,0,0,0-2H13V14.6ZM5.08,4H18.92l-2.4,3h-9ZM12,12.65,9.08,9h5.84Z' - })); -}; - -UilGlassMartiniAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlassMartiniAlt; \ No newline at end of file diff --git a/icons/uil-glass-martini.js b/icons/uil-glass-martini.js deleted file mode 100644 index 84fcdeaf..00000000 --- a/icons/uil-glass-martini.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlassMartini = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,20H13V14.94A9,9,0,0,0,21,6a8.72,8.72,0,0,0-.67-3.39,1,1,0,0,0-.22-.32L20,2.21a.92.92,0,0,0-.21-.13A.94.94,0,0,0,19.51,2l-.1,0H4.59L4.5,2a.94.94,0,0,0-.29.06A2.12,2.12,0,0,0,4,2.2l-.12.09a1,1,0,0,0-.22.32A8.72,8.72,0,0,0,3,6a9,9,0,0,0,8,8.94V20H6a1,1,0,0,0,0,2H18a1,1,0,0,0,0-2ZM5,6a6.91,6.91,0,0,1,.29-2H18.71A6.91,6.91,0,0,1,19,6,7,7,0,0,1,5,6Z' - })); -}; - -UilGlassMartini.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlassMartini; \ No newline at end of file diff --git a/icons/uil-glass-tea.js b/icons/uil-glass-tea.js deleted file mode 100644 index 9d0699b3..00000000 --- a/icons/uil-glass-tea.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlassTea = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,3a3,3,0,0,0-2.23-1H7.23a3,3,0,0,0-3,3.33l1.56,14a3,3,0,0,0,3,2.67h6.42a3,3,0,0,0,3-2.67l1.56-14A3,3,0,0,0,19,3ZM16.2,19.11a1,1,0,0,1-1,.89H8.79a1,1,0,0,1-1-.89L6.78,10H17.22ZM17.44,8H6.56L6.24,5.11a1,1,0,0,1,.25-.78A1,1,0,0,1,7.23,4h9.54a1,1,0,0,1,.74.33,1,1,0,0,1,.25.78ZM14,18a1,1,0,0,0,1-1V13a1,1,0,0,0-2,0v4A1,1,0,0,0,14,18Zm-4,0a1,1,0,0,0,1-1V13a1,1,0,0,0-2,0v4A1,1,0,0,0,10,18Z' - })); -}; - -UilGlassTea.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlassTea; \ No newline at end of file diff --git a/icons/uil-glass.js b/icons/uil-glass.js deleted file mode 100644 index 70dd8c62..00000000 --- a/icons/uil-glass.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlass = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.75,2.33A1,1,0,0,0,19,2H5a1,1,0,0,0-.75.33A1,1,0,0,0,4,3.11l1.8,16.22a3,3,0,0,0,3,2.67h6.42a3,3,0,0,0,3-2.67L20,3.11A1,1,0,0,0,19.75,2.33ZM16.2,19.11a1,1,0,0,1-1,.89H8.79a1,1,0,0,1-1-.89L6.78,10H17.22ZM17.44,8H6.56L6.12,4H17.88Z' - })); -}; - -UilGlass.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlass; \ No newline at end of file diff --git a/icons/uil-globe.js b/icons/uil-globe.js deleted file mode 100644 index 92e4e159..00000000 --- a/icons/uil-globe.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGlobe = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.41,8.64s0,0,0-.05a10,10,0,0,0-18.78,0s0,0,0,.05a9.86,9.86,0,0,0,0,6.72s0,0,0,.05a10,10,0,0,0,18.78,0s0,0,0-.05a9.86,9.86,0,0,0,0-6.72ZM4.26,14a7.82,7.82,0,0,1,0-4H6.12a16.73,16.73,0,0,0,0,4Zm.82,2h1.4a12.15,12.15,0,0,0,1,2.57A8,8,0,0,1,5.08,16Zm1.4-8H5.08A8,8,0,0,1,7.45,5.43,12.15,12.15,0,0,0,6.48,8ZM11,19.7A6.34,6.34,0,0,1,8.57,16H11ZM11,14H8.14a14.36,14.36,0,0,1,0-4H11Zm0-6H8.57A6.34,6.34,0,0,1,11,4.3Zm7.92,0h-1.4a12.15,12.15,0,0,0-1-2.57A8,8,0,0,1,18.92,8ZM13,4.3A6.34,6.34,0,0,1,15.43,8H13Zm0,15.4V16h2.43A6.34,6.34,0,0,1,13,19.7ZM15.86,14H13V10h2.86a14.36,14.36,0,0,1,0,4Zm.69,4.57a12.15,12.15,0,0,0,1-2.57h1.4A8,8,0,0,1,16.55,18.57ZM19.74,14H17.88A16.16,16.16,0,0,0,18,12a16.28,16.28,0,0,0-.12-2h1.86a7.82,7.82,0,0,1,0,4Z' - })); -}; - -UilGlobe.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGlobe; \ No newline at end of file diff --git a/icons/uil-gold.js b/icons/uil-gold.js deleted file mode 100644 index b1b7a611..00000000 --- a/icons/uil-gold.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGold = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,11h8a1,1,0,0,0,.77-.37A1,1,0,0,0,17,9.8l-1-5A1,1,0,0,0,15,4H9a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,8,11ZM9.82,6h4.36l.6,3H9.22ZM22,13.8a1,1,0,0,0-1-.8H15a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,14,20h8a1,1,0,0,0,.77-.37A1,1,0,0,0,23,18.8ZM15.22,18l.6-3h4.36l.6,3ZM9,13H3a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,2,20h8a1,1,0,0,0,.77-.37A1,1,0,0,0,11,18.8l-1-5A1,1,0,0,0,9,13ZM3.22,18l.6-3H8.18l.6,3Z' - })); -}; - -UilGold.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGold; \ No newline at end of file diff --git a/icons/uil-golf-ball.js b/icons/uil-golf-ball.js deleted file mode 100644 index eb68cf0f..00000000 --- a/icons/uil-golf-ball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGolfBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9a1,1,0,1,0,1,1A1,1,0,0,0,14,9Zm0-3a1,1,0,1,0,1,1A1,1,0,0,0,14,6ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8a1,1,0,1,0,1,1A1,1,0,0,0,17,8Z' - })); -}; - -UilGolfBall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGolfBall; \ No newline at end of file diff --git a/icons/uil-google-drive-alt.js b/icons/uil-google-drive-alt.js deleted file mode 100644 index 922e4202..00000000 --- a/icons/uil-google-drive-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGoogleDriveAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,14.44a.62.62,0,0,0,0-.13.61.61,0,0,1,0-.12l-.05-.12h0l-6-10.29A1,1,0,0,0,15,3.29H9a1,1,0,0,0-.5.13l-.11.08a.73.73,0,0,0-.09.08.58.58,0,0,0-.1.12s0,0-.06.08h0l-6,10.33a1,1,0,0,0,0,1l3,5.08h0a.83.83,0,0,0,.11.15l0,.06a1.1,1.1,0,0,0,.44.26h0a.83.83,0,0,0,.22,0H18a1,1,0,0,0,.86-.49l3-5.14h0l.05-.12a.61.61,0,0,1,0-.12.53.53,0,0,0,0-.13.51.51,0,0,0,0-.13A.59.59,0,0,0,22,14.44ZM6,17.73l-1.79-3.1L9,6.27l.87,1.5,1,1.66L7,15.91ZM12,11.41l1.26,2.16H10.72Zm5.43,7.3H7.7l1.84-3.14h9.72Zm-1.86-5.14L10.74,5.29h3.69l4.83,8.28Z' - })); -}; - -UilGoogleDriveAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGoogleDriveAlt; \ No newline at end of file diff --git a/icons/uil-google-drive.js b/icons/uil-google-drive.js deleted file mode 100644 index 05f72859..00000000 --- a/icons/uil-google-drive.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGoogleDrive = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.4231,13.88785,15.33356,3.33792H8.66663l6.09,10.54993ZM8.08917,4.33835,2,14.88736l3.33356,5.77472,6.08911-10.54926Zm1.73273,10.549L6.48877,20.66208H18.66663L22,14.88736Z' - })); -}; - -UilGoogleDrive.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGoogleDrive; \ No newline at end of file diff --git a/icons/uil-google-hangouts-alt.js b/icons/uil-google-hangouts-alt.js deleted file mode 100644 index e6b3f550..00000000 --- a/icons/uil-google-hangouts-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGoogleHangoutsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.9917,7.69049a2,2,0,0,0,0,4l.01514-.00153v.50147a.501.501,0,0,1-.5.5,1,1,0,0,0,0,2,2.50232,2.50232,0,0,0,2.5-2.5v-2.5A.94144.94144,0,0,0,10.9765,9.54,1.99365,1.99365,0,0,0,8.9917,7.69049Zm2.99951-6.68854a9.78734,9.78734,0,0,0-1,19.52344V22.002a.99911.99911,0,0,0,1.23926.97071A12.53481,12.53481,0,0,0,21.69727,11.998a9.73409,9.73409,0,0,0-9.70606-10.9961ZM19.709,11.78223a10.54778,10.54778,0,0,1-6.71777,8.86035V19.57617a.99942.99942,0,0,0-1-1,7.78711,7.78711,0,1,1,7.78809-7.78711A7.94524,7.94524,0,0,1,19.709,11.78223ZM14.9917,7.69049a2,2,0,1,0,0,4l.01514-.00153v.50147a.501.501,0,0,1-.5.5,1,1,0,0,0,0,2,2.50232,2.50232,0,0,0,2.5-2.5v-2.5A.94144.94144,0,0,0,16.9765,9.54,1.99365,1.99365,0,0,0,14.9917,7.69049Z' - })); -}; - -UilGoogleHangoutsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGoogleHangoutsAlt; \ No newline at end of file diff --git a/icons/uil-google-hangouts.js b/icons/uil-google-hangouts.js deleted file mode 100644 index eaa0e931..00000000 --- a/icons/uil-google-hangouts.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGoogleHangouts = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.44411,9.05505a8.50456,8.50456,0,0,0-2.17292-4.334,8.40344,8.40344,0,0,0-1.62213-1.35748,8.48891,8.48891,0,0,0-3.6405-1.30927A4.15272,4.15272,0,0,1,12.52766,2H11.3932c-.01226.02863-.03857.01819-.05944.02014-.29212.02576-.58283.059-.87116.11365A8.45336,8.45336,0,0,0,5.28615,5.2384a8.35853,8.35853,0,0,0-1.8393,4.7085,8.58926,8.58926,0,0,0,.18476,2.52869,8.1479,8.1479,0,0,0,.62426,1.79c.02448.04871.04859.09742.07349.14606A8.601,8.601,0,0,0,6.1125,16.80835a8.5306,8.5306,0,0,0,5.76313,2.33246c.10015.0014.12744.02606.12683.12848-.00458.87353-.00263,1.74719-.00238,2.62085.00006.03393.00268.06775.00464.10986.02825-.01147.04595-.018.063-.02606A17.98894,17.98894,0,0,0,16.558,19.008q.40055-.36466.76892-.76246c.10529-.11334.20972-.22869.31525-.34191.163-.17432.30407-.36908.45776-.55262.17749-.21173.33679-.43676.494-.66327a11.03342,11.03342,0,0,0,.91852-1.5744c.13195-.27887.25756-.55993.36877-.84759a.09617.09617,0,0,0,.01105-.01612,10.277,10.277,0,0,0,.60058-2.439c.03607-.29126.05945-.58435.07422-.87726A8.14067,8.14067,0,0,0,20.44411,9.05505Zm-9.18994,2.81934a2.5047,2.5047,0,0,1-.84,1.87732c-.02844.02637-.056.05389-.08374.08087a2.68427,2.68427,0,0,1-.93378.48065,3.80048,3.80048,0,0,1-.44757.0849.2109.2109,0,0,1-.23492-.15216l.00116-.96814c.00567-.095-.0326-.19678.04352-.28058A.26578.26578,0,0,1,8.897,12.9129a1.77446,1.77446,0,0,0,.49414-.16845,1.13159,1.13159,0,0,0,.53808-.73169c.01215-.05011.02381-.10053.0354-.15088Q8.9438,11.86,7.92323,11.85852a.65268.65268,0,0,1-.17431-.018.413.413,0,0,1-.30652-.38532q-.00192-1.54339.00152-3.087a.46722.46722,0,0,1,.13837-.436.387.387,0,0,1,.25629-.10205q1.50083-.00027,3.00177-.00055a.41616.41616,0,0,1,.39929.52765.38789.38789,0,0,1,.0166.153C11.25649,9.63147,11.26277,10.75317,11.25417,11.87439Zm5.3031.005a2.55694,2.55694,0,0,1-1.55652,2.32789c-.02338.01-.04566.02294-.06848.03442l-.03815.01068-.02161.01227a4.5917,4.5917,0,0,1-.5888.12933.2158.2158,0,0,1-.26941-.21692c-.00153-.10736-.00232-.215-.00318-.32245l.00556-.57727c-.00086-.04254-.00238-.08471-.00226-.127.00018-.14783.057-.2102.24078-.25214a1.31856,1.31856,0,0,0,.63361-.29693,1.26351,1.26351,0,0,0,.37756-.73963l-1.8858-.0036c-.06836-.00012-.13678.00086-.20526-.0003a.419.419,0,0,1-.43244-.43982q.00047-1.52445.00238-3.04877l-.0017-.02936a.43441.43441,0,0,1,.20385-.45166A.38972.38972,0,0,1,13.16,7.83q1.49094-.00082,2.98187-.00086a.41625.41625,0,0,1,.39917.52771.39178.39178,0,0,1,.01654.15289Q16.55757,10.19455,16.55727,11.87939Z' - })); -}; - -UilGoogleHangouts.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGoogleHangouts; \ No newline at end of file diff --git a/icons/uil-google-play.js b/icons/uil-google-play.js deleted file mode 100644 index 627ce527..00000000 --- a/icons/uil-google-play.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGooglePlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.91887,10.653c-.31445-.16992-3.01074-1.73438-4.02246-2.32324l-.00293-.002L4.6386,1.25262a1.679,1.679,0,0,0-1.40711-.1593c-.02618.0094-.05078.01886-.07623.03051a1.41835,1.41835,0,0,0-.17291.06922,1.51864,1.51864,0,0,0-.73828,1.36426V21.54266a1.43542,1.43542,0,0,0,.69238,1.2705,1.30761,1.30761,0,0,0,.15479.06373c.02893.01336.05651.025.08636.03552a1.37893,1.37893,0,0,0,.44635.0824,1.67263,1.67263,0,0,0,.83106-.23145c.38867-.22559,12.43847-7.18262,12.43847-7.18262L20.914,13.25945a1.52522,1.52522,0,0,0,.8418-1.334A1.49078,1.49078,0,0,0,20.91887,10.653ZM4.24407,19.839V4.10186l7.94012,7.85907Zm5.018-2.16168,4.34351-4.30957,1.14954,1.13782C13.49047,15.23583,11.35381,16.4696,9.26207,17.67736Zm4.3418-7.125L9.206,6.19933l5.55365,3.2063ZM16.55065,13.469l-1.52539-1.50977L16.553,10.44341c.72027.41828,1.84283,1.06934,2.6159,1.51429Z' - })); -}; - -UilGooglePlay.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGooglePlay; \ No newline at end of file diff --git a/icons/uil-google.js b/icons/uil-google.js deleted file mode 100644 index f9cc9774..00000000 --- a/icons/uil-google.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGoogle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.60229,10.00391a1.00005,1.00005,0,0,0-.98388-.82227H12.2a.99974.99974,0,0,0-1,1V14.0498a.99974.99974,0,0,0,1,1h3.9624a3.65162,3.65162,0,0,1-1.13183,1.1875A5.0604,5.0604,0,0,1,12.2,17.02246a4.93525,4.93525,0,0,1-4.64624-3.4378L7.55347,13.583a4.90382,4.90382,0,0,1,0-3.167l.00024-.00165A4.9356,4.9356,0,0,1,12.2,6.97754,4.37756,4.37756,0,0,1,15.3313,8.19531a1.00053,1.00053,0,0,0,1.39844-.01562L19.5979,5.31152a.99918.99918,0,0,0-.02539-1.43847A10.62342,10.62342,0,0,0,12.2,1,10.949,10.949,0,0,0,2.37134,7.05878l-.00147.00177A10.92175,10.92175,0,0,0,1.2,12a11.07862,11.07862,0,0,0,1.16992,4.93945l.00147.00177A10.949,10.949,0,0,0,12.2,23a10.5255,10.5255,0,0,0,7.29468-2.687l.00073-.00049.00079-.00085.00019-.00013.00006-.00012a10.78575,10.78575,0,0,0,3.30365-8.08386A12.51533,12.51533,0,0,0,22.60229,10.00391ZM12.2,3a8.68219,8.68219,0,0,1,5.2085,1.67285L15.95483,6.126A6.46322,6.46322,0,0,0,12.2,4.97754,6.88648,6.88648,0,0,0,6.21069,8.52832L5.14148,7.69958l-.585-.45367A8.95257,8.95257,0,0,1,12.2,3ZM3.67944,14.90332a9.02957,9.02957,0,0,1,0-5.80664l1.78223,1.38184a6.85381,6.85381,0,0,0,0,3.042ZM12.2,21A8.9528,8.9528,0,0,1,4.5564,16.75391l.37841-.29352,1.27588-.98969A6.88482,6.88482,0,0,0,12.2,19.02246a7.27662,7.27662,0,0,0,3.30573-.75079L17.19739,19.585A8.88989,8.88989,0,0,1,12.2,21Zm6.52588-2.76074-.183-.142L17.16553,17.028a5.60626,5.60626,0,0,0,1.39966-2.79553.9998.9998,0,0,0-.9834-1.18262H13.2V11.18164h7.54883c.03418.3457.05127.69531.05127,1.0459A9.05156,9.05156,0,0,1,18.72583,18.23926Z' - })); -}; - -UilGoogle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGoogle; \ No newline at end of file diff --git a/icons/uil-graduation-cap.js b/icons/uil-graduation-cap.js deleted file mode 100644 index 8c8cfdab..00000000 --- a/icons/uil-graduation-cap.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGraduationCap = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.49,10.19l-1-.55h0l-9-5-.11,0a1.06,1.06,0,0,0-.19-.06l-.19,0-.18,0a1.17,1.17,0,0,0-.2.06l-.11,0-9,5a1,1,0,0,0,0,1.74L4,12.76V17.5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V12.76l2-1.12V14.5a1,1,0,0,0,2,0V11.06A1,1,0,0,0,21.49,10.19ZM16,17.5a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V13.87l4.51,2.5.15.06.09,0a1,1,0,0,0,.25,0h0a1,1,0,0,0,.25,0l.09,0a.47.47,0,0,0,.15-.06L16,13.87Zm-5-3.14L4.06,10.5,11,6.64l6.94,3.86Z' - })); -}; - -UilGraduationCap.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGraduationCap; \ No newline at end of file diff --git a/icons/uil-graph-bar.js b/icons/uil-graph-bar.js deleted file mode 100644 index 979ff565..00000000 --- a/icons/uil-graph-bar.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGraphBar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6,13H2a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1H6a1,1,0,0,0,1-1V14A1,1,0,0,0,6,13ZM5,21H3V15H5ZM22,9H18a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,22,9ZM21,21H19V11h2ZM14,1H10A1,1,0,0,0,9,2V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V2A1,1,0,0,0,14,1ZM13,21H11V3h2Z' - })); -}; - -UilGraphBar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGraphBar; \ No newline at end of file diff --git a/icons/uil-grid.js b/icons/uil-grid.js deleted file mode 100644 index f291c3a7..00000000 --- a/icons/uil-grid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V16h7Zm0-6H4V10h7Zm9,6H13V16h7Zm0-6H13V10h7Zm0-6H4V4H20Z' - })); -}; - -UilGrid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGrid; \ No newline at end of file diff --git a/icons/uil-grids.js b/icons/uil-grids.js deleted file mode 100644 index 45caa501..00000000 --- a/icons/uil-grids.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGrids = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm6,0H10V4h4Zm6,0H16V4h4Z' - })); -}; - -UilGrids.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGrids; \ No newline at end of file diff --git a/icons/uil-grin-tongue-wink-alt.js b/icons/uil-grin-tongue-wink-alt.js deleted file mode 100644 index ede3fcbe..00000000 --- a/icons/uil-grin-tongue-wink-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGrinTongueWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9Zm0,4H9a1,1,0,0,0,0,2,3,3,0,0,0,6,0,1,1,0,0,0,0-2Zm-3,3a1,1,0,0,1-1-1h2A1,1,0,0,1,12,16Z' - })); -}; - -UilGrinTongueWinkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGrinTongueWinkAlt; \ No newline at end of file diff --git a/icons/uil-grin-tongue-wink.js b/icons/uil-grin-tongue-wink.js deleted file mode 100644 index 682569e6..00000000 --- a/icons/uil-grin-tongue-wink.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGrinTongueWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,2H9a1,1,0,0,0,0,2,3,3,0,0,0,6,0,1,1,0,0,0,0-2Zm-3,3a1,1,0,0,1-1-1h2A1,1,0,0,1,12,16Z' - })); -}; - -UilGrinTongueWink.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGrinTongueWink; \ No newline at end of file diff --git a/icons/uil-grin.js b/icons/uil-grin.js deleted file mode 100644 index 0e9592d2..00000000 --- a/icons/uil-grin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGrin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm3-7H9a1,1,0,0,0-1,1,4,4,0,0,0,8,0A1,1,0,0,0,15,13Zm-3,3a2,2,0,0,1-1.73-1h3.46A2,2,0,0,1,12,16Zm3-7a1,1,0,1,0,1,1A1,1,0,0,0,15,9Z' - })); -}; - -UilGrin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGrin; \ No newline at end of file diff --git a/icons/uil-grip-horizontal-line.js b/icons/uil-grip-horizontal-line.js deleted file mode 100644 index 074c325a..00000000 --- a/icons/uil-grip-horizontal-line.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilGripHorizontalLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,11H21a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilGripHorizontalLine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilGripHorizontalLine; \ No newline at end of file diff --git a/icons/uil-hard-hat.js b/icons/uil-hard-hat.js deleted file mode 100644 index dd7080cb..00000000 --- a/icons/uil-hard-hat.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHardHat = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,13.17V13a8,8,0,0,0-2.42-5.74A7.84,7.84,0,0,0,14.4,5.38l-.05,0A8.24,8.24,0,0,0,11.76,5,8.21,8.21,0,0,0,4,13.17,3,3,0,0,0,5,19H19a3,3,0,0,0,1-5.83ZM19,17H5a1,1,0,0,1,0-2H7a1,1,0,0,0,0-2H6A6.41,6.41,0,0,1,9,7.85V11a1,1,0,0,0,2,0V7.09A7.34,7.34,0,0,1,11.82,7H12a5.56,5.56,0,0,1,1,.1V11a1,1,0,0,0,2,0V7.82a6.65,6.65,0,0,1,1.18.87A6,6,0,0,1,18,13H17a1,1,0,0,0,0,2h2a1,1,0,0,1,0,2Z' - })); -}; - -UilHardHat.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHardHat; \ No newline at end of file diff --git a/icons/uil-hdd.js b/icons/uil-hdd.js deleted file mode 100644 index 28054f1a..00000000 --- a/icons/uil-hdd.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,14.86a0,0,0,0,1,0,0v-.05a2.61,2.61,0,0,0-.1-.57L20.26,4.51a3,3,0,0,0-3-2.51H6.69A3,3,0,0,0,3.74,4.51L2.12,14.22a2.61,2.61,0,0,0-.1.57v.05a0,0,0,0,1,0,0C2,14.91,2,15,2,15v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15C22,15,22,14.91,22,14.86ZM5.71,4.83a1,1,0,0,1,1-.83H17.31a1,1,0,0,1,1,.83l1.2,7.22A2.63,2.63,0,0,0,19,12H5a2.63,2.63,0,0,0-.49.05ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15.08l.08-.46A1,1,0,0,1,5,14H19a1,1,0,0,1,.92.62l.08.46Zm-3-3a1,1,0,1,0,1,1A1,1,0,0,0,17,16Z' - })); -}; - -UilHdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHdd; \ No newline at end of file diff --git a/icons/uil-head-side-cough.js b/icons/uil-head-side-cough.js deleted file mode 100644 index 7a74adb2..00000000 --- a/icons/uil-head-side-cough.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadSideCough = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.293 20.293a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0Zm-3-3a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0Zm4-1a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0ZM16.15 2.002a7.067 7.067 0 0 0-7.284 7.063v.016l-1.77 3.758A1 1 0 0 0 8 14.267h.866v1.8A1.935 1.935 0 0 0 10.8 18h.867v1.8a1 1 0 0 0 2 0v-1.814A.994.994 0 0 0 13.6 16l-.833.02a.94.94 0 0 0-.1-.02.94.94 0 0 0-.128.026l-1.673.04v-2.8a1 1 0 0 0-1-1h-.289l1.205-2.558a.99.99 0 0 0 .095-.468l-.01-.174a5.025 5.025 0 0 1 1.537-3.635 5.092 5.092 0 0 1 3.686-1.429A5.239 5.239 0 0 1 21 9.322l-1.833 6.987a1.008 1.008 0 0 0 .006.533l.932 3.235a1 1 0 0 0 .961.723 1.017 1.017 0 0 0 .278-.04 1 1 0 0 0 .683-1.237l-.856-2.97 1.796-6.763A1.031 1.031 0 0 0 23 9.533v-.212a7.252 7.252 0 0 0-6.85-7.318Z' - })); -}; - -UilHeadSideCough.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadSideCough; \ No newline at end of file diff --git a/icons/uil-head-side-mask.js b/icons/uil-head-side-mask.js deleted file mode 100644 index 7ee1d24d..00000000 --- a/icons/uil-head-side-mask.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadSideMask = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.23 2.003a7.367 7.367 0 0 0-5.453 2.114A7.441 7.441 0 0 0 5.5 9.465l-1.844 2.998a.995.995 0 0 0-.156.52v.04a1 1 0 0 0 .07.347l1.44 3.873c.012.034.027.067.043.099A2.984 2.984 0 0 0 7.736 19H8.5v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 .321-.053l3.7-1.256a.999.999 0 0 0 .018.12l1 3.466A1.001 1.001 0 0 0 18.5 22a1.018 1.018 0 0 0 .277-.04 1 1 0 0 0 .684-1.237l-.924-3.2 1.93-7.267A1.031 1.031 0 0 0 20.5 10v-.228a7.698 7.698 0 0 0-7.27-7.769ZM11.5 17H7.736a.995.995 0 0 1-.874-.513L5.938 14H11.5Zm5.523-1.591L13.5 16.605V13.72l4.345-1.448Zm1.412-5.389a.973.973 0 0 0-.251.031L12.337 12H6.29l1.074-1.747a1 1 0 0 0 .148-.562L7.5 9.5a5.455 5.455 0 0 1 1.67-3.947 5.522 5.522 0 0 1 4-1.55 5.685 5.685 0 0 1 5.33 5.77Z' - })); -}; - -UilHeadSideMask.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadSideMask; \ No newline at end of file diff --git a/icons/uil-head-side.js b/icons/uil-head-side.js deleted file mode 100644 index 664a3450..00000000 --- a/icons/uil-head-side.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadSide = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.23 2.003a7.372 7.372 0 0 0-5.453 2.114A7.44 7.44 0 0 0 5.5 9.5v.03l-1.904 4.044A1 1 0 0 0 4.5 15h1v2a2.002 2.002 0 0 0 2 2h1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0 0-2h-3v-3a1 1 0 0 0-1-1h-.424l1.34-2.844a.99.99 0 0 0 .095-.465L7.5 9.5a5.455 5.455 0 0 1 1.67-3.947 5.527 5.527 0 0 1 4-1.55 5.685 5.685 0 0 1 5.33 5.77l-1.967 7.504a1.01 1.01 0 0 0 .006.534l1 3.466A1.001 1.001 0 0 0 18.5 22a1.018 1.018 0 0 0 .277-.04 1 1 0 0 0 .684-1.237l-.924-3.2 1.93-7.267A1.031 1.031 0 0 0 20.5 10v-.228a7.698 7.698 0 0 0-7.27-7.769Z' - })); -}; - -UilHeadSide.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadSide; \ No newline at end of file diff --git a/icons/uil-headphone-slash.js b/icons/uil-headphone-slash.js deleted file mode 100644 index 1731bdd1..00000000 --- a/icons/uil-headphone-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadphoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.06934,5.93555a9.94468,9.94468,0,0,0-9.38868-2.6709.99992.99992,0,0,0,.43848,1.95117A8.0193,8.0193,0,0,1,20,13h-.33984a1,1,0,0,0,0,2H20v.33984a1,1,0,1,0,2,0V13A9.88842,9.88842,0,0,0,19.06934,5.93555ZM3.707,2.293A.99989.99989,0,0,0,2.293,3.707L4.72833,6.1424A9.96176,9.96176,0,0,0,2,13v7a1,1,0,0,0,1,1H6a3.00328,3.00328,0,0,0,3-3V16a3.00328,3.00328,0,0,0-3-3H4A7.96344,7.96344,0,0,1,6.14453,7.55859L15,16.41406V18a3.00328,3.00328,0,0,0,3,3h1.58594l.707.707A.99989.99989,0,0,0,21.707,20.293ZM6,15a1.0013,1.0013,0,0,1,1,1v2a1.0013,1.0013,0,0,1-1,1H4V15Z' - })); -}; - -UilHeadphoneSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadphoneSlash; \ No newline at end of file diff --git a/icons/uil-headphones-alt.js b/icons/uil-headphones-alt.js deleted file mode 100644 index 63a805e3..00000000 --- a/icons/uil-headphones-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadphonesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,13.18V11A8,8,0,0,0,4,11v2.18A3,3,0,0,0,2,16v2a3,3,0,0,0,3,3H8a1,1,0,0,0,1-1V14a1,1,0,0,0-1-1H6V11a6,6,0,0,1,12,0v2H16a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h3a3,3,0,0,0,3-3V16A3,3,0,0,0,20,13.18ZM7,15v4H5a1,1,0,0,1-1-1V16a1,1,0,0,1,1-1Zm13,3a1,1,0,0,1-1,1H17V15h2a1,1,0,0,1,1,1Z' - })); -}; - -UilHeadphonesAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadphonesAlt; \ No newline at end of file diff --git a/icons/uil-headphones.js b/icons/uil-headphones.js deleted file mode 100644 index f6a18702..00000000 --- a/icons/uil-headphones.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeadphones = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,3A10,10,0,0,0,2,13v7a1,1,0,0,0,1,1H6a3,3,0,0,0,3-3V16a3,3,0,0,0-3-3H4a8,8,0,0,1,16,0H18a3,3,0,0,0-3,3v2a3,3,0,0,0,3,3h3a1,1,0,0,0,1-1V13A10,10,0,0,0,12,3ZM6,15a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H4V15Zm14,4H18a1,1,0,0,1-1-1V16a1,1,0,0,1,1-1h2Z' - })); -}; - -UilHeadphones.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeadphones; \ No newline at end of file diff --git a/icons/uil-heart-alt.js b/icons/uil-heart-alt.js deleted file mode 100644 index 46b64c1c..00000000 --- a/icons/uil-heart-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.16,4.61A6.27,6.27,0,0,0,12,4a6.27,6.27,0,0,0-8.16,9.48l7.45,7.45a1,1,0,0,0,1.42,0l7.45-7.45A6.27,6.27,0,0,0,20.16,4.61Zm-1.41,7.46L12,18.81,5.25,12.07a4.28,4.28,0,0,1,3-7.3,4.25,4.25,0,0,1,3,1.25,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,6.05Z' - })); -}; - -UilHeartAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartAlt; \ No newline at end of file diff --git a/icons/uil-heart-break.js b/icons/uil-heart-break.js deleted file mode 100644 index f0196c83..00000000 --- a/icons/uil-heart-break.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartBreak = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.16 4.61A6.27 6.27 0 0 0 12 4a6.27 6.27 0 0 0-8.16 9.48l7.45 7.46a1 1 0 0 0 1.42 0l7.45-7.46a6.27 6.27 0 0 0 0-8.87Zm-1.41 7.45L12 18.81l-6.75-6.75a4.26 4.26 0 0 1 5.54-6.45l-1.71 4a1 1 0 0 0 0 .83 1 1 0 0 0 .65.53l2.77.7-1.4 2.89a1 1 0 0 0 .46 1.34 1 1 0 0 0 .44.1 1 1 0 0 0 .9-.56l2-4a1 1 0 0 0 0-.86 1.05 1.05 0 0 0-.67-.55l-2.83-.71 1.45-3.39a4.26 4.26 0 0 1 5.92 6.13Z' - })); -}; - -UilHeartBreak.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartBreak; \ No newline at end of file diff --git a/icons/uil-heart-medical.js b/icons/uil-heart-medical.js deleted file mode 100644 index e95db1ec..00000000 --- a/icons/uil-heart-medical.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartMedical = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,11H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Zm6.16-6A6.29,6.29,0,0,0,12,4.41a6.27,6.27,0,0,0-8.16,9.48l6,6.05a3,3,0,0,0,4.24,0l6-6.05A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6,6a1,1,0,0,1-1.42,0l-6-6a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,0A4.29,4.29,0,0,1,18.75,12.48Z' - })); -}; - -UilHeartMedical.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartMedical; \ No newline at end of file diff --git a/icons/uil-heart-rate.js b/icons/uil-heart-rate.js deleted file mode 100644 index e41919b5..00000000 --- a/icons/uil-heart-rate.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartRate = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H17.06a.78.78,0,0,0-.21,0l-.17,0a1.3,1.3,0,0,0-.15.1,1.67,1.67,0,0,0-.16.12,1,1,0,0,0-.09.13,1.32,1.32,0,0,0-.12.2v0l-1.6,4.41L10.39,4.66a1,1,0,0,0-1.88,0L6.2,11H3a1,1,0,0,0,0,2H6.92L7.15,13l.15,0a.86.86,0,0,0,.16-.1,1.67,1.67,0,0,0,.16-.12l.09-.13a1,1,0,0,0,.12-.2v0L9.45,7.92l4.16,11.42a1,1,0,0,0,.94.66h0a1,1,0,0,0,.94-.66L17.79,13H21a1,1,0,0,0,0-2Z' - })); -}; - -UilHeartRate.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartRate; \ No newline at end of file diff --git a/icons/uil-heart-sign.js b/icons/uil-heart-sign.js deleted file mode 100644 index 24b13749..00000000 --- a/icons/uil-heart-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.16,5A6.29,6.29,0,0,0,12,4.41a6.27,6.27,0,0,0-8.16,9.48l6,6.05a3,3,0,0,0,4.24,0l6-6.05A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6,6a1,1,0,0,1-1.42,0l-6-6a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,6Z' - })); -}; - -UilHeartSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartSign; \ No newline at end of file diff --git a/icons/uil-heart.js b/icons/uil-heart.js deleted file mode 100644 index 56438e20..00000000 --- a/icons/uil-heart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.16,5A6.29,6.29,0,0,0,12,4.36a6.27,6.27,0,0,0-8.16,9.48l6.21,6.22a2.78,2.78,0,0,0,3.9,0l6.21-6.22A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6.21,6.21a.76.76,0,0,1-1.08,0L5.25,12.43a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,0A4.29,4.29,0,0,1,18.75,12.43Z' - })); -}; - -UilHeart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeart; \ No newline at end of file diff --git a/icons/uil-heartbeat.js b/icons/uil-heartbeat.js deleted file mode 100644 index fa04ac1f..00000000 --- a/icons/uil-heartbeat.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHeartbeat = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10.41H18.5a1,1,0,0,0-.71.3L16.55,12l-2.8-3.19a1,1,0,0,0-1.46,0l-1.7,1.7H9a1,1,0,0,0,0,2h2a1,1,0,0,0,.71-.29L13,10.88l2.8,3.19a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29l1.7-1.71H21a1,1,0,0,0,0-2Zm-7.39,5.3-1.9,1.9a1,1,0,0,1-1.42,0L5.08,12.4a3.69,3.69,0,0,1,0-5.22,3.69,3.69,0,0,1,5.21,0,1,1,0,0,0,1.42,0,3.78,3.78,0,0,1,5.21,0,3.94,3.94,0,0,1,.58.75,1,1,0,0,0,1.72-1,6,6,0,0,0-.88-1.13A5.68,5.68,0,0,0,11,5.17,5.68,5.68,0,0,0,2,9.79a5.62,5.62,0,0,0,1.67,4L8.88,19a3,3,0,0,0,4.24,0L15,17.12a1,1,0,0,0,0-1.41A1,1,0,0,0,13.61,15.71Z' - })); -}; - -UilHeartbeat.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHeartbeat; \ No newline at end of file diff --git a/icons/uil-hindi-to-chinese.js b/icons/uil-hindi-to-chinese.js deleted file mode 100644 index ac4b1605..00000000 --- a/icons/uil-hindi-to-chinese.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHindiToChinese = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.022,2h-2a1,1,0,0,0,0,2V6H7.83771A2.96481,2.96481,0,0,0,8.022,5,3,3,0,0,0,2.42383,3.5a1.00016,1.00016,0,1,0,1.73242,1A1.00171,1.00171,0,0,1,5.022,4a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,0,1,0,2,1.00171,1.00171,0,0,1-.86572-.5,1.00016,1.00016,0,1,0-1.73242,1A3,3,0,0,0,8.022,9a2.96481,2.96481,0,0,0-.18426-1H9.022v3a1,1,0,0,0,2,0V4a1,1,0,0,0,0-2Zm3,5h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15Z' - })); -}; - -UilHindiToChinese.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHindiToChinese; \ No newline at end of file diff --git a/icons/uil-hipchat.js b/icons/uil-hipchat.js deleted file mode 100644 index 907811a0..00000000 --- a/icons/uil-hipchat.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHipchat = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.5 13.9c0-.2-.2-.4-.4-.4-.1 0-.2 0-.3.1-1.3 1.1-3 1.7-4.8 1.7-1.7 0-3.4-.6-4.8-1.7-.1-.1-.2-.1-.3-.1-.2 0-.4.2-.4.4s.1.3.2.5C8 16 10 16.9 12 16.8c2 .1 3.9-.8 5.2-2.4.2-.2.2-.3.3-.5zm2.7 6.9c-.8-.4-1.4-1.2-1.7-2-.1-.2 0-.3.1-.4 2.1-1.5 3.3-3.9 3.3-6.4 0-4.8-4.5-8.6-10-8.6s-10 3.9-10 8.6c0 4.8 4.5 8.6 10 8.6.7 0 1.4-.1 2.1-.2.1 0 .3 0 .4.1 1.6.9 3.4 1.5 5.2 1.5.4.1.7-.2.8-.6v-.1c.1-.2 0-.4-.2-.5zm-2.7-.8v.1c0 .1-.1.1-.1.1-1.1-.3-2-.8-2.9-1.5-.1-.1-.3-.1-.5-.1-.7.2-1.4.2-2.1.2-4.6 0-8.3-3.1-8.3-6.9C3.6 8.1 7.3 5 11.9 5c4.6 0 8.3 3.1 8.3 6.9-.1 2.3-1.4 4.4-3.4 5.5-.2.1-.3.3-.3.4.3.9.6 1.6 1 2.2z' - })); -}; - -UilHipchat.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHipchat; \ No newline at end of file diff --git a/icons/uil-history-alt.js b/icons/uil-history-alt.js deleted file mode 100644 index 2f4c8022..00000000 --- a/icons/uil-history-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHistoryAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.44,2A10,10,0,0,0,4.56,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.06a1,1,0,0,0,0-2H5.66A8,8,0,1,1,11.44,20a1,1,0,1,0,0,2,10,10,0,1,0,0-20Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2h-1V9A1,1,0,0,0,11.44,8Z' - })); -}; - -UilHistoryAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHistoryAlt; \ No newline at end of file diff --git a/icons/uil-history.js b/icons/uil-history.js deleted file mode 100644 index 17755be3..00000000 --- a/icons/uil-history.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHistory = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.62a1,1,0,0,0,0-2H6.22A8,8,0,1,1,4,12a1,1,0,0,0-2,0A10,10,0,1,0,12,2Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2H13V9A1,1,0,0,0,12,8Z' - })); -}; - -UilHistory.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHistory; \ No newline at end of file diff --git a/icons/uil-home.js b/icons/uil-home.js deleted file mode 100644 index 4711ba1c..00000000 --- a/icons/uil-home.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHome = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.66,10.25l-9-8a1,1,0,0,0-1.32,0l-9,8a1,1,0,0,0-.27,1.11A1,1,0,0,0,3,12H4v9a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V12h1a1,1,0,0,0,.93-.64A1,1,0,0,0,21.66,10.25ZM13,20H11V17a1,1,0,0,1,2,0Zm5,0H15V17a3,3,0,0,0-6,0v3H6V12H18ZM5.63,10,12,4.34,18.37,10Z' - })); -}; - -UilHome.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHome; \ No newline at end of file diff --git a/icons/uil-horizontal-align-center.js b/icons/uil-horizontal-align-center.js deleted file mode 100644 index bb63237c..00000000 --- a/icons/uil-horizontal-align-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10H19V7a1,1,0,0,0-1-1H13V3a1,1,0,0,0-2,0V6H6A1,1,0,0,0,5,7v3H3a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h8v3a1,1,0,0,0,2,0V18h8a1,1,0,0,0,1-1V11A1,1,0,0,0,21,10ZM7,8H17v2H7Zm13,8H4V12H20Z' - })); -}; - -UilHorizontalAlignCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalAlignCenter; \ No newline at end of file diff --git a/icons/uil-horizontal-align-left.js b/icons/uil-horizontal-align-left.js deleted file mode 100644 index 4d4ef1c4..00000000 --- a/icons/uil-horizontal-align-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalAlignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10H16V7a1,1,0,0,0-1-1H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,2,0V18H21a1,1,0,0,0,1-1V11A1,1,0,0,0,21,10ZM4,8H14v2H4Zm16,8H4V12H20Z' - })); -}; - -UilHorizontalAlignLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalAlignLeft; \ No newline at end of file diff --git a/icons/uil-horizontal-align-right.js b/icons/uil-horizontal-align-right.js deleted file mode 100644 index acda36c1..00000000 --- a/icons/uil-horizontal-align-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalAlignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2a1,1,0,0,0-1,1V6H9A1,1,0,0,0,8,7v3H3a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H20v3a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2ZM20,16H4V12H20Zm0-6H10V8H20Z' - })); -}; - -UilHorizontalAlignRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalAlignRight; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-center.js b/icons/uil-horizontal-distribution-center.js deleted file mode 100644 index 00e4d3d3..00000000 --- a/icons/uil-horizontal-distribution-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalDistributionCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,5H18V3a1,1,0,0,0-2,0V5H15a1,1,0,0,0-1,1V18a1,1,0,0,0,1,1h1v2a1,1,0,0,0,2,0V19h1a1,1,0,0,0,1-1V6A1,1,0,0,0,19,5ZM18,17H16V7h2ZM11,4H9V3A1,1,0,0,0,7,3V4H5A1,1,0,0,0,4,5V19a1,1,0,0,0,1,1H7v1a1,1,0,0,0,2,0V20h2a1,1,0,0,0,1-1V5A1,1,0,0,0,11,4ZM10,18H6V6h4Z' - })); -}; - -UilHorizontalDistributionCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalDistributionCenter; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-left.js b/icons/uil-horizontal-distribution-left.js deleted file mode 100644 index 2d5b0ad4..00000000 --- a/icons/uil-horizontal-distribution-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalDistributionLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,4H6V3A1,1,0,0,0,4,3V21a1,1,0,0,0,2,0V20h5a1,1,0,0,0,1-1V5A1,1,0,0,0,11,4ZM10,18H6V6h4ZM19,5H16V3a1,1,0,0,0-2,0V21a1,1,0,0,0,2,0V19h3a1,1,0,0,0,1-1V6A1,1,0,0,0,19,5ZM18,17H16V7h2Z' - })); -}; - -UilHorizontalDistributionLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalDistributionLeft; \ No newline at end of file diff --git a/icons/uil-horizontal-distribution-right.js b/icons/uil-horizontal-distribution-right.js deleted file mode 100644 index 18d5e89d..00000000 --- a/icons/uil-horizontal-distribution-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHorizontalDistributionRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2a1,1,0,0,0-1,1V4H13a1,1,0,0,0-1,1V19a1,1,0,0,0,1,1h5v1a1,1,0,0,0,2,0V3A1,1,0,0,0,19,2ZM18,18H14V6h4ZM9,2A1,1,0,0,0,8,3V5H5A1,1,0,0,0,4,6V18a1,1,0,0,0,1,1H8v2a1,1,0,0,0,2,0V3A1,1,0,0,0,9,2ZM8,17H6V7H8Z' - })); -}; - -UilHorizontalDistributionRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHorizontalDistributionRight; \ No newline at end of file diff --git a/icons/uil-hospital-square-sign.js b/icons/uil-hospital-square-sign.js deleted file mode 100644 index e243fe08..00000000 --- a/icons/uil-hospital-square-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHospitalSquareSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15 6a1 1 0 0 0-1 1v4h-4V7a1 1 0 0 0-2 0v10a1 1 0 0 0 2 0v-4h4v4a1 1 0 0 0 2 0V7a1 1 0 0 0-1-1Zm4-4H5a3.003 3.003 0 0 0-3 3v14a3.003 3.003 0 0 0 3 3h14a3.003 3.003 0 0 0 3-3V5a3.003 3.003 0 0 0-3-3Zm1 17a1.001 1.001 0 0 1-1 1H5a1.001 1.001 0 0 1-1-1V5a1.001 1.001 0 0 1 1-1h14a1.001 1.001 0 0 1 1 1Z' - })); -}; - -UilHospitalSquareSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHospitalSquareSign; \ No newline at end of file diff --git a/icons/uil-hospital-symbol.js b/icons/uil-hospital-symbol.js deleted file mode 100644 index 7adf8d7c..00000000 --- a/icons/uil-hospital-symbol.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHospitalSymbol = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15 7a1 1 0 0 0-1 1v3h-4V8a1 1 0 0 0-2 0v8a1 1 0 0 0 2 0v-3h4v3a1 1 0 0 0 2 0V8a1 1 0 0 0-1-1Zm-3-5a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8 8.01 8.01 0 0 1-8 8Z' - })); -}; - -UilHospitalSymbol.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHospitalSymbol; \ No newline at end of file diff --git a/icons/uil-hospital.js b/icons/uil-hospital.js deleted file mode 100644 index d558a6f2..00000000 --- a/icons/uil-hospital.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHospital = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.5 16.5h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm0-4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-5 4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm0-4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm14-6h-3v-4a1 1 0 0 0-1-1h-11a1 1 0 0 0-1 1v4h-3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h19a1 1 0 0 0 1-1v-14a1 1 0 0 0-1-1Zm-1 14h-17v-12h3a1 1 0 0 0 1-1v-4h9v4a1 1 0 0 0 1 1h3Zm-4-8a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-3-5.5H13v-.5a1 1 0 0 0-2 0V7h-.5a1 1 0 0 0 0 2h.5v.5a1 1 0 0 0 2 0V9h.5a1 1 0 0 0 0-2Zm4 9.5h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Z' - })); -}; - -UilHospital.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHospital; \ No newline at end of file diff --git a/icons/uil-hourglass.js b/icons/uil-hourglass.js deleted file mode 100644 index 112850f5..00000000 --- a/icons/uil-hourglass.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHourglass = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.9917,21.002h-1V19.335a5.00057,5.00057,0,0,0-.29956-1.67773c-.01093-.02936-.0224-.05658-.03589-.08454a4.97694,4.97694,0,0,0-.66455-1.23675l-1.3999-1.86719a3.01933,3.01933,0,0,1-.6001-1.80078V11.6582a3.02108,3.02108,0,0,1,.87842-2.12109l.65722-.65723A4.94566,4.94566,0,0,0,17.92365,6.0415c.00054-.01391.008-.02551.008-.03955l-.00281-.01373a5.01836,5.01836,0,0,0,.06287-.64349V3.002h1a1,1,0,0,0,0-2h-14a1,1,0,0,0,0,2h1V5.34473a5.01836,5.01836,0,0,0,.06287.64349L6.05176,6.002c0,.014.00744.02564.008.03955a4.94571,4.94571,0,0,0,1.3963,2.83838l.65723.65723A3.02108,3.02108,0,0,1,8.9917,11.6582V12.668a3.02212,3.02212,0,0,1-.59961,1.80078L6.99121,16.33594a4.98221,4.98221,0,0,0-.66437,1.23718c-.0133.02771-.02472.05463-.03552.08368A5.00309,5.00309,0,0,0,5.9917,19.335v1.667h-1a1,1,0,0,0,0,2h14a1,1,0,0,0,0-2Zm-11-16v-2h8v2Zm.87842,2.46387A2.97036,2.97036,0,0,1,8.49323,7.002h6.99694a2.97094,2.97094,0,0,1-.37689.46387l-.65723.65723a4.9603,4.9603,0,0,0-1.42187,2.8789h-2.085A4.96025,4.96025,0,0,0,9.52734,8.123ZM9.99219,15.668a5.03688,5.03688,0,0,0,.98828-2.666h2.02246a5.03332,5.03332,0,0,0,.98877,2.666l1.00012,1.334H8.99133Zm5.99951,5.334h-8V19.335a2.954,2.954,0,0,1,.02722-.333h7.94556a2.954,2.954,0,0,1,.02722.333Z' - })); -}; - -UilHourglass.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHourglass; \ No newline at end of file diff --git a/icons/uil-house-user.js b/icons/uil-house-user.js deleted file mode 100644 index ae1f2ee2..00000000 --- a/icons/uil-house-user.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHouseUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm21.664 10.252-9-8a.999.999 0 0 0-1.328 0l-9 8a1 1 0 0 0 1.328 1.496L4 11.449V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.551l.336.299a1 1 0 0 0 1.328-1.496ZM9.184 20a2.982 2.982 0 0 1 5.632 0Zm1.316-5.5A1.5 1.5 0 1 1 12 16a1.502 1.502 0 0 1-1.5-1.5ZM18 20h-1.101a5 5 0 0 0-2.259-3.228 3.468 3.468 0 0 0 .86-2.272 3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A5 5 0 0 0 7.1 20H6V9.671l6-5.333 6 5.333Z' - })); -}; - -UilHouseUser.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHouseUser; \ No newline at end of file diff --git a/icons/uil-html3-alt.js b/icons/uil-html3-alt.js deleted file mode 100644 index 5f6febf4..00000000 --- a/icons/uil-html3-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHtml3Alt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.95215,8.00044h6.98633l-.17719,2H9.99121a1,1,0,0,0,0,2h4.59284L14.32031,14.977l-2.3291.52832L9.66309,14.976l-.09571-1.06445a1,1,0,1,0-1.99218.17774l.16015,1.79a1.00142,1.00142,0,0,0,.77442.88672l3.25976.74024a1.0188,1.0188,0,0,0,.44336,0l3.26074-.74024a1.00139,1.00139,0,0,0,.77442-.88769l.43158-4.86792.002-.01-.00079-.00391.34649-3.9082a1.001,1.001,0,0,0-.99609-1.08789H7.95215a1,1,0,0,0,0,2ZM20.6543,2.32563a1.002,1.002,0,0,0-.73828-.32519H4.06641a.99963.99963,0,0,0-.9961,1.08887L4.51367,19.28364a.999.999,0,0,0,.72754.874l6.47266,1.80566a.99028.99028,0,0,0,.53711,0l6.49023-1.8125a.999.999,0,0,0,.72754-.874l1.44336-16.1875A1.00166,1.00166,0,0,0,20.6543,2.32563Zm-3.11621,16.085-5.55567,1.55176L6.44434,18.41743,5.15918,4.00044H18.82324Z' - })); -}; - -UilHtml3Alt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHtml3Alt; \ No newline at end of file diff --git a/icons/uil-html3.js b/icons/uil-html3.js deleted file mode 100644 index b47397ae..00000000 --- a/icons/uil-html3.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHtml3 = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.19467,2,4.79734,19.99433,11.98947,22l7.2119-2.01315L20.80533,2ZM17.476,6.12274l-.53371,5.99468.00193.03234-.00255.07415v-.00068l-.37922,4.19135-.04178.37236L12,18.03717v.00063l-.00366.00317L7.48367,16.78309l-.30574-3.46518h2.213l.15692,1.76226,2.45276.6644L12,15.74569l2.46141-.6743.26028-2.86933H9.57589L9.53173,11.717l-.10093-1.1364-.05224-.61022h5.53877l.20163-2.2317H6.68232L6.638,7.2542l-.10026-1.137L6.48482,5.507H17.52887Zm0,0' - })); -}; - -UilHtml3.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHtml3; \ No newline at end of file diff --git a/icons/uil-html5-alt.js b/icons/uil-html5-alt.js deleted file mode 100644 index 8a6f1fc4..00000000 --- a/icons/uil-html5-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHtml5Alt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.46777,2.3252A1.00007,1.00007,0,0,0,20.73,2H3.27a1.00039,1.00039,0,0,0-.99609,1.08887l1.52,17a.99944.99944,0,0,0,.72851.87451l7.2002,2A.99628.99628,0,0,0,11.99023,23a1.01206,1.01206,0,0,0,.26709-.03613l7.21973-2a1.00055,1.00055,0,0,0,.729-.875l1.52-17A1,1,0,0,0,21.46777,2.3252Zm-3.19238,16.896L11.99072,20.9624,5.72461,19.22168,4.36328,4H19.63672ZM7.81982,13h6.895l-.32714,3.271-2.56788.917L8.65625,16.05811a1.00017,1.00017,0,1,0-.67285,1.88378l3.5,1.25a1.00291,1.00291,0,0,0,.67285,0l3.5-1.25a1.00044,1.00044,0,0,0,.65869-.84228l.5-5A1.00064,1.00064,0,0,0,15.81982,11H8.72461L8.4248,8h7.895a1,1,0,0,0,0-2h-9a1.00064,1.00064,0,0,0-.99511,1.09961l.5,5A1.00012,1.00012,0,0,0,7.81982,13Z' - })); -}; - -UilHtml5Alt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHtml5Alt; \ No newline at end of file diff --git a/icons/uil-html5.js b/icons/uil-html5.js deleted file mode 100644 index 584e063e..00000000 --- a/icons/uil-html5.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHtml5 = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.1825,2.00012,4.78735,20.00079l7.20191,1.99933,7.22168-2.00207L20.8175,2.00012ZM17.32507,7.88739H8.87683l.20178,2.26074h8.04554l-.60584,6.778L12,18.17834v.00043l-.01013.00275L7.46753,16.92615,7.1582,13.45972H9.37439l.1571,1.76074,2.45874.66388.00208-.00049v-.00018l2.46228-.66461.25635-2.86323H7.05957L6.46411,5.67969h11.0586Z' - })); -}; - -UilHtml5.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHtml5; \ No newline at end of file diff --git a/icons/uil-hunting.js b/icons/uil-hunting.js deleted file mode 100644 index 1e884dd5..00000000 --- a/icons/uil-hunting.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilHunting = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Zm9-2H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-9,7a6,6,0,1,1,6-6A6,6,0,0,1,12,18Z' - })); -}; - -UilHunting.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilHunting; \ No newline at end of file diff --git a/icons/uil-icons.js b/icons/uil-icons.js deleted file mode 100644 index ac42348f..00000000 --- a/icons/uil-icons.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilIcons = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.6 10.9c.1.1.2.1.4.1h7c.6 0 1-.4 1-1 0-.2 0-.3-.1-.4l-3.5-7c-.3-.5-.9-.7-1.4-.4-.1.1-.3.2-.4.4l-3.5 7c-.2.4 0 1 .5 1.3zm3.9-5.7L19.4 9h-3.8l1.9-3.8zM6.5 2C4 2 2 4 2 6.5S4 11 6.5 11 11 9 11 6.5 9 2 6.5 2zm0 7C5.1 9 4 7.9 4 6.5S5.1 4 6.5 4 9 5.1 9 6.5 7.9 9 6.5 9zm4.2 4.3c-.4-.4-1-.4-1.4 0l-2.8 2.8-2.8-2.8c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2.8 2.8-2.8 2.8c-.4.4-.4 1 0 1.4s1 .4 1.4 0l2.8-2.8 2.8 2.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4l-2.8-2.8 2.8-2.8c.4-.4.4-1 0-1.4zM21 13h-7c-.6 0-1 .4-1 1v7c0 .6.4 1 1 1h7c.6 0 1-.4 1-1v-7c0-.6-.4-1-1-1zm-1 7h-5v-5h5v5z' - })); -}; - -UilIcons.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilIcons; \ No newline at end of file diff --git a/icons/uil-illustration.js b/icons/uil-illustration.js deleted file mode 100644 index 2e3c7688..00000000 --- a/icons/uil-illustration.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilIllustration = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.9 9.6c-.2-.5-.8-.7-1.3-.5l-2.9 1.4-2.1-2.1-2.1-2.1 1.4-2.9c.2-.5 0-1.1-.5-1.3-.5-.2-1.1 0-1.3.5l-1.5 3.1-6.4 1c-.4.1-.7.4-.8.8L2 19.1c-.1.3 0 .7.3.9L4 21.7c.2.2.5.3.7.3h.2l11.6-2.4c.4-.1.7-.4.8-.8l1-6.4 3.1-1.5c.5-.2.7-.8.5-1.3zm-6.5 8.2-9.8 2 3.7-3.7c1.5.7 3.3.1 4-1.4s.1-3.3-1.4-4c-1.1-.5-2.5-.3-3.4.6-.9.9-1.1 2.3-.6 3.4l-3.7 3.7 2-9.8 5.8-1 2.2 2.2 2.2 2.2-1 5.8zm-5.8-4.4c0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-.2-.2-.3-.5-.3-.7z' - })); -}; - -UilIllustration.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilIllustration; \ No newline at end of file diff --git a/icons/uil-image-alt-slash.js b/icons/uil-image-alt-slash.js deleted file mode 100644 index ebcf76f6..00000000 --- a/icons/uil-image-alt-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageAltSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-.93-.93-.09-.1-.06-.07-.5-.5L20,18.62l-5.18-5.2-.09-.08-3.2-3.21L11.43,10,3.71,2.29A1,1,0,0,0,2.29,3.71l1,1A3,3,0,0,0,3,6V18a3,3,0,0,0,3,3H18a2.9,2.9,0,0,0,1.27-.31l0,0h0s0,0,.05,0l.95,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,6.41,8.24,9.65a2.84,2.84,0,0,0-.67.48L5,12.71ZM6,19a1,1,0,0,1-1-1V15.54l4-4a.81.81,0,0,1,1.1,0L17.59,19ZM9.66,5H18a1,1,0,0,1,1,1v5.94l0,0a1,1,0,1,0-1.42,1.42l1.74,1.74a1,1,0,0,0,1.42,0,1,1,0,0,0,.29-.72h0V6a3,3,0,0,0-3-3H9.66a1,1,0,0,0,0,2Z' - })); -}; - -UilImageAltSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageAltSlash; \ No newline at end of file diff --git a/icons/uil-image-block.js b/icons/uil-image-block.js deleted file mode 100644 index 79c366e0..00000000 --- a/icons/uil-image-block.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageBlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.54,2.46A5,5,0,1,0,22,6,5,5,0,0,0,20.54,2.46ZM14,6a3,3,0,0,1,3-3,3,3,0,0,1,1.29.3l-4,4A3,3,0,0,1,14,6Zm5.12,2.12a3.08,3.08,0,0,1-3.4.57l4-4A3,3,0,0,1,20,6,3,3,0,0,1,19.12,8.12ZM19,13a1,1,0,0,0-1,1v.39L16.52,12.9a2.87,2.87,0,0,0-3.93,0l-.7.71L9.41,11.12a2.87,2.87,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6H9A1,1,0,0,0,9,4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,.95-.17l.09,0A3,3,0,0,0,20,19.44a1.43,1.43,0,0,0,0-.22V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.89a.79.79,0,0,1,1.09,0l3.19,3.18h0L15.46,20Zm13-1a1,1,0,0,1-.18.54L13.3,15l.71-.7a.79.79,0,0,1,1.09,0L18,17.21Z' - })); -}; - -UilImageBlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageBlock; \ No newline at end of file diff --git a/icons/uil-image-broken.js b/icons/uil-image-broken.js deleted file mode 100644 index 279d7e1e..00000000 --- a/icons/uil-image-broken.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageBroken = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,14.54,19.21,12a1,1,0,0,0-1.42,0L15,14.84,12.21,12a1,1,0,0,0-1.42,0L8.5,14.34,6.21,12a1,1,0,0,0-1.42,0l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0-.08.38V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15.25a1,1,0,0,0-.08-.38A1,1,0,0,0,21.71,14.54ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15.66l1.5-1.5,2.29,2.3a1,1,0,0,0,1.42,0l2.29-2.3L14.29,17a1,1,0,0,0,1.42,0l2.79-2.8,1.5,1.5ZM19,2H5A3,3,0,0,0,2,5v5.26a1.17,1.17,0,0,0,0,.27s0,.07,0,.1a1,1,0,0,0,1.66.31L5.5,9.16l2.29,2.3a1,1,0,0,0,1.42,0l2.29-2.3L14.29,12a1,1,0,0,0,1.42,0l2.79-2.8,1.77,1.78a1,1,0,0,0,1.66-.31.28.28,0,0,0,0-.09.88.88,0,0,0,.06-.28V5A3,3,0,0,0,19,2Zm1,5.84L19.21,7a1,1,0,0,0-1.42,0L15,9.84,12.21,7a1,1,0,0,0-1.42,0L8.5,9.34,6.21,7A1,1,0,0,0,4.79,7L4,7.84V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilImageBroken.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageBroken; \ No newline at end of file diff --git a/icons/uil-image-check.js b/icons/uil-image-check.js deleted file mode 100644 index 9c775260..00000000 --- a/icons/uil-image-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,2.3a1,1,0,0,0-1.41,0L16.92,5.6,15.7,4.4a1,1,0,0,0-1.4,1.43l1.92,1.88a1,1,0,0,0,1.4,0l4.08-4A1,1,0,0,0,21.71,2.3ZM19,9a1,1,0,0,0-1,1v4.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h6a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10A1,1,0,0,0,19,9ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22Z' - })); -}; - -UilImageCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageCheck; \ No newline at end of file diff --git a/icons/uil-image-download.js b/icons/uil-image-download.js deleted file mode 100644 index 79c93c24..00000000 --- a/icons/uil-image-download.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageDownload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.71,6.29a1,1,0,0,0-1.42,0L20,7.59V2a1,1,0,0,0-2,0V7.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,22.71,6.29ZM19,13a1,1,0,0,0-1,1v.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.85,2.85,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.46,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.77.77,0,0,1,1.1,0L18,17.21Z' - })); -}; - -UilImageDownload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageDownload; \ No newline at end of file diff --git a/icons/uil-image-edit.js b/icons/uil-image-edit.js deleted file mode 100644 index c76f6b01..00000000 --- a/icons/uil-image-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.73682,3.751,19.31689,1.33105a.99964.99964,0,0,0-1.41406,0L13.32275,5.91113a1.00013,1.00013,0,0,0-.293.707V9.03809a1.00005,1.00005,0,0,0,1,1H16.4502a1.00014,1.00014,0,0,0,.707-.293L21.73682,5.165A.99964.99964,0,0,0,21.73682,3.751ZM16.03613,8.03809H15.02979V7.03223l3.58007-3.58008L19.61572,4.458ZM19,11a1,1,0,0,0-1,1v2.3916l-1.48047-1.48047a2.78039,2.78039,0,0,0-3.92822,0l-.698.698L9.40723,11.123a2.777,2.777,0,0,0-3.92432,0L4,12.606V7A1.0013,1.0013,0,0,1,5,6h6a1,1,0,0,0,0-2H5A3.00328,3.00328,0,0,0,2,7V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V12A1,1,0,0,0,19,11ZM5,20a1.0013,1.0013,0,0,1-1-1V15.43408l2.897-2.897a.79926.79926,0,0,1,1.09619,0l3.168,3.16711c.00849.00916.0116.02179.02045.03064L15.44714,20Zm13-1a.97137.97137,0,0,1-.17877.53705l-4.51386-4.51386.698-.698a.77979.77979,0,0,1,1.1001,0L18,17.21973Z' - })); -}; - -UilImageEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageEdit; \ No newline at end of file diff --git a/icons/uil-image-lock.js b/icons/uil-image-lock.js deleted file mode 100644 index 403b851f..00000000 --- a/icons/uil-image-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,5.18V4a3,3,0,0,0-6,0V5.18A3,3,0,0,0,12,8v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5.18ZM16,4a1,1,0,0,1,2,0V5H16Zm4,6a1,1,0,0,1-1,1H15a1,1,0,0,1-1-1V8a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Zm-1,5a1,1,0,0,0-1,1v3a.89.89,0,0,1-.18.53L9.41,11.12a2.86,2.86,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h5a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V16A1,1,0,0,0,19,15ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0L15.46,20Z' - })); -}; - -UilImageLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageLock; \ No newline at end of file diff --git a/icons/uil-image-minus.js b/icons/uil-image-minus.js deleted file mode 100644 index 21e992d7..00000000 --- a/icons/uil-image-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,4.00781H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2ZM19,8a1,1,0,0,0-1,1v5.3916l-1.48047-1.48047a2.78039,2.78039,0,0,0-3.92822,0l-.698.698L9.40723,11.123a2.777,2.777,0,0,0-3.92432,0L4,12.606V7A1.0013,1.0013,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3.00328,3.00328,0,0,0,2,7V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V9A1,1,0,0,0,19,8ZM5,20a1.0013,1.0013,0,0,1-1-1V15.43408l2.897-2.897a.79926.79926,0,0,1,1.09619,0l3.168,3.16711c.00849.00916.0116.02179.02045.03064L15.44714,20Zm13-1a.97137.97137,0,0,1-.17877.53705l-4.51386-4.51386.698-.698a.77979.77979,0,0,1,1.1001,0L18,17.21973Z' - })); -}; - -UilImageMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageMinus; \ No newline at end of file diff --git a/icons/uil-image-plus.js b/icons/uil-image-plus.js deleted file mode 100644 index fbda9bea..00000000 --- a/icons/uil-image-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImagePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,10a1,1,0,0,0-1,1v3.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.71L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19.22A2.79,2.79,0,0,0,4.78,22H17.22a2.88,2.88,0,0,0,.8-.12h0a2.74,2.74,0,0,0,2-2.65V11A1,1,0,0,0,19,10ZM5,20a1,1,0,0,1-1-1V15.43l2.89-2.89a.78.78,0,0,1,1.1,0L15.46,20Zm13-1a1,1,0,0,1-.18.54L13.3,15l.71-.7a.77.77,0,0,1,1.1,0L18,17.21ZM21,4H20V3a1,1,0,0,0-2,0V4H17a1,1,0,0,0,0,2h1V7a1,1,0,0,0,2,0V6h1a1,1,0,0,0,0-2Z' - })); -}; - -UilImagePlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImagePlus; \ No newline at end of file diff --git a/icons/uil-image-question.js b/icons/uil-image-question.js deleted file mode 100644 index b6cf64dd..00000000 --- a/icons/uil-image-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,13a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.86,2.86,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a1,1,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22ZM19,2a3,3,0,0,0-2.6,1.5,1,1,0,0,0,.37,1.37,1,1,0,0,0,1.36-.37A1,1,0,0,1,20,5a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm.38,7.08A1,1,0,0,0,18.8,9l-.18.06-.18.09-.15.13A1,1,0,0,0,18,10a1,1,0,0,0,.29.71,1,1,0,0,0,1.42,0A1,1,0,0,0,20,10a1,1,0,0,0-.62-.92Z' - })); -}; - -UilImageQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageQuestion; \ No newline at end of file diff --git a/icons/uil-image-redo.js b/icons/uil-image-redo.js deleted file mode 100644 index 43fbad3a..00000000 --- a/icons/uil-image-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.5,1.5a1,1,0,0,0-1,1h0a5,5,0,1,0,.3,7.75,1,1,0,0,0-1.32-1.51,3,3,0,1,1,.25-4.25H18.5a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1v-3A1,1,0,0,0,21.5,1.5Zm-3,12a1,1,0,0,0-1,1v.39L16,13.41a2.77,2.77,0,0,0-3.93,0l-.7.7L8.91,11.62a2.79,2.79,0,0,0-3.93,0L3.5,13.1V7.5a1,1,0,0,1,1-1h5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v12a3,3,0,0,0,3,3h12a3,3,0,0,0,3-3v-5A1,1,0,0,0,18.5,13.5Zm-14,7a1,1,0,0,1-1-1V15.93L6.4,13a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15,20.5Zm13-1a1,1,0,0,1-.18.53l-4.51-4.51.7-.7a.78.78,0,0,1,1.1,0l2.89,2.9Z' - })); -}; - -UilImageRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageRedo; \ No newline at end of file diff --git a/icons/uil-image-resize-landscape.js b/icons/uil-image-resize-landscape.js deleted file mode 100644 index 6148b0b5..00000000 --- a/icons/uil-image-resize-landscape.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageResizeLandscape = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,11H2a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1H12.86c.05,0,.09,0,.14,0a1,1,0,0,0,1-1V12A1,1,0,0,0,13,11ZM7.44,20l1.93-1.93a.3.3,0,0,1,.5,0L11.79,20ZM12,17.38l-.72-.71a2.41,2.41,0,0,0-3.33,0L4.61,20H3V13h9ZM2,4.11a1,1,0,0,0,.86-.49A1.05,1.05,0,0,0,3.05,3,1,1,0,0,0,2,2,1,1,0,0,0,1,3v.1A1,1,0,0,0,2,4.11ZM9.91,4h.19a1,1,0,0,0,0-2H9.91a1,1,0,0,0,0,2ZM2,8.78a1,1,0,0,0,1-1V7.56a1,1,0,1,0-2,0v.22A1,1,0,0,0,2,8.78ZM14.09,2H13.9a1,1,0,0,0,0,2h.19a1,1,0,0,0,0-2ZM5.91,4H6.1a1,1,0,0,0,0-2H5.91a1,1,0,0,0,0,2ZM22,6.4a1,1,0,0,0-1,1v.21a1,1,0,0,0,2,0V7.4A1,1,0,0,0,22,6.4ZM17.12,20h-.24a1,1,0,1,0,0,2h.24a1,1,0,0,0,0-2ZM21.9,2A1,1,0,0,0,21,3a1,1,0,0,0,.1.42A1,1,0,0,0,23,3.11V3A1.09,1.09,0,0,0,21.9,2ZM22,10.9a1,1,0,0,0-1,1v.22a1,1,0,0,0,2,0V11.9A1,1,0,0,0,22,10.9ZM18.09,2H17.9a1,1,0,0,0,0,2h.19a1,1,0,0,0,0-2ZM22,20a.93.93,0,0,0-.44.11A1,1,0,0,0,21,21,1,1,0,0,0,22,22a1.09,1.09,0,0,0,1-1.1A1,1,0,0,0,22,20Zm0-4.56a1,1,0,0,0-1,1v.22a1,1,0,1,0,2,0V16.4A1,1,0,0,0,22,15.4Z' - })); -}; - -UilImageResizeLandscape.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageResizeLandscape; \ No newline at end of file diff --git a/icons/uil-image-resize-square.js b/icons/uil-image-resize-square.js deleted file mode 100644 index 2daf2ec0..00000000 --- a/icons/uil-image-resize-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageResizeSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,8.1a1,1,0,0,0,1-1V6.91a1,1,0,0,0-2,0V7.1A1,1,0,0,0,3,8.1Zm0-4A1,1,0,0,0,3.42,4,1,1,0,0,0,3.1,2H3A1.09,1.09,0,0,0,2,3.1,1,1,0,0,0,3,4.05Zm17.39-.19A1,1,0,0,0,22,3a1,1,0,0,0-1-1h-.1a1,1,0,0,0-.51,1.86ZM11.89,4h.22a1,1,0,0,0,0-2h-.22a1,1,0,0,0,0,2ZM7.39,4H7.6a1,1,0,0,0,0-2H7.39a1,1,0,0,0,0,2ZM21,20a1,1,0,0,0-.42.1A1,1,0,0,0,20.9,22H21a1.09,1.09,0,0,0,1-1.1A1,1,0,0,0,21,20ZM14,11a1,1,0,0,0-1-1H3.27A1.08,1.08,0,0,0,3,10,1,1,0,0,0,2,11V21a1,1,0,0,0,1,1H13.1a1,1,0,0,0,.9-1.42Zm-2,9H5.52l3.91-3.9a.33.33,0,0,1,.47,0L12,18.19Zm0-4.63-.68-.69a2.35,2.35,0,0,0-3.31,0l-4,4V12h8Zm9,0a1,1,0,0,0-1,1v.21a1,1,0,0,0,2,0V16.4A1,1,0,0,0,21,15.4Zm0-9a1,1,0,0,0-1,1V7.6a1,1,0,1,0,2,0V7.39A1,1,0,0,0,21,6.39Zm0,4.5a1,1,0,0,0-1,1v.22a1,1,0,0,0,2,0v-.22A1,1,0,0,0,21,10.89ZM17.1,20h-.2a1,1,0,1,0,0,2h.2a1,1,0,0,0,0-2ZM16.61,4a1,1,0,0,0,0-2H16.4a1,1,0,1,0,0,2Z' - })); -}; - -UilImageResizeSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageResizeSquare; \ No newline at end of file diff --git a/icons/uil-image-search.js b/icons/uil-image-search.js deleted file mode 100644 index 560593c7..00000000 --- a/icons/uil-image-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,13a1,1,0,0,0-1,1v.39l-1.48-1.48a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.87,2.87,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6H9A1,1,0,0,0,9,4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.89a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a1,1,0,0,1-.18.54L13.31,15l.7-.69a.77.77,0,0,1,1.1,0L18,17.22Zm3.71-8.71L20,8.57a4.31,4.31,0,1,0-6.72.79,4.27,4.27,0,0,0,3,1.26A4.34,4.34,0,0,0,18.57,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,10.29ZM18,8a2.32,2.32,0,1,1,0-3.27A2.32,2.32,0,0,1,18,8Z' - })); -}; - -UilImageSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageSearch; \ No newline at end of file diff --git a/icons/uil-image-share.js b/icons/uil-image-share.js deleted file mode 100644 index fac92c53..00000000 --- a/icons/uil-image-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,7a2,2,0,0,0-1.18.39l-1.75-.8L19,5.71A2,2,0,0,0,20,6a2,2,0,1,0-2-2l-1.89.87A2,2,0,1,0,15,8.5a1.88,1.88,0,0,0,.92-.24l2.1,1A2,2,0,1,0,20,7Zm-1,6a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h5a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22Z' - })); -}; - -UilImageShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageShare; \ No newline at end of file diff --git a/icons/uil-image-shield.js b/icons/uil-image-shield.js deleted file mode 100644 index 75a241c4..00000000 --- a/icons/uil-image-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.13,2.36a1,1,0,0,0-.84-.2,2.7,2.7,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.7,2.7,0,0,1-2.2.47,1,1,0,0,0-.84.2,1,1,0,0,0-.37.78V6.45a4.63,4.63,0,0,0,1.84,3.7l1.57,1.16a1,1,0,0,0,1.18,0l1.57-1.16a4.63,4.63,0,0,0,1.84-3.7V3.14A1,1,0,0,0,22.13,2.36ZM20.5,6.45a2.62,2.62,0,0,1-1,2.09l-1,.72-1-.72a2.62,2.62,0,0,1-1-2.09V4.22a4.81,4.81,0,0,0,2-.54,4.81,4.81,0,0,0,2,.54Zm-2,7.05a1,1,0,0,0-1,1v.39L16,13.41a2.77,2.77,0,0,0-3.93,0l-.7.7L8.91,11.62a2.85,2.85,0,0,0-3.93,0L3.5,13.1V7.5a1,1,0,0,1,1-1h7a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3v12a3,3,0,0,0,3,3h12a3,3,0,0,0,3-3v-5A1,1,0,0,0,18.5,13.5Zm-14,7a1,1,0,0,1-1-1V15.93L6.4,13a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15,20.5Zm13-1a1,1,0,0,1-.18.53l-4.51-4.51.7-.7a.78.78,0,0,1,1.1,0l2.89,2.9Z' - })); -}; - -UilImageShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageShield; \ No newline at end of file diff --git a/icons/uil-image-slash.js b/icons/uil-image-slash.js deleted file mode 100644 index f7c6a3f2..00000000 --- a/icons/uil-image-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.5,4H10a1,1,0,0,0,0,2H19.5a1,1,0,0,1,1,1v6.76l-1.88-1.88a3,3,0,0,0-1.14-.71,1,1,0,1,0-.64,1.9.82.82,0,0,1,.36.23l3.31,3.29a.66.66,0,0,0,0,.15.83.83,0,0,0,0,.15,1.18,1.18,0,0,0,.13.18.48.48,0,0,0,.09.11.9.9,0,0,0,.2.14.6.6,0,0,0,.11.06.91.91,0,0,0,.37.08,1,1,0,0,0,1-1V7A3,3,0,0,0,19.5,4ZM3.21,2.29A1,1,0,0,0,1.79,3.71L3.18,5.1A3,3,0,0,0,2.5,7V17a3,3,0,0,0,3,3H18.09l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM4.5,7a1,1,0,0,1,.12-.46L7.34,9.25a3,3,0,0,0-1,.63L4.5,11.76Zm1,11a1,1,0,0,1-1-1V14.58l3.3-3.29a1,1,0,0,1,1.4,0L15.91,18Z' - })); -}; - -UilImageSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageSlash; \ No newline at end of file diff --git a/icons/uil-image-times.js b/icons/uil-image-times.js deleted file mode 100644 index c84e1dd0..00000000 --- a/icons/uil-image-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,10a1,1,0,0,0-1,1v3.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V11A1,1,0,0,0,19,10ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22ZM20.41,5l1.3-1.29a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L19,3.59,17.71,2.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L17.59,5l-1.3,1.3a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0L19,6.42l1.29,1.29a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41Z' - })); -}; - -UilImageTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageTimes; \ No newline at end of file diff --git a/icons/uil-image-upload.js b/icons/uil-image-upload.js deleted file mode 100644 index f481af59..00000000 --- a/icons/uil-image-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,13a1,1,0,0,0-1,1v.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.85,2.85,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h7a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.46,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.77.77,0,0,1,1.1,0L18,17.21ZM22.71,4.29l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L18,4.41V10a1,1,0,0,0,2,0V4.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,22.71,4.29Z' - })); -}; - -UilImageUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageUpload; \ No newline at end of file diff --git a/icons/uil-image-v.js b/icons/uil-image-v.js deleted file mode 100644 index def92ec2..00000000 --- a/icons/uil-image-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImageV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a2.81,2.81,0,0,0,.49-.05l.3-.07.07,0h0l.05,0,.37-.14.13-.07c.1-.06.21-.11.31-.18a3.79,3.79,0,0,0,.38-.32l.07-.09a2.69,2.69,0,0,0,.27-.32l.09-.13a2.31,2.31,0,0,0,.18-.35,1,1,0,0,0,.07-.15c.05-.12.08-.25.12-.38l0-.15A2.6,2.6,0,0,0,22,19V5A3,3,0,0,0,19,2ZM5,20a1,1,0,0,1-1-1V14.69l3.29-3.3h0a1,1,0,0,1,1.42,0L17.31,20Zm15-1a1,1,0,0,1-.07.36,1,1,0,0,1-.08.14.94.94,0,0,1-.09.12l-5.35-5.35.88-.88a1,1,0,0,1,1.42,0h0L20,16.69Zm0-5.14L18.12,12a3.08,3.08,0,0,0-4.24,0l-.88.88L10.12,10a3.08,3.08,0,0,0-4.24,0L4,11.86V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilImageV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImageV; \ No newline at end of file diff --git a/icons/uil-image.js b/icons/uil-image.js deleted file mode 100644 index f5253ff5..00000000 --- a/icons/uil-image.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM5,18a1,1,0,0,1-1-1V14.58l3.3-3.29a1,1,0,0,1,1.4,0L15.41,18Zm15-1a1,1,0,0,1-1,1h-.77l-3.81-3.83.88-.88a1,1,0,0,1,1.4,0L20,16.58Zm0-3.24-1.88-1.87a3.06,3.06,0,0,0-4.24,0l-.88.88L10.12,9.89a3.06,3.06,0,0,0-4.24,0L4,11.76V7A1,1,0,0,1,5,6H19a1,1,0,0,1,1,1Z' - })); -}; - -UilImage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImage; \ No newline at end of file diff --git a/icons/uil-images.js b/icons/uil-images.js deleted file mode 100644 index 8bb0a941..00000000 --- a/icons/uil-images.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImages = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,15V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM4,5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V9.36L14.92,8.27a2.56,2.56,0,0,0-1.81-.75h0a2.58,2.58,0,0,0-1.81.75l-.91.91-.81-.81a2.93,2.93,0,0,0-4.11,0L4,9.85Zm.12,10.45A.94.94,0,0,1,4,15V12.67L6.88,9.79a.91.91,0,0,1,1.29,0L9,10.6Zm8.6-5.76a.52.52,0,0,1,.39-.17h0a.52.52,0,0,1,.39.17L16,12.18V15a1,1,0,0,1-1,1H6.4ZM21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Z' - })); -}; - -UilImages.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImages; \ No newline at end of file diff --git a/icons/uil-import.js b/icons/uil-import.js deleted file mode 100644 index 5c10006a..00000000 --- a/icons/uil-import.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilImport = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14Zm-9.71,1.71a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42L13,12.59V3a1,1,0,0,0-2,0v9.59l-2.29-2.3a1,1,0,1,0-1.42,1.42Z' - })); -}; - -UilImport.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilImport; \ No newline at end of file diff --git a/icons/uil-inbox.js b/icons/uil-inbox.js deleted file mode 100644 index e51e5d01..00000000 --- a/icons/uil-inbox.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.05566,2h-14a3.00328,3.00328,0,0,0-3,3V19a3.00328,3.00328,0,0,0,3,3h14a3.00328,3.00328,0,0,0,3-3V5A3.00328,3.00328,0,0,0,19.05566,2Zm-14,2h14a1.001,1.001,0,0,1,1,1v8H17.59082a1.99687,1.99687,0,0,0-1.66406.89062L14.52051,16H9.59082L8.18457,13.89062A1.99687,1.99687,0,0,0,6.52051,13H4.05566V5A1.001,1.001,0,0,1,5.05566,4Zm14,16h-14a1.001,1.001,0,0,1-1-1V15H6.52051l1.40625,2.10938A1.99687,1.99687,0,0,0,9.59082,18h4.92969a1.99687,1.99687,0,0,0,1.66406-.89062L17.59082,15h2.46484v4A1.001,1.001,0,0,1,19.05566,20Z' - })); -}; - -UilInbox.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInbox; \ No newline at end of file diff --git a/icons/uil-incoming-call.js b/icons/uil-incoming-call.js deleted file mode 100644 index dbd24dcf..00000000 --- a/icons/uil-incoming-call.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilIncomingCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.55,9a1.07,1.07,0,0,0,.39.07h4a1,1,0,0,0,0-2H18.35l3.29-3.29a1,1,0,1,0-1.41-1.41L16.94,5.65V4.06a1,1,0,1,0-2,0v4a1.07,1.07,0,0,0,.07.39A1,1,0,0,0,15.55,9Zm3.89,4c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' - })); -}; - -UilIncomingCall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilIncomingCall; \ No newline at end of file diff --git a/icons/uil-info-circle.js b/icons/uil-info-circle.js deleted file mode 100644 index 5ff6c985..00000000 --- a/icons/uil-info-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInfoCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm0-8.5a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,11.5Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,7.5Z' - })); -}; - -UilInfoCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInfoCircle; \ No newline at end of file diff --git a/icons/uil-info.js b/icons/uil-info.js deleted file mode 100644 index dad291d1..00000000 --- a/icons/uil-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,6Z' - })); -}; - -UilInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInfo; \ No newline at end of file diff --git a/icons/uil-instagram-alt.js b/icons/uil-instagram-alt.js deleted file mode 100644 index 9a53a232..00000000 --- a/icons/uil-instagram-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInstagramAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,9.52A2.48,2.48,0,1,0,14.48,12,2.48,2.48,0,0,0,12,9.52Zm9.93-2.45a6.53,6.53,0,0,0-.42-2.26,4,4,0,0,0-2.32-2.32,6.53,6.53,0,0,0-2.26-.42C15.64,2,15.26,2,12,2s-3.64,0-4.93.07a6.53,6.53,0,0,0-2.26.42A4,4,0,0,0,2.49,4.81a6.53,6.53,0,0,0-.42,2.26C2,8.36,2,8.74,2,12s0,3.64.07,4.93a6.86,6.86,0,0,0,.42,2.27,3.94,3.94,0,0,0,.91,1.4,3.89,3.89,0,0,0,1.41.91,6.53,6.53,0,0,0,2.26.42C8.36,22,8.74,22,12,22s3.64,0,4.93-.07a6.53,6.53,0,0,0,2.26-.42,3.89,3.89,0,0,0,1.41-.91,3.94,3.94,0,0,0,.91-1.4,6.6,6.6,0,0,0,.42-2.27C22,15.64,22,15.26,22,12S22,8.36,21.93,7.07Zm-2.54,8A5.73,5.73,0,0,1,19,16.87,3.86,3.86,0,0,1,16.87,19a5.73,5.73,0,0,1-1.81.35c-.79,0-1,0-3.06,0s-2.27,0-3.06,0A5.73,5.73,0,0,1,7.13,19a3.51,3.51,0,0,1-1.31-.86A3.51,3.51,0,0,1,5,16.87a5.49,5.49,0,0,1-.34-1.81c0-.79,0-1,0-3.06s0-2.27,0-3.06A5.49,5.49,0,0,1,5,7.13a3.51,3.51,0,0,1,.86-1.31A3.59,3.59,0,0,1,7.13,5a5.73,5.73,0,0,1,1.81-.35h0c.79,0,1,0,3.06,0s2.27,0,3.06,0A5.73,5.73,0,0,1,16.87,5a3.51,3.51,0,0,1,1.31.86A3.51,3.51,0,0,1,19,7.13a5.73,5.73,0,0,1,.35,1.81c0,.79,0,1,0,3.06S19.42,14.27,19.39,15.06Zm-1.6-7.44a2.38,2.38,0,0,0-1.41-1.41A4,4,0,0,0,15,6c-.78,0-1,0-3,0s-2.22,0-3,0a4,4,0,0,0-1.38.26A2.38,2.38,0,0,0,6.21,7.62,4.27,4.27,0,0,0,6,9c0,.78,0,1,0,3s0,2.22,0,3a4.27,4.27,0,0,0,.26,1.38,2.38,2.38,0,0,0,1.41,1.41A4.27,4.27,0,0,0,9,18.05H9c.78,0,1,0,3,0s2.22,0,3,0a4,4,0,0,0,1.38-.26,2.38,2.38,0,0,0,1.41-1.41A4,4,0,0,0,18.05,15c0-.78,0-1,0-3s0-2.22,0-3A3.78,3.78,0,0,0,17.79,7.62ZM12,15.82A3.81,3.81,0,0,1,8.19,12h0A3.82,3.82,0,1,1,12,15.82Zm4-6.89a.9.9,0,0,1,0-1.79h0a.9.9,0,0,1,0,1.79Z' - })); -}; - -UilInstagramAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInstagramAlt; \ No newline at end of file diff --git a/icons/uil-instagram.js b/icons/uil-instagram.js deleted file mode 100644 index b63884de..00000000 --- a/icons/uil-instagram.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInstagram = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.34,5.46h0a1.2,1.2,0,1,0,1.2,1.2A1.2,1.2,0,0,0,17.34,5.46Zm4.6,2.42a7.59,7.59,0,0,0-.46-2.43,4.94,4.94,0,0,0-1.16-1.77,4.7,4.7,0,0,0-1.77-1.15,7.3,7.3,0,0,0-2.43-.47C15.06,2,14.72,2,12,2s-3.06,0-4.12.06a7.3,7.3,0,0,0-2.43.47A4.78,4.78,0,0,0,3.68,3.68,4.7,4.7,0,0,0,2.53,5.45a7.3,7.3,0,0,0-.47,2.43C2,8.94,2,9.28,2,12s0,3.06.06,4.12a7.3,7.3,0,0,0,.47,2.43,4.7,4.7,0,0,0,1.15,1.77,4.78,4.78,0,0,0,1.77,1.15,7.3,7.3,0,0,0,2.43.47C8.94,22,9.28,22,12,22s3.06,0,4.12-.06a7.3,7.3,0,0,0,2.43-.47,4.7,4.7,0,0,0,1.77-1.15,4.85,4.85,0,0,0,1.16-1.77,7.59,7.59,0,0,0,.46-2.43c0-1.06.06-1.4.06-4.12S22,8.94,21.94,7.88ZM20.14,16a5.61,5.61,0,0,1-.34,1.86,3.06,3.06,0,0,1-.75,1.15,3.19,3.19,0,0,1-1.15.75,5.61,5.61,0,0,1-1.86.34c-1,.05-1.37.06-4,.06s-3,0-4-.06A5.73,5.73,0,0,1,6.1,19.8,3.27,3.27,0,0,1,5,19.05a3,3,0,0,1-.74-1.15A5.54,5.54,0,0,1,3.86,16c0-1-.06-1.37-.06-4s0-3,.06-4A5.54,5.54,0,0,1,4.21,6.1,3,3,0,0,1,5,5,3.14,3.14,0,0,1,6.1,4.2,5.73,5.73,0,0,1,8,3.86c1,0,1.37-.06,4-.06s3,0,4,.06a5.61,5.61,0,0,1,1.86.34A3.06,3.06,0,0,1,19.05,5,3.06,3.06,0,0,1,19.8,6.1,5.61,5.61,0,0,1,20.14,8c.05,1,.06,1.37.06,4S20.19,15,20.14,16ZM12,6.87A5.13,5.13,0,1,0,17.14,12,5.12,5.12,0,0,0,12,6.87Zm0,8.46A3.33,3.33,0,1,1,15.33,12,3.33,3.33,0,0,1,12,15.33Z' - })); -}; - -UilInstagram.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInstagram; \ No newline at end of file diff --git a/icons/uil-intercom-alt.js b/icons/uil-intercom-alt.js deleted file mode 100644 index cc37a63e..00000000 --- a/icons/uil-intercom-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilIntercomAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.99121,15.00044a.99942.99942,0,0,0,1-1v-8a1,1,0,1,0-2,0v8A.99943.99943,0,0,0,9.99121,15.00044Zm4,0a.99942.99942,0,0,0,1-1v-8a1,1,0,1,0-2,0v8A.99943.99943,0,0,0,13.99121,15.00044Zm-8-2a.99942.99942,0,0,0,1-1v-4a1,1,0,0,0-2,0v4A.99943.99943,0,0,0,5.99121,13.00044Zm14-12h-16a3.00328,3.00328,0,0,0-3,3v16a3.00328,3.00328,0,0,0,3,3h16a3.00328,3.00328,0,0,0,3-3v-16A3.00328,3.00328,0,0,0,19.99121,1.00044Zm1,19a1.00067,1.00067,0,0,1-1,1h-16a1.00067,1.00067,0,0,1-1-1v-16a1.00067,1.00067,0,0,1,1-1h16a1.00067,1.00067,0,0,1,1,1Zm-3.64355-4.5918a8.82089,8.82089,0,0,1-5.35645,1.5918,8.98692,8.98692,0,0,1-5.35644-1.5918,1.00017,1.00017,0,1,0-1.28711,1.53125,10.79981,10.79981,0,0,0,6.64355,2.06055,10.79989,10.79989,0,0,0,6.64356-2.06055,1.00017,1.00017,0,0,0-1.28711-1.53125Zm.64355-8.4082a.99942.99942,0,0,0-1,1v4a1,1,0,1,0,2,0v-4A.99942.99942,0,0,0,17.99121,7.00044Z' - })); -}; - -UilIntercomAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilIntercomAlt; \ No newline at end of file diff --git a/icons/uil-intercom.js b/icons/uil-intercom.js deleted file mode 100644 index 1bcc24ce..00000000 --- a/icons/uil-intercom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilIntercom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.5,2H4.5A2.5,2.5,0,0,0,2,4.5v15A2.5,2.5,0,0,0,4.5,22h15A2.5,2.5,0,0,0,22,19.5V4.5A2.5,2.5,0,0,0,19.5,2ZM14.67,5.67A.66.66,0,0,1,15.34,5a.68.68,0,0,1,.66.66v8.9a.67.67,0,0,1-1.33,0Zm-3.34-.34A.67.67,0,0,1,12,4.66h0a.67.67,0,0,1,.67.67V15a.67.67,0,0,1-1.34,0ZM8,5.67a.67.67,0,0,1,1.33,0v8.9a.66.66,0,0,1-.67.66A.68.68,0,0,1,8,14.57ZM4.67,7A.67.67,0,0,1,6,7v6a.67.67,0,0,1-.67.66A.67.67,0,0,1,4.67,13ZM19.1,17.17A11.3,11.3,0,0,1,12,19.33a11.3,11.3,0,0,1-7.1-2.16.67.67,0,0,1,.87-1A10.2,10.2,0,0,0,12,18a10.15,10.15,0,0,0,6.23-1.84.67.67,0,0,1,.87,1ZM19.33,13A.67.67,0,0,1,18,13V7a.67.67,0,0,1,.67-.66.66.66,0,0,1,.66.66Z' - })); -}; - -UilIntercom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilIntercom; \ No newline at end of file diff --git a/icons/uil-invoice.js b/icons/uil-invoice.js deleted file mode 100644 index e8a9af40..00000000 --- a/icons/uil-invoice.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilInvoice = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,16H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,10h2a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm12,2H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Zm-7-7H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilInvoice.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilInvoice; \ No newline at end of file diff --git a/icons/uil-italic.js b/icons/uil-italic.js deleted file mode 100644 index 0c1cc4f9..00000000 --- a/icons/uil-italic.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilItalic = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,6H11a1,1,0,0,0,0,2h1.52l-3.2,8H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H11.48l3.2-8H17a1,1,0,0,0,0-2Z' - })); -}; - -UilItalic.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilItalic; \ No newline at end of file diff --git a/icons/uil-jackhammer.js b/icons/uil-jackhammer.js deleted file mode 100644 index 1e85bdfb..00000000 --- a/icons/uil-jackhammer.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilJackhammer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.85,15.69a1,1,0,0,0-1.41,0l-2.06,2.06a1,1,0,0,0,.45,1.67l.26.07-.8.8a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.26-1,1,1,0,0,0-.71-.71L18,17.94l.83-.84A1,1,0,0,0,18.85,15.69ZM7.91,19.49l.26-.07a1,1,0,0,0,.45-1.67L6.56,15.69A1,1,0,0,0,5.15,17.1l.83.84L5.72,18a1,1,0,0,0-.71.71,1,1,0,0,0,.26,1l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,4a1,1,0,0,0-1,1H17a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5H4A1,1,0,0,0,2,5V7A1,1,0,0,0,4,7H7V9a3,3,0,0,0,2,2.83V13a2,2,0,0,0,2,2v6a1,1,0,0,0,2,0V15a2,2,0,0,0,2-2V11.83A3,3,0,0,0,17,9V7h3a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4ZM15,9a1,1,0,0,1-1,1,1,1,0,0,0-1,1v2H11V11a1,1,0,0,0-1-1A1,1,0,0,1,9,9V5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1ZM12,6a1,1,0,0,0-1,1V8a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Z' - })); -}; - -UilJackhammer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilJackhammer; \ No newline at end of file diff --git a/icons/uil-java-script.js b/icons/uil-java-script.js deleted file mode 100644 index 5d77cc5b..00000000 --- a/icons/uil-java-script.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilJavaScript = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.478,14.8829a4.06111,4.06111,0,0,1-2.18725-.39825,1.4389,1.4389,0,0,1-.53547-1.01019.22184.22184,0,0,0-.22662-.21942c-.31659-.00385-.63312-.003-.94965-.00043a.2113.2113,0,0,0-.23138.18628,2.33854,2.33854,0,0,0,.75305,1.84454,3.99135,3.99135,0,0,0,2.22827.8382,8.06151,8.06151,0,0,0,2.53308-.10755,3.12591,3.12591,0,0,0,1.67823-.90442,2.33824,2.33824,0,0,0,.396-2.23077,1.869,1.869,0,0,0-1.2304-1.09454c-1.28077-.4494-2.66431-.41541-3.97-.7569-.22668-.07135-.50366-.1488-.60467-.38879a.85461.85461,0,0,1,.28418-.95478,2.5576,2.5576,0,0,1,1.34875-.33581,4.07051,4.07051,0,0,1,1.88416.26959,1.43564,1.43564,0,0,1,.68677.99219.243.243,0,0,0,.2276.23565c.31433.00641.62878.00171.94311.00214a.22791.22791,0,0,0,.24732-.16772,2.43369,2.43369,0,0,0-1.18665-2.106,5.8791,5.8791,0,0,0-3.2182-.49243V8.08341a3.50546,3.50546,0,0,0-2.17615.87438,2.1746,2.1746,0,0,0-.43438,2.26264,1.92964,1.92964,0,0,0,1.21838,1.06177c1.27649.46106,2.67554.31311,3.96442.72082.25116.08521.54364.21552.6206.49506a.9907.9907,0,0,1-.26965.94616A2.97065,2.97065,0,0,1,14.478,14.8829Zm5.81891-8.44537q-3.73837-2.114-7.47845-4.22418a1.67742,1.67742,0,0,0-1.63733,0Q7.4556,4.31715,3.72968,6.42075a1.54242,1.54242,0,0,0-.8042,1.34271V16.2377a1.55266,1.55266,0,0,0,.8352,1.355c.71351.38837,1.40674.81629,2.13318,1.17884a3.06373,3.06373,0,0,0,2.73822.07525,2.1275,2.1275,0,0,0,.99482-1.92114c.00555-2.79669.00085-5.59351.00213-8.39026a.21981.21981,0,0,0-.20727-.25415c-.31739-.00513-.63526-.003-.95264-.00085a.20935.20935,0,0,0-.228.21368c-.00427,2.77875.00086,5.55829-.00256,8.33746a.94053.94053,0,0,1-.609.88373,1.53242,1.53242,0,0,1-1.23993-.16595q-.99152-.56-1.983-1.11988a.23714.23714,0,0,1-.13464-.23529q0-4.19383,0-8.38726a.2589.2589,0,0,1,.157-.2602Q8.1423,5.4553,11.85419,3.35953a.258.258,0,0,1,.29163.00043Q15.859,5.452,19.57184,7.5455a.262.262,0,0,1,.15613.26142Q19.72733,12,19.72712,16.19376a.242.242,0,0,1-.13294.23828q-3.65643,2.06753-7.31677,4.12909c-.11658.06494-.25458.16943-.39093.09076-.6391-.36176-1.27039-.73755-1.90735-1.10273a.20589.20589,0,0,0-.22968-.01379,5.21834,5.21834,0,0,1-.88208.41162c-.13806.05591-.30792.07184-.40295.19989a1.31566,1.31566,0,0,0,.43127.31061q1.11741.647,2.236,1.29285a1.62967,1.62967,0,0,0,1.65539.046q3.7261-2.101,7.45185-4.20392a1.55627,1.55627,0,0,0,.83563-1.35474V7.76346A1.53956,1.53956,0,0,0,20.29694,6.43753Z' - })); -}; - -UilJavaScript.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilJavaScript; \ No newline at end of file diff --git a/icons/uil-kayak.js b/icons/uil-kayak.js deleted file mode 100644 index 9b7ce218..00000000 --- a/icons/uil-kayak.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKayak = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.12,16.88a3,3,0,0,0-3.4-.58l-1.15-1.14A24,24,0,0,0,21.78,6.3,3.19,3.19,0,0,0,17.7,2.22,24,24,0,0,0,8.84,7.43L7.7,6.28a3,3,0,1,0-4.82.84A3,3,0,0,0,5,8a3,3,0,0,0,1.28-.3L7.43,8.84A24,24,0,0,0,2.22,17.7,3.24,3.24,0,0,0,3,21,3.17,3.17,0,0,0,5.22,22a3.74,3.74,0,0,0,1.08-.17,24,24,0,0,0,8.86-5.21l1.14,1.15a3,3,0,1,0,4.82-.84ZM5.71,5.7h0A1,1,0,0,1,4.29,4.29,1,1,0,0,1,5.71,5.7Zm12.6-1.57a1.6,1.6,0,0,1,.47-.08,1.16,1.16,0,0,1,.83.34,1.23,1.23,0,0,1,.26,1.3,22.09,22.09,0,0,1-2.13,4.64L13.67,6.26A22.09,22.09,0,0,1,18.31,4.13ZM5.69,19.87a1.2,1.2,0,0,1-1.56-1.56,22.09,22.09,0,0,1,2.13-4.64l4.07,4.07A22.09,22.09,0,0,1,5.69,19.87ZM12,16.59,7.41,12a21.29,21.29,0,0,1,1.43-1.74l4.91,4.91A21.29,21.29,0,0,1,12,16.59Zm3.15-2.84L10.25,8.84A21.29,21.29,0,0,1,12,7.41l4.6,4.6A21.29,21.29,0,0,1,15.16,13.75Zm4.55,6a1,1,0,1,1-1.42-1.41h0a1,1,0,0,1,1.41,0A1,1,0,0,1,19.71,19.71Z' - })); -}; - -UilKayak.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKayak; \ No newline at end of file diff --git a/icons/uil-key-skeleton-alt.js b/icons/uil-key-skeleton-alt.js deleted file mode 100644 index a71b0bdc..00000000 --- a/icons/uil-key-skeleton-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeySkeletonAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,6.53,20.29,5.12l1.42-1.41a1,1,0,1,0-1.42-1.42L9.75,12.83a5,5,0,1,0,1.42,1.42l4.88-4.89,1.41,1.42a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L17.46,8l1.42-1.42L20.29,8a1,1,0,0,0,.71.29A1,1,0,0,0,21.71,8,1,1,0,0,0,21.71,6.53ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Z' - })); -}; - -UilKeySkeletonAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeySkeletonAlt; \ No newline at end of file diff --git a/icons/uil-key-skeleton.js b/icons/uil-key-skeleton.js deleted file mode 100644 index 9c6f9fcf..00000000 --- a/icons/uil-key-skeleton.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeySkeleton = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,4.41l.71-.7a1,1,0,1,0-1.42-1.42L18.89,3.7h0L16.06,6.53h0L9.75,12.83a5,5,0,1,0,1.42,1.42l5.59-5.6,2.12,2.13a1,1,0,1,0,1.41-1.42L18.17,7.24l1.42-1.41.7.7a1,1,0,1,0,1.42-1.41ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Z' - })); -}; - -UilKeySkeleton.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeySkeleton; \ No newline at end of file diff --git a/icons/uil-keyboard-alt.js b/icons/uil-keyboard-alt.js deleted file mode 100644 index 0be81c93..00000000 --- a/icons/uil-keyboard-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyboardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.71,9.29a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21A.84.84,0,0,0,6,11a1,1,0,0,0,.92-1.38A1,1,0,0,0,6.71,9.29ZM10,11a1,1,0,0,0,.92-1.38,1,1,0,0,0-.21-.33A1,1,0,0,0,9.81,9a.6.6,0,0,0-.19.06l-.18.09-.15.12A1.05,1.05,0,0,0,9,10a1,1,0,0,0,1,1ZM6.38,13.08a1,1,0,0,0-.76,0A1,1,0,0,0,5,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,7,14a1,1,0,0,0-.29-.71A.93.93,0,0,0,6.38,13.08ZM14,13H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm.71-3.71a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33A1,1,0,1,0,15,10a.84.84,0,0,0-.08-.38A1,1,0,0,0,14.71,9.29Zm3.85,3.88a.76.76,0,0,0-.18-.09,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,17,14a1,1,0,1,0,2,0,1.05,1.05,0,0,0-.29-.71ZM20,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1ZM18.71,9.29A1,1,0,0,0,17,10a1,1,0,1,0,1.92-.38A1,1,0,0,0,18.71,9.29Z' - })); -}; - -UilKeyboardAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyboardAlt; \ No newline at end of file diff --git a/icons/uil-keyboard-hide.js b/icons/uil-keyboard-hide.js deleted file mode 100644 index 66932afa..00000000 --- a/icons/uil-keyboard-hide.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyboardHide = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.71,10.29a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.3-1.3A1,1,0,0,0,6.71,10.29ZM9.29,7.71A1,1,0,0,0,10,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76,1.15,1.15,0,0,0-.21-.33,1,1,0,0,0-1.42,0,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,9.29,7.71ZM6.71,6.29A1,1,0,0,0,5,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,6,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1.15,1.15,0,0,0,6.71,6.29Zm6.58,12L12,19.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l2-2a1,1,0,0,0-1.42-1.42Zm5.42-12A1,1,0,0,0,17,7a.84.84,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33,1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,19,7a1,1,0,0,0-.08-.38A1.15,1.15,0,0,0,18.71,6.29ZM14,10H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-8H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V5A3,3,0,0,0,20,2Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1Zm-2.29-2.71a1,1,0,0,0-.33-.21.92.92,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,17,11a1,1,0,1,0,1.92-.38A1,1,0,0,0,18.71,10.29ZM13.62,6.08a1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,13,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,14,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,15,7a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,13.62,6.08Z' - })); -}; - -UilKeyboardHide.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyboardHide; \ No newline at end of file diff --git a/icons/uil-keyboard-show.js b/icons/uil-keyboard-show.js deleted file mode 100644 index ed57be93..00000000 --- a/icons/uil-keyboard-show.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyboardShow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.71,10.29A1,1,0,0,0,5,11a1,1,0,1,0,1.92-.38A1,1,0,0,0,6.71,10.29ZM9.29,7.71A1,1,0,0,0,10,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,11,7a1.05,1.05,0,0,0-.29-.71l-.15-.12-.18-.09A.6.6,0,0,0,10.19,6a1,1,0,0,0-.9.27,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,9.29,7.71ZM6.56,6.17a.76.76,0,0,0-.18-.09L6.2,6a1,1,0,0,0-.91.27,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21A.84.84,0,0,0,6,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,7,7a1.05,1.05,0,0,0-.29-.71Zm6.15,12.12a1,1,0,0,0-1.42,0l-2,2a1,1,0,0,0,1.42,1.42L12,20.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6-8a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,19,11a.84.84,0,0,0-.08-.38A1,1,0,0,0,18.71,10.29ZM14,10H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-8H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V5A3,3,0,0,0,20,2Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1ZM17.62,6.08a.93.93,0,0,0-.33.21A1.05,1.05,0,0,0,17,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,18,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,19,7a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,17.62,6.08Zm-3.06.09-.18-.09L14.2,6a1,1,0,0,0-.58.06.93.93,0,0,0-.33.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,14,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,15,7a1.05,1.05,0,0,0-.29-.71Z' - })); -}; - -UilKeyboardShow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyboardShow; \ No newline at end of file diff --git a/icons/uil-keyboard.js b/icons/uil-keyboard.js deleted file mode 100644 index ec626be2..00000000 --- a/icons/uil-keyboard.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyboard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.21,13.29a.93.93,0,0,0-.33-.21,1,1,0,0,0-.76,0,.9.9,0,0,0-.54.54,1,1,0,1,0,1.84,0A1,1,0,0,0,6.21,13.29ZM13.5,11h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm-4,0h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm-3-2h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM20,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1Zm-6-3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm3.5-4h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm.71,4.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,.93.93,0,0,0-.33.21,1,1,0,0,0-.21.33A1,1,0,1,0,19.5,14a.84.84,0,0,0-.08-.38A1,1,0,0,0,19.21,13.29Z' - })); -}; - -UilKeyboard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyboard; \ No newline at end of file diff --git a/icons/uil-keyhole-circle.js b/icons/uil-keyhole-circle.js deleted file mode 100644 index c0b30231..00000000 --- a/icons/uil-keyhole-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyholeCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,8a2,2,0,0,0-2,2,2,2,0,0,0,1,1.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10,2,2,0,0,0,12,8Zm0-6A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilKeyholeCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyholeCircle; \ No newline at end of file diff --git a/icons/uil-keyhole-square-full.js b/icons/uil-keyhole-square-full.js deleted file mode 100644 index 80127185..00000000 --- a/icons/uil-keyhole-square-full.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyholeSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,11.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10a2,2,0,0,0-4,0A2,2,0,0,0,11,11.72ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilKeyholeSquareFull.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyholeSquareFull; \ No newline at end of file diff --git a/icons/uil-keyhole-square.js b/icons/uil-keyhole-square.js deleted file mode 100644 index 8bb4b875..00000000 --- a/icons/uil-keyhole-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKeyholeSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,8a2,2,0,0,0-2,2,2,2,0,0,0,1,1.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10,2,2,0,0,0,12,8Z' - })); -}; - -UilKeyholeSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKeyholeSquare; \ No newline at end of file diff --git a/icons/uil-kid.js b/icons/uil-kid.js deleted file mode 100644 index d06f4f2b..00000000 --- a/icons/uil-kid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilKid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,10a1,1,0,1,0-1,1A1,1,0,0,0,10,10Zm4.5,4.06a1,1,0,0,0-1.37.36,1.3,1.3,0,0,1-2.26,0,1,1,0,0,0-1.37-.36,1,1,0,0,0-.37,1.36,3.31,3.31,0,0,0,5.74,0A1,1,0,0,0,14.5,14.06ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18A8,8,0,0,1,9,4.57,3,3,0,0,0,9,5a3,3,0,0,0,3,3,1,1,0,0,0,0-2,1,1,0,0,1,0-2,8,8,0,0,1,0,16Z' - })); -}; - -UilKid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilKid; \ No newline at end of file diff --git a/icons/uil-label-alt.js b/icons/uil-label-alt.js deleted file mode 100644 index 75da7d0e..00000000 --- a/icons/uil-label-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLabelAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,12a1,1,0,1,0,1-1A1,1,0,0,0,15,12Zm6.71-.71-5-5A1,1,0,0,0,16,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H16a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM15.59,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H15.59l4,4Z' - })); -}; - -UilLabelAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLabelAlt; \ No newline at end of file diff --git a/icons/uil-label.js b/icons/uil-label.js deleted file mode 100644 index 95955ca6..00000000 --- a/icons/uil-label.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLabel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,11.29l-5-5A1,1,0,0,0,16,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H16a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM15.59,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H15.59l4,4Z' - })); -}; - -UilLabel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLabel; \ No newline at end of file diff --git a/icons/uil-lamp.js b/icons/uil-lamp.js deleted file mode 100644 index 1b1dd37a..00000000 --- a/icons/uil-lamp.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLamp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,2.78A1,1,0,0,0,17,2H7a1,1,0,0,0-1,.78l-2,9a1,1,0,0,0,.2.85A1,1,0,0,0,5,13H8.94A8.26,8.26,0,0,1,9,14a8.92,8.92,0,0,1-2.57,6.3A1,1,0,0,0,7.14,22h9.72a1,1,0,0,0,.71-1.7A8.92,8.92,0,0,1,15,14a8.26,8.26,0,0,1,.06-1H16v2a1,1,0,0,0,2,0V13h1a1,1,0,0,0,.78-.37,1,1,0,0,0,.2-.85ZM9.22,20A10.9,10.9,0,0,0,11,14c0-.33,0-.67-.05-1h2.1c0,.33-.05.67-.05,1a10.9,10.9,0,0,0,1.78,6Zm-3-9L7.8,4h8.4l1.55,7Z' - })); -}; - -UilLamp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLamp; \ No newline at end of file diff --git a/icons/uil-language.js b/icons/uil-language.js deleted file mode 100644 index 210445bc..00000000 --- a/icons/uil-language.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLanguage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.05566,12h-2a1,1,0,0,0,0,2v2H17.8714a2.96481,2.96481,0,0,0,.18426-1A2.99955,2.99955,0,0,0,12.458,13.50049a.99992.99992,0,1,0,1.73242.999A1.0009,1.0009,0,0,1,15.05566,14a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,2,1.0009,1.0009,0,0,1-.86523-.49951.99992.99992,0,1,0-1.73242.999A2.99955,2.99955,0,0,0,18.05566,19a2.96481,2.96481,0,0,0-.18426-1h1.18426v3a1,1,0,0,0,2,0V14a1,1,0,1,0,0-2ZM9.08594,11.24268a.99963.99963,0,1,0,1.93945-.48536L9.26855,3.72754a2.28044,2.28044,0,0,0-4.4248,0L3.08594,10.75732a.99963.99963,0,1,0,1.93945.48536L5.58618,9H8.52545ZM6.0863,7l.6969-2.78711a.29222.29222,0,0,1,.5459,0L8.02563,7Zm7.96936,0h1a1.001,1.001,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.001,1.001,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Z' - })); -}; - -UilLanguage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLanguage; \ No newline at end of file diff --git a/icons/uil-laptop-cloud.js b/icons/uil-laptop-cloud.js deleted file mode 100644 index 5189034c..00000000 --- a/icons/uil-laptop-cloud.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLaptopCloud = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.5,10H10a3,3,0,0,0,1.07-5.8,4,4,0,0,0-7.48,1A2.5,2.5,0,0,0,4.5,10Zm0-3a1,1,0,0,0,1-1,2,2,0,0,1,3.89-.64,1,1,0,0,0,.78.66A1,1,0,0,1,11,7a1,1,0,0,1-1,1H4.5a.5.5,0,0,1,0-1ZM21,16H20V9a3,3,0,0,0-3-3H16a1,1,0,0,0,0,2h1a1,1,0,0,1,1,1v7H6V13a1,1,0,0,0-2,0v3H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V17A1,1,0,0,0,21,16Zm-1,3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V18H20Z' - })); -}; - -UilLaptopCloud.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLaptopCloud; \ No newline at end of file diff --git a/icons/uil-laptop-connection.js b/icons/uil-laptop-connection.js deleted file mode 100644 index f82c098a..00000000 --- a/icons/uil-laptop-connection.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLaptopConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18H14.82A3,3,0,0,0,13,16.18V13h7a1,1,0,0,0,0-2H19V5a3,3,0,0,0-3-3H8A3,3,0,0,0,5,5v6H4a1,1,0,0,0,0,2h7v3.18A3,3,0,0,0,9.18,18H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM7,11V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1v6Zm5,9a1,1,0,1,1,1-1A1,1,0,0,1,12,20Z' - })); -}; - -UilLaptopConnection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLaptopConnection; \ No newline at end of file diff --git a/icons/uil-laptop.js b/icons/uil-laptop.js deleted file mode 100644 index 0b85044f..00000000 --- a/icons/uil-laptop.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLaptop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H20V7a3,3,0,0,0-3-3H7A3,3,0,0,0,4,7v7H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14ZM6,7A1,1,0,0,1,7,6H17a1,1,0,0,1,1,1v7H6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H20Z' - })); -}; - -UilLaptop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLaptop; \ No newline at end of file diff --git a/icons/uil-laughing.js b/icons/uil-laughing.js deleted file mode 100644 index 73dbb8de..00000000 --- a/icons/uil-laughing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLaughing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.16,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L14.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42Zm-5.08,0,1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21Zm5.28,2a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilLaughing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLaughing; \ No newline at end of file diff --git a/icons/uil-layer-group-slash.js b/icons/uil-layer-group-slash.js deleted file mode 100644 index f9f96a98..00000000 --- a/icons/uil-layer-group-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLayerGroupSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.26,5,12,4l7,4L15.85,9.83a1,1,0,0,0-.37,1.36,1,1,0,0,0,1.37.37L21.5,8.87a1,1,0,0,0,0-1.74l-9-5.2a1,1,0,0,0-1,0L9.26,3.23A1,1,0,0,0,8.89,4.6,1,1,0,0,0,10.26,5ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.54,6l-2,1.17a1,1,0,0,0,0,1.74l9,5.2a1,1,0,0,0,1,0l.1-.06,1.07,1.07-1.67,1L3.5,11.13a1,1,0,1,0-1,1.74l9,5.2a1,1,0,0,0,.5.13,1,1,0,0,0,.5-.13l2.63-1.52,1.07,1.07L12,20,3.5,15.13a1,1,0,0,0-1,1.74l9,5.2a1,1,0,0,0,1,0l5.17-3,2.62,2.63a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM5,8l1-.58,2.75,2.75Zm15.5,3.13-2.12,1.22a1,1,0,0,0,1,1.74l2.12-1.22a1,1,0,1,0-1-1.74Z' - })); -}; - -UilLayerGroupSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLayerGroupSlash; \ No newline at end of file diff --git a/icons/uil-layer-group.js b/icons/uil-layer-group.js deleted file mode 100644 index 931d5e69..00000000 --- a/icons/uil-layer-group.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLayerGroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.5,8.86l9,5.2a1,1,0,0,0,1,0l9-5.2A1,1,0,0,0,22,8a1,1,0,0,0-.5-.87l-9-5.19a1,1,0,0,0-1,0l-9,5.19A1,1,0,0,0,2,8,1,1,0,0,0,2.5,8.86ZM12,4l7,4-7,4L5,8Zm8.5,7.17L12,16,3.5,11.13a1,1,0,0,0-1.37.37,1,1,0,0,0,.37,1.36l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.36A1,1,0,0,0,20.5,11.13Zm0,4L12,20,3.5,15.13a1,1,0,0,0-1.37.37,1,1,0,0,0,.37,1.36l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.36A1,1,0,0,0,20.5,15.13Z' - })); -}; - -UilLayerGroup.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLayerGroup; \ No newline at end of file diff --git a/icons/uil-layers-alt.js b/icons/uil-layers-alt.js deleted file mode 100644 index 03e911bf..00000000 --- a/icons/uil-layers-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLayersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H9A1,1,0,0,0,8,3V7H6A1,1,0,0,0,5,8v4H3a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V19h4a1,1,0,0,0,1-1V16h4a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM10,20H4V14h6Zm5-3H12V13a1,1,0,0,0-1-1H7V9h8Zm5-3H17V8a1,1,0,0,0-1-1H10V4H20Z' - })); -}; - -UilLayersAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLayersAlt; \ No newline at end of file diff --git a/icons/uil-layers-slash.js b/icons/uil-layers-slash.js deleted file mode 100644 index c57041bb..00000000 --- a/icons/uil-layers-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLayersSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.49,13.94l-.34.2a1,1,0,0,0-.35,1.37,1,1,0,0,0,.86.49,1,1,0,0,0,.51-.14l.34-.2a1,1,0,0,0-1-1.72ZM11.65,6.36,12,6.15l7,4-1.76,1a1,1,0,0,0,.5,1.87,1,1,0,0,0,.5-.13l3.26-1.89a1,1,0,0,0,0-1.74l-9-5.19a1,1,0,0,0-1,0l-.85.49a1,1,0,0,0,1,1.74ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.93,7.34l-3.43,2a1,1,0,0,0,0,1.74l9,5.2a1.09,1.09,0,0,0,.5.13,1.13,1.13,0,0,0,.5-.13L14,15.4l1.45,1.46-3.44,2L3.5,13.93a1,1,0,0,0-1,1.74l9,5.2a1,1,0,0,0,1,0l4.41-2.55,3.38,3.39a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm8.29,12L5,10.19,7.4,8.81l5.12,5.13Z' - })); -}; - -UilLayersSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLayersSlash; \ No newline at end of file diff --git a/icons/uil-layers.js b/icons/uil-layers.js deleted file mode 100644 index 269028da..00000000 --- a/icons/uil-layers.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLayers = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.5,10.56l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,0-1.73l-9-5.2a1,1,0,0,0-1,0l-9,5.2a1,1,0,0,0,0,1.73ZM12,5.65l7,4-7,4.05L5,9.69Zm8.5,7.79L12,18.35,3.5,13.44a1,1,0,0,0-1.37.36,1,1,0,0,0,.37,1.37l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.37A1,1,0,0,0,20.5,13.44Z' - })); -}; - -UilLayers.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLayers; \ No newline at end of file diff --git a/icons/uil-left-arrow-from-left.js b/icons/uil-left-arrow-from-left.js deleted file mode 100644 index 2322d4ab..00000000 --- a/icons/uil-left-arrow-from-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeftArrowFromLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,11H5.41l2.3-2.29A1,1,0,1,0,6.29,7.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H17a1,1,0,0,0,0-2Zm4-7a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4Z' - })); -}; - -UilLeftArrowFromLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeftArrowFromLeft; \ No newline at end of file diff --git a/icons/uil-left-arrow-to-left.js b/icons/uil-left-arrow-to-left.js deleted file mode 100644 index e24e168d..00000000 --- a/icons/uil-left-arrow-to-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeftArrowToLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H9.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13H21a1,1,0,0,0,0-2ZM3,3A1,1,0,0,0,2,4V20a1,1,0,0,0,2,0V4A1,1,0,0,0,3,3Z' - })); -}; - -UilLeftArrowToLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeftArrowToLeft; \ No newline at end of file diff --git a/icons/uil-left-indent-alt.js b/icons/uil-left-indent-alt.js deleted file mode 100644 index 18386ae8..00000000 --- a/icons/uil-left-indent-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeftIndentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,5A1,1,0,0,0,8,6V18a1,1,0,0,0,2,0V6A1,1,0,0,0,9,5Zm4,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2ZM5.77,9.69a1,1,0,0,0-1.41-.13l-2,1.67a1,1,0,0,0,0,1.54l2,1.67a1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.41L4.56,12l1.08-.9A1,1,0,0,0,5.77,9.69ZM21,9H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilLeftIndentAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeftIndentAlt; \ No newline at end of file diff --git a/icons/uil-left-indent.js b/icons/uil-left-indent.js deleted file mode 100644 index b794ef45..00000000 --- a/icons/uil-left-indent.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeftIndent = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm0,4H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2ZM21.77,9.69a1,1,0,0,0-1.41-.12l-2,1.66a1,1,0,0,0,0,1.54l2,1.66a1,1,0,0,0,.64.24,1,1,0,0,0,.77-.36,1,1,0,0,0-.13-1.41L20.56,12l1.08-.9A1,1,0,0,0,21.77,9.69ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3,15H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Z' - })); -}; - -UilLeftIndent.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeftIndent; \ No newline at end of file diff --git a/icons/uil-left-to-right-text-direction.js b/icons/uil-left-to-right-text-direction.js deleted file mode 100644 index 655d3bd3..00000000 --- a/icons/uil-left-to-right-text-direction.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeftToRightTextDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.42,17.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L18.09,17H3.5a1,1,0,0,0,0,2H18.09l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,21.42,17.62ZM8.5,10v4a1,1,0,0,0,2,0V4h2V14a1,1,0,0,0,2,0V4h1a1,1,0,0,0,0-2h-7a4,4,0,0,0,0,8Zm0-6V8a2,2,0,0,1,0-4Z' - })); -}; - -UilLeftToRightTextDirection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeftToRightTextDirection; \ No newline at end of file diff --git a/icons/uil-left.js b/icons/uil-left.js deleted file mode 100644 index ce68dd13..00000000 --- a/icons/uil-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9.5H7.41l1.3-1.29A1,1,0,0,0,7.29,6.79l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L7.41,11.5H17a1,1,0,0,1,1,1v4a1,1,0,0,0,2,0v-4A3,3,0,0,0,17,9.5Z' - })); -}; - -UilLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLeft; \ No newline at end of file diff --git a/icons/uil-letter-chinese-a.js b/icons/uil-letter-chinese-a.js deleted file mode 100644 index 44047afe..00000000 --- a/icons/uil-letter-chinese-a.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLetterChineseA = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,5H13V4a1,1,0,0,0-2,0V5H4A1,1,0,0,0,4,7H15.88214a14.49252,14.49252,0,0,1-3.94067,7.95227A14.42561,14.42561,0,0,1,8.66406,9.67041a1.0002,1.0002,0,0,0-1.88867.65918,16.41412,16.41412,0,0,0,3.68012,5.95825,14.29858,14.29858,0,0,1-5.769,2.73511A1.00015,1.00015,0,0,0,4.89941,21a1.01758,1.01758,0,0,0,.21485-.023,16.297,16.297,0,0,0,6.831-3.31885A16.38746,16.38746,0,0,0,18.78711,20.977a1,1,0,0,0,.42578-1.9541,14.38226,14.38226,0,0,1-5.78955-2.73316A16.4802,16.4802,0,0,0,17.89233,7H20a1,1,0,0,0,0-2Z' - })); -}; - -UilLetterChineseA.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLetterChineseA; \ No newline at end of file diff --git a/icons/uil-letter-english-a.js b/icons/uil-letter-english-a.js deleted file mode 100644 index de568ef2..00000000 --- a/icons/uil-letter-english-a.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLetterEnglishA = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.97021,19.75732,15.34912,5.27246A2.9958,2.9958,0,0,0,12.43848,3h-.877A2.9958,2.9958,0,0,0,8.65088,5.27246L5.02979,19.75732a1.0001,1.0001,0,0,0,1.94042.48536L8.28082,15h7.43836l1.31061,5.24268a1.0001,1.0001,0,0,0,1.94042-.48536ZM8.78082,13l1.81049-7.24219A.99825.99825,0,0,1,11.56152,5h.877a.99825.99825,0,0,1,.97021.75781L15.21918,13Z' - })); -}; - -UilLetterEnglishA.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLetterEnglishA; \ No newline at end of file diff --git a/icons/uil-letter-hindi-a.js b/icons/uil-letter-hindi-a.js deleted file mode 100644 index b1c77aaa..00000000 --- a/icons/uil-letter-hindi-a.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLetterHindiA = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.022,3h-5a1,1,0,0,0,0,2h1.5v6H11.57208a4.95124,4.95124,0,0,0,1.02558-3A5,5,0,0,0,3.26758,5.5.99974.99974,0,1,0,4.999,6.5,3.00021,3.00021,0,1,1,7.59766,11a1,1,0,0,0,0,2A3,3,0,1,1,4.999,17.5a.99974.99974,0,0,0-1.73144,1A5,5,0,0,0,12.59766,16a4.95124,4.95124,0,0,0-1.02558-3H16.522v7a1,1,0,0,0,2,0V5h1.5a1,1,0,0,0,0-2Z' - })); -}; - -UilLetterHindiA.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLetterHindiA; \ No newline at end of file diff --git a/icons/uil-letter-japanese-a.js b/icons/uil-letter-japanese-a.js deleted file mode 100644 index cf39f8cd..00000000 --- a/icons/uil-letter-japanese-a.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLetterJapaneseA = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.47168,11.99707a4.86537,4.86537,0,0,0-4.00049-2.2038A5.59215,5.59215,0,0,0,16.34082,8.769a.9997.9997,0,1,0-1.94531.46192,3.55342,3.55342,0,0,1,.0827.60132,13.57729,13.57729,0,0,0-3.257.82189c.02252-1.20385.07678-2.40728.19672-3.60729l.03827-.38221a33.43522,33.43522,0,0,0,3.48224-.66418l.12011-.02979a1,1,0,1,0-.48047-1.9414l-.12207.03027c-.92163.23047-1.85565.40448-2.79394.5506l.15137-1.51056a1.00009,1.00009,0,0,0-1.99024-.19922L9.627,4.85962C8.69312,4.94336,7.75665,5,6.81836,5a1,1,0,0,0,0,2c.87054,0,1.7395-.04639,2.60681-.1142A46.66015,46.66015,0,0,0,9.222,11.58386c-.13421.07324-.26965.14209-.40264.21936a16.4074,16.4074,0,0,0-1.94922,1.31055l-.02246.01807a13.7396,13.7396,0,0,0-2.64844,2.70068,3.00419,3.00419,0,0,0,2.94629,4.71875A9.74034,9.74034,0,0,0,9.98328,19.5379a.99564.99564,0,0,0,1.82141-.70245c-.02423-.1452-.03534-.29193-.05811-.43732a13.83775,13.83775,0,0,0,1.314-1.15545,13.16694,13.16694,0,0,0,2.10168-2.729c.02289-.03949.04212-.0791.06445-.11865.118-.21057.22944-.422.33179-.63495.05383-.11108.1023-.22174.15155-.33282.05994-.13623.11719-.27222.17047-.40882.05646-.14361.10981-.28662.15845-.42968.03235-.09583.06055-.19123.08948-.28693.05133-.16882.10174-.3371.142-.50427l.005-.01776a3.01462,3.01462,0,0,1,2.46582,1.21972c1.01856,1.76709-.96289,4.977-4.417,7.15479a.99976.99976,0,1,0,1.0664,1.6914C19.88965,19.00977,22.07422,14.77734,20.47168,11.99707ZM6.7959,18.58252a1.00469,1.00469,0,0,1-.97949-1.57373,11.89343,11.89343,0,0,1,2.291-2.32275l.02637-.02149c.35388-.27692.742-.539,1.144-.793.0611,1.19537.17285,2.38684.32593,3.57489A8.18484,8.18484,0,0,1,6.7959,18.58252Zm7.32977-6.583a8.16646,8.16646,0,0,1-.31616.78137c-.0556.1189-.118.23774-.18018.35694q-.14419.27851-.3106.55432c-.08466.13953-.17188.27887-.26514.41742a11.48078,11.48078,0,0,1-1.40711,1.719c-.06982.06983-.14343.1333-.2146.201q-.16314-1.5975-.21124-3.20276a12.51276,12.51276,0,0,1,2.94-.93237C14.149,11.9295,14.13794,11.96436,14.12567,11.99951Z' - })); -}; - -UilLetterJapaneseA.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLetterJapaneseA; \ No newline at end of file diff --git a/icons/uil-life-ring.js b/icons/uil-life-ring.js deleted file mode 100644 index d9f8b4ad..00000000 --- a/icons/uil-life-ring.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLifeRing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,11.05c0-.11,0-.22,0-.33l-.09-.6-.09-.39c0-.17-.08-.34-.13-.51s-.08-.27-.13-.4a2.17,2.17,0,0,1-.07-.24s0,0,0-.05a10.1,10.1,0,0,0-5.9-5.9s0,0-.05,0l-.23-.07-.42-.13c-.15,0-.31-.08-.46-.12l-.46-.1-.46-.07c-.16,0-.31,0-.48-.06s-.35,0-.52,0L12,2l-.39,0c-.17,0-.35,0-.52,0s-.32,0-.48.06l-.46.07-.46.1c-.15,0-.31.07-.46.12l-.42.13-.23.07s0,0-.05,0a10.1,10.1,0,0,0-5.9,5.9s0,0,0,.05a2.17,2.17,0,0,1-.07.24c0,.13-.09.26-.13.4s-.09.34-.13.51l-.09.39-.09.6c0,.11,0,.22,0,.33,0,.31,0,.63,0,.95s0,.64,0,.95c0,.11,0,.22,0,.33l.09.6.09.39c0,.17.08.34.13.51s.08.27.13.4a2.17,2.17,0,0,1,.07.24.43.43,0,0,1,0,.07,10,10,0,0,0,5.89,5.88s0,0,.05,0l.24.07.4.13.51.13.39.09.6.09.33,0c.31,0,.63.05.95.05s.64,0,.95-.05l.33,0,.6-.09.39-.09.51-.13.4-.13.24-.07s0,0,.05,0a10,10,0,0,0,5.89-5.88.43.43,0,0,1,0-.07c0-.08.05-.16.07-.24s.09-.26.13-.4.09-.34.13-.51l.09-.39.09-.6c0-.11,0-.22,0-.33,0-.31.05-.63.05-.95S22,11.36,22,11.05Zm-6.3-6.16a8,8,0,0,1,3.46,3.46l-2.86,1a5.14,5.14,0,0,0-1.64-1.64Zm-5.36-.7c.21-.05.41-.08.61-.11l.24,0a8.24,8.24,0,0,1,1.72,0l.24,0c.2,0,.4.06.61.11h.06l-1,2.86A4.49,4.49,0,0,0,12,7a4.4,4.4,0,0,0-.73.06l-1-2.86Zm-1.94.7,1,2.86A5.14,5.14,0,0,0,7.75,9.39l-2.86-1A8,8,0,0,1,8.35,4.89ZM4.19,13.71a4.17,4.17,0,0,1-.1-.6c0-.09,0-.17,0-.25a7.42,7.42,0,0,1,0-1.72c0-.08,0-.16,0-.25a4.17,4.17,0,0,1,.1-.6s0,0,0-.06l2.86,1a4.47,4.47,0,0,0,0,1.46l-2.86,1S4.19,13.73,4.19,13.71Zm4.16,5.4a8,8,0,0,1-3.46-3.46l2.86-1a5.14,5.14,0,0,0,1.64,1.64Zm5.36.7c-.21.05-.41.08-.61.11l-.24,0a8.24,8.24,0,0,1-1.72,0l-.24,0c-.2,0-.4-.06-.61-.11h-.06l1-2.86a4.47,4.47,0,0,0,1.46,0l1,2.86Zm-.67-5h0c-.17.06-.34.1-.5.14a2.73,2.73,0,0,1-1,0c-.16,0-.33-.08-.5-.14h0A3,3,0,0,1,9.2,13v0a3.23,3.23,0,0,1-.14-.51,2.63,2.63,0,0,1,0-1A3.23,3.23,0,0,1,9.19,11v0A3,3,0,0,1,11,9.2h0c.17-.06.34-.1.5-.14a2.73,2.73,0,0,1,1,0c.16,0,.33.08.5.14h0A3,3,0,0,1,14.8,11v0a3.23,3.23,0,0,1,.14.51,2.63,2.63,0,0,1,0,1,3.23,3.23,0,0,1-.14.51v0A3,3,0,0,1,13,14.8Zm2.61,4.31-1-2.86a5.14,5.14,0,0,0,1.64-1.64l2.86,1A8,8,0,0,1,15.65,19.11ZM20,12.86c0,.08,0,.16,0,.25a4.17,4.17,0,0,1-.1.6s0,0,0,.06l-2.86-1a4.47,4.47,0,0,0,0-1.46l2.86-1s0,0,0,.06a4.17,4.17,0,0,1,.1.6c0,.09,0,.17,0,.25a7.42,7.42,0,0,1,0,1.72Z' - })); -}; - -UilLifeRing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLifeRing; \ No newline at end of file diff --git a/icons/uil-lightbulb-alt.js b/icons/uil-lightbulb-alt.js deleted file mode 100644 index f8328543..00000000 --- a/icons/uil-lightbulb-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLightbulbAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.09,2.82a8,8,0,0,0-6.68-1.66A8,8,0,0,0,4.14,7.48a8.07,8.07,0,0,0,1.72,6.65A4.54,4.54,0,0,1,7,17v3a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V17.19A5.17,5.17,0,0,1,18.22,14a8,8,0,0,0-1.13-11.2ZM15,20a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V19h6Zm1.67-7.24A7.13,7.13,0,0,0,15,17H13V14a1,1,0,0,0-2,0v3H9a6.5,6.5,0,0,0-1.6-4.16,6,6,0,0,1,3.39-9.72A6,6,0,0,1,18,9,5.89,5.89,0,0,1,16.67,12.76Z' - })); -}; - -UilLightbulbAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLightbulbAlt; \ No newline at end of file diff --git a/icons/uil-lightbulb.js b/icons/uil-lightbulb.js deleted file mode 100644 index 42851eca..00000000 --- a/icons/uil-lightbulb.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLightbulb = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.45,12.46a7,7,0,0,0-1-9.83,7.09,7.09,0,0,0-5.92-1.4,7,7,0,0,0-4,11.15,4.76,4.76,0,0,1,1.08,2.86v.29A2,2,0,0,0,7,16.93v2a2,2,0,0,0,2,2v1a1,1,0,0,0,2,0v-1h2v1a1,1,0,0,0,2,0v-1a2,2,0,0,0,2-2v-2a2,2,0,0,0-.57-1.4V15.1A4.26,4.26,0,0,1,17.45,12.46ZM9,18.93v-2h6v2Zm6.89-7.72a6.18,6.18,0,0,0-1.46,3.72H9.56a6.67,6.67,0,0,0-1.5-3.78,5,5,0,0,1,2.84-8A5,5,0,0,1,17,8.07,4.92,4.92,0,0,1,15.89,11.21Z' - })); -}; - -UilLightbulb.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLightbulb; \ No newline at end of file diff --git a/icons/uil-line-alt.js b/icons/uil-line-alt.js deleted file mode 100644 index 2ae4b8df..00000000 --- a/icons/uil-line-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLineAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,3.29a1,1,0,0,0-1.42,0l-18,18a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l18-18A1,1,0,0,0,21.71,3.29Z' - })); -}; - -UilLineAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLineAlt; \ No newline at end of file diff --git a/icons/uil-line-spacing.js b/icons/uil-line-spacing.js deleted file mode 100644 index b4855c3b..00000000 --- a/icons/uil-line-spacing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLineSpacing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.29,9.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2-2a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2A1,1,0,0,0,3.71,9.71L4,9.41v5.18l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42l-.29.3V9.41ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,3H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilLineSpacing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLineSpacing; \ No newline at end of file diff --git a/icons/uil-line.js b/icons/uil-line.js deleted file mode 100644 index 14f8aca6..00000000 --- a/icons/uil-line.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.78,9.46h0a.38.38,0,0,0-.38.38v1.67L12,9.65a.4.4,0,0,0-.33-.19h0a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38h0a.38.38,0,0,0,.38-.38V11l1.39,1.91,0,0h0a.27.27,0,0,0,.15.11.32.32,0,0,0,.14,0h0A.33.33,0,0,0,14,13l.1-.07h0a.39.39,0,0,0,.11-.27V9.84A.38.38,0,0,0,13.78,9.46ZM9.2,12.27H8.14V9.84a.38.38,0,0,0-.38-.38h0a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38H9.2a.39.39,0,0,0,.39-.38v0A.39.39,0,0,0,9.2,12.27Zm1.11-2.81h0a.39.39,0,0,0-.39.38v2.84a.39.39,0,0,0,.39.38h0a.38.38,0,0,0,.38-.38V9.84A.38.38,0,0,0,10.31,9.46ZM17.91,2H6.09A4.1,4.1,0,0,0,2,6.09V17.91A4.1,4.1,0,0,0,6.09,22H17.91A4.1,4.1,0,0,0,22,17.91V6.09A4.1,4.1,0,0,0,17.91,2Zm.31,12.28a1.55,1.55,0,0,1-.13.17h0a5.5,5.5,0,0,1-.8.8c-2,1.87-5.36,4.11-5.81,3.76s.64-1.76-.53-2a1,1,0,0,1-.25,0h0c-3.44-.48-6-2.89-6-5.78,0-3.25,3.29-5.88,7.34-5.88s7.34,2.63,7.34,5.88A5,5,0,0,1,18.22,14.28ZM16.51,9.47H15a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38h1.48a.38.38,0,0,0,.38-.38v0a.38.38,0,0,0-.38-.38H15.45v-.6h1.06a.39.39,0,0,0,.38-.39v0a.38.38,0,0,0-.38-.38H15.45v-.61h1.06a.38.38,0,0,0,.38-.38v0A.38.38,0,0,0,16.51,9.47Z' - })); -}; - -UilLine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLine; \ No newline at end of file diff --git a/icons/uil-link-add.js b/icons/uil-link-add.js deleted file mode 100644 index f91907de..00000000 --- a/icons/uil-link-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm12.11 15.39-3.88 3.88a2.47 2.47 0 0 1-3.5 0 2.46 2.46 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42Zm-3.28-.22a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42ZM21 18h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Zm-4.19-4.47 3.88-3.89a4.48 4.48 0 0 0-6.33-6.33l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.47 2.47 0 0 1 3.5 0 2.46 2.46 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0Z' - })); -}; - -UilLinkAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkAdd; \ No newline at end of file diff --git a/icons/uil-link-alt.js b/icons/uil-link-alt.js deleted file mode 100644 index b7d64745..00000000 --- a/icons/uil-link-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.11,15.39,8.23,19.27a2.52,2.52,0,0,1-3.5,0,2.47,2.47,0,0,1,0-3.5l3.88-3.88a1,1,0,1,0-1.42-1.42L3.31,14.36a4.48,4.48,0,0,0,6.33,6.33l3.89-3.88a1,1,0,0,0-1.42-1.42ZM20.69,3.31a4.49,4.49,0,0,0-6.33,0L10.47,7.19a1,1,0,1,0,1.42,1.42l3.88-3.88a2.52,2.52,0,0,1,3.5,0,2.47,2.47,0,0,1,0,3.5l-3.88,3.88a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3.88-3.89A4.49,4.49,0,0,0,20.69,3.31ZM8.83,15.17a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l4.92-4.92a1,1,0,1,0-1.42-1.42L8.83,13.75A1,1,0,0,0,8.83,15.17Z' - })); -}; - -UilLinkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkAlt; \ No newline at end of file diff --git a/icons/uil-link-broken.js b/icons/uil-link-broken.js deleted file mode 100644 index 184346cb..00000000 --- a/icons/uil-link-broken.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkBroken = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.76,10.59a1,1,0,0,0,.26-2L3.26,8.15a1,1,0,1,0-.52,1.93l1.76.47A.78.78,0,0,0,4.76,10.59ZM8.62,5a1,1,0,0,0,1,.74.82.82,0,0,0,.26,0,1,1,0,0,0,.7-1.22l-.47-1.76a1,1,0,1,0-1.93.52Zm4.83,10A1,1,0,0,0,12,15L8.5,18.56a2.21,2.21,0,0,1-3.06,0,2.15,2.15,0,0,1,0-3.06L9,12a1,1,0,1,0-1.41-1.41L4,14.08A4.17,4.17,0,1,0,9.92,20l3.53-3.53A1,1,0,0,0,13.45,15ZM5.18,6.59a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41L5.3,3.89A1,1,0,0,0,3.89,5.3Zm16.08,7.33-1.76-.47A1,1,0,1,0,19,15.38l1.76.47.26,0a1,1,0,0,0,.26-2ZM15.38,19a1,1,0,0,0-1.23-.7,1,1,0,0,0-.7,1.22l.47,1.76a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,.71-1.23Zm3.44-1.57a1,1,0,0,0-1.41,1.41l1.29,1.29a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM21.2,7A4.16,4.16,0,0,0,14.08,4L10.55,7.56A1,1,0,1,0,12,9L15.5,5.44a2.21,2.21,0,0,1,3.06,0,2.15,2.15,0,0,1,0,3.06L15,12a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L20,9.92A4.19,4.19,0,0,0,21.2,7Z' - })); -}; - -UilLinkBroken.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkBroken; \ No newline at end of file diff --git a/icons/uil-link-h.js b/icons/uil-link-h.js deleted file mode 100644 index 1dc6da5a..00000000 --- a/icons/uil-link-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,12a1,1,0,0,0,1,1h6a1,1,0,0,0,0-2H9A1,1,0,0,0,8,12Zm2,3H7A3,3,0,0,1,7,9h3a1,1,0,0,0,0-2H7A5,5,0,0,0,7,17h3a1,1,0,0,0,0-2Zm7-8H14a1,1,0,0,0,0,2h3a3,3,0,0,1,0,6H14a1,1,0,0,0,0,2h3A5,5,0,0,0,17,7Z' - })); -}; - -UilLinkH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkH; \ No newline at end of file diff --git a/icons/uil-link.js b/icons/uil-link.js deleted file mode 100644 index 1610e3e5..00000000 --- a/icons/uil-link.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLink = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,17.55,8.23,19.27a2.47,2.47,0,0,1-3.5-3.5l4.54-4.55a2.46,2.46,0,0,1,3.39-.09l.12.1a1,1,0,0,0,1.4-1.43A2.75,2.75,0,0,0,14,9.59a4.46,4.46,0,0,0-6.09.22L3.31,14.36a4.48,4.48,0,0,0,6.33,6.33L11.37,19A1,1,0,0,0,10,17.55ZM20.69,3.31a4.49,4.49,0,0,0-6.33,0L12.63,5A1,1,0,0,0,14,6.45l1.73-1.72a2.47,2.47,0,0,1,3.5,3.5l-4.54,4.55a2.46,2.46,0,0,1-3.39.09l-.12-.1a1,1,0,0,0-1.4,1.43,2.75,2.75,0,0,0,.23.21,4.47,4.47,0,0,0,6.09-.22l4.55-4.55A4.49,4.49,0,0,0,20.69,3.31Z' - })); -}; - -UilLink.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLink; \ No newline at end of file diff --git a/icons/uil-linkedin-alt.js b/icons/uil-linkedin-alt.js deleted file mode 100644 index 498c016c..00000000 --- a/icons/uil-linkedin-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkedinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.5,8.999a5.41868,5.41868,0,0,0-2.56543.64453A.99918.99918,0,0,0,14,8.999H10a.99943.99943,0,0,0-1,1v12a.99942.99942,0,0,0,1,1h4a.99942.99942,0,0,0,1-1v-5.5a1,1,0,1,1,2,0v5.5a.99942.99942,0,0,0,1,1h4a.99942.99942,0,0,0,1-1v-7.5A5.50685,5.50685,0,0,0,17.5,8.999Zm3.5,12H19v-4.5a3,3,0,1,0-6,0v4.5H11v-10h2v.70313a1.00048,1.00048,0,0,0,1.78125.625A3.48258,3.48258,0,0,1,21,14.499Zm-14-12H3a.99943.99943,0,0,0-1,1v12a.99942.99942,0,0,0,1,1H7a.99942.99942,0,0,0,1-1v-12A.99943.99943,0,0,0,7,8.999Zm-1,12H4v-10H6ZM5.01465,1.542A3.23283,3.23283,0,1,0,4.958,7.999h.02832a3.23341,3.23341,0,1,0,.02832-6.457ZM4.98633,5.999H4.958A1.22193,1.22193,0,0,1,3.58887,4.77051c0-.7461.55957-1.22852,1.42578-1.22852A1.2335,1.2335,0,0,1,6.41113,4.77051C6.41113,5.5166,5.85156,5.999,4.98633,5.999Z' - })); -}; - -UilLinkedinAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkedinAlt; \ No newline at end of file diff --git a/icons/uil-linkedin.js b/icons/uil-linkedin.js deleted file mode 100644 index 4a1e0167..00000000 --- a/icons/uil-linkedin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinkedin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.47,2H3.53A1.45,1.45,0,0,0,2.06,3.43V20.57A1.45,1.45,0,0,0,3.53,22H20.47a1.45,1.45,0,0,0,1.47-1.43V3.43A1.45,1.45,0,0,0,20.47,2ZM8.09,18.74h-3v-9h3ZM6.59,8.48h0a1.56,1.56,0,1,1,0-3.12,1.57,1.57,0,1,1,0,3.12ZM18.91,18.74h-3V13.91c0-1.21-.43-2-1.52-2A1.65,1.65,0,0,0,12.85,13a2,2,0,0,0-.1.73v5h-3s0-8.18,0-9h3V11A3,3,0,0,1,15.46,9.5c2,0,3.45,1.29,3.45,4.06Z' - })); -}; - -UilLinkedin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinkedin; \ No newline at end of file diff --git a/icons/uil-linux.js b/icons/uil-linux.js deleted file mode 100644 index d4f4eba6..00000000 --- a/icons/uil-linux.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLinux = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.7 17.6c-.1-.2-.2-.4-.2-.6 0-.4-.2-.7-.5-1-.1-.1-.3-.2-.4-.2.6-1.8-.3-3.6-1.3-4.9-.8-1.2-2-2.1-1.9-3.7 0-1.9.2-5.4-3.3-5.1-3.6.2-2.6 3.9-2.7 5.2 0 1.1-.5 2.2-1.3 3.1-.2.2-.4.5-.5.7-1 1.2-1.5 2.8-1.5 4.3-.2.2-.4.4-.5.6-.1.1-.2.2-.2.3-.1.1-.3.2-.5.3-.4.1-.7.3-.9.7-.1.3-.2.7-.1 1.1.1.2.1.4 0 .7-.2.4-.2.9 0 1.4.3.4.8.5 1.5.6.5 0 1.1.2 1.6.4.5.3 1.1.5 1.7.5.3 0 .7-.1 1-.2.3-.2.5-.4.6-.7.4 0 1-.2 1.7-.2.6 0 1.2.2 2 .1 0 .1 0 .2.1.3.2.5.7.9 1.3 1h.2c.8-.1 1.6-.5 2.1-1.1.4-.4.9-.7 1.4-.9.6-.3 1-.5 1.1-1 .1-.7-.1-1.1-.5-1.7zM12.8 4.8c.6.1 1.1.6 1 1.2 0 .3-.1.6-.3.9h-.1c-.2-.1-.3-.1-.4-.2.1-.1.1-.3.2-.5 0-.4-.2-.7-.4-.7-.3 0-.5.3-.5.7v.1c-.1-.1-.3-.1-.4-.2V6c-.1-.5.3-1.1.9-1.2zm-.3 2c.1.1.3.2.4.2.1 0 .3.1.4.2.2.1.4.2.4.5s-.3.6-.9.8c-.2.1-.3.1-.4.2-.3.2-.6.3-1 .3-.3 0-.6-.2-.8-.4-.1-.1-.2-.2-.4-.3-.1-.1-.3-.3-.4-.6 0-.1.1-.2.2-.3.3-.2.4-.3.5-.4l.1-.1c.2-.3.6-.5 1-.5.3.1.6.2.9.4zM10.4 5c.4 0 .7.4.8 1.1v.2c-.1 0-.3.1-.4.2v-.2c0-.3-.2-.6-.4-.5-.2 0-.3.3-.3.6 0 .2.1.3.2.4 0 0-.1.1-.2.1-.2-.2-.4-.5-.4-.8 0-.6.3-1.1.7-1.1zm-1 16.1c-.7.3-1.6.2-2.2-.2-.6-.3-1.1-.4-1.8-.4-.5-.1-1-.1-1.1-.3-.1-.2-.1-.5.1-1 .1-.3.1-.6 0-.9-.1-.3-.1-.5 0-.8.1-.3.3-.4.6-.5.3-.1.5-.2.7-.4.1-.1.2-.2.3-.4.3-.4.5-.6.8-.6.6.1 1.1 1 1.5 1.9.2.3.4.7.7 1 .4.5.9 1.2.9 1.6 0 .5-.2.8-.5 1zm4.9-2.2c0 .1 0 .1-.1.2-1.2.9-2.8 1-4.1.3l-.6-.9c.9-.1.7-1.3-1.2-2.5-2-1.3-.6-3.7.1-4.8.1-.1.1 0-.3.8-.3.6-.9 2.1-.1 3.2 0-.8.2-1.6.5-2.4.7-1.3 1.2-2.8 1.5-4.3.1.1.1.1.2.1.1.1.2.2.3.2.2.3.6.4.9.4h.1c.4 0 .8-.1 1.1-.4.1-.1.2-.2.4-.2.3-.1.6-.3.9-.6.4 1.3.8 2.5 1.4 3.6.4.8.7 1.6.9 2.5.3 0 .7.1 1 .3.8.4 1.1.7 1 1.2H18c0-.3-.2-.6-.9-.9-.7-.3-1.3-.3-1.5.4-.1 0-.2.1-.3.1-.8.4-.8 1.5-.9 2.6.1.4 0 .7-.1 1.1zm4.6.6c-.6.2-1.1.6-1.5 1.1-.4.6-1.1 1-1.9.9-.4 0-.8-.3-.9-.7-.1-.6-.1-1.2.2-1.8.1-.4.2-.7.3-1.1.1-1.2.1-1.9.6-2.2 0 .5.3.8.7 1 .5 0 1-.1 1.4-.5h.2c.3 0 .5 0 .7.2.2.2.3.5.3.7 0 .3.2.6.3.9.5.5.5.8.5.9-.1.2-.5.4-.9.6zm-9-12c-.1 0-.1 0-.1.1 0 0 0 .1.1.1s.1.1.1.1c.3.4.8.6 1.4.7.5-.1 1-.2 1.5-.6l.6-.3c.1 0 .1-.1.1-.1 0-.1 0-.1-.1-.1-.2.1-.5.2-.7.3-.4.3-.9.5-1.4.5-.5 0-.9-.3-1.2-.6-.1 0-.2-.1-.3-.1z' - })); -}; - -UilLinux.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLinux; \ No newline at end of file diff --git a/icons/uil-lira-sign.js b/icons/uil-lira-sign.js deleted file mode 100644 index 13cc579d..00000000 --- a/icons/uil-lira-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLiraSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,12a1,1,0,0,0-1,1,7.00787,7.00787,0,0,1-7,7V11.13538l5.2168-1.15931a.99986.99986,0,0,0-.4336-1.95214L10,9.08685V7.13538l5.2168-1.15931a.99986.99986,0,1,0-.4336-1.95214L10,5.08685V3A1,1,0,0,0,8,3V5.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,7.57983V9.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,11.57983V21a1,1,0,0,0,1,1h1a9.01047,9.01047,0,0,0,9-9A1,1,0,0,0,18,12Z' - })); -}; - -UilLiraSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLiraSign; \ No newline at end of file diff --git a/icons/uil-list-ol-alt.js b/icons/uil-list-ol-alt.js deleted file mode 100644 index e3e00d39..00000000 --- a/icons/uil-list-ol-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilListOlAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7 20H4v-.1c0-.5.4-.9.9-.9 1.4 0 2.6-.9 3-2.2.4-1.6-.5-3.3-2.1-3.7-1.3-.4-2.7.2-3.4 1.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.3-.5.9-.6 1.4-.3.1.1.2.1.2.2.2.3.2.6.2.9-.2.4-.6.7-1 .7-1.7 0-3 1.3-3 2.9V21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zM7 9H6V3c0-.6-.4-1-1-1s-1 .4-1 1v1H3c-.6 0-1 .4-1 1s.4 1 1 1h1v3H3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm4-3h10c.6 0 1-.4 1-1s-.4-1-1-1H11c-.6 0-1 .4-1 1s.4 1 1 1zm10 14H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1zm0-11H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1zm0 6H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1z' - })); -}; - -UilListOlAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilListOlAlt; \ No newline at end of file diff --git a/icons/uil-list-ol.js b/icons/uil-list-ol.js deleted file mode 100644 index b5407d76..00000000 --- a/icons/uil-list-ol.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilListOl = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7 20H4v-.1c0-.5.4-.9.9-.9 1.4 0 2.6-.9 3-2.2.4-1.6-.5-3.3-2.1-3.7-1.3-.4-2.7.2-3.4 1.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.3-.5.9-.6 1.4-.3.1.1.2.1.2.2.2.3.2.6.2.9-.2.4-.6.7-1 .7-1.7 0-3 1.3-3 2.9V21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm4-13h10c.6 0 1-.4 1-1s-.4-1-1-1H11c-.6 0-1 .4-1 1s.4 1 1 1zM7 9H6V3c0-.6-.4-1-1-1s-1 .4-1 1v1H3c-.6 0-1 .4-1 1s.4 1 1 1h1v3H3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm14 7H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1z' - })); -}; - -UilListOl.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilListOl; \ No newline at end of file diff --git a/icons/uil-list-ui-alt.js b/icons/uil-list-ui-alt.js deleted file mode 100644 index 76c8db5c..00000000 --- a/icons/uil-list-ui-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilListUiAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.5,6a1,1,0,1,0,1,1A1,1,0,0,0,3.5,6Zm4,2h14a1,1,0,0,0,0-2H7.5a1,1,0,0,0,0,2Zm0,3a1,1,0,1,0,1,1A1,1,0,0,0,7.5,11Zm4,5a1,1,0,1,0,1,1A1,1,0,0,0,11.5,16Zm10-5h-10a1,1,0,0,0,0,2h10a1,1,0,0,0,0-2Zm0,5h-6a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilListUiAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilListUiAlt; \ No newline at end of file diff --git a/icons/uil-list-ul.js b/icons/uil-list-ul.js deleted file mode 100644 index 906a5fa2..00000000 --- a/icons/uil-list-ul.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilListUl = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.71,16.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1,1,0,0,0,3.71,16.29ZM7,8H21a1,1,0,0,0,0-2H7A1,1,0,0,0,7,8ZM3.71,11.29a1,1,0,0,0-1.09-.21,1.15,1.15,0,0,0-.33.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,3.71,11.29ZM21,11H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.09-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1.15,1.15,0,0,0,3.71,6.29ZM21,16H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilListUl.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilListUl; \ No newline at end of file diff --git a/icons/uil-location-arrow-alt.js b/icons/uil-location-arrow-alt.js deleted file mode 100644 index e26dd1d8..00000000 --- a/icons/uil-location-arrow-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLocationArrowAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.68,17.65l-7-14a3,3,0,0,0-5.36,0l-7,14a3,3,0,0,0,3.9,4.08l5.37-2.4h0a1.06,1.06,0,0,1,.82,0l5.37,2.4a3,3,0,0,0,3.9-4.08Zm-2,2a1,1,0,0,1-1.13.22l-5.37-2.39a3,3,0,0,0-2.44,0L5.41,19.9a1,1,0,0,1-1.3-1.35l7-14a1,1,0,0,1,1.78,0l7,14A1,1,0,0,1,19.72,19.68Z' - })); -}; - -UilLocationArrowAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLocationArrowAlt; \ No newline at end of file diff --git a/icons/uil-location-arrow.js b/icons/uil-location-arrow.js deleted file mode 100644 index 24d474a7..00000000 --- a/icons/uil-location-arrow.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLocationArrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.15,2.86a2.89,2.89,0,0,0-3-.71L4,6.88a2.9,2.9,0,0,0-.12,5.47l5.24,2h0a.93.93,0,0,1,.53.52l2,5.25A2.87,2.87,0,0,0,14.36,22h.07a2.88,2.88,0,0,0,2.69-2L21.85,5.83A2.89,2.89,0,0,0,21.15,2.86ZM20,5.2,15.22,19.38a.88.88,0,0,1-.84.62.92.92,0,0,1-.87-.58l-2-5.25a2.91,2.91,0,0,0-1.67-1.68l-5.25-2A.9.9,0,0,1,4,9.62a.88.88,0,0,1,.62-.84L18.8,4.05A.91.91,0,0,1,20,5.2Z' - })); -}; - -UilLocationArrow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLocationArrow; \ No newline at end of file diff --git a/icons/uil-location-pin-alt.js b/icons/uil-location-pin-alt.js deleted file mode 100644 index f03fb80b..00000000 --- a/icons/uil-location-pin-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLocationPinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10.8a2,2,0,1,0-2-2A2,2,0,0,0,12,10.8Zm-.71,6.91a1,1,0,0,0,1.42,0l4.09-4.1a6.79,6.79,0,1,0-9.6,0ZM7.23,8.34A4.81,4.81,0,0,1,9.36,4.79a4.81,4.81,0,0,1,5.28,0,4.82,4.82,0,0,1,.75,7.41L12,15.59,8.61,12.2A4.77,4.77,0,0,1,7.23,8.34ZM19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' - })); -}; - -UilLocationPinAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLocationPinAlt; \ No newline at end of file diff --git a/icons/uil-location-point.js b/icons/uil-location-point.js deleted file mode 100644 index 7945c0a3..00000000 --- a/icons/uil-location-point.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLocationPoint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,4.48a8.45,8.45,0,0,0-12,12l5.27,5.28a1,1,0,0,0,1.42,0L18,16.43A8.45,8.45,0,0,0,18,4.48ZM16.57,15,12,19.59,7.43,15a6.46,6.46,0,1,1,9.14,0ZM9,7.41a4.32,4.32,0,0,0,0,6.1,4.31,4.31,0,0,0,7.36-3,4.24,4.24,0,0,0-1.26-3.05A4.3,4.3,0,0,0,9,7.41Zm4.69,4.68a2.33,2.33,0,1,1,.67-1.63A2.33,2.33,0,0,1,13.64,12.09Z' - })); -}; - -UilLocationPoint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLocationPoint; \ No newline at end of file diff --git a/icons/uil-lock-access.js b/icons/uil-lock-access.js deleted file mode 100644 index 8362d0ab..00000000 --- a/icons/uil-lock-access.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLockAccess = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H15a1,1,0,0,0,0,2h5V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2Zm0,12a1,1,0,0,0-1,1v5H15a1,1,0,0,0,0,2h6a1,1,0,0,0,1-1V15A1,1,0,0,0,21,14ZM12,6A3,3,0,0,0,9,9v1a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12a2,2,0,0,0-2-2V9A3,3,0,0,0,12,6ZM11,9a1,1,0,0,1,2,0v1H11Zm4,7H9V12h6ZM3,10A1,1,0,0,0,4,9V4H9A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V9A1,1,0,0,0,3,10ZM9,20H4V15a1,1,0,0,0-2,0v6a1,1,0,0,0,1,1H9a1,1,0,0,0,0-2Z' - })); -}; - -UilLockAccess.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLockAccess; \ No newline at end of file diff --git a/icons/uil-lock-alt.js b/icons/uil-lock-alt.js deleted file mode 100644 index 145b8ab8..00000000 --- a/icons/uil-lock-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V14A1,1,0,0,0,12,13Zm5-4V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilLockAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLockAlt; \ No newline at end of file diff --git a/icons/uil-lock-open-alt.js b/icons/uil-lock-open-alt.js deleted file mode 100644 index d49fe14f..00000000 --- a/icons/uil-lock-open-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLockOpenAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13a1.49,1.49,0,0,0-1,2.61V17a1,1,0,0,0,2,0V15.61A1.49,1.49,0,0,0,12,13Zm5-4H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilLockOpenAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLockOpenAlt; \ No newline at end of file diff --git a/icons/uil-lock-slash.js b/icons/uil-lock-slash.js deleted file mode 100644 index 8fe7fc71..00000000 --- a/icons/uil-lock-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLockSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.84,5.38a2,2,0,0,1,2.57.21A2,2,0,0,1,14,7v3a1,1,0,0,0,1,1h1a1,1,0,0,1,1,1v.34a1,1,0,0,0,2,0V12a3,3,0,0,0-3-3V7a4,4,0,0,0-1.17-2.83,4.06,4.06,0,0,0-5.19-.39,1,1,0,1,0,1.2,1.6ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L7.62,9A3,3,0,0,0,5,12v6a3,3,0,0,0,3,3h8a3,3,0,0,0,2.39-1.2l1.9,1.91a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM16,19H8a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H9.59l2.07,2.07A1,1,0,0,0,11,14v2a1,1,0,0,0,2,0V14.41l3.93,3.93A1,1,0,0,1,16,19Z' - })); -}; - -UilLockSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLockSlash; \ No newline at end of file diff --git a/icons/uil-lock.js b/icons/uil-lock.js deleted file mode 100644 index bffc3e10..00000000 --- a/icons/uil-lock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilLock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLock; \ No newline at end of file diff --git a/icons/uil-lottiefiles-alt.js b/icons/uil-lottiefiles-alt.js deleted file mode 100644 index 2814239c..00000000 --- a/icons/uil-lottiefiles-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLottiefilesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19 2H5a3.003 3.003 0 0 0-3 3v14a3.003 3.003 0 0 0 3 3h14a3.003 3.003 0 0 0 3-3V5a3.003 3.003 0 0 0-3-3Zm-2 6c-1.66 0-2.856 2.177-4.124 4.482C11.384 15.195 9.841 18 7 18a1 1 0 0 1 0-2c1.66 0 2.856-2.177 4.124-4.482C12.616 8.805 14.159 6 17 6a1 1 0 0 1 0 2Z' - })); -}; - -UilLottiefilesAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLottiefilesAlt; \ No newline at end of file diff --git a/icons/uil-lottiefiles.js b/icons/uil-lottiefiles.js deleted file mode 100644 index 2ba97254..00000000 --- a/icons/uil-lottiefiles.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLottiefiles = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17 6c-2.8 0-4.4 2.8-5.9 5.5C9.9 13.8 8.7 16 7 16c-.6 0-1 .4-1 1s.4 1 1 1c2.8 0 4.4-2.8 5.9-5.5C14.1 10.2 15.3 8 17 8c.6 0 1-.4 1-1s-.4-1-1-1zm2-4H5C3.3 2 2 3.3 2 5v14c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3V5c0-1.7-1.3-3-3-3zm1 17c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14z' - })); -}; - -UilLottiefiles.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLottiefiles; \ No newline at end of file diff --git a/icons/uil-luggage-cart.js b/icons/uil-luggage-cart.js deleted file mode 100644 index bb592288..00000000 --- a/icons/uil-luggage-cart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilLuggageCart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2,13.5v2a1,1,0,0,0,1,1H13a3,3,0,0,0,6,0h2a1,1,0,0,0,1-1v-8a3,3,0,0,0-3-3H9a3,3,0,0,0-3,3v7H4v-1a1,1,0,0,0-2,0Zm13,3a1,1,0,1,1,1,1A1,1,0,0,1,15,16.5Zm-7-6H20v4H18.22a3,3,0,0,0-4.44,0H8Zm0-3a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1v1H8Z' - })); -}; - -UilLuggageCart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilLuggageCart; \ No newline at end of file diff --git a/icons/uil-mailbox-alt.js b/icons/uil-mailbox-alt.js deleted file mode 100644 index 1792cf2a..00000000 --- a/icons/uil-mailbox-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMailboxAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,13h2a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm8,7H18V9h1a1,1,0,0,0,0-2H17.91A6,6,0,0,0,6.09,7H5A1,1,0,0,0,5,9H6V20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2ZM12,4a4,4,0,0,1,3.86,3H8.14A4,4,0,0,1,12,4Zm4,16H8V18h8Zm0-4H8V9h8Z' - })); -}; - -UilMailboxAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMailboxAlt; \ No newline at end of file diff --git a/icons/uil-mailbox.js b/icons/uil-mailbox.js deleted file mode 100644 index e757818b..00000000 --- a/icons/uil-mailbox.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMailbox = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,12h2a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm9-6H12V4h1a1,1,0,0,0,0-2H11a1,1,0,0,0-1,1V6H7a4,4,0,0,0-4,4v6a1,1,0,0,0,1,1h6v4a1,1,0,0,0,2,0V17h8a1,1,0,0,0,1-1V10A4,4,0,0,0,17,6Zm-4,4v5H5V10A2,2,0,0,1,7,8h6.56A3.91,3.91,0,0,0,13,10Zm6,5H15V10a2,2,0,0,1,4,0Z' - })); -}; - -UilMailbox.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMailbox; \ No newline at end of file diff --git a/icons/uil-map-marker-alt.js b/icons/uil-map-marker-alt.js deleted file mode 100644 index e91377d6..00000000 --- a/icons/uil-map-marker-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.46,9.63A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05ZM12,6a4.5,4.5,0,1,0,4.5,4.5A4.51,4.51,0,0,0,12,6Zm0,7a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,12,13Z' - })); -}; - -UilMapMarkerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerAlt; \ No newline at end of file diff --git a/icons/uil-map-marker-edit.js b/icons/uil-map-marker-edit.js deleted file mode 100644 index d3495ed2..00000000 --- a/icons/uil-map-marker-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.46,9.63A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Zm-2.81-8.8a1,1,0,0,0-1.42,0L8.79,9.83a1,1,0,0,0-.29.7V13a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58a1,1,0,0,0,0-1.41ZM11.51,12h-1V11l2.58-2.58,1,1Z' - })); -}; - -UilMapMarkerEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerEdit; \ No newline at end of file diff --git a/icons/uil-map-marker-info.js b/icons/uil-map-marker-info.js deleted file mode 100644 index 72da84d3..00000000 --- a/icons/uil-map-marker-info.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerInfo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm8.46-.32A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05ZM12.92,7.57a.56.56,0,0,0-.09-.17l-.12-.15A1,1,0,0,0,11.8,7L11.62,7l-.18.09-.15.13-.12.15a.56.56,0,0,0-.09.17.6.6,0,0,0-.06.19A1.23,1.23,0,0,0,11,8a.88.88,0,0,0,.08.39,1.11,1.11,0,0,0,.21.32,1.06,1.06,0,0,0,.33.22,1.07,1.07,0,0,0,.76,0,1.19,1.19,0,0,0,.33-.22,1.11,1.11,0,0,0,.21-.32A1,1,0,0,0,13,8a1.23,1.23,0,0,0,0-.19A.6.6,0,0,0,12.92,7.57Z' - })); -}; - -UilMapMarkerInfo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerInfo; \ No newline at end of file diff --git a/icons/uil-map-marker-minus.js b/icons/uil-map-marker-minus.js deleted file mode 100644 index b993cd57..00000000 --- a/icons/uil-map-marker-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9.45H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6.46.18A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' - })); -}; - -UilMapMarkerMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerMinus; \ No newline at end of file diff --git a/icons/uil-map-marker-plus.js b/icons/uil-map-marker-plus.js deleted file mode 100644 index 95064e71..00000000 --- a/icons/uil-map-marker-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9.45H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm6.46.18A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' - })); -}; - -UilMapMarkerPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerPlus; \ No newline at end of file diff --git a/icons/uil-map-marker-question.js b/icons/uil-map-marker-question.js deleted file mode 100644 index 8607281c..00000000 --- a/icons/uil-map-marker-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.44,13.11,12.27,13a1,1,0,0,0-1.09.22.87.87,0,0,0-.22.32,1,1,0,0,0-.08.39,1,1,0,0,0,.08.38,1.07,1.07,0,0,0,.54.54,1,1,0,0,0,.38.08,1.09,1.09,0,0,0,.39-.08,1,1,0,0,0,.32-.22,1,1,0,0,0,0-1.41ZM11.88,6A2.75,2.75,0,0,0,9.5,7.32a1,1,0,1,0,1.73,1A.77.77,0,0,1,11.88,8a.75.75,0,1,1,0,1.5,1,1,0,1,0,0,2,2.75,2.75,0,1,0,0-5.5Zm8.58,3.68A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' - })); -}; - -UilMapMarkerQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerQuestion; \ No newline at end of file diff --git a/icons/uil-map-marker-shield.js b/icons/uil-map-marker-shield.js deleted file mode 100644 index 01026009..00000000 --- a/icons/uil-map-marker-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.41,6.53a2.24,2.24,0,0,1-1.82-.39,1,1,0,0,0-1.18,0,2.24,2.24,0,0,1-1.82.39,1,1,0,0,0-.84.2,1,1,0,0,0-.37.78v2.9A4.14,4.14,0,0,0,10,13.74l1.37,1a1,1,0,0,0,1.18,0l1.37-1a4.14,4.14,0,0,0,1.66-3.33V7.51a1,1,0,0,0-.37-.78A1,1,0,0,0,14.41,6.53Zm-.79,3.88a2.15,2.15,0,0,1-.85,1.73l-.77.57-.77-.57a2.15,2.15,0,0,1-.85-1.73V8.57A4.22,4.22,0,0,0,12,8.12a4.22,4.22,0,0,0,1.62.45Zm6.84-.78A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' - })); -}; - -UilMapMarkerShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerShield; \ No newline at end of file diff --git a/icons/uil-map-marker-slash.js b/icons/uil-map-marker-slash.js deleted file mode 100644 index 004b158f..00000000 --- a/icons/uil-map-marker-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarkerSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.63,5.49a6,6,0,0,1,7.21,7.2,1,1,0,0,0,.74,1.21.9.9,0,0,0,.23,0,1,1,0,0,0,1-.76,8,8,0,0,0-9.61-9.62,1,1,0,0,0,.46,2ZM21.71,20.07,17.44,15.8h0L3.71,2.07a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L5.5,6.69A8,8,0,0,0,6.34,17l4.95,4.95a1,1,0,0,0,1.42,0l4-4,3.56,3.56a1,1,0,0,0,1.42-1.41Zm-9.59-6.76a2,2,0,0,1-1.53-.57A2,2,0,0,1,10,11.21ZM12,19.81,7.76,15.57a6,6,0,0,1-.82-7.44L8.41,9.6a4,4,0,0,0,.76,4.55A4,4,0,0,0,12,15.33a3.93,3.93,0,0,0,1.73-.41l1.58,1.58Z' - })); -}; - -UilMapMarkerSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarkerSlash; \ No newline at end of file diff --git a/icons/uil-map-marker.js b/icons/uil-map-marker.js deleted file mode 100644 index ed5375d9..00000000 --- a/icons/uil-map-marker.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapMarker = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2a8,8,0,0,0-8,8c0,5.4,7.05,11.5,7.35,11.76a1,1,0,0,0,1.3,0C13,21.5,20,15.4,20,10A8,8,0,0,0,12,2Zm0,17.65c-2.13-2-6-6.31-6-9.65a6,6,0,0,1,12,0C18,13.34,14.13,17.66,12,19.65ZM12,6a4,4,0,1,0,4,4A4,4,0,0,0,12,6Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,12Z' - })); -}; - -UilMapMarker.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapMarker; \ No newline at end of file diff --git a/icons/uil-map-pin-alt.js b/icons/uil-map-pin-alt.js deleted file mode 100644 index b03e5335..00000000 --- a/icons/uil-map-pin-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapPinAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,11.9V17a1,1,0,0,0,2,0V11.9a5,5,0,1,0-2,0ZM12,4A3,3,0,1,1,9,7,3,3,0,0,1,12,4Zm4.21,10.42a1,1,0,1,0-.42,2C18.06,16.87,19,17.68,19,18c0,.58-2.45,2-7,2s-7-1.42-7-2c0-.32.94-1.13,3.21-1.62a1,1,0,1,0-.42-2C4.75,15.08,3,16.39,3,18c0,2.63,4.53,4,9,4s9-1.37,9-4C21,16.39,19.25,15.08,16.21,14.42Z' - })); -}; - -UilMapPinAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapPinAlt; \ No newline at end of file diff --git a/icons/uil-map-pin.js b/icons/uil-map-pin.js deleted file mode 100644 index 024547b9..00000000 --- a/icons/uil-map-pin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMapPin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.37,12.79a1,1,0,0,0-.74,1.86C17.09,15.23,18,16.13,18,17c0,1.42-2.46,3-6,3s-6-1.58-6-3c0-.87.91-1.77,2.37-2.35a1,1,0,0,0-.74-1.86C5.36,13.69,4,15.26,4,17c0,2.8,3.51,5,8,5s8-2.2,8-5C20,15.26,18.64,13.69,16.37,12.79ZM11,9.86V17a1,1,0,0,0,2,0V9.86a4,4,0,1,0-2,0ZM12,4a2,2,0,1,1-2,2A2,2,0,0,1,12,4Z' - })); -}; - -UilMapPin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMapPin; \ No newline at end of file diff --git a/icons/uil-map.js b/icons/uil-map.js deleted file mode 100644 index e46f09bf..00000000 --- a/icons/uil-map.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMap = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.32,5.05l-6-2h-.07a.7.7,0,0,0-.14,0h-.23l-.13,0h-.07L9,5,3.32,3.05a1,1,0,0,0-.9.14A1,1,0,0,0,2,4V18a1,1,0,0,0,.68.95l6,2h0a1,1,0,0,0,.62,0h0L15,19.05,20.68,21A1.19,1.19,0,0,0,21,21a.94.94,0,0,0,.58-.19A1,1,0,0,0,22,20V6A1,1,0,0,0,21.32,5.05ZM8,18.61,4,17.28V5.39L8,6.72Zm6-1.33-4,1.33V6.72l4-1.33Zm6,1.33-4-1.33V5.39l4,1.33Z' - })); -}; - -UilMap.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMap; \ No newline at end of file diff --git a/icons/uil-mars.js b/icons/uil-mars.js deleted file mode 100644 index 136fe26e..00000000 --- a/icons/uil-mars.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMars = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.42,4.12a1,1,0,0,0-.54-.54,1,1,0,0,0-.38-.08h-4a1,1,0,0,0,0,2h1.59l-2.4,2.4A7,7,0,1,0,16.1,9.31l2.4-2.4V8.5a1,1,0,0,0,2,0v-4A1,1,0,0,0,20.42,4.12ZM14,17A5,5,0,1,1,14,10h0A5,5,0,0,1,14,17Z' - })); -}; - -UilMars.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMars; \ No newline at end of file diff --git a/icons/uil-master-card.js b/icons/uil-master-card.js deleted file mode 100644 index 297e6e15..00000000 --- a/icons/uil-master-card.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMasterCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.26465,5.27441a6.68141,6.68141,0,0,0-3.27295.85505,6.72754,6.72754,0,1,0,0,11.745,6.72551,6.72551,0,1,0,3.27295-12.6ZM10.23712,16.457a4.66714,4.66714,0,0,1-1.51837.27252,4.72754,4.72754,0,0,1,0-9.45508,4.66688,4.66688,0,0,1,1.51837.27253,6.68737,6.68737,0,0,0,0,8.91ZM11.9917,15.3996a4.69542,4.69542,0,0,1,0-6.79529,4.69542,4.69542,0,0,1,0,6.79529Zm3.27295,1.32989a4.66709,4.66709,0,0,1-1.51837-.27252,6.68737,6.68737,0,0,0,0-8.91,4.66683,4.66683,0,0,1,1.51837-.27253,4.72754,4.72754,0,0,1,0,9.45508Z' - })); -}; - -UilMasterCard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMasterCard; \ No newline at end of file diff --git a/icons/uil-maximize-left.js b/icons/uil-maximize-left.js deleted file mode 100644 index 7ec7780e..00000000 --- a/icons/uil-maximize-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMaximizeLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41l5.79,5.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,16a1,1,0,0,0-1,1v1.59l-5.79-5.8a1,1,0,0,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' - })); -}; - -UilMaximizeLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMaximizeLeft; \ No newline at end of file diff --git a/icons/uil-medal.js b/icons/uil-medal.js deleted file mode 100644 index 72a01e8d..00000000 --- a/icons/uil-medal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMedal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.38,5.76a1,1,0,0,0-.47-.61l-5.2-3a1,1,0,0,0-1.37.36L12,6.57,9.66,2.51a1,1,0,0,0-1.37-.36l-5.2,3a1,1,0,0,0-.47.61,1,1,0,0,0,.1.75l4,6.83A5.91,5.91,0,0,0,6,16a6,6,0,1,0,11.34-2.72l3.9-6.76A1,1,0,0,0,21.38,5.76ZM5,6.38l3.46-2L11.68,10A5.94,5.94,0,0,0,8,11.58ZM12,20a4,4,0,0,1-4-4,4,4,0,0,1,4-4,4,4,0,1,1,0,8Zm4-8.45a5.9,5.9,0,0,0-1.86-1.15L13.16,8.57l2.42-4.19,3.46,2Z' - })); -}; - -UilMedal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMedal; \ No newline at end of file diff --git a/icons/uil-medical-drip.js b/icons/uil-medical-drip.js deleted file mode 100644 index 34440ecd..00000000 --- a/icons/uil-medical-drip.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMedicalDrip = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,6H15V4h2a1,1,0,0,0,0-2H9A5,5,0,0,0,4,7V21a1,1,0,0,0,2,0V7A3,3,0,0,1,9,4h4V6H11A3,3,0,0,0,8,9v4.93a3,3,0,0,0,1.34,2.5L11,17.54V18a2,2,0,0,0,2,2v1a1,1,0,0,0,2,0V20a2,2,0,0,0,2-2v-.46l1.66-1.11A3,3,0,0,0,20,13.93V9A3,3,0,0,0,17,6Zm-1,5h2v1H17a1,1,0,0,0,0,2h1a1,1,0,0,1-.44.76l-2.1,1.41A1,1,0,0,0,15,17v1H13V17a1,1,0,0,0-.45-.83l-2.1-1.41a1,1,0,0,1-.45-.83V9a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1H16a1,1,0,0,0,0,2Z' - })); -}; - -UilMedicalDrip.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMedicalDrip; \ No newline at end of file diff --git a/icons/uil-medical-square-full.js b/icons/uil-medical-square-full.js deleted file mode 100644 index ad969c4c..00000000 --- a/icons/uil-medical-square-full.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMedicalSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20ZM7,14.79H9v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1v-2h2a1,1,0,0,0,1-1v-4a1,1,0,0,0-1-1H15v-2a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v2H7a1,1,0,0,0-1,1v4A1,1,0,0,0,7,14.79Zm1-4h2a1,1,0,0,0,1-1v-2h2v2a1,1,0,0,0,1,1h2v2H14a1,1,0,0,0-1,1v2H11v-2a1,1,0,0,0-1-1H8Z' - })); -}; - -UilMedicalSquareFull.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMedicalSquareFull; \ No newline at end of file diff --git a/icons/uil-medical-square.js b/icons/uil-medical-square.js deleted file mode 100644 index e64a87ba..00000000 --- a/icons/uil-medical-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMedicalSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM17,9H15V7a1,1,0,0,0-1-1H10A1,1,0,0,0,9,7V9H7a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H9v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V15h2a1,1,0,0,0,1-1V10A1,1,0,0,0,17,9Zm-1,4H14a1,1,0,0,0-1,1v2H11V14a1,1,0,0,0-1-1H8V11h2a1,1,0,0,0,1-1V8h2v2a1,1,0,0,0,1,1h2Z' - })); -}; - -UilMedicalSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMedicalSquare; \ No newline at end of file diff --git a/icons/uil-medium-m.js b/icons/uil-medium-m.js deleted file mode 100644 index e99a7300..00000000 --- a/icons/uil-medium-m.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMediumM = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.20905,6.41669H22V4.08331H14.51978l-2.48584,9.16663h-.068L9.50269,4.08331H2V6.41663h.76837A.89578.89578,0,0,1,3.5,7.11139v9.83032a.84093.84093,0,0,1-.73163.6416H2v2.33338H8V17.58331H6.5V7.25h.08752L10.0451,19.91669h2.712L16.25989,7.25h.07355V17.58331H14.83337v2.33338H22V17.58331h-.79095a.83931.83931,0,0,1-.70905-.6416V7.11145A.8976.8976,0,0,1,21.20905,6.41669Z' - })); -}; - -UilMediumM.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMediumM; \ No newline at end of file diff --git a/icons/uil-medkit.js b/icons/uil-medkit.js deleted file mode 100644 index 17b906a9..00000000 --- a/icons/uil-medkit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMedkit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,17h1v1a1,1,0,0,0,2,0V17h1a1,1,0,0,0,0-2H13V14a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2ZM19,6H17V5a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM9,5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1V6H9ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H20Zm0-9H4V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' - })); -}; - -UilMedkit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMedkit; \ No newline at end of file diff --git a/icons/uil-meeting-board.js b/icons/uil-meeting-board.js deleted file mode 100644 index 5b386371..00000000 --- a/icons/uil-meeting-board.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMeetingBoard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,10H9A1,1,0,0,0,9,8H7a1,1,0,0,0,0,2ZM21,4H13V3a1,1,0,0,0-2,0V4H3A1,1,0,0,0,2,5V15a3,3,0,0,0,3,3H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,19.41V21a1,1,0,0,0,2,0V19.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,18H19a3,3,0,0,0,3-3V5A1,1,0,0,0,21,4ZM20,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V6H20ZM7,14h6a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Z' - })); -}; - -UilMeetingBoard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMeetingBoard; \ No newline at end of file diff --git a/icons/uil-megaphone.js b/icons/uil-megaphone.js deleted file mode 100644 index f61d06cb..00000000 --- a/icons/uil-megaphone.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMegaphone = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.99121,2.002a.99943.99943,0,0,0-1,1v.63672a9.03617,9.03617,0,0,1-7,3.36328h-6a3.00328,3.00328,0,0,0-3,3v2a3.00328,3.00328,0,0,0,3,3H6.475L4.07227,20.6084A.99931.99931,0,0,0,4.99121,22.002h4a.99857.99857,0,0,0,.91895-.60644L12.63391,15.04a9.02805,9.02805,0,0,1,6.3573,3.32507V19.002a1,1,0,0,0,2,0v-16A.99942.99942,0,0,0,19.99121,2.002Zm-14,11a1.00067,1.00067,0,0,1-1-1v-2a1.00068,1.00068,0,0,1,1-1h1v4Zm2.34082,7H6.50781l2.14258-5h1.82422ZM18.99121,15.5238a11.052,11.052,0,0,0-7-2.52185h-3v-4h3a11.05281,11.05281,0,0,0,7-2.52234Z' - })); -}; - -UilMegaphone.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMegaphone; \ No newline at end of file diff --git a/icons/uil-meh-alt.js b/icons/uil-meh-alt.js deleted file mode 100644 index 5405c850..00000000 --- a/icons/uil-meh-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMehAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-5H14a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilMehAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMehAlt; \ No newline at end of file diff --git a/icons/uil-meh-closed-eye.js b/icons/uil-meh-closed-eye.js deleted file mode 100644 index 2ed91e07..00000000 --- a/icons/uil-meh-closed-eye.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMehClosedEye = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm2.62-4.87a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilMehClosedEye.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMehClosedEye; \ No newline at end of file diff --git a/icons/uil-meh.js b/icons/uil-meh.js deleted file mode 100644 index 055dfb6e..00000000 --- a/icons/uil-meh.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMeh = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-5a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilMeh.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMeh; \ No newline at end of file diff --git a/icons/uil-message.js b/icons/uil-message.js deleted file mode 100644 index d3246784..00000000 --- a/icons/uil-message.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMessage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.34,9.32l-14-7a3,3,0,0,0-4.08,3.9l2.4,5.37h0a1.06,1.06,0,0,1,0,.82l-2.4,5.37A3,3,0,0,0,5,22a3.14,3.14,0,0,0,1.35-.32l14-7a3,3,0,0,0,0-5.36Zm-.89,3.57-14,7a1,1,0,0,1-1.35-1.3l2.39-5.37A2,2,0,0,0,6.57,13h6.89a1,1,0,0,0,0-2H6.57a2,2,0,0,0-.08-.22L4.1,5.41a1,1,0,0,1,1.35-1.3l14,7a1,1,0,0,1,0,1.78Z' - })); -}; - -UilMessage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMessage; \ No newline at end of file diff --git a/icons/uil-metro.js b/icons/uil-metro.js deleted file mode 100644 index 4456b39f..00000000 --- a/icons/uil-metro.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMetro = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.71,14.29a1.00157,1.00157,0,0,0-1.08984-.21.90087.90087,0,0,0-.54.54,1.00008,1.00008,0,1,0,1.83984,0A1.14718,1.14718,0,0,0,8.71,14.29Zm8,0a1.04669,1.04669,0,0,0-1.41992,0,1.14718,1.14718,0,0,0-.21.33008A.98919.98919,0,0,0,15.29,15.71a1.14718,1.14718,0,0,0,.33008.21.94107.94107,0,0,0,.75976,0,1.16044,1.16044,0,0,0,.33008-.21.98919.98919,0,0,0,.21-1.08984A1.14718,1.14718,0,0,0,16.71,14.29Zm2.59943,4.60528a4.97014,4.97014,0,0,0,1.78436-4.8172l-1.5-8A5.00038,5.00038,0,0,0,14.68066,2H9.31934A5.00038,5.00038,0,0,0,4.40625,6.07812l-1.5,8a4.97014,4.97014,0,0,0,1.78436,4.8172L3.293,20.293A.99989.99989,0,1,0,4.707,21.707l1.86914-1.86914A5.00576,5.00576,0,0,0,7.81934,20h8.36132a5.00576,5.00576,0,0,0,1.24317-.16211L19.293,21.707A.99989.99989,0,0,0,20.707,20.293ZM6.37109,6.44727A3.0021,3.0021,0,0,1,9.31934,4h5.36132a3.0021,3.0021,0,0,1,2.94825,2.44727l.34668,1.84893a7.95514,7.95514,0,0,1-11.95118,0ZM18.48828,16.916A2.9899,2.9899,0,0,1,16.18066,18H7.81934a3.00057,3.00057,0,0,1-2.94825-3.55273l.71106-3.79236a9.95447,9.95447,0,0,0,12.8357,0l.71106,3.79236A2.99028,2.99028,0,0,1,18.48828,16.916Z' - })); -}; - -UilMetro.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMetro; \ No newline at end of file diff --git a/icons/uil-microphone-slash.js b/icons/uil-microphone-slash.js deleted file mode 100644 index 099b91ad..00000000 --- a/icons/uil-microphone-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMicrophoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,3.73a2,2,0,0,1,2.95-.14A2,2,0,0,1,14,5V8.41a1,1,0,0,0,2,0V5A4,4,0,0,0,9,2.47,1,1,0,1,0,10.5,3.73Zm8.22,9.54.2,0a1,1,0,0,0,1-.81A7.91,7.91,0,0,0,20,11a1,1,0,0,0-2,0,5.54,5.54,0,0,1-.11,1.1A1,1,0,0,0,18.72,13.27Zm3,6.06-18-18a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L8,8.48V11a4,4,0,0,0,6,3.46l1.46,1.46A6,6,0,0,1,6,11a1,1,0,0,0-2,0,8,8,0,0,0,7,7.93V21H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V18.93a7.87,7.87,0,0,0,3.85-1.59l3.4,3.4a1,1,0,0,0,1.42-1.41ZM12,13a2,2,0,0,1-2-2v-.52l2.45,2.46A1.74,1.74,0,0,1,12,13Z' - })); -}; - -UilMicrophoneSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMicrophoneSlash; \ No newline at end of file diff --git a/icons/uil-microphone.js b/icons/uil-microphone.js deleted file mode 100644 index 16e67832..00000000 --- a/icons/uil-microphone.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMicrophone = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,15a4,4,0,0,0,4-4V5A4,4,0,0,0,8,5v6A4,4,0,0,0,12,15ZM10,5a2,2,0,0,1,4,0v6a2,2,0,0,1-4,0Zm10,6a1,1,0,0,0-2,0A6,6,0,0,1,6,11a1,1,0,0,0-2,0,8,8,0,0,0,7,7.93V21H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V18.93A8,8,0,0,0,20,11Z' - })); -}; - -UilMicrophone.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMicrophone; \ No newline at end of file diff --git a/icons/uil-microscope.js b/icons/uil-microscope.js deleted file mode 100644 index 3409936f..00000000 --- a/icons/uil-microscope.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMicroscope = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20 21.005h-5.184a2.964 2.964 0 0 0 .143-.591A8.044 8.044 0 0 0 20 13.005a7.945 7.945 0 0 0-2.127-5.422l.637-.638a.991.991 0 0 0 .241-.39l.708-2.122a1 1 0 0 0-.241-1.024l-2.122-2.121a.999.999 0 0 0-1.024-.242l-2.12.707a.997.997 0 0 0-.391.242L7.198 8.358a1 1 0 0 0 0 1.414l-1.416 1.415a1 1 0 0 0 0 1.415l2.122 2.12a1 1 0 0 0 1.414 0l1.414-1.413.002.002a1 1 0 0 0 1.414 0l4.31-4.312A5.955 5.955 0 0 1 18 13.005a6.048 6.048 0 0 1-3.455 5.431 2.976 2.976 0 0 0-5.124.063 6.822 6.822 0 0 1-1.12-.554.989.989 0 0 0 .699-.94 1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h1.331a8.814 8.814 0 0 0 3.717 2.473 2.955 2.955 0 0 0 .136.527H4a1 1 0 0 0 0 2h16a1 1 0 0 0 0-2ZM8.611 12.602l-.708-.707.708-.708.707.708Zm8.318-6.904L11.44 11.19 9.32 9.065l5.489-5.489 1.311-.437 1.247 1.247ZM12 21.005a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' - })); -}; - -UilMicroscope.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMicroscope; \ No newline at end of file diff --git a/icons/uil-microsoft.js b/icons/uil-microsoft.js deleted file mode 100644 index 944ac0d3..00000000 --- a/icons/uil-microsoft.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMicrosoft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2 22h9.5v-9.5H2V22zm0-10.5h9.5V2H2v9.5zM12.5 2v9.5H22V2h-9.5zm0 20H22v-9.5h-9.5V22z' - })); -}; - -UilMicrosoft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMicrosoft; \ No newline at end of file diff --git a/icons/uil-minus-circle.js b/icons/uil-minus-circle.js deleted file mode 100644 index f14fc9f1..00000000 --- a/icons/uil-minus-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMinusCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4-9H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilMinusCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMinusCircle; \ No newline at end of file diff --git a/icons/uil-minus-path.js b/icons/uil-minus-path.js deleted file mode 100644 index 7e0cbdd5..00000000 --- a/icons/uil-minus-path.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMinusPath = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.18,4h2.1a1,1,0,0,0,0-2H8.18a1,1,0,0,0,0,2ZM3,11.28a1,1,0,0,0,1-1V8.18a1,1,0,0,0-2,0v2.1A1,1,0,0,0,3,11.28ZM14.46,4a1,1,0,0,0,2,0V3a1,1,0,0,0-1-1h-1a1,1,0,0,0,0,2ZM21,7.54H16.46a1,1,0,1,0-2,0H8.54a1,1,0,0,0-1,1v5.92a1,1,0,1,0,0,2V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V15.47h0V9.54H20ZM4,2H3A1,1,0,0,0,2,3V4A1,1,0,0,0,4,4,1,1,0,0,0,4,2ZM4,14.46a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1H4a1,1,0,0,0,0-2Z' - })); -}; - -UilMinusPath.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMinusPath; \ No newline at end of file diff --git a/icons/uil-minus-square-full.js b/icons/uil-minus-square-full.js deleted file mode 100644 index 5482226c..00000000 --- a/icons/uil-minus-square-full.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMinusSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,13h6a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilMinusSquareFull.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMinusSquareFull; \ No newline at end of file diff --git a/icons/uil-minus-square.js b/icons/uil-minus-square.js deleted file mode 100644 index 2949b57b..00000000 --- a/icons/uil-minus-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMinusSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Zm-4-8H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilMinusSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMinusSquare; \ No newline at end of file diff --git a/icons/uil-minus.js b/icons/uil-minus.js deleted file mode 100644 index 287c362c..00000000 --- a/icons/uil-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,11H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' - })); -}; - -UilMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMinus; \ No newline at end of file diff --git a/icons/uil-missed-call.js b/icons/uil-missed-call.js deleted file mode 100644 index 9b0e8983..00000000 --- a/icons/uil-missed-call.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMissedCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6,7.49a1,1,0,0,0,1-1V5.9L9.88,8.78a3,3,0,0,0,4.24,0l4.59-4.59a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L12.71,7.36a1,1,0,0,1-1.42,0L8.41,4.49H9a1,1,0,0,0,0-2H6a1,1,0,0,0-.92.61A1.09,1.09,0,0,0,5,3.49v3A1,1,0,0,0,6,7.49Zm15.94,7.36a16.27,16.27,0,0,0-19.88,0,2.69,2.69,0,0,0-1,2,2.66,2.66,0,0,0,.78,2.07L3.6,20.72A2.68,2.68,0,0,0,7.06,21l.47-.32a8.13,8.13,0,0,1,1-.55,1.85,1.85,0,0,0,1-2.3l-.09-.24a10.49,10.49,0,0,1,5.22,0l-.09.24a1.85,1.85,0,0,0,1,2.3,8.13,8.13,0,0,1,1,.55l.47.32a2.58,2.58,0,0,0,1.54.5,2.72,2.72,0,0,0,1.92-.79l1.81-1.82A2.66,2.66,0,0,0,23,16.83,2.69,2.69,0,0,0,21.94,14.85ZM20.8,17.49,19,19.3a.68.68,0,0,1-.86.1c-.19-.14-.38-.27-.59-.4a11.65,11.65,0,0,0-1.09-.61l.4-1.09a1,1,0,0,0-.6-1.28,12.42,12.42,0,0,0-8.5,0,1,1,0,0,0-.6,1.28l.4,1.1a9.8,9.8,0,0,0-1.1.6l-.58.4A.66.66,0,0,1,5,19.3L3.2,17.49A.67.67,0,0,1,3,17a.76.76,0,0,1,.28-.53,14.29,14.29,0,0,1,17.44,0A.76.76,0,0,1,21,17,.67.67,0,0,1,20.8,17.49Z' - })); -}; - -UilMissedCall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMissedCall; \ No newline at end of file diff --git a/icons/uil-mobile-android-alt.js b/icons/uil-mobile-android-alt.js deleted file mode 100644 index ca57b954..00000000 --- a/icons/uil-mobile-android-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMobileAndroidAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V18H17Zm0-3H7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' - })); -}; - -UilMobileAndroidAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMobileAndroidAlt; \ No newline at end of file diff --git a/icons/uil-mobile-android.js b/icons/uil-mobile-android.js deleted file mode 100644 index 79d460a2..00000000 --- a/icons/uil-mobile-android.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMobileAndroid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,16.29l-.15-.12a.76.76,0,0,0-.18-.09L12.2,16a1,1,0,0,0-.91.27,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,1.3,1.31,1.46,1.46,0,0,0,.33-.22,1,1,0,0,0,.21-1.09A1,1,0,0,0,12.71,16.29ZM16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' - })); -}; - -UilMobileAndroid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMobileAndroid; \ No newline at end of file diff --git a/icons/uil-mobile-vibrate.js b/icons/uil-mobile-vibrate.js deleted file mode 100644 index ca5f3edd..00000000 --- a/icons/uil-mobile-vibrate.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMobileVibrate = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.88,14.12,9.73,14l-.18-.1-.18-.05a1,1,0,0,0-.9.27.83.83,0,0,0-.22.33.94.94,0,0,0,0,.76,1.07,1.07,0,0,0,.54.54,1,1,0,0,0,.38.08,1.09,1.09,0,0,0,.39-.08.87.87,0,0,0,.32-.22,1,1,0,0,0,.22-.32,1,1,0,0,0,.07-.38.84.84,0,0,0-.08-.38A.93.93,0,0,0,9.88,14.12ZM3.51,8.76a1,1,0,0,0,.71-.3L8.46,4.22a1,1,0,0,0,0-1.41,1,1,0,0,0-1.41,0L2.81,7.05a1,1,0,0,0,0,1.41A1,1,0,0,0,3.51,8.76Zm17.68,6.78a1,1,0,0,0-1.41,0l-4.24,4.24a1,1,0,0,0,.7,1.71,1,1,0,0,0,.71-.3L21.19,17A1,1,0,0,0,21.19,15.54Zm.17-5.66a3,3,0,0,0-.87-2.12L16.24,3.51a3.08,3.08,0,0,0-4.24,0L3.51,12a3,3,0,0,0,0,4.24l4.25,4.25h0a3,3,0,0,0,4.24,0L20.49,12A3,3,0,0,0,21.36,9.88Zm-2.29.71-8.48,8.48a1,1,0,0,1-1.42,0h0L4.93,14.83a1,1,0,0,1,0-1.42l8.48-8.48a1,1,0,0,1,1.42,0l4.24,4.24a1,1,0,0,1,0,1.42Z' - })); -}; - -UilMobileVibrate.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMobileVibrate; \ No newline at end of file diff --git a/icons/uil-modem.js b/icons/uil-modem.js deleted file mode 100644 index 4194efdb..00000000 --- a/icons/uil-modem.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilModem = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.48,13.13a.65.65,0,0,0-.05-.2.89.89,0,0,0-.08-.17.86.86,0,0,0-.1-.16l-.16-.13L21,12.38,6.28,3.88a1,1,0,0,0-1,1.74l11.49,6.63H3.5a1,1,0,0,0-1,1v4a3,3,0,0,0,3,3h13a3,3,0,0,0,3-3v-4S21.48,13.17,21.48,13.13Zm-2,4.12a1,1,0,0,1-1,1H5.5a1,1,0,0,1-1-1v-3h15Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,16.5,17.25Z' - })); -}; - -UilModem.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilModem; \ No newline at end of file diff --git a/icons/uil-money-bill-slash.js b/icons/uil-money-bill-slash.js deleted file mode 100644 index 8d6eb1df..00000000 --- a/icons/uil-money-bill-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyBillSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6,11a1,1,0,1,0,1,1A1,1,0,0,0,6,11Zm5.86-1.55h0L4.71,2.29A1,1,0,0,0,3.29,3.71L4.59,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H18.59l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-.74,2.09,1.34,1.34A1,1,0,0,1,12,13a1,1,0,0,1-1-1A1,1,0,0,1,11.12,11.54ZM4,17a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H6.59l3.1,3.1A3,3,0,0,0,9,12a3,3,0,0,0,3,3,3,3,0,0,0,1.9-.69L16.59,17ZM20,5H12.66a1,1,0,0,0,0,2H20a1,1,0,0,1,1,1v7.34a1,1,0,1,0,2,0V8A3,3,0,0,0,20,5Zm-1,7a1,1,0,1,0-1,1A1,1,0,0,0,19,12Z' - })); -}; - -UilMoneyBillSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyBillSlash; \ No newline at end of file diff --git a/icons/uil-money-bill-stack.js b/icons/uil-money-bill-stack.js deleted file mode 100644 index 91a76624..00000000 --- a/icons/uil-money-bill-stack.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyBillStack = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,1H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1ZM8,21H4a1,1,0,0,1-1-1V18.82A3,3,0,0,0,4,19H8Zm0-4H4a1,1,0,0,1-1-1V14.82A3,3,0,0,0,4,15H8Zm0-4H4a1,1,0,0,1-1-1V4A1,1,0,0,1,4,3H8Zm6,8H10V15h4Zm0-8H10V3h4Zm7,7a1,1,0,0,1-1,1H16V19h4a3,3,0,0,0,1-.18Zm0-4a1,1,0,0,1-1,1H16V15h4a3,3,0,0,0,1-.18Zm0-4a1,1,0,0,1-1,1H16V3h4a1,1,0,0,1,1,1ZM18,7a1,1,0,1,0,1,1A1,1,0,0,0,18,7ZM6,9A1,1,0,1,0,5,8,1,1,0,0,0,6,9Z' - })); -}; - -UilMoneyBillStack.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyBillStack; \ No newline at end of file diff --git a/icons/uil-money-bill.js b/icons/uil-money-bill.js deleted file mode 100644 index 2a98e93f..00000000 --- a/icons/uil-money-bill.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyBill = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6,11a1,1,0,1,0,1,1A1,1,0,0,0,6,11Zm12,0a1,1,0,1,0,1,1A1,1,0,0,0,18,11Zm2-6H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1ZM12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' - })); -}; - -UilMoneyBill.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyBill; \ No newline at end of file diff --git a/icons/uil-money-insert.js b/icons/uil-money-insert.js deleted file mode 100644 index 9803e017..00000000 --- a/icons/uil-money-insert.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyInsert = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.46,6,11,5.41V9a1,1,0,0,0,2,0V5.41l.54.55A1,1,0,0,0,15,6a1,1,0,0,0,0-1.42L12.71,2.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L9,4.54A1,1,0,0,0,10.46,6ZM12,12a3,3,0,1,0,3,3A3,3,0,0,0,12,12Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,16ZM5,15a1,1,0,1,0,1-1A1,1,0,0,0,5,15Zm14,0a1,1,0,1,0-1,1A1,1,0,0,0,19,15Zm1-7H16a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H8A1,1,0,0,0,8,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V11A3,3,0,0,0,20,8Z' - })); -}; - -UilMoneyInsert.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyInsert; \ No newline at end of file diff --git a/icons/uil-money-stack.js b/icons/uil-money-stack.js deleted file mode 100644 index fb1514dd..00000000 --- a/icons/uil-money-stack.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyStack = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,17H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2Zm0,4H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2ZM6,7A1,1,0,1,0,7,8,1,1,0,0,0,6,7ZM20,1H4A3,3,0,0,0,1,4v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V4A1,1,0,0,1,4,3H20a1,1,0,0,1,1,1ZM12,5a3,3,0,1,0,3,3A3,3,0,0,0,12,5Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,9Zm6-2a1,1,0,1,0,1,1A1,1,0,0,0,18,7Z' - })); -}; - -UilMoneyStack.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyStack; \ No newline at end of file diff --git a/icons/uil-money-withdraw.js b/icons/uil-money-withdraw.js deleted file mode 100644 index 6b187208..00000000 --- a/icons/uil-money-withdraw.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyWithdraw = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,12a3,3,0,1,0,3,3A3,3,0,0,0,12,12Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,16Zm-.71-6.29a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21L15,7.46A1,1,0,1,0,13.54,6L13,6.59V3a1,1,0,0,0-2,0V6.59L10.46,6A1,1,0,0,0,9,7.46ZM19,15a1,1,0,1,0-1,1A1,1,0,0,0,19,15Zm1-7H17a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H7A1,1,0,0,0,7,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V11A3,3,0,0,0,20,8ZM5,15a1,1,0,1,0,1-1A1,1,0,0,0,5,15Z' - })); -}; - -UilMoneyWithdraw.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyWithdraw; \ No newline at end of file diff --git a/icons/uil-money-withdrawal.js b/icons/uil-money-withdrawal.js deleted file mode 100644 index 918e7a80..00000000 --- a/icons/uil-money-withdrawal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneyWithdrawal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,2H2A1,1,0,0,0,1,3v8a1,1,0,0,0,1,1H5v9a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V12h3a1,1,0,0,0,1-1V3A1,1,0,0,0,22,2ZM7,20V18a2,2,0,0,1,2,2Zm10,0H15a2,2,0,0,1,2-2Zm0-4a4,4,0,0,0-4,4H11a4,4,0,0,0-4-4V8H17Zm4-6H19V7a1,1,0,0,0-1-1H6A1,1,0,0,0,5,7v3H3V4H21Zm-9,5a3,3,0,1,0-3-3A3,3,0,0,0,12,15Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,12,11Z' - })); -}; - -UilMoneyWithdrawal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneyWithdrawal; \ No newline at end of file diff --git a/icons/uil-moneybag-alt.js b/icons/uil-moneybag-alt.js deleted file mode 100644 index 243f8d90..00000000 --- a/icons/uil-moneybag-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneybagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,7H16V6a3,3,0,0,0-3-3H11A3,3,0,0,0,8,6V7H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V10A3,3,0,0,0,19,7ZM10,6a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V7H10ZM4,10A1,1,0,0,1,5,9H6a2,2,0,0,1-2,2Zm1,9a1,1,0,0,1-1-1V17a2,2,0,0,1,2,2Zm15-1a1,1,0,0,1-1,1H18a2,2,0,0,1,2-2Zm0-3a4,4,0,0,0-4,4H8a4,4,0,0,0-4-4V13A4,4,0,0,0,8,9h8a4,4,0,0,0,4,4Zm0-4a2,2,0,0,1-2-2h1a1,1,0,0,1,1,1Zm-8,0a3,3,0,1,0,3,3A3,3,0,0,0,12,11Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,15Z' - })); -}; - -UilMoneybagAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneybagAlt; \ No newline at end of file diff --git a/icons/uil-moneybag.js b/icons/uil-moneybag.js deleted file mode 100644 index 9007f0d8..00000000 --- a/icons/uil-moneybag.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoneybag = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,11a3,3,0,1,0,3,3A3,3,0,0,0,12,11Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,15Zm7-9H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10ZM4,9A1,1,0,0,1,5,8H6a2,2,0,0,1-2,2ZM5,20a1,1,0,0,1-1-1V18a2,2,0,0,1,2,2Zm15-1a1,1,0,0,1-1,1H18a2,2,0,0,1,2-2Zm0-3a4,4,0,0,0-4,4H8a4,4,0,0,0-4-4V12A4,4,0,0,0,8,8h8a4,4,0,0,0,4,4Zm0-6a2,2,0,0,1-2-2h1a1,1,0,0,1,1,1Z' - })); -}; - -UilMoneybag.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoneybag; \ No newline at end of file diff --git a/icons/uil-monitor-heart-rate.js b/icons/uil-monitor-heart-rate.js deleted file mode 100644 index 0f0a0a2f..00000000 --- a/icons/uil-monitor-heart-rate.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMonitorHeartRate = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,19a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.12-.16.56.56,0,0,0,.09-.17A.64.64,0,0,0,10,18.2a1.36,1.36,0,0,0,0-.2,1,1,0,0,0-.08-.38.9.9,0,0,0-.54-.54A1,1,0,0,0,8.8,17l-.18.06a.56.56,0,0,0-.17.09,1,1,0,0,0-.16.12,1,1,0,0,0-.21.33A1,1,0,0,0,8,18a1,1,0,0,0,1,1Zm-3.71-.29a1.15,1.15,0,0,0,.33.21A1,1,0,0,0,6,19l.19,0a.6.6,0,0,0,.19-.06.76.76,0,0,0,.18-.09l.15-.12a1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,7,18a1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.56.56,0,0,0-.09-.17,1,1,0,0,0-.12-.16,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1,1,0,0,0-.12.16.56.56,0,0,0-.09.17A.64.64,0,0,0,5,17.8,1.36,1.36,0,0,0,5,18a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,5.29,18.71ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H20Zm0-5H4V10H8a1,1,0,0,0,.71-.29L10,8.46l2.8,3.2a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29L15.91,10H20Zm0-6H15.5a1,1,0,0,0-.71.29L13.55,9.54l-2.8-3.2a1,1,0,0,0-1.46,0L7.59,8H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilMonitorHeartRate.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMonitorHeartRate; \ No newline at end of file diff --git a/icons/uil-monitor.js b/icons/uil-monitor.js deleted file mode 100644 index f3053319..00000000 --- a/icons/uil-monitor.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMonitor = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H7.64l-.58,1a2,2,0,0,0,0,2,2,2,0,0,0,1.75,1h6.46A2,2,0,0,0,17,21a2,2,0,0,0,0-2l-.59-1H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM8.77,20,10,18H14l1.2,2ZM20,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Zm0-3H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilMonitor.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMonitor; \ No newline at end of file diff --git a/icons/uil-moon-eclipse.js b/icons/uil-moon-eclipse.js deleted file mode 100644 index b24efb8a..00000000 --- a/icons/uil-moon-eclipse.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoonEclipse = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2a10,10,0,0,0-2.14.24l-.12,0a10,10,0,0,0-.1,19.44l.14,0A9.57,9.57,0,0,0,12,22,10,10,0,0,0,12,2ZM10,19.74A8,8,0,0,1,10,4.26a8,8,0,0,1,0,15.48Zm4.53-.16a10,10,0,0,0,0-15.16,8,8,0,0,1,0,15.16Z' - })); -}; - -UilMoonEclipse.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoonEclipse; \ No newline at end of file diff --git a/icons/uil-moon.js b/icons/uil-moon.js deleted file mode 100644 index a22527c2..00000000 --- a/icons/uil-moon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.64,13a1,1,0,0,0-1.05-.14,8.05,8.05,0,0,1-3.37.73A8.15,8.15,0,0,1,9.08,5.49a8.59,8.59,0,0,1,.25-2A1,1,0,0,0,8,2.36,10.14,10.14,0,1,0,22,14.05,1,1,0,0,0,21.64,13Zm-9.5,6.69A8.14,8.14,0,0,1,7.08,5.22v.27A10.15,10.15,0,0,0,17.22,15.63a9.79,9.79,0,0,0,2.1-.22A8.11,8.11,0,0,1,12.14,19.73Z' - })); -}; - -UilMoon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoon; \ No newline at end of file diff --git a/icons/uil-moonset.js b/icons/uil-moonset.js deleted file mode 100644 index 6f75c44c..00000000 --- a/icons/uil-moonset.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMoonset = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,19H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm9-4H18.84A8.18,8.18,0,0,0,20,12.05a1,1,0,0,0-.34-.93,1,1,0,0,0-1-.19,6,6,0,0,1-1.92.32,6.06,6.06,0,0,1-6.06-6,6.93,6.93,0,0,1,.1-1,1,1,0,0,0-.35-.92,1,1,0,0,0-1-.18A8.06,8.06,0,0,0,4,10.68,8,8,0,0,0,5.27,15H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm-3.72,0H7.83a6,6,0,0,1,.88-9.36,8.06,8.06,0,0,0,8.05,7.61,7,7,0,0,0,.79,0A6.08,6.08,0,0,1,16.28,15ZM16,19H15a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' - })); -}; - -UilMoonset.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMoonset; \ No newline at end of file diff --git a/icons/uil-mountains-sun.js b/icons/uil-mountains-sun.js deleted file mode 100644 index 22c4286a..00000000 --- a/icons/uil-mountains-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMountainsSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,10a4,4,0,1,0-4-4A4,4,0,0,0,18,10Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,18,4Zm-1.15,8.47a1,1,0,0,0-1.7,0l-1,1.63L10.86,8.5a1,1,0,0,0-1.72,0l-7,12A1,1,0,0,0,3,22H21a1,1,0,0,0,.85-1.53ZM10.45,20H4.74L10,11l2.94,5-1.25,2Zm2.35,0,1.49-2.37L15,16.57h0L16,14.89,19.2,20Z' - })); -}; - -UilMountainsSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMountainsSun; \ No newline at end of file diff --git a/icons/uil-mountains.js b/icons/uil-mountains.js deleted file mode 100644 index 31c0bd6b..00000000 --- a/icons/uil-mountains.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMountains = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.85,17.47l-5-8a1,1,0,0,0-1.7,0l-1,1.63L10.86,5.5a1,1,0,0,0-1.72,0l-7,12A1,1,0,0,0,3,19H21a1,1,0,0,0,.85-1.53ZM10.45,17H4.74L10,8l2.93,5Zm2.35,0L15,13.57h0L16,11.89,19.2,17Z' - })); -}; - -UilMountains.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMountains; \ No newline at end of file diff --git a/icons/uil-mouse-alt-2.js b/icons/uil-mouse-alt-2.js deleted file mode 100644 index 3f74f794..00000000 --- a/icons/uil-mouse-alt-2.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMouseAlt2 = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2Zm5,13A5,5,0,0,1,7,15V9a5,5,0,0,1,4-4.9V12a1,1,0,0,0,2,0V4.1A5,5,0,0,1,17,9Z' - })); -}; - -UilMouseAlt2.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMouseAlt2; \ No newline at end of file diff --git a/icons/uil-mouse-alt.js b/icons/uil-mouse-alt.js deleted file mode 100644 index 24ec4853..00000000 --- a/icons/uil-mouse-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMouseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6a1,1,0,0,0-1,1V9a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Zm0-4A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2Zm5,13A5,5,0,0,1,7,15V9A5,5,0,0,1,17,9Z' - })); -}; - -UilMouseAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMouseAlt; \ No newline at end of file diff --git a/icons/uil-mouse.js b/icons/uil-mouse.js deleted file mode 100644 index beabc80b..00000000 --- a/icons/uil-mouse.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMouse = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2ZM7,9a5,5,0,0,1,4-4.9V10H7Zm10,6A5,5,0,0,1,7,15V12H17Zm0-5H13V4.1A5,5,0,0,1,17,9Z' - })); -}; - -UilMouse.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMouse; \ No newline at end of file diff --git a/icons/uil-multiply.js b/icons/uil-multiply.js deleted file mode 100644 index 3ce9a406..00000000 --- a/icons/uil-multiply.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMultiply = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.41,12l6.3-6.29a1,1,0,1,0-1.42-1.42L12,10.59,5.71,4.29A1,1,0,0,0,4.29,5.71L10.59,12l-6.3,6.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l6.29,6.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilMultiply.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMultiply; \ No newline at end of file diff --git a/icons/uil-music-note.js b/icons/uil-music-note.js deleted file mode 100644 index ceccbb16..00000000 --- a/icons/uil-music-note.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMusicNote = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.12,2.21A1,1,0,0,0,18.26,2l-8,2A1,1,0,0,0,9.5,5V15.35A3.45,3.45,0,0,0,8,15a3.5,3.5,0,1,0,3.5,3.5V10.78L18.74,9l.07,0L19,8.85l.15-.1a.93.93,0,0,0,.13-.15.78.78,0,0,0,.1-.15.55.55,0,0,0,.06-.18.58.58,0,0,0,0-.19.24.24,0,0,0,0-.08V3A1,1,0,0,0,19.12,2.21ZM8,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,8,20ZM17.5,7.22l-6,1.5V5.78l6-1.5Z' - })); -}; - -UilMusicNote.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMusicNote; \ No newline at end of file diff --git a/icons/uil-music-tune-slash.js b/icons/uil-music-tune-slash.js deleted file mode 100644 index 042207d9..00000000 --- a/icons/uil-music-tune-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMusicTuneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,7.33a1,1,0,0,0,1-1V5.78l6-1.5V7.22L14.7,8.3a1,1,0,0,0,.24,2l.24,0L20.24,9l.07,0,.19-.09.15-.1a.93.93,0,0,0,.13-.15.78.78,0,0,0,.1-.15.55.55,0,0,0,.06-.18.65.65,0,0,0,0-.19A.24.24,0,0,0,21,8V3a1,1,0,0,0-1.24-1l-8,2A1,1,0,0,0,11,5V6.33A1,1,0,0,0,12,7.33Zm9.71,13-9-9h0l-9-9A1,1,0,0,0,2.29,3.71L11,12.41v2.94A3.45,3.45,0,0,0,9.5,15,3.5,3.5,0,1,0,13,18.5V14.41l7.29,7.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM9.5,20A1.5,1.5,0,1,1,11,18.5,1.5,1.5,0,0,1,9.5,20Z' - })); -}; - -UilMusicTuneSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMusicTuneSlash; \ No newline at end of file diff --git a/icons/uil-music.js b/icons/uil-music.js deleted file mode 100644 index 38ae71ab..00000000 --- a/icons/uil-music.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilMusic = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.65,2.24a1,1,0,0,0-.8-.23l-13,2A1,1,0,0,0,7,5V15.35A3.45,3.45,0,0,0,5.5,15,3.5,3.5,0,1,0,9,18.5V10.86L20,9.17v4.18A3.45,3.45,0,0,0,18.5,13,3.5,3.5,0,1,0,22,16.5V3A1,1,0,0,0,21.65,2.24ZM5.5,20A1.5,1.5,0,1,1,7,18.5,1.5,1.5,0,0,1,5.5,20Zm13-2A1.5,1.5,0,1,1,20,16.5,1.5,1.5,0,0,1,18.5,18ZM20,7.14,9,8.83v-3L20,4.17Z' - })); -}; - -UilMusic.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilMusic; \ No newline at end of file diff --git a/icons/uil-n-a.js b/icons/uil-n-a.js deleted file mode 100644 index 54dc9318..00000000 --- a/icons/uil-n-a.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNA = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H18a3,3,0,0,0-3,3v8a1,1,0,0,0,2,0V13h3v4a1,1,0,0,0,2,0V9A3,3,0,0,0,19,6Zm1,5H17V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1ZM8,6A1,1,0,0,0,7,7v5.76L3.89,6.55A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V11.24l3.11,6.21A1,1,0,0,0,8,18a.91.91,0,0,0,.23,0A1,1,0,0,0,9,17V7A1,1,0,0,0,8,6Zm4-2a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,12,4Z' - })); -}; - -UilNA.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNA; \ No newline at end of file diff --git a/icons/uil-navigator.js b/icons/uil-navigator.js deleted file mode 100644 index 7930c9a4..00000000 --- a/icons/uil-navigator.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNavigator = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.17,9.23l-14-5.78a3,3,0,0,0-4,3.7L3.71,12,2.13,16.85A3,3,0,0,0,2.94,20a3,3,0,0,0,2,.8,3,3,0,0,0,1.15-.23l14.05-5.78a3,3,0,0,0,0-5.54ZM5.36,18.7a1,1,0,0,1-1.06-.19,1,1,0,0,1-.27-1L5.49,13H19.22ZM5.49,11,4,6.53a1,1,0,0,1,.27-1A1,1,0,0,1,5,5.22a1,1,0,0,1,.39.08L19.22,11Z' - })); -}; - -UilNavigator.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNavigator; \ No newline at end of file diff --git a/icons/uil-nerd.js b/icons/uil-nerd.js deleted file mode 100644 index 151a5963..00000000 --- a/icons/uil-nerd.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNerd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.41,8.65s0,0,0-.06A10,10,0,0,0,2.63,8.53a.85.85,0,0,0-.08.24A9.87,9.87,0,0,0,2,12,10,10,0,1,0,21.41,8.65ZM12,4a8,8,0,0,1,6.92,4h-1.2a3,3,0,0,0-4.62.22A3.17,3.17,0,0,0,12,8a3.17,3.17,0,0,0-1.1.22A3,3,0,0,0,6.28,8H5.08A8,8,0,0,1,12,4Zm4.5,6a1,1,0,1,1-1-1A1,1,0,0,1,16.5,10Zm-7,0a1,1,0,1,1-1-1A1,1,0,0,1,9.5,10ZM12,20a8,8,0,0,1-8-8,8.24,8.24,0,0,1,.26-2H5.5a3,3,0,0,0,6,.18,1,1,0,0,1,1,0,3,3,0,0,0,6-.18h1.24A8.24,8.24,0,0,1,20,12,8,8,0,0,1,12,20Zm2.36-5.77a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54Z' - })); -}; - -UilNerd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNerd; \ No newline at end of file diff --git a/icons/uil-newspaper.js b/icons/uil-newspaper.js deleted file mode 100644 index 795e3db1..00000000 --- a/icons/uil-newspaper.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNewspaper = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,11H16a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm0,4H16a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM11,9h6a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2ZM21,3H7A1,1,0,0,0,6,4V7H3A1,1,0,0,0,2,8V18a3,3,0,0,0,3,3H18a4,4,0,0,0,4-4V4A1,1,0,0,0,21,3ZM6,18a1,1,0,0,1-2,0V9H6Zm14-1a2,2,0,0,1-2,2H7.82A3,3,0,0,0,8,18V5H20Zm-9-4h1a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm0,4h1a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Z' - })); -}; - -UilNewspaper.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNewspaper; \ No newline at end of file diff --git a/icons/uil-ninja.js b/icons/uil-ninja.js deleted file mode 100644 index 25dad8ed..00000000 --- a/icons/uil-ninja.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNinja = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.44,5.34l-.06-.07a10,10,0,0,0-14.76,0l-.06.07A10,10,0,1,0,22,12,9.93,9.93,0,0,0,19.44,5.34ZM12,4a7.87,7.87,0,0,1,3.86,1H8.14A7.87,7.87,0,0,1,12,4ZM5.76,7H18.24a8,8,0,0,1,1.69,4H4.07A8,8,0,0,1,5.76,7ZM12,20a8,8,0,0,1-7.93-7H19.93A8,8,0,0,1,12,20ZM8,8A1,1,0,1,0,9,9,1,1,0,0,0,8,8Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,14,8Zm-3,9.93a1,1,0,0,0,.49.13,1,1,0,0,0,.87-.51A3,3,0,0,1,15,16a1,1,0,0,0,0-2,5,5,0,0,0-4.37,2.57A1,1,0,0,0,11,17.93Z' - })); -}; - -UilNinja.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNinja; \ No newline at end of file diff --git a/icons/uil-no-entry.js b/icons/uil-no-entry.js deleted file mode 100644 index 990e6b0a..00000000 --- a/icons/uil-no-entry.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNoEntry = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H19.76L15.37,4.2A3,3,0,0,0,12.48,2h-1A3,3,0,0,0,8.63,4.2L4.24,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM10.56,4.73a1,1,0,0,1,1-.73h1a1,1,0,0,1,1,.73L14.35,8H9.65ZM9.09,10h5.82L16,14H8ZM6.32,20l1.11-4h9.14l1.11,4Z' - })); -}; - -UilNoEntry.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNoEntry; \ No newline at end of file diff --git a/icons/uil-notebooks.js b/icons/uil-notebooks.js deleted file mode 100644 index da5643fd..00000000 --- a/icons/uil-notebooks.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNotebooks = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Zm-3,9V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM10,4h2V8.86l-.36-.3a1,1,0,0,0-1.28,0l-.36.3ZM4,15V5A1,1,0,0,1,5,4H8v7a1,1,0,0,0,1.65.76L11,10.63l1.35,1.13A1,1,0,0,0,13,12a1.06,1.06,0,0,0,.42-.09A1,1,0,0,0,14,11V4h1a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H5A1,1,0,0,1,4,15Z' - })); -}; - -UilNotebooks.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNotebooks; \ No newline at end of file diff --git a/icons/uil-notes.js b/icons/uil-notes.js deleted file mode 100644 index 27888e6c..00000000 --- a/icons/uil-notes.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilNotes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,14H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0-4H10a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4-6H17V3a1,1,0,0,0-2,0V4H13V3a1,1,0,0,0-2,0V4H9V3A1,1,0,0,0,7,3V4H4A1,1,0,0,0,3,5V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V5A1,1,0,0,0,20,4ZM19,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V6H7V7A1,1,0,0,0,9,7V6h2V7a1,1,0,0,0,2,0V6h2V7a1,1,0,0,0,2,0V6h2Z' - })); -}; - -UilNotes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilNotes; \ No newline at end of file diff --git a/icons/uil-object-group.js b/icons/uil-object-group.js deleted file mode 100644 index 6aa96bf4..00000000 --- a/icons/uil-object-group.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilObjectGroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,10H14V8a1,1,0,0,0-1-1H8A1,1,0,0,0,7,8v5a1,1,0,0,0,1,1h2v2a1,1,0,0,0,1,1h5a1,1,0,0,0,1-1V11A1,1,0,0,0,16,10Zm-6,1v1H9V9h3v1H11A1,1,0,0,0,10,11Zm5,4H12V12h3Zm6,3.28V5.72A2,2,0,1,0,18.28,3H5.72A2,2,0,1,0,3,5.72V18.28A2,2,0,1,0,5.72,21H18.28A2,2,0,1,0,21,18.28Zm-2,0a1.91,1.91,0,0,0-.72.72H5.72A1.91,1.91,0,0,0,5,18.28V5.72A1.91,1.91,0,0,0,5.72,5H18.28a1.91,1.91,0,0,0,.72.72Z' - })); -}; - -UilObjectGroup.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilObjectGroup; \ No newline at end of file diff --git a/icons/uil-object-ungroup.js b/icons/uil-object-ungroup.js deleted file mode 100644 index e1eb6014..00000000 --- a/icons/uil-object-ungroup.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilObjectUngroup = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18.28V11.72A2,2,0,1,0,18.28,9H15V5.72A2,2,0,1,0,12.28,3H5.72A2,2,0,1,0,3,5.72v6.56A2,2,0,1,0,5.72,15H9v3.28A2,2,0,1,0,11.72,21h6.56A2,2,0,1,0,21,18.28ZM8,10a2,2,0,0,0,1,1.72V13H5.72A1.91,1.91,0,0,0,5,12.28V5.72A1.91,1.91,0,0,0,5.72,5h6.56a1.91,1.91,0,0,0,.72.72V9H11.72A2,2,0,0,0,8,10Zm5,1v1.28a1.91,1.91,0,0,0-.72.72H11V11.72a1.91,1.91,0,0,0,.72-.72Zm6,7.28a1.91,1.91,0,0,0-.72.72H11.72a1.91,1.91,0,0,0-.72-.72V15h1.28A2,2,0,1,0,15,12.28V11h3.28a1.91,1.91,0,0,0,.72.72Z' - })); -}; - -UilObjectUngroup.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilObjectUngroup; \ No newline at end of file diff --git a/icons/uil-octagon.js b/icons/uil-octagon.js deleted file mode 100644 index 97f0cd4b..00000000 --- a/icons/uil-octagon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOctagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,7.57,16.44,2.29A1.05,1.05,0,0,0,15.73,2H8.27a1.05,1.05,0,0,0-.71.29L2.29,7.57a1,1,0,0,0-.29.7v7.46a1,1,0,0,0,.29.7l5.27,5.28a1.05,1.05,0,0,0,.71.29h7.46a1.05,1.05,0,0,0,.71-.29l5.27-5.28a1,1,0,0,0,.29-.7V8.27A1,1,0,0,0,21.71,7.57ZM20,15.31,15.31,20H8.69L4,15.31V8.69L8.69,4h6.62L20,8.69Z' - })); -}; - -UilOctagon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOctagon; \ No newline at end of file diff --git a/icons/uil-okta.js b/icons/uil-okta.js deleted file mode 100644 index ed289d41..00000000 --- a/icons/uil-okta.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOkta = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 10c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5z' - })); -}; - -UilOkta.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOkta; \ No newline at end of file diff --git a/icons/uil-opera-alt.js b/icons/uil-opera-alt.js deleted file mode 100644 index 11a54e4f..00000000 --- a/icons/uil-opera-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOperaAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.9707,5.00044c-3.64355,0-3.64355,5.12207-3.64355,6.85742,0,1.95313,0,7.14258,3.66015,7.14258,3.6543,0,3.6543-5.16211,3.6543-7.10547C15.6416,7.31977,14.40625,5.00044,11.9707,5.00044Zm.0166,12c-1.10156,0-1.66015-1.73047-1.66015-5.19531,0-2.19141.28515-4.80469,1.64355-4.80469,1.4541,0,1.6709,3.0664,1.6709,4.89453C13.6416,15.28267,13.085,17.00044,11.9873,17.00044Zm.001-16C5.93652,1.00044,1.71,5.48188,1.71,11.89888c0,5.457,3.84668,11.10156,10.28516,11.10156,6.43359,0,10.27832-5.64453,10.27832-11.10156C22.27344,5.48188,18.044,1.00044,11.98828,1.00044Zm.00684,20c-5.18653,0-8.28516-4.62793-8.28516-9.10156,0-5.32227,3.32715-8.89844,8.27832-8.89844,4.95606,0,8.28516,3.57617,8.28516,8.89844C20.27344,16.37251,17.17676,21.00044,11.99512,21.00044Z' - })); -}; - -UilOperaAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOperaAlt; \ No newline at end of file diff --git a/icons/uil-opera.js b/icons/uil-opera.js deleted file mode 100644 index 80d6d023..00000000 --- a/icons/uil-opera.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOpera = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.9963,2c-5.462,0-9.278,3.95814-9.278,9.899,0,5.28991,3.7112,10.101,9.28549,10.101,5.56676,0,9.27787-4.81857,9.27787-10.101C21.28168,5.95814,17.45831,2,11.9963,2Zm0,18.38381c-3.39693,0-3.77107-5.01309-3.77107-8.7093V11.5997c0-3.99549.59858-8.23042,3.74864-8.23042s3.786,4.3621,3.786,8.3576C15.75987,15.42311,15.39318,20.38381,11.9963,20.38381Z' - })); -}; - -UilOpera.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOpera; \ No newline at end of file diff --git a/icons/uil-outgoing-call.js b/icons/uil-outgoing-call.js deleted file mode 100644 index b58b7a01..00000000 --- a/icons/uil-outgoing-call.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOutgoingCall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1ZM21.86,2.68a1,1,0,0,0-.54-.54,1,1,0,0,0-.38-.08h-4a1,1,0,1,0,0,2h1.58l-3.29,3.3a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l3.3-3.29V7.06a1,1,0,0,0,2,0v-4A1,1,0,0,0,21.86,2.68Z' - })); -}; - -UilOutgoingCall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOutgoingCall; \ No newline at end of file diff --git a/icons/uil-outline.js b/icons/uil-outline.js deleted file mode 100644 index ff980e04..00000000 --- a/icons/uil-outline.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilOutline = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.2,7.3c-1.9-0.4-3.3-2-3.4-3.9V3.1h-3.1v12.5c0,1.5-1.2,2.6-2.6,2.6c-0.8,0-1.6-0.4-2.1-1l0,0l0,0C7,16,7.2,14.3,8.4,13.4C9,13,9.5,13,10.2,13V9.8c-3.2-0.4-5.5,1.8-6,4.9c-0.2,1.8,0.3,3.5,1.6,4.8c2.2,2.3,5.9,2.3,8.2,0.1c1.1-1.1,1.7-2.6,1.7-4.1V9.2c1.3,0.9,2.8,1.4,4.4,1.4V7.4C19.8,7.4,19.5,7.4,19.2,7.3z' - })); -}; - -UilOutline.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilOutline; \ No newline at end of file diff --git a/icons/uil-package.js b/icons/uil-package.js deleted file mode 100644 index 4f8f875f..00000000 --- a/icons/uil-package.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPackage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM10,4h4V7.13l-1.45-1a1,1,0,0,0-1.1,0L10,7.13ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H8V9a1,1,0,0,0,.53.88,1,1,0,0,0,1-.05L12,8.2l2.45,1.63A1,1,0,0,0,16,9V4h3a1,1,0,0,1,1,1Z' - })); -}; - -UilPackage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPackage; \ No newline at end of file diff --git a/icons/uil-padlock.js b/icons/uil-padlock.js deleted file mode 100644 index 6c4c4ba1..00000000 --- a/icons/uil-padlock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPadlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13a1.49,1.49,0,0,0-1,2.61V17a1,1,0,0,0,2,0V15.61A1.49,1.49,0,0,0,12,13Zm5-4V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilPadlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPadlock; \ No newline at end of file diff --git a/icons/uil-pagelines.js b/icons/uil-pagelines.js deleted file mode 100644 index ef26cd4d..00000000 --- a/icons/uil-pagelines.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPagelines = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.885 13.993c1.75-.901 2.282-3.35 2.282-3.35s-2.305-.99-4.055-.085a4.206 4.206 0 0 0-1.698 1.822 8.965 8.965 0 0 0 .06-.99 6.993 6.993 0 0 0 1.582-4.726C16.712 3.901 13.71 2 13.71 2s-2.442 2.583-2.095 5.35a6.819 6.819 0 0 0 2.518 4.03 9.322 9.322 0 0 1-.076 1.01 4.396 4.396 0 0 0-1.9-2.058c-1.774-.853-4.049.203-4.049.203s.603 2.432 2.376 3.284a4.72 4.72 0 0 0 3.258.076 9.433 9.433 0 0 1-1.458 2.9 4.393 4.393 0 0 0-2.012-1.98c-1.813-.763-4.028.404-4.028.404s.72 2.402 2.536 3.162a3.744 3.744 0 0 0 1.735.243 9.419 9.419 0 0 1-5.845 2.032.672.672 0 0 0 0 1.344 10.786 10.786 0 0 0 7.968-3.527 4.954 4.954 0 0 0 3.336 1.194c1.96-.207 3.34-2.299 3.34-2.299s-1.792-1.753-3.75-1.543a3.54 3.54 0 0 0-1.36.456 10.744 10.744 0 0 0 .895-2.275 5.153 5.153 0 0 0 3.786-.013Z' - })); -}; - -UilPagelines.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPagelines; \ No newline at end of file diff --git a/icons/uil-pagerduty.js b/icons/uil-pagerduty.js deleted file mode 100644 index 30ac6dcf..00000000 --- a/icons/uil-pagerduty.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPagerduty = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17 3c-1.6-.8-2.7-1-5.2-1H6v12.1h5.8c2.3 0 4-.1 5.5-1.1 1.6-1.1 2.6-3 2.5-5 .1-2.1-1-4-2.8-5zm-4.6 8.6H8.9v-7h3.3c3 0 4.5 1 4.5 3.4.1 2.6-1.8 3.6-4.3 3.6zM6 22h2.9v-5.3H6V22z' - })); -}; - -UilPagerduty.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPagerduty; \ No newline at end of file diff --git a/icons/uil-paint-tool.js b/icons/uil-paint-tool.js deleted file mode 100644 index 44671251..00000000 --- a/icons/uil-paint-tool.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPaintTool = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,1H10A3,3,0,0,0,7,4H6A3,3,0,0,0,3,7v3a3,3,0,0,0,3,3h6a1,1,0,0,1,1,1v1a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2V14a3,3,0,0,0-3-3H6a1,1,0,0,1-1-1V7A1,1,0,0,1,6,6H7a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V4A3,3,0,0,0,18,1ZM15,17v4H13V17ZM19,6a1,1,0,0,1-1,1H10A1,1,0,0,1,9,6V4a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Z' - })); -}; - -UilPaintTool.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPaintTool; \ No newline at end of file diff --git a/icons/uil-palette.js b/icons/uil-palette.js deleted file mode 100644 index f2e881ab..00000000 --- a/icons/uil-palette.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPalette = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.42,15.54a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,7.42,15.54Zm0-8.49a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,7.42,7.05Zm4.95,10a1,1,0,1,0,1,1A1,1,0,0,0,12.37,17Zm-6-6a1,1,0,1,0,1,1A1,1,0,0,0,6.37,11Zm6-6a1,1,0,1,0,1,1A1,1,0,0,0,12.37,5Zm3.54,2.05a1,1,0,1,0,1.41,0A1,1,0,0,0,15.91,7.05Zm6.3,0a11,11,0,1,0-7.85,15.74,3.87,3.87,0,0,0,2.5-1.65A4.2,4.2,0,0,0,17.47,18a5.65,5.65,0,0,1-.1-1,5,5,0,0,1,3-4.56,3.84,3.84,0,0,0,2.06-2.25A4,4,0,0,0,22.21,7.08Zm-1.7,2.44a1.9,1.9,0,0,1-1,1.09A7,7,0,0,0,15.37,17a7.3,7.3,0,0,0,.14,1.4,2.16,2.16,0,0,1-.31,1.65,1.79,1.79,0,0,1-1.21.8,8.72,8.72,0,0,1-1.62.15,9,9,0,0,1-9-9.28A9.05,9.05,0,0,1,11.85,3h.51a9,9,0,0,1,8.06,5A2,2,0,0,1,20.51,9.52ZM12.37,11a1,1,0,1,0,1,1A1,1,0,0,0,12.37,11Z' - })); -}; - -UilPalette.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPalette; \ No newline at end of file diff --git a/icons/uil-panel-add.js b/icons/uil-panel-add.js deleted file mode 100644 index 3c39e52c..00000000 --- a/icons/uil-panel-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPanelAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18 10h-4V3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h15a1 1 0 0 0 1-1V11a1 1 0 0 0-1-1ZM7 20H4V10h3Zm5 0H9V4h3Zm5 0h-3v-8h3Zm4-16h-1V3a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0V6h1a1 1 0 0 0 0-2Z' - })); -}; - -UilPanelAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPanelAdd; \ No newline at end of file diff --git a/icons/uil-panorama-h-alt.js b/icons/uil-panorama-h-alt.js deleted file mode 100644 index a9cefbb8..00000000 --- a/icons/uil-panorama-h-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPanoramaHAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.46,5.83A1,1,0,0,0,20.7,5l-.11,0A37.49,37.49,0,0,0,3.41,5L3.3,5a1,1,0,0,0-.76.8,35.52,35.52,0,0,0,0,12.34,1,1,0,0,0,.76.8l.11,0A37.62,37.62,0,0,0,12,20a37.62,37.62,0,0,0,8.59-1l.11,0a1,1,0,0,0,.76-.8A35.52,35.52,0,0,0,21.46,5.83ZM19.6,17.17a35.42,35.42,0,0,1-15.2,0,33.2,33.2,0,0,1,0-10.34,35.42,35.42,0,0,1,15.2,0A33.2,33.2,0,0,1,19.6,17.17Z' - })); -}; - -UilPanoramaHAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPanoramaHAlt; \ No newline at end of file diff --git a/icons/uil-panorama-h.js b/icons/uil-panorama-h.js deleted file mode 100644 index 7a93d01b..00000000 --- a/icons/uil-panorama-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPanoramaH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.54,5.16a1,1,0,0,0-1-.07A21.27,21.27,0,0,1,12,6.73,21.27,21.27,0,0,1,3.42,5.09a1,1,0,0,0-1,.07A1,1,0,0,0,2,6V18a1,1,0,0,0,.46.84,1,1,0,0,0,1,.07A21.27,21.27,0,0,1,12,17.27a21.27,21.27,0,0,1,8.58,1.64A1.06,1.06,0,0,0,21,19a1,1,0,0,0,.54-.16A1,1,0,0,0,22,18V6A1,1,0,0,0,21.54,5.16ZM20,16.52a24.77,24.77,0,0,0-8-1.25,24.77,24.77,0,0,0-8,1.25v-9a24.77,24.77,0,0,0,8,1.25,24.77,24.77,0,0,0,8-1.25Z' - })); -}; - -UilPanoramaH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPanoramaH; \ No newline at end of file diff --git a/icons/uil-panorama-v.js b/icons/uil-panorama-v.js deleted file mode 100644 index 2d5a7881..00000000 --- a/icons/uil-panorama-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPanoramaV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.27,12a21.11,21.11,0,0,1,1.64-8.58,1,1,0,0,0-.07-1A1,1,0,0,0,18,2H6a1,1,0,0,0-.84.46,1,1,0,0,0-.07,1A21.11,21.11,0,0,1,6.73,12a21.11,21.11,0,0,1-1.64,8.58,1,1,0,0,0,.07,1A1,1,0,0,0,6,22H18a1,1,0,0,0,.84-.46,1,1,0,0,0,.07-1A21.11,21.11,0,0,1,17.27,12Zm-.75,8h-9a24.77,24.77,0,0,0,1.25-8A24.77,24.77,0,0,0,7.48,4h9a24.77,24.77,0,0,0-1.25,8A24.77,24.77,0,0,0,16.52,20Z' - })); -}; - -UilPanoramaV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPanoramaV; \ No newline at end of file diff --git a/icons/uil-paperclip.js b/icons/uil-paperclip.js deleted file mode 100644 index 184cc181..00000000 --- a/icons/uil-paperclip.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPaperclip = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.08,12.42,11.9,18.61a4.25,4.25,0,0,1-6-6l8-8a2.57,2.57,0,0,1,3.54,0,2.52,2.52,0,0,1,0,3.54l-6.9,6.89A.75.75,0,1,1,9.42,14l5.13-5.12a1,1,0,0,0-1.42-1.42L8,12.6a2.74,2.74,0,0,0,0,3.89,2.82,2.82,0,0,0,3.89,0l6.89-6.9a4.5,4.5,0,0,0-6.36-6.36l-8,8A6.25,6.25,0,0,0,13.31,20l6.19-6.18a1,1,0,1,0-1.42-1.42Z' - })); -}; - -UilPaperclip.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPaperclip; \ No newline at end of file diff --git a/icons/uil-paragraph.js b/icons/uil-paragraph.js deleted file mode 100644 index 4b1838b6..00000000 --- a/icons/uil-paragraph.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilParagraph = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,13.5H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Zm8-5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilParagraph.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilParagraph; \ No newline at end of file diff --git a/icons/uil-parcel.js b/icons/uil-parcel.js deleted file mode 100644 index aae71c6d..00000000 --- a/icons/uil-parcel.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilParcel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,14H9a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm6,2H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,4V7.29l-1.51-.84a1,1,0,0,0-1,0L10,7.29V4Zm6,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H8V9a1,1,0,0,0,.5.86,1,1,0,0,0,1,0L12,8.47l2.51,1.4A1,1,0,0,0,15,10a1,1,0,0,0,1-1V4h3a1,1,0,0,1,1,1Z' - })); -}; - -UilParcel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilParcel; \ No newline at end of file diff --git a/icons/uil-parking-circle.js b/icons/uil-parking-circle.js deleted file mode 100644 index 27b14145..00000000 --- a/icons/uil-parking-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilParkingCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,7H10A1,1,0,0,0,9,8v8a1,1,0,0,0,2,0V14h2a3,3,0,0,0,3-3V10A3,3,0,0,0,13,7Zm1,4a1,1,0,0,1-1,1H11V9h2a1,1,0,0,1,1,1ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilParkingCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilParkingCircle; \ No newline at end of file diff --git a/icons/uil-parking-square.js b/icons/uil-parking-square.js deleted file mode 100644 index acbae2bf..00000000 --- a/icons/uil-parking-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilParkingSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6H9A1,1,0,0,0,8,7V17a1,1,0,0,0,2,0V14h2a4,4,0,0,0,0-8Zm0,6H10V8h2a2,2,0,0,1,0,4ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilParkingSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilParkingSquare; \ No newline at end of file diff --git a/icons/uil-pathfinder-unite.js b/icons/uil-pathfinder-unite.js deleted file mode 100644 index faf533a1..00000000 --- a/icons/uil-pathfinder-unite.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPathfinderUnite = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,7.54H16.46V3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V15.46a1,1,0,0,0,1,1H7.54V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V15.46a1,1,0,0,0-1-1H4V4H14.46V8.54a1,1,0,0,0,1,1H20Z' - })); -}; - -UilPathfinderUnite.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPathfinderUnite; \ No newline at end of file diff --git a/icons/uil-pathfinder.js b/icons/uil-pathfinder.js deleted file mode 100644 index 466ce6f1..00000000 --- a/icons/uil-pathfinder.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPathfinder = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4,14.46a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1H4a1,1,0,0,0,0-2ZM8.18,4h2.1a1,1,0,0,0,0-2H8.18a1,1,0,0,0,0,2Zm6.28,0a1,1,0,0,0,2,0V3a1,1,0,0,0-1-1h-1a1,1,0,0,0,0,2ZM4,2H3A1,1,0,0,0,2,3V4A1,1,0,0,0,4,4,1,1,0,0,0,4,2ZM3,11.28a1,1,0,0,0,1-1V8.18a1,1,0,0,0-2,0v2.1A1,1,0,0,0,3,11.28ZM15.82,20h-2.1a1,1,0,1,0,0,2h2.1a1,1,0,0,0,0-2ZM21,7.54H20a1,1,0,0,0,0,2,1,1,0,0,0,2,0v-1A1,1,0,0,0,21,7.54Zm0,5.18a1,1,0,0,0-1,1v2.1a1,1,0,0,0,2,0v-2.1A1,1,0,0,0,21,12.72ZM16.46,7.54a1,1,0,1,0-2,0H8.54a1,1,0,0,0-1,1v5.92a1,1,0,1,0,0,2,1,1,0,0,0,2,0h5.92a1,1,0,0,0,1-1V9.54a1,1,0,1,0,0-2Zm-2,6.92H9.54V9.54h4.92ZM21,19a1,1,0,0,0-1,1,1,1,0,0,0,0,2h1a1,1,0,0,0,1-1V20A1,1,0,0,0,21,19ZM9.54,20a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1h1a1,1,0,0,0,0-2Z' - })); -}; - -UilPathfinder.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPathfinder; \ No newline at end of file diff --git a/icons/uil-pause-circle.js b/icons/uil-pause-circle.js deleted file mode 100644 index cd8b4f1f..00000000 --- a/icons/uil-pause-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPauseCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,7A1,1,0,0,0,9,8v8a1,1,0,0,0,2,0V8A1,1,0,0,0,10,7Zm2-5A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM14,7a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,14,7Z' - })); -}; - -UilPauseCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPauseCircle; \ No newline at end of file diff --git a/icons/uil-pause.js b/icons/uil-pause.js deleted file mode 100644 index c4364953..00000000 --- a/icons/uil-pause.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPause = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,2a3,3,0,0,0-3,3V19a3,3,0,0,0,6,0V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-2,0V5a1,1,0,0,1,2,0ZM8,2A3,3,0,0,0,5,5V19a3,3,0,0,0,6,0V5A3,3,0,0,0,8,2ZM9,19a1,1,0,0,1-2,0V5A1,1,0,0,1,9,5Z' - })); -}; - -UilPause.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPause; \ No newline at end of file diff --git a/icons/uil-paypal.js b/icons/uil-paypal.js deleted file mode 100644 index 4fcce965..00000000 --- a/icons/uil-paypal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPaypal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.43705,7.10449a3.82273,3.82273,0,0,0-.57281-.5238,4.72529,4.72529,0,0,0-1.15766-3.73987C17.6226,1.61914,15.77494,1,13.2144,1H7.00053A1.89234,1.89234,0,0,0,5.13725,2.5918L2.5474,18.99805A1.53317,1.53317,0,0,0,4.063,20.7832H6.72709l-.082.52051A1.46684,1.46684,0,0,0,8.0933,23h3.23438a1.76121,1.76121,0,0,0,1.751-1.46973l.64063-4.03125.01074-.05468h.29883c4.03223,0,6.55078-1.99317,7.28516-5.7627A5.149,5.149,0,0,0,20.43705,7.10449ZM7.84233,13.7041l-.71448,4.53528-.08631.54382H4.606L7.09721,3H13.2144c1.93554,0,3.31738.4043,3.99218,1.16406a2.96675,2.96675,0,0,1,.60791,2.73334l-.01861.11224c-.01215.07648-.0232.15119-.0434.24622a5.84606,5.84606,0,0,1-2.00512,3.67053,6.67728,6.67728,0,0,1-4.21753,1.183H9.70658A1.87969,1.87969,0,0,0,7.84233,13.7041Zm11.50878-2.40527c-.55078,2.82812-2.24218,4.14551-5.32226,4.14551h-.4834a1.76109,1.76109,0,0,0-1.751,1.47265l-.64941,4.07422L8.71733,21l.47815-3.03387.61114-3.85285h1.7193c.1568,0,.29541-.02356.44812-.02893.35883-.01239.71661-.02618,1.05267-.06787.20526-.02557.39362-.07221.59034-.1087.27252-.05036.54522-.10016.80108-.17127.19037-.053.368-.12121.54907-.18561.23926-.0849.4748-.174.69757-.27868.168-.0791.32807-.16706.48658-.25727a6.77125,6.77125,0,0,0,.61236-.39172c.14228-.1026.28192-.20789.415-.321a6.56392,6.56392,0,0,0,.53693-.51892c.113-.12055.2287-.23755.33331-.36725a7.09,7.09,0,0,0,.48-.69263c.07648-.12219.16126-.23523.23163-.36383a8.33175,8.33175,0,0,0,.52075-1.15326c.00867-.02386.02106-.044.02954-.068.004-.01123.00989-.02057.01386-.03186A4.29855,4.29855,0,0,1,19.35111,11.29883Z' - })); -}; - -UilPaypal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPaypal; \ No newline at end of file diff --git a/icons/uil-pen.js b/icons/uil-pen.js deleted file mode 100644 index 8521cb56..00000000 --- a/icons/uil-pen.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,7.24a1,1,0,0,0-.29-.71L17.47,2.29A1,1,0,0,0,16.76,2a1,1,0,0,0-.71.29L13.22,5.12h0L2.29,16.05a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1H7.24A1,1,0,0,0,8,21.71L18.87,10.78h0L21.71,8a1.19,1.19,0,0,0,.22-.33,1,1,0,0,0,0-.24.7.7,0,0,0,0-.14ZM6.83,20H4V17.17l9.93-9.93,2.83,2.83ZM18.17,8.66,15.34,5.83l1.42-1.41,2.82,2.82Z' - })); -}; - -UilPen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPen; \ No newline at end of file diff --git a/icons/uil-pentagon.js b/icons/uil-pentagon.js deleted file mode 100644 index 7b0e8c23..00000000 --- a/icons/uil-pentagon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPentagon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.59,9.17l-9-6.54a1,1,0,0,0-1.18,0l-9,6.54a1,1,0,0,0-.36,1.12L5.49,20.87a1,1,0,0,0,1,.69H17.56a1,1,0,0,0,1-.69L22,10.29A1,1,0,0,0,21.59,9.17ZM16.84,19.56H7.16l-3-9.2L12,4.68l7.82,5.68Z' - })); -}; - -UilPentagon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPentagon; \ No newline at end of file diff --git a/icons/uil-percentage.js b/icons/uil-percentage.js deleted file mode 100644 index eb9c0216..00000000 --- a/icons/uil-percentage.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPercentage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.75781,10.75781a3,3,0,1,0-3-3A3.00328,3.00328,0,0,0,7.75781,10.75781Zm0-4a1,1,0,1,1-1,1A1.00067,1.00067,0,0,1,7.75781,6.75781Zm8.48438,6.48438a3,3,0,1,0,3,3A3.00328,3.00328,0,0,0,16.24219,13.24219Zm0,4a1,1,0,1,1,1-1A1.00067,1.00067,0,0,1,16.24219,17.24219ZM19.707,4.293a.99962.99962,0,0,0-1.41406,0l-14,14A.99989.99989,0,1,0,5.707,19.707l14-14A.99962.99962,0,0,0,19.707,4.293Z' - })); -}; - -UilPercentage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPercentage; \ No newline at end of file diff --git a/icons/uil-phone-alt.js b/icons/uil-phone-alt.js deleted file mode 100644 index 364e0480..00000000 --- a/icons/uil-phone-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhoneAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' - })); -}; - -UilPhoneAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhoneAlt; \ No newline at end of file diff --git a/icons/uil-phone-pause.js b/icons/uil-phone-pause.js deleted file mode 100644 index 6d114bd3..00000000 --- a/icons/uil-phone-pause.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhonePause = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1,1,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1ZM19,10a1,1,0,0,0,1-1V5a1,1,0,0,0-2,0V9A1,1,0,0,0,19,10Zm-4,0a1,1,0,0,0,1-1V5a1,1,0,0,0-2,0V9A1,1,0,0,0,15,10Z' - })); -}; - -UilPhonePause.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhonePause; \ No newline at end of file diff --git a/icons/uil-phone-slash.js b/icons/uil-phone-slash.js deleted file mode 100644 index 05d254bd..00000000 --- a/icons/uil-phone-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhoneSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.91,13.1a1,1,0,0,0,.85.47A1,1,0,0,0,6.61,12,17,17,0,0,1,4.14,5.15a1,1,0,0,1,.24-.81A1,1,0,0,1,5.13,4h3a1,1,0,0,1,1,.8c0,.23.08.44.13.67l0,.13a10.33,10.33,0,0,0,.47,1.54L8.34,7.8a1,1,0,0,0-.52.57,1,1,0,0,0,0,.77c.1.21.2.42.32.64a1,1,0,0,0,1.37.37,1,1,0,0,0,.5-.94L10.58,9a2,2,0,0,0,1.05-2.48,9.3,9.3,0,0,1-.39-1.3l0-.1c0-.2-.08-.4-.11-.58A3,3,0,0,0,8.16,2h-3A3,3,0,0,0,2.88,3a3,3,0,0,0-.72,2.39A19.05,19.05,0,0,0,4.91,13.1Zm14.61-.21-.6-.11-.08,0a9.31,9.31,0,0,1-1.33-.39,2,2,0,0,0-2.47,1l-.21.46a12.39,12.39,0,0,1-1.92-1.37l8.8-8.79a1,1,0,1,0-1.42-1.42l-18,18a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4.59-4.6a19.09,19.09,0,0,0,10.29,4.73,2.69,2.69,0,0,0,.4,0,3,3,0,0,0,2-.75,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.52,12.89Zm.48,6a1,1,0,0,1-.34.75,1,1,0,0,1-.81.24A17.07,17.07,0,0,1,9.71,15.7l1.77-1.77a14.69,14.69,0,0,0,3.38,2.21,1,1,0,0,0,.77,0,1,1,0,0,0,.57-.52l.62-1.41a12,12,0,0,0,1.6.47l.11,0,.69.13a1,1,0,0,1,.78,1Z' - })); -}; - -UilPhoneSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhoneSlash; \ No newline at end of file diff --git a/icons/uil-phone-times.js b/icons/uil-phone-times.js deleted file mode 100644 index ecc9daf5..00000000 --- a/icons/uil-phone-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhoneTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.85,5.56l1.79-1.79a1,1,0,1,0-1.41-1.41L18.44,4.15l-1.8-1.79a1,1,0,0,0-1.41,1.41L17,5.56l-1.79,1.8a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L18.44,7l1.79,1.79a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' - })); -}; - -UilPhoneTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhoneTimes; \ No newline at end of file diff --git a/icons/uil-phone-volume.js b/icons/uil-phone-volume.js deleted file mode 100644 index b40f8816..00000000 --- a/icons/uil-phone-volume.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhoneVolume = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.41,13c-.22,0-.45-.07-.67-.12a9.86,9.86,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.46a13.17,13.17,0,0,1-2.67-2,13.17,13.17,0,0,1-2-2.67l.46-.21a2,2,0,0,0,1-2.48,10.47,10.47,0,0,1-.39-1.32c-.05-.22-.09-.45-.12-.67a3,3,0,0,0-3-2.49H5a3,3,0,0,0-2.24,1,3,3,0,0,0-.73,2.4,19.07,19.07,0,0,0,5.41,11,19.07,19.07,0,0,0,11,5.41,2.56,2.56,0,0,0,.39,0,3,3,0,0,0,2-.76,3,3,0,0,0,1-2.24v-3A3,3,0,0,0,19.41,13Zm.49,6a1,1,0,0,1-.33.74,1,1,0,0,1-.82.25,17.16,17.16,0,0,1-9.87-4.84A17.16,17.16,0,0,1,4,5.25a1,1,0,0,1,.25-.82A1,1,0,0,1,5,4.1h3a1,1,0,0,1,1,.78c0,.27.09.55.15.82a11,11,0,0,0,.46,1.54l-1.4.66a1,1,0,0,0-.52.56,1,1,0,0,0,0,.76,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.56-.52l.63-1.4a12.41,12.41,0,0,0,1.58.46c.26.06.54.11.81.15a1,1,0,0,1,.78,1ZM14,2c-.23,0-.47,0-.7,0a1,1,0,0,0,.17,2L14,4a6,6,0,0,1,6,6c0,.18,0,.35,0,.53a1,1,0,0,0,.91,1.08h.08a1,1,0,0,0,1-.91c0-.23,0-.47,0-.7A8,8,0,0,0,14,2Zm2,8a1,1,0,0,0,2,0,4,4,0,0,0-4-4,1,1,0,0,0,0,2A2,2,0,0,1,16,10Z' - })); -}; - -UilPhoneVolume.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhoneVolume; \ No newline at end of file diff --git a/icons/uil-phone.js b/icons/uil-phone.js deleted file mode 100644 index 33a960b5..00000000 --- a/icons/uil-phone.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPhone = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.05,1.05,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' - })); -}; - -UilPhone.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPhone; \ No newline at end of file diff --git a/icons/uil-picture.js b/icons/uil-picture.js deleted file mode 100644 index 8c71219c..00000000 --- a/icons/uil-picture.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPicture = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,4a1,1,0,0,0,.71-1.7,1,1,0,0,0-1.42,0,1,1,0,0,0-.21.32A.84.84,0,0,0,19,3a1,1,0,0,0,1,1Zm0,9a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7-2.48-2.49a2.86,2.86,0,0,0-3.93,0L5,12.6V7A1,1,0,0,1,6,6H16a1,1,0,0,0,0-2H6A3,3,0,0,0,3,7V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V14A1,1,0,0,0,20,13ZM6,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L16.45,20Zm13-1a1,1,0,0,1-.18.53L14.31,15l.7-.7a.78.78,0,0,1,1.1,0L19,17.22ZM20,5a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V6A1,1,0,0,0,20,5Z' - })); -}; - -UilPicture.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPicture; \ No newline at end of file diff --git a/icons/uil-pizza-slice.js b/icons/uil-pizza-slice.js deleted file mode 100644 index 8b3b7b94..00000000 --- a/icons/uil-pizza-slice.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPizzaSlice = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.51,12.48a1,1,0,1,0,1,1A1,1,0,0,0,8.51,12.48ZM8.51,8a1,1,0,1,0,1,1A1,1,0,0,0,8.51,8ZM12,10a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm8.5-1.43,0,0a3,3,0,0,0-2.3-.29,2.9,2.9,0,0,0-1.09.56L5.51,2.13a1,1,0,0,0-1,0A1,1,0,0,0,4,3V16.17A2.94,2.94,0,0,0,2,19H2a3,3,0,0,0,2.92,3h.58a18.57,18.57,0,0,0,16.11-9.41A3,3,0,0,0,20.51,8.57ZM6,4.73l9.89,5.71A12.57,12.57,0,0,1,6,16Zm13.87,6.88A16.58,16.58,0,0,1,5,20a1,1,0,0,1-1-1,1,1,0,0,1,.3-.72A1,1,0,0,1,5,18h.51a14.5,14.5,0,0,0,12.62-7.37.9.9,0,0,1,.58-.44,1,1,0,0,1,.75.09h0A1,1,0,0,1,19.88,11.61Z' - })); -}; - -UilPizzaSlice.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPizzaSlice; \ No newline at end of file diff --git a/icons/uil-plane-arrival.js b/icons/uil-plane-arrival.js deleted file mode 100644 index 2276c641..00000000 --- a/icons/uil-plane-arrival.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlaneArrival = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.12,16.23a5,5,0,0,0-2.3-3L16.71,12l-.48-5.47a1,1,0,0,0-.49-.78l-3-1.72a1,1,0,0,0-1,0,1,1,0,0,0-.52.84l-.15,3.9-1.75-1L6.46,3.92a1,1,0,0,0-1.78.41L3.81,8.94A3,3,0,0,0,5.2,12.23l14.06,8.11A1,1,0,0,0,20.62,20,4.91,4.91,0,0,0,21.12,16.23ZM19.24,18,6.2,10.5a1,1,0,0,1-.44-1.13l.46-2.44,1.66,2.2a1,1,0,0,0,.3.27l3.35,1.94a1,1,0,0,0,1.5-.83l.16-3.9,1.09.63.48,5.47a1,1,0,0,0,.5.78L17.82,15a2.91,2.91,0,0,1,1.36,1.78A2.74,2.74,0,0,1,19.24,18Z' - })); -}; - -UilPlaneArrival.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlaneArrival; \ No newline at end of file diff --git a/icons/uil-plane-departure.js b/icons/uil-plane-departure.js deleted file mode 100644 index 3b68b37c..00000000 --- a/icons/uil-plane-departure.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlaneDeparture = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,5.08A3.08,3.08,0,0,0,16.74,2.9L13.93,5.71,7.44,3.55a1,1,0,0,0-1,.24L4.06,6.15a1,1,0,0,0,.29,1.61l5.18,2.35-2.6,2.6-1.71-.86A1,1,0,0,0,4.06,12L2.29,13.81a1,1,0,0,0,0,1.41l6.49,6.49a1,1,0,0,0,1.41,0L12,19.94a1,1,0,0,0,.19-1.16l-.86-1.71,2.6-2.6,2.35,5.18a1,1,0,0,0,1.61.29l2.36-2.36a1,1,0,0,0,.24-1l-2.16-6.49L21.1,7.26A3.05,3.05,0,0,0,22,5.08Zm-2.32.77L16.44,9.09a1,1,0,0,0-.24,1l2.16,6.48-.9.9-2.35-5.17a1,1,0,0,0-.73-.57,1,1,0,0,0-.89.28L9.37,16.17a1,1,0,0,0-.19,1.15L10,19l-.56.56L4.41,14.52,5,14l1.71.86a1,1,0,0,0,1.15-.19L12,10.51a1,1,0,0,0-.29-1.62L6.5,6.54l.9-.9L13.88,7.8a1,1,0,0,0,1-.24l3.24-3.24a1.07,1.07,0,0,1,1.53,0,1,1,0,0,1,.32.76A1.06,1.06,0,0,1,19.68,5.85Z' - })); -}; - -UilPlaneDeparture.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlaneDeparture; \ No newline at end of file diff --git a/icons/uil-plane-fly.js b/icons/uil-plane-fly.js deleted file mode 100644 index 0b9917a8..00000000 --- a/icons/uil-plane-fly.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlaneFly = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M23,9.32a1.06,1.06,0,0,0-.1-.76,4.93,4.93,0,0,0-6.75-1.8L14,8,9,5.65a1,1,0,0,0-.92,0l-3,1.73a1,1,0,0,0-.5.84,1,1,0,0,0,.46.87l3.3,2.08-1.74,1-4.78.58a1,1,0,0,0-.53,1.75l3.54,3.06a3,3,0,0,0,3.55.44L22.5,9.93A1,1,0,0,0,23,9.32Zm-15.53,7a1,1,0,0,1-1.2-.18L4.37,14.51l2.73-.33a1,1,0,0,0,.38-.13l3.36-1.93a1,1,0,0,0,.5-.85,1,1,0,0,0-.47-.86L7.57,8.32l1.1-.63,5,2.32a1,1,0,0,0,.92,0l2.56-1.48a3,3,0,0,1,3.36.29Z' - })); -}; - -UilPlaneFly.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlaneFly; \ No newline at end of file diff --git a/icons/uil-plane.js b/icons/uil-plane.js deleted file mode 100644 index 9ddab7ba..00000000 --- a/icons/uil-plane.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlane = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.75,12a1,1,0,0,0-.55-.89L15.08,8.05v-4a3.08,3.08,0,1,0-6.16,0v4L2.8,11.11a1,1,0,0,0-.55.89v3.33a1,1,0,0,0,.43.83,1,1,0,0,0,.92.11l5.32-2V18l-1.82.6a1,1,0,0,0-.68.95V22a1,1,0,0,0,.3.71,1,1,0,0,0,.7.29h9.17a1,1,0,0,0,1-1V19.5a1,1,0,0,0-.68-.95L15.08,18V14.28l5.32,2a1,1,0,0,0,.92-.11,1,1,0,0,0,.43-.83Zm-7.31-.1a1,1,0,0,0-.93.11,1,1,0,0,0-.43.82v5.84a1,1,0,0,0,.69.95l1.81.6V21H8.41v-.78l1.81-.6a1,1,0,0,0,.69-.95V12.83a1,1,0,0,0-.43-.82,1,1,0,0,0-.93-.11l-5.31,2V12.62l6.11-3.06a1,1,0,0,0,.56-.89V4.08a1.08,1.08,0,1,1,2.16,0V8.67a1,1,0,0,0,.56.89l6.11,3.06v1.27Z' - })); -}; - -UilPlane.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlane; \ No newline at end of file diff --git a/icons/uil-play-circle.js b/icons/uil-play-circle.js deleted file mode 100644 index dbe067a6..00000000 --- a/icons/uil-play-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlayCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,10.27,11,7.38A2,2,0,0,0,8,9.11v5.78a2,2,0,0,0,1,1.73,2,2,0,0,0,2,0l5-2.89a2,2,0,0,0,0-3.46ZM15,12l-5,2.89V9.11L15,12ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilPlayCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlayCircle; \ No newline at end of file diff --git a/icons/uil-play.js b/icons/uil-play.js deleted file mode 100644 index cece4b5c..00000000 --- a/icons/uil-play.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.54,9,8.88,3.46a3.42,3.42,0,0,0-5.13,3V17.58A3.42,3.42,0,0,0,7.17,21a3.43,3.43,0,0,0,1.71-.46L18.54,15a3.42,3.42,0,0,0,0-5.92Zm-1,4.19L7.88,18.81a1.44,1.44,0,0,1-1.42,0,1.42,1.42,0,0,1-.71-1.23V6.42a1.42,1.42,0,0,1,.71-1.23A1.51,1.51,0,0,1,7.17,5a1.54,1.54,0,0,1,.71.19l9.66,5.58a1.42,1.42,0,0,1,0,2.46Z' - })); -}; - -UilPlay.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlay; \ No newline at end of file diff --git a/icons/uil-plug.js b/icons/uil-plug.js deleted file mode 100644 index e9db85ff..00000000 --- a/icons/uil-plug.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlug = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H16V3a1,1,0,0,0-2,0V6H10V3A1,1,0,0,0,8,3V6H5A1,1,0,0,0,5,8H6v5a1,1,0,0,0,.29.71L9,16.41V21a1,1,0,0,0,2,0V17h2v4a1,1,0,0,0,2,0V16.41l2.71-2.7A1,1,0,0,0,18,13V8h1a1,1,0,0,0,0-2Zm-3,6.59L13.59,15H10.41L8,12.59V8h8ZM11,13h2a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Z' - })); -}; - -UilPlug.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlug; \ No newline at end of file diff --git a/icons/uil-plus-circle.js b/icons/uil-plus-circle.js deleted file mode 100644 index 86a066c8..00000000 --- a/icons/uil-plus-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlusCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4-9H13V8a1,1,0,0,0-2,0v3H8a1,1,0,0,0,0,2h3v3a1,1,0,0,0,2,0V13h3a1,1,0,0,0,0-2Z' - })); -}; - -UilPlusCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlusCircle; \ No newline at end of file diff --git a/icons/uil-plus-square.js b/icons/uil-plus-square.js deleted file mode 100644 index 3b88da8c..00000000 --- a/icons/uil-plus-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlusSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,13h2v2a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilPlusSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlusSquare; \ No newline at end of file diff --git a/icons/uil-plus.js b/icons/uil-plus.js deleted file mode 100644 index b2319bc0..00000000 --- a/icons/uil-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,11H13V5a1,1,0,0,0-2,0v6H5a1,1,0,0,0,0,2h6v6a1,1,0,0,0,2,0V13h6a1,1,0,0,0,0-2Z' - })); -}; - -UilPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPlus; \ No newline at end of file diff --git a/icons/uil-podium.js b/icons/uil-podium.js deleted file mode 100644 index babf0d62..00000000 --- a/icons/uil-podium.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPodium = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.79,7.13A1,1,0,0,0,19,6.75H8v-.5A2,2,0,0,1,9.46,4.33a1.5,1.5,0,0,0,1,.42h1a1.5,1.5,0,0,0,0-3h-1a1.49,1.49,0,0,0-1.17.57A4,4,0,0,0,6,6.25v.5H5a1,1,0,0,0-.79.38A1,1,0,0,0,4,8l.62,2.49A3,3,0,0,0,7.1,12.71l.78,7H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2h-.88l.78-7a3,3,0,0,0,2.45-2.23L20,8A1,1,0,0,0,19.79,7.13ZM14.1,19.75H9.9l-.78-7h5.76ZM17.41,10a1,1,0,0,1-1,.76H7.56a1,1,0,0,1-1-.76L6.28,8.75H17.72Z' - })); -}; - -UilPodium.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPodium; \ No newline at end of file diff --git a/icons/uil-polygon.js b/icons/uil-polygon.js deleted file mode 100644 index 3b9aa459..00000000 --- a/icons/uil-polygon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPolygon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.87,11.5l-4.5-7.79a1,1,0,0,0-.87-.5h-9a1,1,0,0,0-.87.5L2.13,11.5a1,1,0,0,0,0,1l4.5,7.79a1,1,0,0,0,.87.5h9a1,1,0,0,0,.87-.5l4.5-7.79A1,1,0,0,0,21.87,11.5Zm-6,7.29H8.08L4.15,12,8.08,5.21h7.84L19.85,12Z' - })); -}; - -UilPolygon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPolygon; \ No newline at end of file diff --git a/icons/uil-post-stamp.js b/icons/uil-post-stamp.js deleted file mode 100644 index bba66a2f..00000000 --- a/icons/uil-post-stamp.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPostStamp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.5,5.5a1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1,1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1,1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1Zm-1-1.79a2.5,2.5,0,0,0,0,4.58V9.71a2.5,2.5,0,0,0,0,4.58v1.42a2.5,2.5,0,0,0,0,4.58V21.5H20.29a2.5,2.5,0,0,0-4.58,0H14.29a2.5,2.5,0,0,0-4.58,0H8.29a2.5,2.5,0,0,0-4.58,0H2.5V20.29a2.5,2.5,0,0,0,0-4.58V14.29a2.5,2.5,0,0,0,0-4.58V8.29a2.5,2.5,0,0,0,0-4.58V2.5H3.71a2.5,2.5,0,0,0,4.58,0H9.71a2.5,2.5,0,0,0,4.58,0h1.42a2.5,2.5,0,0,0,4.58,0H21.5ZM12,5a7,7,0,0,0,0,14,6.93,6.93,0,0,0,3.5-.94,1,1,0,1,0-1-1.73A5,5,0,1,1,17,12v.5a.83.83,0,0,1-.83.83.84.84,0,0,1-.84-.83V9.67a1,1,0,0,0-1.78-.6A3.25,3.25,0,0,0,12,8.67a3.33,3.33,0,0,0,0,6.66,3.28,3.28,0,0,0,2.17-.82,2.84,2.84,0,0,0,4.83-2V12A7,7,0,0,0,12,5Zm0,8.33A1.33,1.33,0,1,1,13.33,12,1.32,1.32,0,0,1,12,13.33Z' - })); -}; - -UilPostStamp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPostStamp; \ No newline at end of file diff --git a/icons/uil-postcard.js b/icons/uil-postcard.js deleted file mode 100644 index 2b9ddb67..00000000 --- a/icons/uil-postcard.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPostcard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,11h1a1,1,0,0,0,1-1V9a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v1A1,1,0,0,0,17,11ZM6,12h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2ZM22,4H2A1,1,0,0,0,1,5V19a1,1,0,0,0,1,1H22a1,1,0,0,0,1-1V5A1,1,0,0,0,22,4ZM21,18H3V6H21ZM6,16h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z' - })); -}; - -UilPostcard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPostcard; \ No newline at end of file diff --git a/icons/uil-pound-circle.js b/icons/uil-pound-circle.js deleted file mode 100644 index 8f4cb788..00000000 --- a/icons/uil-pound-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPoundCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,15H10.82A3,3,0,0,0,11,14V13h2.5a1,1,0,0,0,0-2H11V10a1.95,1.95,0,0,1,3.63-1,1,1,0,0,0,1.74-1A4,4,0,0,0,9,10V11H8a1,1,0,0,0,0,2H9v1a1,1,0,0,1-1,1,1,1,0,0,0,0,2h8a1,1,0,0,0,0-2ZM12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' - })); -}; - -UilPoundCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPoundCircle; \ No newline at end of file diff --git a/icons/uil-pound.js b/icons/uil-pound.js deleted file mode 100644 index cffd7e09..00000000 --- a/icons/uil-pound.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPound = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,20H8a4.92,4.92,0,0,0,1-3V14h6a1,1,0,0,0,0-2H9V8.89a4.89,4.89,0,0,1,9.13-2.44,1,1,0,0,0,1.37.36,1,1,0,0,0,.37-1.36A6.9,6.9,0,0,0,7,8.89V12H4a1,1,0,0,0,0,2H7v3a3,3,0,0,1-3,3,1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Z' - })); -}; - -UilPound.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPound; \ No newline at end of file diff --git a/icons/uil-power.js b/icons/uil-power.js deleted file mode 100644 index 7d95ef47..00000000 --- a/icons/uil-power.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPower = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.21,6.21l.79-.8V10a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42ZM18,7.56A1,1,0,1,0,16.56,9,6.45,6.45,0,1,1,7.44,9,1,1,0,1,0,6,7.56a8.46,8.46,0,1,0,12,0Z' - })); -}; - -UilPower.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPower; \ No newline at end of file diff --git a/icons/uil-prescription-bottle.js b/icons/uil-prescription-bottle.js deleted file mode 100644 index 025103da..00000000 --- a/icons/uil-prescription-bottle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPrescriptionBottle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A2,2,0,0,0,3,4V6A2,2,0,0,0,5,8V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8a2,2,0,0,0,2-2V4A2,2,0,0,0,19,2ZM17,16H11V12h6Zm0-6H10a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h7v1a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17ZM5,6V4H19V6Z' - })); -}; - -UilPrescriptionBottle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPrescriptionBottle; \ No newline at end of file diff --git a/icons/uil-presentation-check.js b/icons/uil-presentation-check.js deleted file mode 100644 index f3dfc55a..00000000 --- a/icons/uil-presentation-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.29,11.71a1,1,0,0,0,1.42,0l4-4a1,1,0,1,0-1.42-1.42L11,9.59,9.71,8.29A1,1,0,0,0,8.29,9.71ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentationCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationCheck; \ No newline at end of file diff --git a/icons/uil-presentation-edit.js b/icons/uil-presentation-edit.js deleted file mode 100644 index c82d832c..00000000 --- a/icons/uil-presentation-edit.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationEdit = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.41,13h2.42a1,1,0,0,0,.71-.29l3.58-3.58a1,1,0,0,0,0-1.41L13.7,5.32a1,1,0,0,0-1.41,0L8.71,8.9a1,1,0,0,0-.3.7V12A1,1,0,0,0,9.41,13Zm1-3L13,7.44l1,1L11.42,11h-1ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentationEdit.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationEdit; \ No newline at end of file diff --git a/icons/uil-presentation-line.js b/icons/uil-presentation-line.js deleted file mode 100644 index 2c4aff02..00000000 --- a/icons/uil-presentation-line.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationLine = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H20V3a1,1,0,0,0-1-1H5A1,1,0,0,0,4,3V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18ZM9,12a1,1,0,0,0,.83-.45l1.33-2,1.13,1.14a1,1,0,0,0,.81.29,1,1,0,0,0,.73-.45l2-3a1,1,0,0,0-1.66-1.1l-1.33,2L11.71,7.29A1,1,0,0,0,10.9,7a1,1,0,0,0-.73.45l-2,3a1,1,0,0,0,.28,1.38A.94.94,0,0,0,9,12Z' - })); -}; - -UilPresentationLine.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationLine; \ No newline at end of file diff --git a/icons/uil-presentation-lines-alt.js b/icons/uil-presentation-lines-alt.js deleted file mode 100644 index c73d1ae1..00000000 --- a/icons/uil-presentation-lines-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationLinesAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.17,10.55a1,1,0,0,0,.73.45,1,1,0,0,0,.81-.29l1.13-1.14,1.33,2A1,1,0,0,0,15,12a.94.94,0,0,0,.55-.17,1,1,0,0,0,.28-1.38l-2-3A1,1,0,0,0,13.1,7a1,1,0,0,0-.81.29L11.16,8.43l-1.33-2a1,1,0,1,0-1.66,1.1ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentationLinesAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationLinesAlt; \ No newline at end of file diff --git a/icons/uil-presentation-minus.js b/icons/uil-presentation-minus.js deleted file mode 100644 index 9d241770..00000000 --- a/icons/uil-presentation-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,10h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm11,4H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentationMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationMinus; \ No newline at end of file diff --git a/icons/uil-presentation-play.js b/icons/uil-presentation-play.js deleted file mode 100644 index 856eb02b..00000000 --- a/icons/uil-presentation-play.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationPlay = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18ZM9.61,12.26a1.73,1.73,0,0,0,1.76,0l3-1.74a1.76,1.76,0,0,0,0-3l-3-1.74a1.73,1.73,0,0,0-1.76,0,1.71,1.71,0,0,0-.87,1.52v3.48A1.71,1.71,0,0,0,9.61,12.26Zm1.13-4.58L13,9l-2.28,1.32Z' - })); -}; - -UilPresentationPlay.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationPlay; \ No newline at end of file diff --git a/icons/uil-presentation-plus.js b/icons/uil-presentation-plus.js deleted file mode 100644 index 08646716..00000000 --- a/icons/uil-presentation-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Zm-8-4h1v1a1,1,0,0,0,2,0V10h1a1,1,0,0,0,0-2H13V7a1,1,0,0,0-2,0V8H10a1,1,0,0,0,0,2Z' - })); -}; - -UilPresentationPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationPlus; \ No newline at end of file diff --git a/icons/uil-presentation-times.js b/icons/uil-presentation-times.js deleted file mode 100644 index ed831d60..00000000 --- a/icons/uil-presentation-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentationTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.29,11.71a1,1,0,0,0,1.42,0L12,10.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,9l1.3-1.29a1,1,0,1,0-1.42-1.42L12,7.59l-1.29-1.3A1,1,0,0,0,9.29,7.71L10.59,9l-1.3,1.29A1,1,0,0,0,9.29,11.71ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentationTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentationTimes; \ No newline at end of file diff --git a/icons/uil-presentation.js b/icons/uil-presentation.js deleted file mode 100644 index 29a511dc..00000000 --- a/icons/uil-presentation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPresentation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' - })); -}; - -UilPresentation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPresentation; \ No newline at end of file diff --git a/icons/uil-previous.js b/icons/uil-previous.js deleted file mode 100644 index 61716f95..00000000 --- a/icons/uil-previous.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPrevious = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.41,12l3.3-3.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0,0,1.42l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM8,7A1,1,0,0,0,7,8v8a1,1,0,0,0,2,0V8A1,1,0,0,0,8,7Z' - })); -}; - -UilPrevious.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPrevious; \ No newline at end of file diff --git a/icons/uil-pricetag-alt.js b/icons/uil-pricetag-alt.js deleted file mode 100644 index fb8b4022..00000000 --- a/icons/uil-pricetag-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPricetagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,6A1,1,0,1,0,8,7,1,1,0,0,0,7,6Zm14.71,5.78L12.23,2.32A1,1,0,0,0,11.5,2h-6a1,1,0,0,0-.71.29L2.29,4.78A1,1,0,0,0,2,5.49v6a1.05,1.05,0,0,0,.29.71l9.49,9.5a1.05,1.05,0,0,0,.71.29,1,1,0,0,0,.71-.29l8.51-8.51a1,1,0,0,0,.29-.71A1.05,1.05,0,0,0,21.71,11.78Zm-9.22,7.81L4,11.09V5.9L5.9,4h5.18l8.5,8.49Z' - })); -}; - -UilPricetagAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPricetagAlt; \ No newline at end of file diff --git a/icons/uil-print-slash.js b/icons/uil-print-slash.js deleted file mode 100644 index d9d36472..00000000 --- a/icons/uil-print-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPrintSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,10a1,1,0,1,0,1,1A1,1,0,0,0,7,10ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H6v3a1,1,0,0,0,1,1H17a1,1,0,0,0,1-1V19.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,15v1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H6.59l6,6H7A1,1,0,0,0,6,15Zm10,5H8V16h6.59L16,17.41ZM19,6H18V3a1,1,0,0,0-1-1H8.66a1,1,0,0,0,0,2H16V6H12.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v6a.37.37,0,0,1,0,.11,1,1,0,0,0,.78,1.18l.2,0a1,1,0,0,0,1-.8A2.84,2.84,0,0,0,22,15V9A3,3,0,0,0,19,6Z' - })); -}; - -UilPrintSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPrintSlash; \ No newline at end of file diff --git a/icons/uil-print.js b/icons/uil-print.js deleted file mode 100644 index a61bd1f6..00000000 --- a/icons/uil-print.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPrint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,10a1,1,0,1,0,1,1A1,1,0,0,0,7,10ZM19,6H18V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H6v3a1,1,0,0,0,1,1H17a1,1,0,0,0,1-1V18h1a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM8,4h8V6H8Zm8,16H8V16h8Zm4-5a1,1,0,0,1-1,1H18V15a1,1,0,0,0-1-1H7a1,1,0,0,0-1,1v1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' - })); -}; - -UilPrint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPrint; \ No newline at end of file diff --git a/icons/uil-process.js b/icons/uil-process.js deleted file mode 100644 index 36580078..00000000 --- a/icons/uil-process.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilProcess = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.9917,14.502a.99974.99974,0,0,0-1,1v1.78229a7.97243,7.97243,0,0,1-2-5.28229,7.29085,7.29085,0,0,1,.05273-.87988.99992.99992,0,1,0-1.98535-.24023A9.17334,9.17334,0,0,0,1.9917,12.002a9.96434,9.96434,0,0,0,2.41687,6.5H2.9917a1,1,0,1,0,0,2h4a.98173.98173,0,0,0,.79413-.42181c.01166-.01538.02655-.0268.03741-.043.00666-.00995.00684-.02173.01306-.03186a.96576.96576,0,0,0,.106-.2583.95234.95234,0,0,0,.03143-.15589c.00287-.03088.018-.05749.018-.08911v-4A.99974.99974,0,0,0,6.9917,14.502Zm1.5-8.5H6.70923a7.9737,7.9737,0,0,1,5.28247-2,7.07475,7.07475,0,0,1,.87939.05274,1.00046,1.00046,0,0,0,.24121-1.98633A9.22717,9.22717,0,0,0,11.9917,2.002a9.96421,9.96421,0,0,0-6.5,2.41669V3.002a1,1,0,0,0-2,0v4a.95355.95355,0,0,0,.03931.19471l.00024.00122a.96893.96893,0,0,0,.14117.345l.01142.0169a.97291.97291,0,0,0,.2445.24634c.01093.008.01636.02026.02771.02789.01429.00946.03046.01246.04505.02112a.95817.95817,0,0,0,.17932.084.98784.98784,0,0,0,.26184.05285c.01733.00092.03192.01.04944.01h4a1,1,0,0,0,0-2ZM20.45215,16.80609a.96745.96745,0,0,0-.14124-.34509l-.01129-.01679a.97315.97315,0,0,0-.24469-.24646c-.01092-.00793-.01629-.02026-.02759-.02783-.0108-.00714-.02362-.00738-.0346-.0141a1.15354,1.15354,0,0,0-.40973-.13543c-.03162-.003-.0589-.01844-.09131-.01844h-4a1,1,0,0,0,0,2h1.78241a7.97338,7.97338,0,0,1-5.28241,2,7.07446,7.07446,0,0,1-.8794-.05371,1.00046,1.00046,0,0,0-.24121,1.98633,9.36538,9.36538,0,0,0,1.12061.06738,9.96425,9.96425,0,0,0,6.5-2.41668V21.002a1,1,0,0,0,2,0v-4a.95345.95345,0,0,0-.03931-.1947ZM20.9917,5.502a1,1,0,0,0,0-2h-4a.9519.9519,0,0,0-.19183.0387l-.00666.00134a.96837.96837,0,0,0-.3407.13953l-.01959.01324a.974.974,0,0,0-.2453.24378c-.00787.0108-.02.01611-.02746.02728-.00714.01074-.00739.02344-.0141.03436a1.14563,1.14563,0,0,0-.13636.41266c-.00286.03089-.018.0575-.018.08911v4a1,1,0,1,0,2,0V6.71912a7.97527,7.97527,0,0,1,2,5.28283,7.289,7.289,0,0,1-.05274.87989,1.00106,1.00106,0,0,0,.87208,1.11328,1.02916,1.02916,0,0,0,.12207.00683.99971.99971,0,0,0,.99121-.87988A9.17363,9.17363,0,0,0,21.9917,12.002a9.96411,9.96411,0,0,0-2.417-6.5Z' - })); -}; - -UilProcess.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilProcess; \ No newline at end of file diff --git a/icons/uil-processor.js b/icons/uil-processor.js deleted file mode 100644 index c2225169..00000000 --- a/icons/uil-processor.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilProcessor = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9H10a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,14,9Zm-1,4H11V11h2Zm8,0a1,1,0,0,0,0-2H19V9h2a1,1,0,0,0,0-2H18.82A3,3,0,0,0,17,5.18V3a1,1,0,0,0-2,0V5H13V3a1,1,0,0,0-2,0V5H9V3A1,1,0,0,0,7,3V5.18A3,3,0,0,0,5.18,7H3A1,1,0,0,0,3,9H5v2H3a1,1,0,0,0,0,2H5v2H3a1,1,0,0,0,0,2H5.18A3,3,0,0,0,7,18.82V21a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V18.82A3,3,0,0,0,18.82,17H21a1,1,0,0,0,0-2H19V13Zm-4,3a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8A1,1,0,0,1,8,7h8a1,1,0,0,1,1,1Z' - })); -}; - -UilProcessor.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilProcessor; \ No newline at end of file diff --git a/icons/uil-programming-language.js b/icons/uil-programming-language.js deleted file mode 100644 index 5bab59b9..00000000 --- a/icons/uil-programming-language.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilProgrammingLanguage = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,3l-3,15.1l-9.1,3l-7.9-3L2.8,14h3.4l-0.4,1.7l4.8,1.8l5.5-1.8l0.8-3.8H3.2l0.7-3.4h13.6L18,6.4H4.3L5,3H22z' - })); -}; - -UilProgrammingLanguage.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilProgrammingLanguage; \ No newline at end of file diff --git a/icons/uil-pump.js b/icons/uil-pump.js deleted file mode 100644 index 87ad6fe5..00000000 --- a/icons/uil-pump.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPump = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.54,6.29,19,4.75,17.59,3.34a1,1,0,0,0-1.42,1.42l1,1-.83,2.49a3,3,0,0,0,.73,3.07l2.95,3V19a1,1,0,0,1-2,0V17a3,3,0,0,0-3-3H14V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h6a3,3,0,0,0,3-3V16h1a1,1,0,0,1,1,1v2a3,3,0,0,0,6,0V9.83A5,5,0,0,0,20.54,6.29ZM12,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12h8Zm0-9H4V5A1,1,0,0,1,5,4h6a1,1,0,0,1,1,1Zm8,1.42L18.46,9.88a1,1,0,0,1-.24-1l.51-1.54.39.4A3,3,0,0,1,20,9.83Z' - })); -}; - -UilPump.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPump; \ No newline at end of file diff --git a/icons/uil-puzzle-piece.js b/icons/uil-puzzle-piece.js deleted file mode 100644 index f51d6bab..00000000 --- a/icons/uil-puzzle-piece.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilPuzzlePiece = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,22H5a3,3,0,0,1-3-3V9A3,3,0,0,1,5,6H6a4,4,0,0,1,7.3-2.18A3.86,3.86,0,0,1,14,6h3a1,1,0,0,1,1,1v3a4,4,0,0,1,2.18,7.3A3.86,3.86,0,0,1,18,18h0v3A1,1,0,0,1,17,22ZM5,8A1,1,0,0,0,4,9V19a1,1,0,0,0,1,1H16V16.82a1,1,0,0,1,.42-.82,1,1,0,0,1,.91-.13,1.77,1.77,0,0,0,1.74-.23A2,2,0,0,0,20,14.27a2,2,0,0,0-.48-1.59,1.89,1.89,0,0,0-2.17-.55,1,1,0,0,1-.91-.13,1,1,0,0,1-.42-.82V8H12.82a1,1,0,0,1-1-1.33,1.77,1.77,0,0,0-.23-1.74,1.94,1.94,0,0,0-3-.43A2,2,0,0,0,8,6a1.89,1.89,0,0,0,.13.67A1,1,0,0,1,7.18,8Z' - })); -}; - -UilPuzzlePiece.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilPuzzlePiece; \ No newline at end of file diff --git a/icons/uil-qrcode-scan.js b/icons/uil-qrcode-scan.js deleted file mode 100644 index abe8c666..00000000 --- a/icons/uil-qrcode-scan.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilQrcodeScan = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8 21H4a1 1 0 0 1-1-1v-4a1 1 0 0 0-2 0v4a3 3 0 0 0 3 3h4a1 1 0 0 0 0-2Zm14-6a1 1 0 0 0-1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 0 0 2h4a3 3 0 0 0 3-3v-4a1 1 0 0 0-1-1ZM20 1h-4a1 1 0 0 0 0 2h4a1 1 0 0 1 1 1v4a1 1 0 0 0 2 0V4a3 3 0 0 0-3-3ZM2 9a1 1 0 0 0 1-1V4a1 1 0 0 1 1-1h4a1 1 0 0 0 0-2H4a3 3 0 0 0-3 3v4a1 1 0 0 0 1 1Zm8-4H6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1ZM9 9H7V7h2Zm5 2h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1Zm1-4h2v2h-2Zm-5 6H6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1Zm-1 4H7v-2h2Zm5-1a1 1 0 0 0 1-1 1 1 0 0 0 0-2h-1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1Zm4-3a1 1 0 0 0-1 1v3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1Zm-4 4a1 1 0 1 0 1 1 1 1 0 0 0-1-1Z' - })); -}; - -UilQrcodeScan.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilQrcodeScan; \ No newline at end of file diff --git a/icons/uil-question-circle.js b/icons/uil-question-circle.js deleted file mode 100644 index 180a7408..00000000 --- a/icons/uil-question-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilQuestionCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,15.29a1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2.84.84,0,0,0,.08.38.9.9,0,0,0,.54.54.94.94,0,0,0,.76,0,.9.9,0,0,0,.54-.54A1,1,0,0,0,13,16a1,1,0,0,0-.29-.71A1,1,0,0,0,11.29,15.29ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,7A3,3,0,0,0,9.4,8.5a1,1,0,1,0,1.73,1A1,1,0,0,1,12,9a1,1,0,0,1,0,2,1,1,0,0,0-1,1v1a1,1,0,0,0,2,0v-.18A3,3,0,0,0,12,7Z' - })); -}; - -UilQuestionCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilQuestionCircle; \ No newline at end of file diff --git a/icons/uil-question.js b/icons/uil-question.js deleted file mode 100644 index 23330903..00000000 --- a/icons/uil-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.33252,9.5A3.5001,3.5001,0,0,0,8.80127,7.75a1.00016,1.00016,0,0,0,1.73242,1A1.50266,1.50266,0,0,1,11.83252,8a1.5,1.5,0,1,1,0,3h-.00244a.94984.94984,0,0,0-.18927.0387,1.03181,1.03181,0,0,0-.19861.04065.98275.98275,0,0,0-.15552.10485,1.00813,1.00813,0,0,0-.162.10975,1.00464,1.00464,0,0,0-.11706.1737.97789.97789,0,0,0-.09668.14417,1.02252,1.02252,0,0,0-.04285.21191A.94847.94847,0,0,0,10.83252,12v1l.00232.01135.0011.49109a1.00016,1.00016,0,0,0,1,.99756h.00244a1.00006,1.00006,0,0,0,.99756-1.00244l-.00153-.66138A3.49363,3.49363,0,0,0,15.33252,9.5Zm-4.20264,6.79A1,1,0,0,0,11.82959,18a1.036,1.036,0,0,0,.71045-.29,1.01517,1.01517,0,0,0,0-1.41992A1.03425,1.03425,0,0,0,11.12988,16.29Z' - })); -}; - -UilQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilQuestion; \ No newline at end of file diff --git a/icons/uil-rainbow.js b/icons/uil-rainbow.js deleted file mode 100644 index 90c40278..00000000 --- a/icons/uil-rainbow.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRainbow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0A7,7,0,0,0,5,12ZM5,4A1,1,0,0,0,5,6,13,13,0,0,1,18,19a1,1,0,0,0,2,0A15,15,0,0,0,5,4ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0A11,11,0,0,0,5,8Z' - })); -}; - -UilRainbow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRainbow; \ No newline at end of file diff --git a/icons/uil-raindrops-alt.js b/icons/uil-raindrops-alt.js deleted file mode 100644 index 524a3128..00000000 --- a/icons/uil-raindrops-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRaindropsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,7.75C9,5,6.42,3.24,6.31,3.17a1,1,0,0,0-1.12,0C5.08,3.25,2.5,5,2.5,7.75a3.25,3.25,0,0,0,6.5,0ZM5.75,9A1.25,1.25,0,0,1,4.5,7.75,3.66,3.66,0,0,1,5.75,5.3,3.61,3.61,0,0,1,7,7.75,1.25,1.25,0,0,1,5.75,9Zm6.06,1.17a1,1,0,0,0-1.12,0c-.17.12-4.19,2.9-4.19,7.08a4.75,4.75,0,0,0,9.5,0C16,13,12,10.28,11.81,10.17ZM11.25,20A2.75,2.75,0,0,1,8.5,17.25c0-2.31,1.81-4.17,2.76-5,.94.79,2.74,2.63,2.74,5A2.75,2.75,0,0,1,11.25,20ZM18.06,2.17a1,1,0,0,0-1.12,0C16.8,2.27,13.5,4.55,13.5,8a4,4,0,0,0,8,0C21.5,4.51,18.2,2.26,18.06,2.17ZM17.5,10a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,19.5,8,2,2,0,0,1,17.5,10Z' - })); -}; - -UilRaindropsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRaindropsAlt; \ No newline at end of file diff --git a/icons/uil-raindrops.js b/icons/uil-raindrops.js deleted file mode 100644 index fed5b3c8..00000000 --- a/icons/uil-raindrops.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRaindrops = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,8c0-3.49-3.3-5.74-3.44-5.83a1,1,0,0,0-1.12,0C5.8,2.27,2.5,4.55,2.5,8a4,4,0,0,0,8,0Zm-4,2a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,8.5,8,2,2,0,0,1,6.5,10ZM18.06,2.17a1,1,0,0,0-1.12,0C16.8,2.27,13.5,4.55,13.5,8a4,4,0,0,0,8,0C21.5,4.51,18.2,2.26,18.06,2.17ZM17.5,10a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,19.5,8,2,2,0,0,1,17.5,10Zm-4.44,2.17a1,1,0,0,0-1.12,0c-.14.1-3.44,2.38-3.44,5.83a4,4,0,0,0,8,0C16.5,14.51,13.2,12.26,13.06,12.17ZM12.5,20a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72,5.39,5.39,0,0,1,2,3.72A2,2,0,0,1,12.5,20Z' - })); -}; - -UilRaindrops.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRaindrops; \ No newline at end of file diff --git a/icons/uil-react.js b/icons/uil-react.js deleted file mode 100644 index d449ac68..00000000 --- a/icons/uil-react.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilReact = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.103,10.43793a1.78593,1.78593,0,1,0,2.43957.65362A1.786,1.786,0,0,0,11.103,10.43793Zm8.0047,1.93768q-.17587-.201-.37116-.40308.13641-.14337.264-.28649c1.60583-1.80427,2.28357-3.61371,1.65558-4.70154-.60217-1.043-2.39343-1.35382-4.63593-.91779q-.33132.06482-.659.14624-.06272-.21624-.13343-.43C14.467,3.49042,13.2381,1.99921,11.98206,2,10.77765,2.00055,9.61359,3.39709,8.871,5.5575q-.10959.31969-.20276.64471-.21908-.05375-.44-.0993c-2.366-.48578-4.27167-.16584-4.89844.9226-.601,1.04376.02753,2.74982,1.52851,4.47211q.22329.25562.45922.49976c-.18542.191-.361.38189-.52465.57171-1.4646,1.698-2.05719,3.37616-1.45716,4.41541.61969,1.07348,2.49854,1.42437,4.7854.97436q.278-.05511.55292-.124.10071.35156.22095.697c.73932,2.11706,1.89685,3.46863,3.097,3.4682,1.23944-.00073,2.48194-1.45288,3.23474-3.65875.05945-.17432.11573-.35535.16907-.54175q.35514.08835.71485.1568c2.20336.41687,3.95251.089,4.55145-.951C21.28058,15.93109,20.64288,14.12933,19.10767,12.37561ZM4.07019,7.45184c.38586-.67,1.94324-.93139,3.98608-.512q.19584.04027.39838.09a20.464,20.464,0,0,0-.42126,2.67767,20.88659,20.88659,0,0,0-2.10389,1.6936q-.21945-.22695-.42718-.4649l.00006.00006C4.21631,9.46057,3.708,8.08081,4.07019,7.45184Zm3.88666,5.72809c-.51056-.3866-.98505-.78265-1.41571-1.181.43036-.39587.90515-.79059,1.41467-1.17615q-.02746.58915-.02722,1.1792Q7.929,12.59117,7.95685,13.17993Zm-.00061,3.94061a7.23675,7.23675,0,0,1-2.63971.09314,1.766,1.766,0,0,1-1.241-.65631c-.36407-.63067.11176-1.978,1.36432-3.43023q.23621-.273.48791-.53174a20.49026,20.49026,0,0,0,2.10712,1.70007,20.80226,20.80226,0,0,0,.42621,2.712Q8.21011,17.07023,7.95624,17.12054Zm7.10113-8.03936q-.50309-.317-1.01861-.61365-.5073-.292-1.0268-.56207c.593-.24933,1.17591-.46228,1.73865-.63581A18.21775,18.21775,0,0,1,15.05737,9.08118ZM9.679,5.83521c.63623-1.85114,1.57763-2.98053,2.30352-2.98084.77308-.00037,1.77753,1.21826,2.43433,3.19763q.064.19355.121.38928a20.478,20.478,0,0,0-2.52716.9712,20.06145,20.06145,0,0,0-2.519-.98194Q9.578,6.13062,9.679,5.83521ZM9.27863,7.259a18.30717,18.30717,0,0,1,1.72967.642Q9.95746,8.4433,8.96094,9.0824C9.0412,8.4444,9.148,7.83313,9.27863,7.259ZM8.9624,14.91968q.49695.31813,1.00843.61273.52174.30039,1.05737.57556a18.19577,18.19577,0,0,1-1.74445.66492C9.15161,16.1908,9.04364,15.56879,8.9624,14.91968Zm5.45569,3.14551A7.23556,7.23556,0,0,1,13.18,20.39844l-.00006.00006a1.76585,1.76585,0,0,1-1.18841.747c-.72821.00042-1.65766-1.085-2.28992-2.89545q-.11169-.32108-.20551-.648a20.10863,20.10863,0,0,0,2.52918-1.0097,20.79976,20.79976,0,0,0,2.54736.97851Q14.50141,17.81983,14.41809,18.06519Zm.36224-1.32422c-.56921-.176-1.16058-.39252-1.76214-.64551q.50867-.2677,1.02472-.56543.52955-.30579,1.0321-.62689A18.1524,18.1524,0,0,1,14.78033,16.741Zm.44629-4.74268q.00111.91095-.05688,1.82044c-.49268.33343-1.01282.659-1.554.97143-.53894.31116-1.07293.59711-1.59674.8559q-.82682-.39624-1.62176-.854-.79047-.455-1.54468-.969-.06894-.90921-.06946-1.82172l.00012.00019q-.00063-.91187.06794-1.82184c.49255-.33637,1.00891-.66168,1.54278-.96991.53632-.30969,1.077-.59442,1.61469-.85248q.81664.39688,1.60382.85065.78992.454,1.549.95868.06519.91443.06524,1.83166Zm.95673-5.09283c1.92133-.37372,3.37-.12232,3.73291.50622.3866.66962-.16748,2.1485-1.55383,3.70636l-.00006.00006q-.1149.12891-.23841.25891A20.06118,20.06118,0,0,0,15.98,9.68915a20.04054,20.04054,0,0,0-.40546-2.64893Q15.88486,6.96387,16.18335,6.90546Zm-.12988,3.8847A18.16447,18.16447,0,0,1,17.51483,11.978a18.11912,18.11912,0,0,1-1.45672,1.20831q.02325-.59391.02288-1.18842Q16.08072,11.39389,16.05347,10.79016Zm3.8681,5.78876c-.36346.63116-1.76788.89435-3.65222.53784q-.32391-.06115-.66474-.14557a20.069,20.069,0,0,0,.38746-2.68176,19.93914,19.93914,0,0,0,2.13708-1.71588q.17643.18329.33563.36487v-.00007a7.23437,7.23437,0,0,1,1.40308,2.23792A1.76563,1.76563,0,0,1,19.92157,16.57892Z' - })); -}; - -UilReact.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilReact; \ No newline at end of file diff --git a/icons/uil-receipt-alt.js b/icons/uil-receipt-alt.js deleted file mode 100644 index 608b4ab7..00000000 --- a/icons/uil-receipt-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilReceiptAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,8h6a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM8,12h8a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0,4h8a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2ZM20,2H4A1,1,0,0,0,3,3V21a1,1,0,0,0,1.6.8l2.07-1.55L8.73,21.8a1,1,0,0,0,1.2,0L12,20.25l2.07,1.55a1,1,0,0,0,1.2,0l2.06-1.55L19.4,21.8a1,1,0,0,0,1.05.09A1,1,0,0,0,21,21V3A1,1,0,0,0,20,2ZM19,19l-1.07-.8a1,1,0,0,0-1.2,0l-2.06,1.55L12.6,18.2a1,1,0,0,0-1.2,0L9.33,19.75,7.27,18.2a1,1,0,0,0-1.2,0L5,19V4H19Z' - })); -}; - -UilReceiptAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilReceiptAlt; \ No newline at end of file diff --git a/icons/uil-receipt.js b/icons/uil-receipt.js deleted file mode 100644 index c3b02ad0..00000000 --- a/icons/uil-receipt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilReceipt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,12H7a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2ZM8,10h4a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm1,6H7a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm12-4H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Zm-6.44-2.83a.76.76,0,0,0-.18-.09.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27A1.05,1.05,0,0,0,12,17a1,1,0,0,0,.07.38,1.19,1.19,0,0,0,.22.33,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,14,17a1.05,1.05,0,0,0-.29-.71A1.58,1.58,0,0,0,13.56,16.17Zm.14-3.88a1,1,0,0,0-1.62.33A1,1,0,0,0,13,14a1,1,0,0,0,1-1,1,1,0,0,0-.08-.38A.91.91,0,0,0,13.7,12.29Z' - })); -}; - -UilReceipt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilReceipt; \ No newline at end of file diff --git a/icons/uil-record-audio.js b/icons/uil-record-audio.js deleted file mode 100644 index 43c821b8..00000000 --- a/icons/uil-record-audio.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRecordAudio = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,6a6,6,0,1,0,6,6A6,6,0,0,0,12,6Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' - })); -}; - -UilRecordAudio.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRecordAudio; \ No newline at end of file diff --git a/icons/uil-reddit-alien-alt.js b/icons/uil-reddit-alien-alt.js deleted file mode 100644 index 4a98fc9b..00000000 --- a/icons/uil-reddit-alien-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRedditAlienAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.41016,16.86719A3.375,3.375,0,0,1,12.042,17.5a3.36829,3.36829,0,0,1-2.36523-.63184,1.00059,1.00059,0,0,0-1.416,1.41407A5.11054,5.11054,0,0,0,12.042,19.5a5.12,5.12,0,0,0,3.78223-1.2168,1.00058,1.00058,0,1,0-1.41406-1.416ZM9.2005,15.00165a1,1,0,1,0-1.0003-.9997A1.00079,1.00079,0,0,0,9.2005,15.00165Zm6-2a1,1,0,1,0,.9997,1.0003A1.00138,1.00138,0,0,0,15.2005,13.00165ZM23,11.78027a3.77157,3.77157,0,0,0-6.794-2.26471,16.50461,16.50461,0,0,0-3.05005-.47851l.85578-5.705,2.08752.70984a2.99694,2.99694,0,0,0,5.99353-.06433V3.95508a3.02886,3.02886,0,0,0-3-2.95508,2.97689,2.97689,0,0,0-2.33209,1.155L13.52246,1.05371a.999.999,0,0,0-1.31152.79785L11.13446,9.027A16.66426,16.66426,0,0,0,7.794,9.51556a3.76753,3.76753,0,0,0-6.22492,4.23487A4.86206,4.86206,0,0,0,1,16c0,3.9248,4.832,7,11,7s11-3.0752,11-7a4.86217,4.86217,0,0,0-.56866-2.2489A3.78344,3.78344,0,0,0,23,11.78027ZM19.09277,3a1,1,0,1,1-1,1A1.01672,1.01672,0,0,1,19.09277,3ZM4.78027,10a1.75976,1.75976,0,0,1,.88172.24951A9.97889,9.97889,0,0,0,3.0141,11.9234c-.004-.04785-.0141-.095-.0141-.14313A1.78255,1.78255,0,0,1,4.78027,10ZM12,21c-4.87891,0-9-2.29-9-5s4.12109-5,9-5,9,2.29,9,5S16.87891,21,12,21Zm8.9859-9.07654A9.97805,9.97805,0,0,0,18.338,10.24951,1.75993,1.75993,0,0,1,19.21973,10,1.78255,1.78255,0,0,1,21,11.78027C21,11.82837,20.98993,11.87561,20.9859,11.92346Z' - })); -}; - -UilRedditAlienAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRedditAlienAlt; \ No newline at end of file diff --git a/icons/uil-redo.js b/icons/uil-redo.js deleted file mode 100644 index f2173884..00000000 --- a/icons/uil-redo.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRedo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11a1,1,0,0,0-1,1,8.05,8.05,0,1,1-2.22-5.5h-2.4a1,1,0,0,0,0,2h4.53a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4.77A10,10,0,1,0,22,12,1,1,0,0,0,21,11Z' - })); -}; - -UilRedo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRedo; \ No newline at end of file diff --git a/icons/uil-refresh.js b/icons/uil-refresh.js deleted file mode 100644 index 416f08e7..00000000 --- a/icons/uil-refresh.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRefresh = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.91,15.51H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM15,12a3,3,0,1,0-3,3A3,3,0,0,0,15,12Zm-4,0a1,1,0,1,1,1,1A1,1,0,0,1,11,12ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Z' - })); -}; - -UilRefresh.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRefresh; \ No newline at end of file diff --git a/icons/uil-registered.js b/icons/uil-registered.js deleted file mode 100644 index 947a1082..00000000 --- a/icons/uil-registered.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRegistered = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm.5-13h-3a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V14h2a1,1,0,0,1,1,1v1a1,1,0,0,0,2,0V15a3,3,0,0,0-.78-2,3,3,0,0,0,.78-2V10A3,3,0,0,0,12.5,7Zm1,4a1,1,0,0,1-1,1h-2V9h2a1,1,0,0,1,1,1Z' - })); -}; - -UilRegistered.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRegistered; \ No newline at end of file diff --git a/icons/uil-repeat.js b/icons/uil-repeat.js deleted file mode 100644 index b778c4c6..00000000 --- a/icons/uil-repeat.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRepeat = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.5,17.5H4V6.5h7.8L11,7.29a1,1,0,0,0,1.41,1.42l2.5-2.5a1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.79.79H3a1,1,0,0,0-1,1v13a1,1,0,0,0,1,1H5.5a1,1,0,0,0,0-2ZM21,4.5H18.5a1,1,0,0,0,0,2H20v11H11.63l.79-.79a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0l-2.5,2.5a1,1,0,0,0,0,1.42l2.5,2.5a1,1,0,0,0,1.41-1.42l-.79-.79H21a1,1,0,0,0,1-1V5.5A1,1,0,0,0,21,4.5Z' - })); -}; - -UilRepeat.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRepeat; \ No newline at end of file diff --git a/icons/uil-restaurant.js b/icons/uil-restaurant.js deleted file mode 100644 index 089ba5fe..00000000 --- a/icons/uil-restaurant.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRestaurant = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.84,11.63A3,3,0,0,0,19,10.75l2.83-2.83a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L17.55,9.33a1,1,0,0,1-1.42,0h0L19.67,5.8a1,1,0,1,0-1.42-1.42L14.72,7.92a1,1,0,0,1,0-1.41l2.83-2.83a1,1,0,1,0-1.42-1.42L13.3,5.09a3,3,0,0,0,0,4.24h0L12,10.62,3.73,2.32l-.1-.06a.71.71,0,0,0-.17-.11l-.18-.07L3.16,2H3.09l-.2,0a.57.57,0,0,0-.18,0,.7.7,0,0,0-.17.09l-.16.1-.07,0-.06.1a1,1,0,0,0-.11.17,1.07,1.07,0,0,0-.07.19s0,.07,0,.11a11,11,0,0,0,3.11,9.34l2.64,2.63-5.41,5.4a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29L9.9,15.57h0l2.83-2.83h0l2-2A3,3,0,0,0,16.84,11.63ZM9.19,13.45,6.56,10.81A9.06,9.06,0,0,1,4,5.4L10.61,12Zm6.24.57A1,1,0,0,0,14,15.44l6.3,6.3A1,1,0,0,0,21,22a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42Z' - })); -}; - -UilRestaurant.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRestaurant; \ No newline at end of file diff --git a/icons/uil-right-indent-alt.js b/icons/uil-right-indent-alt.js deleted file mode 100644 index 4e5fac78..00000000 --- a/icons/uil-right-indent-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRightIndentAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.64,9.56A1,1,0,1,0,2.36,11.1l1.08.9-1.08.9a1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.13l2-1.67a1,1,0,0,0,0-1.54ZM9,5A1,1,0,0,0,8,6V18a1,1,0,0,0,2,0V6A1,1,0,0,0,9,5Zm4,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2Zm8,10H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0-8H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilRightIndentAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRightIndentAlt; \ No newline at end of file diff --git a/icons/uil-right-to-left-text-direction.js b/icons/uil-right-to-left-text-direction.js deleted file mode 100644 index 8dc7989d..00000000 --- a/icons/uil-right-to-left-text-direction.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRightToLeftTextDirection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,17H5.91l1.3-1.29a1,1,0,0,0-1.42-1.42l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.91,19H20.5a1,1,0,0,0,0-2Zm-9-7v4a1,1,0,0,0,2,0V4h2V14a1,1,0,0,0,2,0V4h1a1,1,0,0,0,0-2h-7a4,4,0,0,0,0,8Zm0-6V8a2,2,0,0,1,0-4Z' - })); -}; - -UilRightToLeftTextDirection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRightToLeftTextDirection; \ No newline at end of file diff --git a/icons/uil-robot.js b/icons/uil-robot.js deleted file mode 100644 index bea3fc0c..00000000 --- a/icons/uil-robot.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRobot = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,15a1,1,0,1,0,1,1A1,1,0,0,0,9,15ZM2,14a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,2,14Zm20,0a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,22,14ZM17,7H13V5.72A2,2,0,0,0,14,4a2,2,0,0,0-4,0,2,2,0,0,0,1,1.72V7H7a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10A3,3,0,0,0,17,7ZM13.72,9l-.5,2H10.78l-.5-2ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H8.22L9,12.24A1,1,0,0,0,10,13h4a1,1,0,0,0,1-.76L15.78,9H17a1,1,0,0,1,1,1Zm-3-4a1,1,0,1,0,1,1A1,1,0,0,0,15,15Z' - })); -}; - -UilRobot.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRobot; \ No newline at end of file diff --git a/icons/uil-rocket.js b/icons/uil-rocket.js deleted file mode 100644 index 5333c314..00000000 --- a/icons/uil-rocket.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRocket = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.601 2.062a1 1 0 0 0-.713-.713A11.252 11.252 0 0 0 10.47 4.972L9.354 6.296 6.75 5.668a2.777 2.777 0 0 0-3.387 1.357l-2.2 3.9a1 1 0 0 0 .661 1.469l3.073.659a13.42 13.42 0 0 0-.555 2.434 1 1 0 0 0 .284.836l3.1 3.1a1 1 0 0 0 .708.293c.028 0 .057-.001.086-.004a12.169 12.169 0 0 0 2.492-.49l.644 3.004a1 1 0 0 0 1.469.661l3.905-2.202a3.035 3.035 0 0 0 1.375-3.304l-.668-2.76 1.237-1.137A11.204 11.204 0 0 0 22.6 2.062ZM3.572 10.723l1.556-2.76a.826.826 0 0 1 1.07-.375l1.718.416-.65.772a13.095 13.095 0 0 0-1.59 2.398Zm12.47 8.222-2.715 1.532-.43-2.005a11.34 11.34 0 0 0 2.414-1.62l.743-.683.404 1.664a1.041 1.041 0 0 1-.416 1.112Zm1.615-6.965-3.685 3.386a9.773 9.773 0 0 1-5.17 2.304l-2.405-2.404a10.932 10.932 0 0 1 2.401-5.206l1.679-1.993a.964.964 0 0 0 .078-.092L11.99 6.27a9.278 9.278 0 0 1 8.81-3.12 9.218 9.218 0 0 1-3.143 8.829Zm-.923-6.164a1.5 1.5 0 1 0 1.5 1.5 1.5 1.5 0 0 0-1.5-1.5Z' - })); -}; - -UilRocket.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRocket; \ No newline at end of file diff --git a/icons/uil-rope-way.js b/icons/uil-rope-way.js deleted file mode 100644 index 7c9c15ba..00000000 --- a/icons/uil-rope-way.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRopeWay = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6.5H13V4h4.62a1,1,0,0,0,0-2H6.38a1,1,0,1,0,0,2H11V6.5H5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9.5A3,3,0,0,0,19,6.5ZM11,20H5a1,1,0,0,1-1-1V15.25h7a.5.5,0,0,0,0,.13v4.5A.53.53,0,0,0,11,20Zm9-1a1,1,0,0,1-1,1H13a.53.53,0,0,0,0-.12v-4.5a.5.5,0,0,0,0-.13h7Zm0-5.75H4V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' - })); -}; - -UilRopeWay.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRopeWay; \ No newline at end of file diff --git a/icons/uil-rotate-360.js b/icons/uil-rotate-360.js deleted file mode 100644 index 2a986f72..00000000 --- a/icons/uil-rotate-360.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRotate360 = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6C6.3,6,2,8.15,2,11c0,2.45,3.19,4.38,7.71,4.88l-.42.41a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-2-2a1,1,0,0,0-1.42,1.42l.12.11C6,13.34,4,12,4,11c0-1.22,3.12-3,8-3s8,1.78,8,3c0,.83-1.45,2-4.21,2.6A1,1,0,0,0,15,14.79a1,1,0,0,0,1.19.77C19.84,14.76,22,13.06,22,11,22,8.15,17.7,6,12,6Z' - })); -}; - -UilRotate360.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRotate360; \ No newline at end of file diff --git a/icons/uil-rss-alt.js b/icons/uil-rss-alt.js deleted file mode 100644 index 376f27cf..00000000 --- a/icons/uil-rss-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRssAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.88,16.88a3,3,0,1,0,4.24,4.24h0a3,3,0,0,0,0-4.24A3.08,3.08,0,0,0,2.88,16.88Zm2.83,2.83h0a1,1,0,0,1-1.42,0,1,1,0,0,1,0-1.42,1,1,0,0,1,1.42,0A1,1,0,0,1,5.71,19.71ZM5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0A7,7,0,0,0,5,12ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0A11,11,0,0,0,5,8Z' - })); -}; - -UilRssAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRssAlt; \ No newline at end of file diff --git a/icons/uil-rss-interface.js b/icons/uil-rss-interface.js deleted file mode 100644 index 86927b69..00000000 --- a/icons/uil-rss-interface.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRssInterface = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,14a1,1,0,0,0,0,2,3,3,0,0,1,3,3,1,1,0,0,0,2,0A5,5,0,0,0,3,14Zm-.71,4.29a1,1,0,1,0,1.42,0A1,1,0,0,0,2.29,18.29ZM19,4H5A3,3,0,0,0,2,7,1,1,0,0,0,4,7,1,1,0,0,1,5,6H19a1,1,0,0,1,1,1V17a1,1,0,0,1-1,1H15a1,1,0,0,0,0,2h4a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM3,10a1,1,0,0,0,0,2,7,7,0,0,1,7,7,1,1,0,0,0,2,0A9,9,0,0,0,3,10Z' - })); -}; - -UilRssInterface.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRssInterface; \ No newline at end of file diff --git a/icons/uil-rss.js b/icons/uil-rss.js deleted file mode 100644 index c0d5d07a..00000000 --- a/icons/uil-rss.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRss = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.88,16.88a3,3,0,0,0,0,4.24,3,3,0,0,0,4.24,0,3,3,0,0,0-4.24-4.24Zm2.83,2.83a1,1,0,0,1-1.42-1.42,1,1,0,0,1,1.42,0A1,1,0,0,1,5.71,19.71ZM5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0,7,7,0,0,0-7-7ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0,11.08,11.08,0,0,0-3.22-7.78A11.08,11.08,0,0,0,5,8Zm10.61.39A15.11,15.11,0,0,0,5,4,1,1,0,0,0,5,6,13,13,0,0,1,18,19a1,1,0,0,0,2,0A15.11,15.11,0,0,0,15.61,8.39Z' - })); -}; - -UilRss.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRss; \ No newline at end of file diff --git a/icons/uil-ruler-combined.js b/icons/uil-ruler-combined.js deleted file mode 100644 index a1b3701d..00000000 --- a/icons/uil-ruler-combined.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRulerCombined = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H9a1,1,0,0,0,1-1V10H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,8H18V7a1,1,0,0,0-2,0V8H14V7a1,1,0,0,0-2,0V8H10V7A1,1,0,0,0,8,7V8H7a1,1,0,0,0,0,2H8v2H7a1,1,0,0,0,0,2H8v2H7a1,1,0,0,0,0,2H8v2H4V4H20Z' - })); -}; - -UilRulerCombined.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRulerCombined; \ No newline at end of file diff --git a/icons/uil-ruler.js b/icons/uil-ruler.js deleted file mode 100644 index 66f26b18..00000000 --- a/icons/uil-ruler.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRuler = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.61,7.05,17,1.39a1,1,0,0,0-.71-.29,1,1,0,0,0-.7.29L1.39,15.54a1,1,0,0,0,0,1.41l5.66,5.66a1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l2.83-2.83h0l8.49-8.49h0l2.83-2.83A1,1,0,0,0,22.61,7.05ZM19.07,9.17l-.71-.71a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.71.71L16.24,12,14.12,9.88a1,1,0,0,0-1.41,1.41l2.12,2.12-1.42,1.42-.7-.71a1,1,0,1,0-1.42,1.42l.71.7-1.41,1.42L8.46,15.54a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.41l2.12,2.12L7.76,20.49,3.51,16.24,16.24,3.51l4.25,4.25Z' - })); -}; - -UilRuler.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRuler; \ No newline at end of file diff --git a/icons/uil-rupee-sign.js b/icons/uil-rupee-sign.js deleted file mode 100644 index 554c6da3..00000000 --- a/icons/uil-rupee-sign.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilRupeeSign = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18 7h-2.21a5.49 5.49 0 0 0-1-2H18a1 1 0 0 0 0-2H7a1 1 0 0 0 0 2h3.5a3.5 3.5 0 0 1 3.15 2H7a1 1 0 0 0 0 2h7a3.5 3.5 0 0 1-3.45 3H7a.7.7 0 0 0-.14 0 .65.65 0 0 0-.2 0 .69.69 0 0 0-.19.1l-.12.07a.75.75 0 0 0-.14.17 1.1 1.1 0 0 0-.09.14.61.61 0 0 0 0 .18A.65.65 0 0 0 6 13a.7.7 0 0 0 0 .14.65.65 0 0 0 0 .2.69.69 0 0 0 .1.19s0 .08.07.12l6 7a1 1 0 0 0 1.52-1.3L9.18 14h1.32A5.5 5.5 0 0 0 16 9h2a1 1 0 0 0 0-2Z' - })); -}; - -UilRupeeSign.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilRupeeSign; \ No newline at end of file diff --git a/icons/uil-sad-cry.js b/icons/uil-sad-cry.js deleted file mode 100644 index 4a3fabf5..00000000 --- a/icons/uil-sad-cry.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSadCry = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,8.59,21.39l.06,0a9.81,9.81,0,0,0,6.7,0l.06,0A10,10,0,0,0,12,2Zm2,17.74a7.82,7.82,0,0,1-4,0V16h4Zm2-.82V11a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2v3H10V11a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2v7.92a8,8,0,1,1,8,0Z' - })); -}; - -UilSadCry.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSadCry; \ No newline at end of file diff --git a/icons/uil-sad-crying.js b/icons/uil-sad-crying.js deleted file mode 100644 index f1510d6f..00000000 --- a/icons/uil-sad-crying.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSadCrying = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,8.59,21.39l.06,0a9.81,9.81,0,0,0,6.7,0l.06,0A10,10,0,0,0,12,2Zm2,17.74a7.82,7.82,0,0,1-4,0V16.61a3.79,3.79,0,0,1,4,0Zm2-.82V11a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2v3.39a6,6,0,0,0-4,0V11a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2v7.92a8,8,0,1,1,8,0Z' - })); -}; - -UilSadCrying.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSadCrying; \ No newline at end of file diff --git a/icons/uil-sad-dizzy.js b/icons/uil-sad-dizzy.js deleted file mode 100644 index 06727464..00000000 --- a/icons/uil-sad-dizzy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSadDizzy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0Zm-.6,3.62a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' - })); -}; - -UilSadDizzy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSadDizzy; \ No newline at end of file diff --git a/icons/uil-sad-squint.js b/icons/uil-sad-squint.js deleted file mode 100644 index 7a51bfd9..00000000 --- a/icons/uil-sad-squint.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSadSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.08,12.21l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21Zm-.72,3.12a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33Zm8.22-7.54a1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0,0,1.42l1.5,1.5a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79A1,1,0,0,0,16.58,7.79ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSadSquint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSadSquint; \ No newline at end of file diff --git a/icons/uil-sad.js b/icons/uil-sad.js deleted file mode 100644 index 96f60b99..00000000 --- a/icons/uil-sad.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSad = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,.64.23,1,1,0,0,0,.64-1.76A5.81,5.81,0,0,0,8.36,15.33Zm.85-4.79a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13Z' - })); -}; - -UilSad.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSad; \ No newline at end of file diff --git a/icons/uil-sanitizer-alt.js b/icons/uil-sanitizer-alt.js deleted file mode 100644 index b8e1946d..00000000 --- a/icons/uil-sanitizer-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSanitizerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14 15h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Zm2-7V5a1 1 0 0 0-1-1h-1V3h1a1 1 0 0 0 0-2h-4.764a4.593 4.593 0 0 0-4.13 2.553 1 1 0 0 0 1.789.894A2.603 2.603 0 0 1 10.235 3H12v1h-1a1 1 0 0 0-1 1v3a3.003 3.003 0 0 0-3 3v9a3.003 3.003 0 0 0 3 3h6a3.003 3.003 0 0 0 3-3v-9a3.003 3.003 0 0 0-3-3Zm-4-2h2v2h-2Zm5 14a1.001 1.001 0 0 1-1 1h-6a1.001 1.001 0 0 1-1-1v-9a1.001 1.001 0 0 1 1-1h6a1.001 1.001 0 0 1 1 1Z' - })); -}; - -UilSanitizerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSanitizerAlt; \ No newline at end of file diff --git a/icons/uil-sanitizer.js b/icons/uil-sanitizer.js deleted file mode 100644 index 44582784..00000000 --- a/icons/uil-sanitizer.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSanitizer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13 12a3 3 0 1 0 3 3 3.003 3.003 0 0 0-3-3Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Zm5.8-8.4L16 5.5V3h1a1 1 0 0 0 0-2H8.657a4.967 4.967 0 0 0-3.535 1.464l-.829.829a1 1 0 1 0 1.414 1.414l.829-.829A3.022 3.022 0 0 1 8.656 3H10v2.5L7.2 7.6A3.016 3.016 0 0 0 6 10v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V10a3.015 3.015 0 0 0-1.2-2.4ZM12 3h2v2h-2Zm6 18H8V10a1.006 1.006 0 0 1 .4-.8L11.334 7h3.333L17.6 9.2a1.005 1.005 0 0 1 .4.8Z' - })); -}; - -UilSanitizer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSanitizer; \ No newline at end of file diff --git a/icons/uil-save.js b/icons/uil-save.js deleted file mode 100644 index 691cc1ee..00000000 --- a/icons/uil-save.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSave = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm20.71 9.29-6-6a1 1 0 0 0-.32-.21A1.09 1.09 0 0 0 14 3H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-8a1 1 0 0 0-.29-.71ZM9 5h4v2H9Zm6 14H9v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1Zm4-1a1 1 0 0 1-1 1h-1v-3a3 3 0 0 0-3-3h-4a3 3 0 0 0-3 3v3H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1v3a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6.41l4 4Z' - })); -}; - -UilSave.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSave; \ No newline at end of file diff --git a/icons/uil-scaling-left.js b/icons/uil-scaling-left.js deleted file mode 100644 index 035887e6..00000000 --- a/icons/uil-scaling-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScalingLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,16a1,1,0,0,0-1,1v1.59L13.41,12l2.13-2.12a1,1,0,0,0-1.42-1.42L12,10.59,5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L10.59,12,8.46,14.12a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29L12,13.41,18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' - })); -}; - -UilScalingLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScalingLeft; \ No newline at end of file diff --git a/icons/uil-scaling-right.js b/icons/uil-scaling-right.js deleted file mode 100644 index 3fa615f5..00000000 --- a/icons/uil-scaling-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScalingRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59L12,10.59,9.88,8.46A1,1,0,0,0,8.46,9.88L10.59,12,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41L12,13.41l2.12,2.13a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L13.41,12,20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' - })); -}; - -UilScalingRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScalingRight; \ No newline at end of file diff --git a/icons/uil-scenery.js b/icons/uil-scenery.js deleted file mode 100644 index 0f967336..00000000 --- a/icons/uil-scenery.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScenery = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a2.81,2.81,0,0,0,.49-.05l.3-.07.07,0h0l.05,0,.37-.14.13-.07c.1-.06.21-.11.31-.18a3.79,3.79,0,0,0,.38-.32l.07-.09a2.69,2.69,0,0,0,.27-.32l.09-.13a2.31,2.31,0,0,0,.18-.35,1,1,0,0,0,.07-.15c.05-.12.08-.25.12-.38l0-.15A2.6,2.6,0,0,0,22,19V5A3,3,0,0,0,19,2ZM5,20a1,1,0,0,1-1-1V14.69l3.29-3.3h0a1,1,0,0,1,1.42,0L17.31,20Zm15-1a1,1,0,0,1-.07.36,1,1,0,0,1-.08.14.94.94,0,0,1-.09.12l-5.35-5.35.88-.88a1,1,0,0,1,1.42,0h0L20,16.69Zm0-5.14L18.12,12a3.08,3.08,0,0,0-4.24,0l-.88.88L10.12,10a3.08,3.08,0,0,0-4.24,0L4,11.86V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM13.5,6A1.5,1.5,0,1,0,15,7.5,1.5,1.5,0,0,0,13.5,6Z' - })); -}; - -UilScenery.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScenery; \ No newline at end of file diff --git a/icons/uil-schedule.js b/icons/uil-schedule.js deleted file mode 100644 index 3767f867..00000000 --- a/icons/uil-schedule.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSchedule = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,14a1,1,0,1,0-1-1A1,1,0,0,0,12,14Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,14Zm-5,4a1,1,0,1,0-1-1A1,1,0,0,0,12,18Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,18ZM7,14a1,1,0,1,0-1-1A1,1,0,0,0,7,14ZM19,4H18V3a1,1,0,0,0-2,0V4H8V3A1,1,0,0,0,6,3V4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm1,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V10H20ZM20,8H4V7A1,1,0,0,1,5,6H19a1,1,0,0,1,1,1ZM7,18a1,1,0,1,0-1-1A1,1,0,0,0,7,18Z' - })); -}; - -UilSchedule.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSchedule; \ No newline at end of file diff --git a/icons/uil-screw.js b/icons/uil-screw.js deleted file mode 100644 index 93bfb0a4..00000000 --- a/icons/uil-screw.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScrew = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,10.12,13.88,2.29a1,1,0,0,0-1.7.57L11.45,8l-2,2-.33-.19A1,1,0,0,0,8,11.44L6.85,12.61l-.33-.19a1,1,0,0,0-1.11,1.63L4.24,15.21,3.92,15a1,1,0,0,0-1.37.37,1,1,0,0,0,.25,1.26l-.51.51a.93.93,0,0,0-.21.33,1,1,0,0,0-.08.38V21a1,1,0,0,0,1,1H6.13a1,1,0,0,0,.38-.08.93.93,0,0,0,.33-.21L8.54,20l.33.19a1,1,0,0,0,1.37-.36A1,1,0,0,0,10,18.56l1.17-1.16.33.19a1,1,0,0,0,.49.13A1,1,0,0,0,12.59,16l1.17-1.16.33.19a1,1,0,0,0,.49.13,1,1,0,0,0,.62-1.77l.79-.79,5.15-.73a1,1,0,0,0,.81-.68A1,1,0,0,0,21.71,10.12ZM5.72,20H4V18.28l.57-.57L6.75,19Zm2.49-2.5L6,16.25l1.14-1.14,2.17,1.25Zm2.61-2.6L8.64,13.64,9.79,12.5,12,13.75Zm2.61-2.61L11.25,11l1.14-1.14,1.72,1.72Zm2.45-1.74L13.45,8.12l.43-3,5,5Z' - })); -}; - -UilScrew.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScrew; \ No newline at end of file diff --git a/icons/uil-scroll-h.js b/icons/uil-scroll-h.js deleted file mode 100644 index 749f5259..00000000 --- a/icons/uil-scroll-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScrollH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.71,6.29A1,1,0,0,0,3.29,7.71L7.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,0-1.42ZM16.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42l-5,5a1,1,0,0,0,0,1.42l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilScrollH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScrollH; \ No newline at end of file diff --git a/icons/uil-scroll.js b/icons/uil-scroll.js deleted file mode 100644 index d321ece5..00000000 --- a/icons/uil-scroll.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilScroll = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,9.71a1,1,0,0,0,1.42,0l5-5a1,1,0,1,0-1.42-1.42L12,7.59,7.71,3.29A1,1,0,0,0,6.29,4.71Zm1.42,4.58a1,1,0,0,0-1.42,0l-5,5a1,1,0,0,0,1.42,1.42L12,16.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilScroll.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilScroll; \ No newline at end of file diff --git a/icons/uil-search-alt.js b/icons/uil-search-alt.js deleted file mode 100644 index 4382f9d9..00000000 --- a/icons/uil-search-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSearchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.07,16.83,19,14.71a3.08,3.08,0,0,0-3.4-.57l-.9-.9a7,7,0,1,0-1.41,1.41l.89.89A3,3,0,0,0,14.71,19l2.12,2.12a3,3,0,0,0,4.24,0A3,3,0,0,0,21.07,16.83Zm-8.48-4.24a5,5,0,1,1,0-7.08A5,5,0,0,1,12.59,12.59Zm7.07,7.07a1,1,0,0,1-1.42,0l-2.12-2.12a1,1,0,0,1,0-1.42,1,1,0,0,1,1.42,0l2.12,2.12A1,1,0,0,1,19.66,19.66Z' - })); -}; - -UilSearchAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSearchAlt; \ No newline at end of file diff --git a/icons/uil-search-minus.js b/icons/uil-search-minus.js deleted file mode 100644 index a90d6154..00000000 --- a/icons/uil-search-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSearchMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Zm4-8H7a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' - })); -}; - -UilSearchMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSearchMinus; \ No newline at end of file diff --git a/icons/uil-search-plus.js b/icons/uil-search-plus.js deleted file mode 100644 index bb1999e2..00000000 --- a/icons/uil-search-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSearchPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,10H12V7a1,1,0,0,0-2,0v3H7a1,1,0,0,0,0,2h3v3a1,1,0,0,0,2,0V12h3a1,1,0,0,0,0-2Zm6.71,10.29L18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z' - })); -}; - -UilSearchPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSearchPlus; \ No newline at end of file diff --git a/icons/uil-search.js b/icons/uil-search.js deleted file mode 100644 index 3dbde628..00000000 --- a/icons/uil-search.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSearch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z' - })); -}; - -UilSearch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSearch; \ No newline at end of file diff --git a/icons/uil-selfie.js b/icons/uil-selfie.js deleted file mode 100644 index 5ae59252..00000000 --- a/icons/uil-selfie.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSelfie = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V18H17Zm-5-5a3,3,0,0,1,2.82,2H9.18A3,3,0,0,1,12,14Zm-1-3a1,1,0,1,1,1,1A1,1,0,0,1,11,11Zm6,5h-.1a5,5,0,0,0-2.42-3.32A3,3,0,0,0,15,11a3,3,0,0,0-6,0,3,3,0,0,0,.52,1.68A5,5,0,0,0,7.1,16H7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1ZM12,5a1,1,0,1,0,1,1A1,1,0,0,0,12,5Z' - })); -}; - -UilSelfie.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSelfie; \ No newline at end of file diff --git a/icons/uil-server-alt.js b/icons/uil-server-alt.js deleted file mode 100644 index 3599516b..00000000 --- a/icons/uil-server-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,17a1,1,0,1,0,1,1A1,1,0,0,0,8,17Zm0-6a1,1,0,1,0,1,1A1,1,0,0,0,8,11ZM8,5A1,1,0,1,0,9,6,1,1,0,0,0,8,5ZM20,5a3,3,0,0,0-3-3H7A3,3,0,0,0,4,5V7a3,3,0,0,0,.78,2A3,3,0,0,0,4,11v2a3,3,0,0,0,.78,2A3,3,0,0,0,4,17v2a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V17a3,3,0,0,0-.78-2A3,3,0,0,0,20,13V11a3,3,0,0,0-.78-2A3,3,0,0,0,20,7ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,7V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Z' - })); -}; - -UilServerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServerAlt; \ No newline at end of file diff --git a/icons/uil-server-connection.js b/icons/uil-server-connection.js deleted file mode 100644 index ae38da02..00000000 --- a/icons/uil-server-connection.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServerConnection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,13a1,1,0,1,0,1,1A1,1,0,0,0,11,13ZM7,13a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM22,4a3,3,0,0,0-3-3H5A3,3,0,0,0,2,4V8a3,3,0,0,0,.78,2A3,3,0,0,0,2,12v4a3,3,0,0,0,3,3h6v2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2H13V19h6a3,3,0,0,0,3-3V12a3,3,0,0,0-.78-2A3,3,0,0,0,22,8ZM20,16a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-8a1,1,0,0,1-1,1H5A1,1,0,0,1,4,8V4A1,1,0,0,1,5,3H19a1,1,0,0,1,1,1ZM11,5a1,1,0,1,0,1,1A1,1,0,0,0,11,5ZM7,5A1,1,0,1,0,8,6,1,1,0,0,0,7,5Z' - })); -}; - -UilServerConnection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServerConnection; \ No newline at end of file diff --git a/icons/uil-server-network-alt.js b/icons/uil-server-network-alt.js deleted file mode 100644 index f88ded82..00000000 --- a/icons/uil-server-network-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServerNetworkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,6h3a1,1,0,0,0,0-2H8A1,1,0,0,0,8,6Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,16,6Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,16,10Zm5,9H14.82A3,3,0,0,0,13,17.18V15h4a3,3,0,0,0,3-3V10a3,3,0,0,0-.78-2A3,3,0,0,0,20,6V4a3,3,0,0,0-3-3H7A3,3,0,0,0,4,4V6a3,3,0,0,0,.78,2A3,3,0,0,0,4,10v2a3,3,0,0,0,3,3h4v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM6,4A1,1,0,0,1,7,3H17a1,1,0,0,1,1,1V6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,6Zm1,9a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H17a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1Zm5,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21ZM11,10H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Z' - })); -}; - -UilServerNetworkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServerNetworkAlt; \ No newline at end of file diff --git a/icons/uil-server-network.js b/icons/uil-server-network.js deleted file mode 100644 index fe3dc6c0..00000000 --- a/icons/uil-server-network.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServerNetwork = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,6A1,1,0,1,0,7,5,1,1,0,0,0,8,6ZM21,19H14.82A3,3,0,0,0,13,17.18V15h4a3,3,0,0,0,3-3V10a3,3,0,0,0-.78-2A3,3,0,0,0,20,6V4a3,3,0,0,0-3-3H7A3,3,0,0,0,4,4V6a3,3,0,0,0,.78,2A3,3,0,0,0,4,10v2a3,3,0,0,0,3,3h4v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM6,4A1,1,0,0,1,7,3H17a1,1,0,0,1,1,1V6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,6Zm1,9a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H17a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1Zm5,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21ZM8,10a1,1,0,1,0,1,1A1,1,0,0,0,8,10Z' - })); -}; - -UilServerNetwork.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServerNetwork; \ No newline at end of file diff --git a/icons/uil-server.js b/icons/uil-server.js deleted file mode 100644 index 328959cd..00000000 --- a/icons/uil-server.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,17a1,1,0,1,0,1,1A1,1,0,0,0,15,17ZM9,17H6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9,0a1,1,0,1,0,1,1A1,1,0,0,0,18,17Zm-3-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11ZM9,11H6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9-6a1,1,0,1,0,1,1A1,1,0,0,0,18,5Zm0,6a1,1,0,1,0,1,1A1,1,0,0,0,18,11Zm4-6a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V7a3,3,0,0,0,.78,2A3,3,0,0,0,2,11v2a3,3,0,0,0,.78,2A3,3,0,0,0,2,17v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V17a3,3,0,0,0-.78-2A3,3,0,0,0,22,13V11a3,3,0,0,0-.78-2A3,3,0,0,0,22,7ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H5A1,1,0,0,1,4,7V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM15,5a1,1,0,1,0,1,1A1,1,0,0,0,15,5ZM9,5H6A1,1,0,0,0,6,7H9A1,1,0,0,0,9,5Z' - })); -}; - -UilServer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServer; \ No newline at end of file diff --git a/icons/uil-servers.js b/icons/uil-servers.js deleted file mode 100644 index 1500bfc0..00000000 --- a/icons/uil-servers.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServers = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,17a1,1,0,1,0,1,1A1,1,0,0,0,15,17Zm-4,0H9a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm0-6H9a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,15,11Zm8-3a3,3,0,0,0-3-3H19a3,3,0,0,0-3-3H8A3,3,0,0,0,5,5H4A3,3,0,0,0,1,8v2a3,3,0,0,0,.78,2A3,3,0,0,0,1,14v2a3,3,0,0,0,3,3H5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,23,10ZM5,17H4a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1H5a3,3,0,0,0,.78,2A3,3,0,0,0,5,17Zm0-6H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H5a3,3,0,0,0,.78,2A3,3,0,0,0,5,11Zm12,8a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H8A1,1,0,0,1,7,7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Zm4,9a1,1,0,0,1-1,1H19a3,3,0,0,0-.78-2A3,3,0,0,0,19,13h1a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H19a3,3,0,0,0-.78-2A3,3,0,0,0,19,7h1a1,1,0,0,1,1,1ZM15,5a1,1,0,1,0,1,1A1,1,0,0,0,15,5ZM11,5H9A1,1,0,0,0,9,7h2a1,1,0,0,0,0-2Z' - })); -}; - -UilServers.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServers; \ No newline at end of file diff --git a/icons/uil-servicemark.js b/icons/uil-servicemark.js deleted file mode 100644 index 74361026..00000000 --- a/icons/uil-servicemark.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilServicemark = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.5,9h4a1,1,0,0,0,0-2h-4a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2h-4a1,1,0,0,0,0,2h4a3,3,0,0,0,0-6h-2a1,1,0,0,1,0-2ZM21.42,7.62a1,1,0,0,0-.54-.54,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L17,10.09l-2.79-2.8a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,12.5,8v8a1,1,0,0,0,2,0V10.41l1.79,1.8a1,1,0,0,0,1.42,0l1.79-1.8V16a1,1,0,0,0,2,0V8A1,1,0,0,0,21.42,7.62Z' - })); -}; - -UilServicemark.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilServicemark; \ No newline at end of file diff --git a/icons/uil-setting.js b/icons/uil-setting.js deleted file mode 100644 index 894dc378..00000000 --- a/icons/uil-setting.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSetting = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.9 12.66a1 1 0 0 1 0-1.32l1.28-1.44a1 1 0 0 0 .12-1.17l-2-3.46a1 1 0 0 0-1.07-.48l-1.88.38a1 1 0 0 1-1.15-.66l-.61-1.83a1 1 0 0 0-.95-.68h-4a1 1 0 0 0-1 .68l-.56 1.83a1 1 0 0 1-1.15.66L5 4.79a1 1 0 0 0-1 .48L2 8.73a1 1 0 0 0 .1 1.17l1.27 1.44a1 1 0 0 1 0 1.32L2.1 14.1a1 1 0 0 0-.1 1.17l2 3.46a1 1 0 0 0 1.07.48l1.88-.38a1 1 0 0 1 1.15.66l.61 1.83a1 1 0 0 0 1 .68h4a1 1 0 0 0 .95-.68l.61-1.83a1 1 0 0 1 1.15-.66l1.88.38a1 1 0 0 0 1.07-.48l2-3.46a1 1 0 0 0-.12-1.17ZM18.41 14l.8.9-1.28 2.22-1.18-.24a3 3 0 0 0-3.45 2L12.92 20h-2.56L10 18.86a3 3 0 0 0-3.45-2l-1.18.24-1.3-2.21.8-.9a3 3 0 0 0 0-4l-.8-.9 1.28-2.2 1.18.24a3 3 0 0 0 3.45-2L10.36 4h2.56l.38 1.14a3 3 0 0 0 3.45 2l1.18-.24 1.28 2.22-.8.9a3 3 0 0 0 0 3.98Zm-6.77-6a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 6a2 2 0 1 1 2-2 2 2 0 0 1-2 2Z' - })); -}; - -UilSetting.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSetting; \ No newline at end of file diff --git a/icons/uil-share-alt.js b/icons/uil-share-alt.js deleted file mode 100644 index 06655779..00000000 --- a/icons/uil-share-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,14a4,4,0,0,0-3.08,1.48l-5.1-2.35a3.64,3.64,0,0,0,0-2.26l5.1-2.35A4,4,0,1,0,14,6a4.17,4.17,0,0,0,.07.71L8.79,9.14a4,4,0,1,0,0,5.72l5.28,2.43A4.17,4.17,0,0,0,14,18a4,4,0,1,0,4-4ZM18,4a2,2,0,1,1-2,2A2,2,0,0,1,18,4ZM6,14a2,2,0,1,1,2-2A2,2,0,0,1,6,14Zm12,6a2,2,0,1,1,2-2A2,2,0,0,1,18,20Z' - })); -}; - -UilShareAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShareAlt; \ No newline at end of file diff --git a/icons/uil-share.js b/icons/uil-share.js deleted file mode 100644 index 3ae62b93..00000000 --- a/icons/uil-share.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm21.707 11.293-8-8A1 1 0 0 0 12 4v3.545A11.015 11.015 0 0 0 2 18.5V20a1 1 0 0 0 1.784.62 11.456 11.456 0 0 1 7.887-4.049c.05-.006.175-.016.329-.026V20a1 1 0 0 0 1.707.707l8-8a1 1 0 0 0 0-1.414ZM14 17.586V15.5a1 1 0 0 0-1-1c-.255 0-1.296.05-1.562.085a14.005 14.005 0 0 0-7.386 2.948A9.013 9.013 0 0 1 13 9.5a1 1 0 0 0 1-1V6.414L19.586 12Z' - })); -}; - -UilShare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShare; \ No newline at end of file diff --git a/icons/uil-shield-check.js b/icons/uil-shield-check.js deleted file mode 100644 index 7c7aa730..00000000 --- a/icons/uil-shield-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShieldCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.63,3.65a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39ZM13.54,9.59l-2.69,2.7-.89-.9a1,1,0,0,0-1.42,1.42l1.6,1.6a1,1,0,0,0,1.42,0L15,11a1,1,0,0,0-1.42-1.42Z' - })); -}; - -UilShieldCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShieldCheck; \ No newline at end of file diff --git a/icons/uil-shield-exclamation.js b/icons/uil-shield-exclamation.js deleted file mode 100644 index 16ebe916..00000000 --- a/icons/uil-shield-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShieldExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.92,15a.56.56,0,0,0-.09-.17l-.12-.15a1,1,0,0,0-1.42,0,.61.61,0,0,0-.12.15.56.56,0,0,0-.09.17.7.7,0,0,0-.06.19,1.23,1.23,0,0,0,0,.19.88.88,0,0,0,.08.39,1,1,0,0,0,1.3.54,1.19,1.19,0,0,0,.33-.22,1,1,0,0,0,.21-.32,1,1,0,0,0,.08-.39,1.23,1.23,0,0,0,0-.19A.7.7,0,0,0,12.92,15ZM12,7.36a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,7.36Zm7.63-3.71a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39Z' - })); -}; - -UilShieldExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShieldExclamation; \ No newline at end of file diff --git a/icons/uil-shield-plus.js b/icons/uil-shield-plus.js deleted file mode 100644 index 309fc397..00000000 --- a/icons/uil-shield-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShieldPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14 11h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Zm5.63-7.35a1.007 1.007 0 0 0-.835-.203 7.98 7.98 0 0 1-6.223-1.267.999.999 0 0 0-1.144 0 7.976 7.976 0 0 1-6.223 1.267A1 1 0 0 0 4 4.427v7.456a9.019 9.019 0 0 0 3.769 7.324l3.65 2.607a1 1 0 0 0 1.162 0l3.65-2.607A9.017 9.017 0 0 0 20 11.883V4.426a1.001 1.001 0 0 0-.37-.776ZM18 11.883a7.016 7.016 0 0 1-2.93 5.696L12 19.771 8.93 17.58A7.017 7.017 0 0 1 6 11.883v-6.3a9.955 9.955 0 0 0 6-1.391 9.955 9.955 0 0 0 6 1.391Z' - })); -}; - -UilShieldPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShieldPlus; \ No newline at end of file diff --git a/icons/uil-shield-question.js b/icons/uil-shield-question.js deleted file mode 100644 index bb96367d..00000000 --- a/icons/uil-shield-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShieldQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,14.66a1,1,0,0,0-.29.7,1,1,0,0,0,.08.39A1,1,0,0,0,13,15.36a1,1,0,0,0-.29-.7A1,1,0,0,0,11.29,14.66Zm8.34-11a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39ZM12,7.36a3,3,0,0,0-2.6,1.5,1,1,0,0,0,1.73,1A1,1,0,1,1,12,11.36a1,1,0,0,0,0,2,3,3,0,1,0,0-6Z' - })); -}; - -UilShieldQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShieldQuestion; \ No newline at end of file diff --git a/icons/uil-shield-slash.js b/icons/uil-shield-slash.js deleted file mode 100644 index 5ae38682..00000000 --- a/icons/uil-shield-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShieldSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-16-16h0l-2-2A1,1,0,0,0,2.29,3.71L4,5.41v6.47A9,9,0,0,0,7.77,19.2l3.65,2.61a1,1,0,0,0,1.16,0l3.65-2.61a8.21,8.21,0,0,0,.86-.7l3.2,3.21a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Zm-6.64-2.71L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V7.41l9.67,9.68C15.48,17.26,15.28,17.42,15.07,17.58Zm-5-12.51A10.15,10.15,0,0,0,12,4.19a9.82,9.82,0,0,0,6,1.39v6.3a6.88,6.88,0,0,1-.1,1.18,1,1,0,0,0,.83,1.15h.16a1,1,0,0,0,1-.84,9.77,9.77,0,0,0,.12-1.5V4.43a1,1,0,0,0-.37-.77,1,1,0,0,0-.83-.21,7.89,7.89,0,0,1-6.23-1.27,1,1,0,0,0-1.14,0,8,8,0,0,1-2,1,1,1,0,1,0,.64,1.9Z' - })); -}; - -UilShieldSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShieldSlash; \ No newline at end of file diff --git a/icons/uil-shield.js b/icons/uil-shield.js deleted file mode 100644 index 8798f49d..00000000 --- a/icons/uil-shield.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShield = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.63,3.65a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39Z' - })); -}; - -UilShield.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShield; \ No newline at end of file diff --git a/icons/uil-ship.js b/icons/uil-ship.js deleted file mode 100644 index 98f1334d..00000000 --- a/icons/uil-ship.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShip = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.62,17.28a1,1,0,0,0,1.86-.74L4.36,13.72,11,12.25V17a1,1,0,0,0,2,0V12.25l6.64,1.47-1.12,2.82a1,1,0,0,0,.56,1.3,1,1,0,0,0,.37.07,1,1,0,0,0,.93-.63l1.55-3.91a1,1,0,0,0-.05-.84,1,1,0,0,0-.66-.51L18,11.31V7a1,1,0,0,0-1-1H15V3a1,1,0,0,0-1-1H10A1,1,0,0,0,9,3V6H7A1,1,0,0,0,6,7v4.31L2.78,12a1,1,0,0,0-.66.51,1,1,0,0,0-.05.84ZM11,4h2V6H11ZM8,8h8v2.86L12.22,10h-.1L12,10l-.12,0h-.1L8,10.86ZM20.71,19.28a4.38,4.38,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.14,2.14,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.38,4.38,0,0,0-1-.45A1,1,0,0,0,2,20a1,1,0,0,0,.67,1.24,2.1,2.1,0,0,1,.57.25,4,4,0,0,0,2,.55,4.14,4.14,0,0,0,2.08-.56,2.65,2.65,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.65,2.65,0,0,1,2.56,0,4,4,0,0,0,4.1,0,2.1,2.1,0,0,1,.57-.25A1,1,0,0,0,22,20,1,1,0,0,0,20.71,19.28Z' - })); -}; - -UilShip.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShip; \ No newline at end of file diff --git a/icons/uil-shop.js b/icons/uil-shop.js deleted file mode 100644 index e284d29f..00000000 --- a/icons/uil-shop.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,5H2A1,1,0,0,0,1,6v4a3,3,0,0,0,2,2.82V22a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V12.82A3,3,0,0,0,23,10V6A1,1,0,0,0,22,5ZM15,7h2v3a1,1,0,0,1-2,0ZM11,7h2v3a1,1,0,0,1-2,0ZM7,7H9v3a1,1,0,0,1-2,0ZM4,11a1,1,0,0,1-1-1V7H5v3A1,1,0,0,1,4,11ZM14,21H10V19a2,2,0,0,1,4,0Zm5,0H16V19a4,4,0,0,0-8,0v2H5V12.82a3.17,3.17,0,0,0,1-.6,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3.17,3.17,0,0,0,1,.6Zm2-11a1,1,0,0,1-2,0V7h2ZM4.3,3H20a1,1,0,0,0,0-2H4.3a1,1,0,0,0,0,2Z' - })); -}; - -UilShop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShop; \ No newline at end of file diff --git a/icons/uil-shopping-bag.js b/icons/uil-shopping-bag.js deleted file mode 100644 index ff2a327d..00000000 --- a/icons/uil-shopping-bag.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShoppingBag = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,7H16V6A4,4,0,0,0,8,6V7H5A1,1,0,0,0,4,8V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V8A1,1,0,0,0,19,7ZM10,6a2,2,0,0,1,4,0V7H10Zm8,13a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V9H8v1a1,1,0,0,0,2,0V9h4v1a1,1,0,0,0,2,0V9h2Z' - })); -}; - -UilShoppingBag.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShoppingBag; \ No newline at end of file diff --git a/icons/uil-shopping-basket.js b/icons/uil-shopping-basket.js deleted file mode 100644 index b3102398..00000000 --- a/icons/uil-shopping-basket.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShoppingBasket = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,18a1,1,0,0,0,1-1V15a1,1,0,0,0-2,0v2A1,1,0,0,0,14,18Zm-4,0a1,1,0,0,0,1-1V15a1,1,0,0,0-2,0v2A1,1,0,0,0,10,18ZM19,6H17.62L15.89,2.55a1,1,0,1,0-1.78.9L15.38,6H8.62L9.89,3.45a1,1,0,0,0-1.78-.9L6.38,6H5a3,3,0,0,0-.92,5.84l.74,7.46a3,3,0,0,0,3,2.7h8.38a3,3,0,0,0,3-2.7l.74-7.46A3,3,0,0,0,19,6ZM17.19,19.1a1,1,0,0,1-1,.9H7.81a1,1,0,0,1-1-.9L6.1,12H17.9ZM19,10H5A1,1,0,0,1,5,8H19a1,1,0,0,1,0,2Z' - })); -}; - -UilShoppingBasket.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShoppingBasket; \ No newline at end of file diff --git a/icons/uil-shopping-cart-alt.js b/icons/uil-shopping-cart-alt.js deleted file mode 100644 index 2c2d6374..00000000 --- a/icons/uil-shopping-cart-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShoppingCartAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.5,15a3,3,0,0,0-1.9-2.78l1.87-7a1,1,0,0,0-.18-.87A1,1,0,0,0,20.5,4H6.8L6.47,2.74A1,1,0,0,0,5.5,2h-2V4H4.73l2.48,9.26a1,1,0,0,0,1,.74H18.5a1,1,0,0,1,0,2H5.5a1,1,0,0,0,0,2H6.68a3,3,0,1,0,5.64,0h2.36a3,3,0,1,0,5.82,1,2.94,2.94,0,0,0-.4-1.47A3,3,0,0,0,21.5,15Zm-3.91-3H9L7.34,6H19.2ZM9.5,20a1,1,0,1,1,1-1A1,1,0,0,1,9.5,20Zm8,0a1,1,0,1,1,1-1A1,1,0,0,1,17.5,20Z' - })); -}; - -UilShoppingCartAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShoppingCartAlt; \ No newline at end of file diff --git a/icons/uil-shopping-cart.js b/icons/uil-shopping-cart.js deleted file mode 100644 index 4ac1f207..00000000 --- a/icons/uil-shopping-cart.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShoppingCart = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5,19A1.5,1.5,0,1,0,10,20.5,1.5,1.5,0,0,0,8.5,19ZM19,16H7a1,1,0,0,1,0-2h8.49121A3.0132,3.0132,0,0,0,18.376,11.82422L19.96143,6.2749A1.00009,1.00009,0,0,0,19,5H6.73907A3.00666,3.00666,0,0,0,3.92139,3H3A1,1,0,0,0,3,5h.92139a1.00459,1.00459,0,0,1,.96142.7251l.15552.54474.00024.00506L6.6792,12.01709A3.00006,3.00006,0,0,0,7,18H19a1,1,0,0,0,0-2ZM17.67432,7l-1.2212,4.27441A1.00458,1.00458,0,0,1,15.49121,12H8.75439l-.25494-.89221L7.32642,7ZM16.5,19A1.5,1.5,0,1,0,18,20.5,1.5,1.5,0,0,0,16.5,19Z' - })); -}; - -UilShoppingCart.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShoppingCart; \ No newline at end of file diff --git a/icons/uil-shovel.js b/icons/uil-shovel.js deleted file mode 100644 index 64b03422..00000000 --- a/icons/uil-shovel.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShovel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,7.38,16.62,2.29a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42L17,5.54,11.58,11l-1-1h0a3,3,0,0,0-4.25,0L2.88,13.42A3,3,0,0,0,2,15.55V19a3,3,0,0,0,3,3H8.45a3,3,0,0,0,2.13-.88L14,17.69a3,3,0,0,0,0-4.25l-1-1L18.46,7l1.83,1.83a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,7.38ZM12.6,16.27,9.16,19.71a1,1,0,0,1-.71.29H5a1,1,0,0,1-1-1V15.55a1,1,0,0,1,.29-.71L7.73,11.4a1,1,0,0,1,1.41,0l1,1-.89.9a1,1,0,0,0,0,1.41A1,1,0,0,0,10,15a1,1,0,0,0,.7-.29l.9-.89,1,1A1,1,0,0,1,12.6,16.27Z' - })); -}; - -UilShovel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShovel; \ No newline at end of file diff --git a/icons/uil-shrink.js b/icons/uil-shrink.js deleted file mode 100644 index 331ac68e..00000000 --- a/icons/uil-shrink.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShrink = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.71,11.29l-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H3a1,1,0,0,0,0,2H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,11H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H21a1,1,0,0,0,0-2Z' - })); -}; - -UilShrink.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShrink; \ No newline at end of file diff --git a/icons/uil-shuffle.js b/icons/uil-shuffle.js deleted file mode 100644 index 10cb074c..00000000 --- a/icons/uil-shuffle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShuffle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,10A1,1,0,0,0,4,9V5.41L8.56,10A1,1,0,0,0,10,10a1,1,0,0,0,0-1.41L5.41,4H9A1,1,0,0,0,9,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V9A1,1,0,0,0,3,10Zm12.3,4a1,1,0,0,0-1.41,1.41l6.27,6.28a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42ZM9,20H5.41L21.71,3.71a1,1,0,1,0-1.42-1.42L4,18.59V15a1,1,0,0,0-2,0v6a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H9a1,1,0,0,0,0-2Z' - })); -}; - -UilShuffle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShuffle; \ No newline at end of file diff --git a/icons/uil-shutter-alt.js b/icons/uil-shutter-alt.js deleted file mode 100644 index 79935aeb..00000000 --- a/icons/uil-shutter-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShutterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,11a1,1,0,0,1,0-.16c0-.28-.08-.56-.13-.84v0A9.54,9.54,0,0,0,21,7.62v0A10,10,0,0,0,14,2.21h0l-.84-.13-.16,0-.29,0h-.08L12,2c-.34,0-.68,0-1,0l-.16,0L10,2.2h0A10,10,0,0,0,2.21,10v0c-.05.28-.09.56-.13.84a1,1,0,0,1,0,.16c0,.33,0,.67,0,1s0,.68,0,1a1,1,0,0,1,0,.16c0,.28.08.56.13.84v0A9.54,9.54,0,0,0,3,16.38v0A10,10,0,0,0,10,21.79h0l.84.13L11,22l.34,0h.14c.18,0,.35,0,.53,0,.34,0,.68,0,1-.05l.16,0L14,21.8h0A10,10,0,0,0,21.79,14v0c.05-.28.09-.56.13-.84A1,1,0,0,1,22,13c0-.33.05-.67.05-1S22,11.32,22,11Zm-8.84-6.9.5.07h0A8,8,0,0,1,18.24,7H11.42Zm-2.74.08h0l.4-.06L7.38,10,5.7,7.08A8,8,0,0,1,10.37,4.17ZM4.59,15a8,8,0,0,1-.42-1.37v0c0-.22-.08-.45-.1-.68a.5.5,0,0,1,0-.12,8.22,8.22,0,0,1,0-1.62.5.5,0,0,1,0-.12c0-.23.06-.46.1-.68v0A7.76,7.76,0,0,1,4.55,9.1L8,15Zm6.3,4.91-.5-.07h0A8,8,0,0,1,5.76,17h6.82ZM10.27,15,8.54,12l1.73-3h3.46l1.73,3-1.73,3Zm3.36,4.83h0l-.4.06L16.62,14l1.68,2.92A8,8,0,0,1,13.63,19.83Zm6.33-7a.5.5,0,0,1,0,.12c0,.23-.06.46-.1.68v0a7.76,7.76,0,0,1-.38,1.27L16,9h3.37a8,8,0,0,1,.42,1.37v0c0,.22.08.45.1.68a.5.5,0,0,1,0,.12,8.22,8.22,0,0,1,0,1.62Z' - })); -}; - -UilShutterAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShutterAlt; \ No newline at end of file diff --git a/icons/uil-shutter.js b/icons/uil-shutter.js deleted file mode 100644 index 924062b6..00000000 --- a/icons/uil-shutter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilShutter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.07,4.93A10,10,0,1,0,4.93,19.07,10,10,0,1,0,19.07,4.93ZM18.23,7H12.76l2.35-2.35A8.14,8.14,0,0,1,18.23,7ZM9,4.6a8.15,8.15,0,0,1,3.87-.54L9,7.93ZM7,5.77v5.47L5.19,9.43l-.54-.54A8.14,8.14,0,0,1,7,5.77ZM4.6,15a8.12,8.12,0,0,1-.54-3.87L7.93,15Zm1.17,2h5.47L8.89,19.35A8.14,8.14,0,0,1,5.77,17ZM15,19.4a8.13,8.13,0,0,1-3.87.54L15,16.07Zm0-6.16L13.24,15H10.75L9,13.24V10.76L10.76,9h2.48L15,10.76Zm2,5V12.76l2.35,2.35A8.14,8.14,0,0,1,17,18.23ZM16.07,9H19.4a8.13,8.13,0,0,1,.54,3.87Z' - })); -}; - -UilShutter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilShutter; \ No newline at end of file diff --git a/icons/uil-sick.js b/icons/uil-sick.js deleted file mode 100644 index 0104fbf0..00000000 --- a/icons/uil-sick.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSick = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,0a1,1,0,1,0-1-1A1,1,0,0,0,15,11Zm.27,3.2a1,1,0,0,0-1.2,0l-.74.55-.73-.55a1,1,0,0,0-1.2,0l-.73.55-.74-.55a1,1,0,0,0-1.2,0l-1.33,1a1,1,0,1,0,1.2,1.6l.73-.55.74.55,0,0,.12.06a.83.83,0,0,0,.22.08l.12,0a1,1,0,0,0,.25,0h.1a1.06,1.06,0,0,0,.34-.16l.73-.55.73.55a1,1,0,0,0,1,.11l.1-.05a.39.39,0,0,0,.11-.06l.74-.55.73.55a1,1,0,0,0,.6.2,1,1,0,0,0,.8-.4,1,1,0,0,0-.2-1.4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSick.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSick; \ No newline at end of file diff --git a/icons/uil-sigma.js b/icons/uil-sigma.js deleted file mode 100644 index 7ebe99b1..00000000 --- a/icons/uil-sigma.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSigma = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,16H10.41l3.3-3.29a1,1,0,0,0,0-1.42L10.41,8H16a1,1,0,0,0,0-2H8a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09L11.59,12l-4.3,4.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,8,18h8a1,1,0,0,0,0-2Z' - })); -}; - -UilSigma.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSigma; \ No newline at end of file diff --git a/icons/uil-sign-alt.js b/icons/uil-sign-alt.js deleted file mode 100644 index 5fdda7ca..00000000 --- a/icons/uil-sign-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.78,11.88l-2-2.5A1,1,0,0,0,19,9H13V3a1,1,0,0,0-2,0V4H5a1,1,0,0,0-.78.38l-2,2.5a1,1,0,0,0,0,1.24l2,2.5A1,1,0,0,0,5,11h6v9H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V16h6a1,1,0,0,0,.78-.38l2-2.5A1,1,0,0,0,21.78,11.88ZM11,9H5.48L4.28,7.5,5.48,6H11Zm7.52,5H13V11h5.52l1.2,1.5Z' - })); -}; - -UilSignAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignAlt; \ No newline at end of file diff --git a/icons/uil-sign-in-alt.js b/icons/uil-sign-in-alt.js deleted file mode 100644 index 6e37f34f..00000000 --- a/icons/uil-sign-in-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignInAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.5,15.1a1,1,0,0,0-1.34.45A8,8,0,1,1,12,4a7.93,7.93,0,0,1,7.16,4.45,1,1,0,0,0,1.8-.9,10,10,0,1,0,0,8.9A1,1,0,0,0,20.5,15.1ZM21,11H11.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,13H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSignInAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignInAlt; \ No newline at end of file diff --git a/icons/uil-sign-left.js b/icons/uil-sign-left.js deleted file mode 100644 index 2f36863d..00000000 --- a/icons/uil-sign-left.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignLeft = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,5H13V3a1,1,0,0,0-2,0V5H6a1,1,0,0,0-.78.38l-2,2.5a1,1,0,0,0,0,1.24l2,2.5A1,1,0,0,0,6,12h5v8H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V12h3a1,1,0,0,0,1-1V6A1,1,0,0,0,16,5Zm-1,5H6.48L5.28,8.5,6.48,7H15Z' - })); -}; - -UilSignLeft.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignLeft; \ No newline at end of file diff --git a/icons/uil-sign-out-alt.js b/icons/uil-sign-out-alt.js deleted file mode 100644 index 41f365c6..00000000 --- a/icons/uil-sign-out-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignOutAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.59,13l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L12.59,11H3a1,1,0,0,0,0,2ZM12,2A10,10,0,0,0,3,7.55a1,1,0,0,0,1.8.9A8,8,0,1,1,12,20a7.93,7.93,0,0,1-7.16-4.45,1,1,0,0,0-1.8.9A10,10,0,1,0,12,2Z' - })); -}; - -UilSignOutAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignOutAlt; \ No newline at end of file diff --git a/icons/uil-sign-right.js b/icons/uil-sign-right.js deleted file mode 100644 index 2a2d43a1..00000000 --- a/icons/uil-sign-right.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignRight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,6v5a1,1,0,0,0,1,1h3v8H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V12h5a1,1,0,0,0,.78-.37l2-2.5a1,1,0,0,0,0-1.25l-2-2.5A1,1,0,0,0,18,5H13V3a1,1,0,0,0-2,0V5H8A1,1,0,0,0,7,6ZM9,7h8.52l1.2,1.5L17.52,10H9Z' - })); -}; - -UilSignRight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignRight; \ No newline at end of file diff --git a/icons/uil-signal-alt-3.js b/icons/uil-signal-alt-3.js deleted file mode 100644 index 0ce32259..00000000 --- a/icons/uil-signal-alt-3.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignalAlt3 = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,9H10a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,14,9ZM13,21H11V11h2ZM22,1H18a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V2A1,1,0,0,0,22,1ZM21,21H19V3h2ZM6,15H2a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H6a1,1,0,0,0,1-1V16A1,1,0,0,0,6,15ZM5,21H3V17H5Z' - })); -}; - -UilSignalAlt3.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignalAlt3; \ No newline at end of file diff --git a/icons/uil-signal-alt.js b/icons/uil-signal-alt.js deleted file mode 100644 index a1068f2a..00000000 --- a/icons/uil-signal-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignalAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,10,14ZM5,18a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,5,18ZM20,2a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V3A1,1,0,0,0,20,2ZM15,9a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V10A1,1,0,0,0,15,9Z' - })); -}; - -UilSignalAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignalAlt; \ No newline at end of file diff --git a/icons/uil-signal.js b/icons/uil-signal.js deleted file mode 100644 index 20be53a2..00000000 --- a/icons/uil-signal.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignal = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6,15a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V16A1,1,0,0,0,6,15Zm4-3a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V13A1,1,0,0,0,10,12Zm8-8a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,18,4ZM14,8a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V9A1,1,0,0,0,14,8Z' - })); -}; - -UilSignal.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignal; \ No newline at end of file diff --git a/icons/uil-signin.js b/icons/uil-signin.js deleted file mode 100644 index bb764cf2..00000000 --- a/icons/uil-signin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,12a1,1,0,0,0-1-1H11.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,13H19A1,1,0,0,0,20,12ZM17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V16a1,1,0,0,0-2,0v3a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,17,2Z' - })); -}; - -UilSignin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignin; \ No newline at end of file diff --git a/icons/uil-signout.js b/icons/uil-signout.js deleted file mode 100644 index 7f212bdb..00000000 --- a/icons/uil-signout.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSignout = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4,12a1,1,0,0,0,1,1h7.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L12.59,11H5A1,1,0,0,0,4,12ZM17,2H7A3,3,0,0,0,4,5V8A1,1,0,0,0,6,8V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1V19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Z' - })); -}; - -UilSignout.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSignout; \ No newline at end of file diff --git a/icons/uil-silence.js b/icons/uil-silence.js deleted file mode 100644 index c4ed6035..00000000 --- a/icons/uil-silence.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSilence = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,0a1,1,0,1,0-1-1A1,1,0,0,0,15,11Zm1,3a1,1,0,0,0-2,0H13a1,1,0,0,0-2,0H10a1,1,0,0,0-2,0,1,1,0,0,0,0,2,1,1,0,0,0,2,0h1a1,1,0,0,0,2,0h1a1,1,0,0,0,2,0,1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSilence.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSilence; \ No newline at end of file diff --git a/icons/uil-silent-squint.js b/icons/uil-silent-squint.js deleted file mode 100644 index 91e3e8a4..00000000 --- a/icons/uil-silent-squint.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSilentSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.66,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79A1,1,0,0,0,7.66,12.21Zm7.5,0a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42Zm.11,2a1,1,0,0,0-1.2,0l-.74.55-.73-.55a1,1,0,0,0-1.2,0l-.73.55-.74-.55a1,1,0,0,0-1.2,0l-1.33,1a1,1,0,1,0,1.2,1.6l.73-.55.74.55,0,0a.67.67,0,0,0,.12.06.83.83,0,0,0,.22.08l.13,0h.23l.12,0a1.12,1.12,0,0,0,.33-.16l.73-.55.73.55a1,1,0,0,0,1,.11l.1-.05a.39.39,0,0,0,.11-.06l.74-.55.73.55a1,1,0,0,0,.6.2,1,1,0,0,0,.8-.4,1,1,0,0,0-.2-1.4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSilentSquint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSilentSquint; \ No newline at end of file diff --git a/icons/uil-sim-card.js b/icons/uil-sim-card.js deleted file mode 100644 index f100dc0e..00000000 --- a/icons/uil-sim-card.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSimCard = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,3.5H7A3.5,3.5,0,0,0,3.5,7V17A3.5,3.5,0,0,0,7,20.5H17A3.5,3.5,0,0,0,20.5,17V7A3.5,3.5,0,0,0,17,3.5Zm-6.5,2h3v3h-3Zm-2,13H7A1.5,1.5,0,0,1,5.5,17V15.5h3Zm5,0h-3v-3h3Zm5-1.5A1.5,1.5,0,0,1,17,18.5H15.5v-3h3Zm0-3.5H5.5V7A1.5,1.5,0,0,1,7,5.5H8.5v4a1,1,0,0,0,1,1h9Zm0-5h-3v-3H17A1.5,1.5,0,0,1,18.5,7Z' - })); -}; - -UilSimCard.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSimCard; \ No newline at end of file diff --git a/icons/uil-sitemap.js b/icons/uil-sitemap.js deleted file mode 100644 index d795d7b5..00000000 --- a/icons/uil-sitemap.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSitemap = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,15H20V12a1,1,0,0,0-1-1H13V9h2a1,1,0,0,0,1-1V2a1,1,0,0,0-1-1H9A1,1,0,0,0,8,2V8A1,1,0,0,0,9,9h2v2H5a1,1,0,0,0-1,1v3H2a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H8a1,1,0,0,0,1-1V16a1,1,0,0,0-1-1H6V13H18v2H16a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V16A1,1,0,0,0,22,15ZM7,17v4H3V17ZM10,7V3h4V7ZM21,21H17V17h4Z' - })); -}; - -UilSitemap.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSitemap; \ No newline at end of file diff --git a/icons/uil-skip-forward-alt.js b/icons/uil-skip-forward-alt.js deleted file mode 100644 index ede631f9..00000000 --- a/icons/uil-skip-forward-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSkipForwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5,3A3,3,0,0,0,2,6V18a3,3,0,0,0,6,0V6A3,3,0,0,0,5,3ZM6,18a1,1,0,0,1-2,0V6A1,1,0,0,1,6,6ZM20.68,9.65,14,5.66a2.6,2.6,0,0,0-2.64,0A2.74,2.74,0,0,0,10,8v8a2.74,2.74,0,0,0,1.37,2.38,2.57,2.57,0,0,0,2.64,0l6.67-4a2.75,2.75,0,0,0,0-4.7Zm-1,3-6.66,4a.61.61,0,0,1-.63,0A.72.72,0,0,1,12,16V8a.72.72,0,0,1,.36-.64.64.64,0,0,1,.31-.08.63.63,0,0,1,.32.09l6.66,4a.76.76,0,0,1,0,1.28Z' - })); -}; - -UilSkipForwardAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSkipForwardAlt; \ No newline at end of file diff --git a/icons/uil-skip-forward-circle.js b/icons/uil-skip-forward-circle.js deleted file mode 100644 index 56e5c230..00000000 --- a/icons/uil-skip-forward-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSkipForwardCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.5,7a1,1,0,0,0-1,1V9.69l-4-2.31a2,2,0,0,0-3,1.73v5.78a2,2,0,0,0,1,1.73,2,2,0,0,0,2,0l4-2.31V16a1,1,0,0,0,2,0V8A1,1,0,0,0,15.5,7Zm-1,5-5,2.89V9.11l5,2.88ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSkipForwardCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSkipForwardCircle; \ No newline at end of file diff --git a/icons/uil-skip-forward.js b/icons/uil-skip-forward.js deleted file mode 100644 index 4fc1aa43..00000000 --- a/icons/uil-skip-forward.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSkipForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,3a3,3,0,0,0-3,3V8.84L7,3.47a3.21,3.21,0,0,0-3.29,0A3.38,3.38,0,0,0,2,6.42V17.58a3.38,3.38,0,0,0,1.72,3A3.24,3.24,0,0,0,5.33,21,3.28,3.28,0,0,0,7,20.53l9-5.37V18a3,3,0,0,0,6,0V6A3,3,0,0,0,19,3ZM15.32,13.23,6,18.81a1.23,1.23,0,0,1-1.28,0A1.4,1.4,0,0,1,4,17.58V6.42a1.4,1.4,0,0,1,.71-1.25A1.29,1.29,0,0,1,5.33,5,1.23,1.23,0,0,1,6,5.19l9.33,5.58a1.45,1.45,0,0,1,0,2.46ZM20,18a1,1,0,0,1-2,0V6a1,1,0,0,1,2,0Z' - })); -}; - -UilSkipForward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSkipForward; \ No newline at end of file diff --git a/icons/uil-skype-alt.js b/icons/uil-skype-alt.js deleted file mode 100644 index 07b92fe0..00000000 --- a/icons/uil-skype-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSkypeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.13916,11.8125a5.07559,5.07559,0,0,0-1.291-.59277c-.27978-.0846-.58953-.16736-.9104-.24713-.27911-.07782-.61132-.15766-1.02221-.248a9.31489,9.31489,0,0,1-1.436-.42383,1.49588,1.49588,0,0,1-.61572-.44726.84285.84285,0,0,1-.15918-.56543.96712.96712,0,0,1,.2041-.59668,1.59829,1.59829,0,0,1,.69971-.47559A4.01235,4.01235,0,0,1,12.03223,8a3.78727,3.78727,0,0,1,1.10547.14648,2.08274,2.08274,0,0,1,.66357.32129,1.23492,1.23492,0,0,1,.32519.34278.9997.9997,0,1,0,1.76075-.94727,3.14668,3.14668,0,0,0-.83741-.958A4.006,4.006,0,0,0,13.731,6.23633,5.76768,5.76768,0,0,0,12.03223,6a5.96329,5.96329,0,0,0-2.145.35059A3.55209,3.55209,0,0,0,8.30908,7.49121a2.97709,2.97709,0,0,0-.60449,1.79688,2.839,2.839,0,0,0,.58008,1.792,3.50074,3.50074,0,0,0,1.438,1.07226,10.5822,10.5822,0,0,0,1.30706.4079c.00837.00275.014.00946.02253.012.1914.05761.49755.13476.93994.23046.17236.037.33478.07789.49713.11847.01575.0047.03851.00965.05365.01435l.01807.00274c.24835.0633.48706.12873.70556.1955a3.02336,3.02336,0,0,1,.76367.34375,1.12652,1.12652,0,0,1,.36231.36816,1.20138,1.20138,0,0,1,.11865.585,1.15187,1.15187,0,0,1-.21387.73243,1.76331,1.76331,0,0,1-.80273.585A3.78736,3.78736,0,0,1,12.0083,16a3.68851,3.68851,0,0,1-1.70361-.34375,1.75626,1.75626,0,0,1-.61573-.54687,1.0164,1.0164,0,0,1-.20166-.50293,1,1,0,0,0-2,0,2.93957,2.93957,0,0,0,.55616,1.63867,3.7737,3.7737,0,0,0,1.34179,1.1875A5.621,5.621,0,0,0,12.0083,18a5.7083,5.7083,0,0,0,2.25391-.40527,3.71019,3.71019,0,0,0,1.665-1.27246,3.14637,3.14637,0,0,0,.58349-1.92676,3.08942,3.08942,0,0,0-.375-1.53028A3.16532,3.16532,0,0,0,15.13916,11.8125Zm7.22217,1.87891A10.49127,10.49127,0,0,0,10.30859,1.63867a6.499,6.499,0,0,0-8.66992,8.66992A10.49127,10.49127,0,0,0,13.69141,22.36133a6.499,6.499,0,0,0,8.66992-8.66992ZM16.5,21a4.5057,4.5057,0,0,1-2.16943-.55762,1.0038,1.0038,0,0,0-.67725-.10644A8.49212,8.49212,0,0,1,3.5,12a8.58284,8.58284,0,0,1,.16406-1.6543A1.00336,1.00336,0,0,0,3.55811,9.669,4.49939,4.49939,0,0,1,9.66943,3.55762a.99964.99964,0,0,0,.67725.10644A8.49212,8.49212,0,0,1,20.5,12a8.58284,8.58284,0,0,1-.16406,1.6543,1.00336,1.00336,0,0,0,.106.67675A4.49869,4.49869,0,0,1,16.5,21Z' - })); -}; - -UilSkypeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSkypeAlt; \ No newline at end of file diff --git a/icons/uil-skype.js b/icons/uil-skype.js deleted file mode 100644 index ea16939d..00000000 --- a/icons/uil-skype.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSkype = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.43451,14.15552a9.586,9.586,0,0,0,.21155-2.02631,9.47653,9.47653,0,0,0-9.54029-9.42254,9.11414,9.11414,0,0,0-1.62494.14178A5.53558,5.53558,0,0,0,2.00061,7.466a5.42884,5.42884,0,0,0,.75354,2.7558,10.0197,10.0197,0,0,0-.18866,1.88452,9.33889,9.33889,0,0,0,9.54028,9.25788,8.56663,8.56663,0,0,0,1.74268-.16584A5.57942,5.57942,0,0,0,16.46368,22a5.433,5.433,0,0,0,4.97083-7.84448ZM16.43964,15.9931a3.63146,3.63146,0,0,1-1.62488,1.22473,6.33963,6.33963,0,0,1-2.52033.44709,6.21683,6.21683,0,0,1-2.89764-.61176,3.733,3.733,0,0,1-1.31964-1.17779,2.574,2.574,0,0,1-.494-1.41339.88041.88041,0,0,1,.30646-.68384,1.09008,1.09008,0,0,1,.77643-.28247.94433.94433,0,0,1,.637.2127,1.793,1.793,0,0,1,.44708.65863,3.39792,3.39792,0,0,0,.49518.87256,1.78964,1.78964,0,0,0,.72955.56488,3.01435,3.01435,0,0,0,1.24872.23554,2.9217,2.9217,0,0,0,1.71985-.44708,1.33217,1.33217,0,0,0,.65979-1.13092,1.135,1.135,0,0,0-.35333-.87134,2.18491,2.18491,0,0,0-.91944-.51923c-.37616-.11774-.89538-.23553-1.53112-.37616a13.9908,13.9908,0,0,1-2.14295-.6358,3.34814,3.34814,0,0,1-1.36651-1.01312,2.47429,2.47429,0,0,1-.49512-1.57807,2.62945,2.62945,0,0,1,.54205-1.60205,3.41154,3.41154,0,0,1,1.53113-1.084,6.652,6.652,0,0,1,2.37964-.37623,6.403,6.403,0,0,1,1.88452.25843,4.07215,4.07215,0,0,1,1.31842.65979,2.91587,2.91587,0,0,1,.77765.87134,1.80281,1.80281,0,0,1,.23553.87139.96189.96189,0,0,1-.30645.70667.9912.9912,0,0,1-.7536.30646.9735.9735,0,0,1-.63575-.18866,2.38218,2.38218,0,0,1-.47113-.61176,2.93711,2.93711,0,0,0-.77758-.96631A2.37614,2.37614,0,0,0,12.0589,7.96a2.7028,2.7028,0,0,0-1.5083.37738,1.07558,1.07558,0,0,0-.56488.89539.95783.95783,0,0,0,.18866.56488,1.41851,1.41851,0,0,0,.54205.4002,2.69264,2.69264,0,0,0,.68262.25959c.23559.07092.613.16467,1.15381.28247.65979.14178,1.27276.30646,1.81475.47107a5.43,5.43,0,0,1,1.38941.6358,2.85691,2.85691,0,0,1,.89532.94226,2.8284,2.8284,0,0,1,.32935,1.3905A2.89029,2.89029,0,0,1,16.43964,15.9931Z' - })); -}; - -UilSkype.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSkype; \ No newline at end of file diff --git a/icons/uil-slack-alt.js b/icons/uil-slack-alt.js deleted file mode 100644 index fe294c39..00000000 --- a/icons/uil-slack-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSlackAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M23,9.5A3.50424,3.50424,0,0,0,19.5,6a3.45946,3.45946,0,0,0-1.5.35107V4.5a3.49466,3.49466,0,0,0-6-2.44171A3.48676,3.48676,0,0,0,6.35107,6H4.5a3.49466,3.49466,0,0,0-2.44171,6A3.48676,3.48676,0,0,0,6,17.64893V19.5a3.49466,3.49466,0,0,0,6,2.44171A3.48676,3.48676,0,0,0,17.64893,18H19.5a3.49466,3.49466,0,0,0,2.44171-6A3.48559,3.48559,0,0,0,23,9.5Zm-10-5a1.5,1.5,0,0,1,3,0v5a1.5,1.5,0,0,1-3,0Zm-7,10A1.5,1.5,0,1,1,4.5,13H6Zm5,5a1.5,1.5,0,0,1-3,0v-5a1.5,1.5,0,0,1,3,0ZM9.5,11h-5a1.5,1.5,0,0,1,0-3h5a1.5,1.5,0,0,1,0,3ZM11,6H9.5A1.5,1.5,0,1,1,11,4.5Zm1,6.05829c-.01935-.01978-.03851-.03894-.05829-.05829.01978-.01935.03894-.03851.05829-.05829.01935.01978.03851.03894.05829.05829C12.03851,12.01935,12.01935,12.03851,12,12.05829ZM14.5,21A1.50164,1.50164,0,0,1,13,19.5V18h1.5a1.5,1.5,0,0,1,0,3Zm5-5h-5a1.5,1.5,0,0,1,0-3h5a1.5,1.5,0,0,1,0,3Zm0-5H18V9.5A1.5,1.5,0,1,1,19.5,11Z' - })); -}; - -UilSlackAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSlackAlt; \ No newline at end of file diff --git a/icons/uil-slack.js b/icons/uil-slack.js deleted file mode 100644 index 27dff3c9..00000000 --- a/icons/uil-slack.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSlack = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2,14.67a2,2,0,1,0,4,0v-2H4A2,2,0,0,0,2,14.67Zm12.64-3.34a2,2,0,0,0,2-2V4a2,2,0,1,0-4,0V9.33A2,2,0,0,0,14.66,11.33Zm7.32-2a2,2,0,1,0-4,0v2h2A2,2,0,0,0,22,9.33ZM9.34,12.67a2,2,0,0,0-2,2V20a2,2,0,1,0,4,0V14.67A2,2,0,0,0,9.34,12.67ZM14.66,18h-2v2a2,2,0,1,0,2-2ZM20,12.67H14.66a2,2,0,0,0,0,4H20a2,2,0,0,0,0-4ZM9.34,7.33H4a2,2,0,1,0,0,4H9.34a2,2,0,0,0,0-4ZM9.34,2a2,2,0,0,0,0,4h2V4A2,2,0,0,0,9.34,2Z' - })); -}; - -UilSlack.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSlack; \ No newline at end of file diff --git a/icons/uil-sleep.js b/icons/uil-sleep.js deleted file mode 100644 index 48cade4f..00000000 --- a/icons/uil-sleep.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSleep = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,12.5a3,3,0,1,0-3-3A3,3,0,0,0,7,12.5Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,7,8.5Zm13-2H12a1,1,0,0,0-1,1v6H3v-8a1,1,0,0,0-2,0v13a1,1,0,0,0,2,0v-3H21v3a1,1,0,0,0,2,0v-9A3,3,0,0,0,20,6.5Zm1,7H13v-5h7a1,1,0,0,1,1,1Z' - })); -}; - -UilSleep.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSleep; \ No newline at end of file diff --git a/icons/uil-slider-h-range.js b/icons/uil-slider-h-range.js deleted file mode 100644 index b952266f..00000000 --- a/icons/uil-slider-h-range.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSliderHRange = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H19.81573a2.98208,2.98208,0,0,0-5.63146,0H9.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2H4.18433a2.982,2.982,0,0,0,5.6314,0h4.3686a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2ZM7,13a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,7,13Zm10,0a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,17,13Z' - })); -}; - -UilSliderHRange.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSliderHRange; \ No newline at end of file diff --git a/icons/uil-slider-h.js b/icons/uil-slider-h.js deleted file mode 100644 index 35fc8917..00000000 --- a/icons/uil-slider-h.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSliderH = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H17.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2h9.18433a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2Zm-6,2a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,15,13Z' - })); -}; - -UilSliderH.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSliderH; \ No newline at end of file diff --git a/icons/uil-sliders-v-alt.js b/icons/uil-sliders-v-alt.js deleted file mode 100644 index 206f0fe6..00000000 --- a/icons/uil-sliders-v-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSlidersVAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,8.18V3a1,1,0,0,0-2,0V8.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V13.82a3,3,0,0,0,0-5.64ZM19,12a1,1,0,1,1,1-1A1,1,0,0,1,19,12Zm-6,2.18V3a1,1,0,0,0-2,0V14.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V19.82a3,3,0,0,0,0-5.64ZM12,18a1,1,0,1,1,1-1A1,1,0,0,1,12,18ZM6,6.18V3A1,1,0,0,0,4,3V6.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V11.82A3,3,0,0,0,6,6.18ZM5,10A1,1,0,1,1,6,9,1,1,0,0,1,5,10Z' - })); -}; - -UilSlidersVAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSlidersVAlt; \ No newline at end of file diff --git a/icons/uil-sliders-v.js b/icons/uil-sliders-v.js deleted file mode 100644 index 8b723c4d..00000000 --- a/icons/uil-sliders-v.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSlidersV = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,6H6V3A1,1,0,0,0,4,3V6H3A1,1,0,0,0,3,8H7A1,1,0,0,0,7,6ZM5,10a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V11A1,1,0,0,0,5,10Zm7,8a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,12,18Zm9-8H20V3a1,1,0,0,0-2,0v7H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-2,4a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,19,14Zm-5,0H13V3a1,1,0,0,0-2,0V14H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' - })); -}; - -UilSlidersV.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSlidersV; \ No newline at end of file diff --git a/icons/uil-smile-beam.js b/icons/uil-smile-beam.js deleted file mode 100644 index 6641f93f..00000000 --- a/icons/uil-smile-beam.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileBeam = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54Zm8.41-1.41a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSmileBeam.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileBeam; \ No newline at end of file diff --git a/icons/uil-smile-dizzy.js b/icons/uil-smile-dizzy.js deleted file mode 100644 index 5b66f089..00000000 --- a/icons/uil-smile-dizzy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileDizzy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' - })); -}; - -UilSmileDizzy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileDizzy; \ No newline at end of file diff --git a/icons/uil-smile-squint-wink-alt.js b/icons/uil-smile-squint-wink-alt.js deleted file mode 100644 index a8334f7c..00000000 --- a/icons/uil-smile-squint-wink-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileSquintWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm5.16,1.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L14.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm2.36-5.77a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54Z' - })); -}; - -UilSmileSquintWinkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileSquintWinkAlt; \ No newline at end of file diff --git a/icons/uil-smile-squint-wink.js b/icons/uil-smile-squint-wink.js deleted file mode 100644 index 093ca350..00000000 --- a/icons/uil-smile-squint-wink.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileSquintWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.42,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,1,0,8.42,9.21l.79.79-.79.79A1,1,0,0,0,8.42,12.21Zm5.94,2a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSmileSquintWink.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileSquintWink; \ No newline at end of file diff --git a/icons/uil-smile-wink-alt.js b/icons/uil-smile-wink-alt.js deleted file mode 100644 index 903fbf66..00000000 --- a/icons/uil-smile-wink-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileWinkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm5.36,3.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13Z' - })); -}; - -UilSmileWinkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileWinkAlt; \ No newline at end of file diff --git a/icons/uil-smile-wink.js b/icons/uil-smile-wink.js deleted file mode 100644 index 202c11d4..00000000 --- a/icons/uil-smile-wink.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmileWink = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM10.5,10A1.5,1.5,0,1,0,9,11.5,1.5,1.5,0,0,0,10.5,10ZM15,9H14a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSmileWink.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmileWink; \ No newline at end of file diff --git a/icons/uil-smile.js b/icons/uil-smile.js deleted file mode 100644 index 4ee520bd..00000000 --- a/icons/uil-smile.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSmile = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6-2a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilSmile.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSmile; \ No newline at end of file diff --git a/icons/uil-snapchat-alt.js b/icons/uil-snapchat-alt.js deleted file mode 100644 index 9235efbf..00000000 --- a/icons/uil-snapchat-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnapchatAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.95117,15.61426a4.72447,4.72447,0,0,1-2.98144-2.17285,1,1,0,1,0-1.65625,1.12109,7.68775,7.68775,0,0,0,2.40234,2.334c-.13477.0254-.28125.04981-.44141.0752a1.36673,1.36673,0,0,0-1.07617,1.207,6.06237,6.06237,0,0,0-2.01465-.00391,4.64069,4.64069,0,0,0-1.958.95606,3.48426,3.48426,0,0,1-2.10352.87109h-.26074a3.485,3.485,0,0,1-2.10547-.873,4.62737,4.62737,0,0,0-1.92871-.94922,6.39,6.39,0,0,0-2.04.0039,1.3679,1.3679,0,0,0-1.0625-1.21c-.15723-.02441-.30176-.04883-.43457-.07422a6.85691,6.85691,0,0,0,1.79492-1.499,6.7141,6.7141,0,0,0,.63477-.86816.99986.99986,0,0,0-1.69532-1.06055,4.90731,4.90731,0,0,1-.44824.61621,4.252,4.252,0,0,1-2.55273,1.52832A1.22412,1.22412,0,0,0,.99121,16.85156a1.28037,1.28037,0,0,0,.11524.53321c.31543.71582,1.15527,1.168,2.78417,1.47461l.03126.12988c.02832.11816.05761.23828.09179.34765a1.28858,1.28858,0,0,0,1.27832.94532,2.59082,2.59082,0,0,0,.60254-.08692,4.66937,4.66937,0,0,1,1.58887-.0459,3.008,3.008,0,0,1,1.12305.61719A5.41315,5.41315,0,0,0,11.86133,22.002h.26074a5.44479,5.44479,0,0,0,3.27344-1.248,2.915,2.915,0,0,1,1.13183-.60938,3.48494,3.48494,0,0,1,.624-.05273,4.27087,4.27087,0,0,1,.95508.10644,3.78837,3.78837,0,0,0,.61523.06348,1.25616,1.25616,0,0,0,1.24512-.92285c.03808-.12207.06738-.23926.09472-.35449l.03125-.124c1.624-.30566,2.4668-.75488,2.76758-1.44043a1.17069,1.17069,0,0,0,.127-.47949A1.24436,1.24436,0,0,0,21.95117,15.61426ZM3.80176,11.14844a1.00451,1.00451,0,0,0,1.05664-.48438,3.13849,3.13849,0,0,0,1.27441.33789,1.79447,1.79447,0,0,0,1.26563-.499,1.00048,1.00048,0,0,0,.3164-.79l-.03613-.60156A9.90221,9.90221,0,0,1,7.835,5.5498a4.2597,4.2597,0,0,1,3.96582-2.54394l.3877-.00391a4.26391,4.26391,0,0,1,3.96,2.54688,9.9174,9.9174,0,0,1,.15625,3.56445l-.00977.16309-.02734.44336a1.028,1.028,0,0,0,.3125.77832,1.79536,1.79536,0,0,0,1.2539.50293,3.27129,3.27129,0,0,0,1.24122-.36524,1.00091,1.00091,0,0,0,.916.59864h.01758a1.00021,1.00021,0,0,0,.98242-1.01758,1.64158,1.64158,0,0,0-1.18555-1.45118,1.91432,1.91432,0,0,0-1.47656.01075,9.4713,9.4713,0,0,0-.35449-4.042,6.23557,6.23557,0,0,0-5.7959-3.73243l-.39258.00391A6.22235,6.22235,0,0,0,6.00879,4.73535a9.58634,9.58634,0,0,0-.35156,4.09473c-.03418-.01563-.07129-.0332-.11133-.05176A1.90859,1.90859,0,0,0,3.00879,9.97656,1.00153,1.00153,0,0,0,3.80176,11.14844Z' - })); -}; - -UilSnapchatAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnapchatAlt; \ No newline at end of file diff --git a/icons/uil-snapchat-ghost.js b/icons/uil-snapchat-ghost.js deleted file mode 100644 index da0fa4c3..00000000 --- a/icons/uil-snapchat-ghost.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnapchatGhost = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.79755,16.98718c-2.86621-.47223-4.15094-3.40149-4.204-3.52588l-.00544-.01172a1.07048,1.07048,0,0,1-.10223-.89758c.19251-.45361.82935-.6557,1.25134-.78967.10535-.03339.205-.065.28315-.096.76275-.30127.91784-.61316.91406-.8219a.66226.66226,0,0,0-.50134-.54358l-.00568-.00213a.9462.9462,0,0,0-.35632-.06824.7546.7546,0,0,0-.31287.06207,2.54,2.54,0,0,1-.95526.26612.82134.82134,0,0,1-.52954-.17725c.00915-.16992.02-.34522.0318-.53046l.004-.0653a10.10231,10.10231,0,0,0-.24091-4.03449,5.2482,5.2482,0,0,0-4.87311-3.1394q-.20114.0021-.4024.00378A5.23959,5.23959,0,0,0,6.92853,5.75293,10.08988,10.08988,0,0,0,6.68726,9.784q.01941.29872.036.59771a.8483.8483,0,0,1-.5838.17841,2.45322,2.45322,0,0,1-1.014-.26776.57538.57538,0,0,0-.2453-.04895.83387.83387,0,0,0-.81061.53265c-.08191.43061.5329.74256.90668.8902.079.03137.17822.0628.28308.096.42169.13385,1.05908.33606,1.25152.78985a1.07171,1.07171,0,0,1-.10223.89783l-.00537.01154a7.02828,7.02828,0,0,1-1.06915,1.66211,5.21488,5.21488,0,0,1-3.13483,1.86389.23978.23978,0,0,0-.20044.25006.38046.38046,0,0,0,.031.12964c.17578.41113,1.05822.75061,2.55182.981.13964.02161.19873.24927.28027.6222.03259.14929.06634.30426.1134.46423a.29261.29261,0,0,0,.31922.22876,2.48528,2.48528,0,0,0,.42492-.06091,5.52912,5.52912,0,0,1,1.12036-.12677,4.95367,4.95367,0,0,1,.8078.0683,3.87725,3.87725,0,0,1,1.535.78417,4.443,4.443,0,0,0,2.6897,1.06006c.03375,0,.06744-.00122.10009-.004.04114.00195.09522.004.15192.004a4.44795,4.44795,0,0,0,2.69122-1.06079,3.87269,3.87269,0,0,1,1.53351-.78332,4.97275,4.97275,0,0,1,.808-.0683,5.59252,5.59252,0,0,1,1.12037.11871,2.39142,2.39142,0,0,0,.425.05371h.02338a.279.279,0,0,0,.29547-.221c.04645-.15784.08045-.308.11389-.46131.08081-.371.1399-.59759.28009-.61926,1.494-.23078,2.37641-.56976,2.551-.97858a.38487.38487,0,0,0,.03174-.13086A.24.24,0,0,0,21.79755,16.98718Z' - })); -}; - -UilSnapchatGhost.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnapchatGhost; \ No newline at end of file diff --git a/icons/uil-snapchat-square.js b/icons/uil-snapchat-square.js deleted file mode 100644 index d3eaa435..00000000 --- a/icons/uil-snapchat-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnapchatSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.97333,6.68079a6.124,6.124,0,0,0-.09876-1.074,4.37223,4.37223,0,0,0-.4057-1.24566,4.32419,4.32419,0,0,0-.83166-1.11036,4.12544,4.12544,0,0,0-1.81574-1.03607,7.36011,7.36011,0,0,0-1.92-.20483L16.89777,2H7.09906l-.00055.00989a10.48784,10.48784,0,0,0-1.10089.04925,5.243,5.243,0,0,0-1.17609.26477A4.26175,4.26175,0,0,0,2.21918,5.17023a7.33786,7.33786,0,0,0-.20484,1.9046L2.00775,16.913v.00086a9.44465,9.44465,0,0,0,.09058,1.33179,4.61631,4.61631,0,0,0,.40924,1.3457,4.30506,4.30506,0,0,0,1.20166,1.45331,3.9027,3.9027,0,0,0,1.20239.65173,6.51637,6.51637,0,0,0,1.97687.29047c.41937.00262.83844.01312,1.258.01135,3.04664-.01282,6.09333.022,9.14008-.0188a7.18977,7.18977,0,0,0,1.19879-.12738,4.06007,4.06007,0,0,0,2.00769-.97668,4.16178,4.16178,0,0,0,1.32642-2.21228,8.06159,8.06159,0,0,0,.17273-1.75019v-.11718C21.99219,16.75024,21.97491,6.81219,21.97333,6.68079ZM19.29724,15.9306c-.12787.29938-.774.54761-1.86792.71656-.10266.01586-.14593.18182-.20508.45349-.02447.11218-.04937.22216-.08343.33777a.20428.20428,0,0,1-.21631.1618h-.01715a1.74575,1.74575,0,0,1-.31122-.03937,4.09738,4.09738,0,0,0-.82037-.08685,3.63726,3.63726,0,0,0-.59162.05,2.836,2.836,0,0,0-1.12286.57354,3.25673,3.25673,0,0,1-1.97064.77674c-.04151,0-.08112-.00147-.11121-.00293-.02392.00207-.04858.00293-.0733.00293a3.25323,3.25323,0,0,1-1.96948-.77619,2.83977,2.83977,0,0,0-1.124-.57422,3.63334,3.63334,0,0,0-.59149-.05,4.04744,4.04744,0,0,0-.82031.09283,1.82073,1.82073,0,0,1-.31116.04462.21421.21421,0,0,1-.2337-.16754c-.03449-.11713-.05921-.23059-.08307-.33991-.05969-.27307-.103-.43976-.2052-.45556C5.474,16.47955,4.82782,16.231,4.69916,15.93a.27773.27773,0,0,1-.02271-.095.17561.17561,0,0,1,.14679-.1831,3.8182,3.8182,0,0,0,2.29535-1.36481,5.145,5.145,0,0,0,.7829-1.217l.004-.00842a.78492.78492,0,0,0,.07483-.65741c-.14093-.33228-.60761-.48035-.91639-.57831-.07678-.02429-.14941-.0473-.20727-.07031-.27374-.1081-.72388-.33655-.66394-.65186a.6107.6107,0,0,1,.59356-.39.42052.42052,0,0,1,.17963.03588,1.79643,1.79643,0,0,0,.74243.196.62144.62144,0,0,0,.42749-.13062q-.01207-.2189-.02636-.43768a7.38812,7.38812,0,0,1,.17663-2.95166A3.83671,3.83671,0,0,1,11.8479,5.12848l.29468-.00275a3.84306,3.84306,0,0,1,3.56824,2.29871,7.39771,7.39771,0,0,1,.17639,2.95422l-.003.04779c-.00861.13562-.01654.264-.02332.38843a.60229.60229,0,0,0,.38782.12976,1.85974,1.85974,0,0,0,.6994-.19482.55227.55227,0,0,1,.22913-.04547.69414.69414,0,0,1,.26092.04992l.00409.00159a.485.485,0,0,1,.36719.39807c.00274.15277-.11084.38117-.66937.60181-.05719.02264-.13019.04577-.20728.07025-.309.09808-.77533.24609-.91626.57818a.78359.78359,0,0,0,.07483.65723l.004.00861a4.52238,4.52238,0,0,0,3.07831,2.58172.17581.17581,0,0,1,.14678.18311A.28042.28042,0,0,1,19.29724,15.9306Z' - })); -}; - -UilSnapchatSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnapchatSquare; \ No newline at end of file diff --git a/icons/uil-snow-flake.js b/icons/uil-snow-flake.js deleted file mode 100644 index ffbe3abe..00000000 --- a/icons/uil-snow-flake.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnowFlake = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H19.41l1.3-1.29a1,1,0,0,0-1.42-1.42L16.59,11H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L13,9.59V7.41l2.71-2.7a1,1,0,1,0-1.42-1.42L13,4.59V3a1,1,0,0,0-2,0V4.59L9.71,3.29A1,1,0,0,0,8.29,4.71L11,7.41V9.59L8.71,7.29A1,1,0,1,0,7.29,8.71L9.59,11H7.41L4.71,8.29A1,1,0,0,0,3.29,9.71L4.59,11H3a1,1,0,0,0,0,2H4.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L7.41,13H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,14.41v2.18l-2.71,2.7a1,1,0,0,0,1.42,1.42L11,19.41V21a1,1,0,0,0,2,0V19.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13,16.59V14.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,13h2.18l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L19.41,13H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSnowFlake.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnowFlake; \ No newline at end of file diff --git a/icons/uil-snowflake-alt.js b/icons/uil-snowflake-alt.js deleted file mode 100644 index ce10a249..00000000 --- a/icons/uil-snowflake-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnowflakeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M4.93,17.66a1,1,0,1,0,1.41,0A1,1,0,0,0,4.93,17.66ZM19.07,6.34a1,1,0,1,0-1.41,0A1,1,0,0,0,19.07,6.34Zm-12.73,0a1,1,0,1,0-1.41,0A1,1,0,0,0,6.34,6.34ZM17.66,17.66a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,17.66ZM21,11H19.41l1.3-1.29a1,1,0,0,0-1.42-1.42L16.59,11H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L13,9.59V7.41l2.71-2.7a1,1,0,1,0-1.42-1.42L13,4.59V3a1,1,0,0,0-2,0V4.59L9.71,3.29A1,1,0,0,0,8.29,4.71L11,7.41V9.59L8.71,7.29A1,1,0,1,0,7.29,8.71L9.59,11H7.41L4.71,8.29A1,1,0,0,0,3.29,9.71L4.59,11H3a1,1,0,0,0,0,2H4.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L7.41,13H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,14.41v2.18l-2.71,2.7a1,1,0,0,0,1.42,1.42L11,19.41V21a1,1,0,0,0,2,0V19.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13,16.59V14.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,13h2.18l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L19.41,13H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSnowflakeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnowflakeAlt; \ No newline at end of file diff --git a/icons/uil-snowflake.js b/icons/uil-snowflake.js deleted file mode 100644 index 839c6b59..00000000 --- a/icons/uil-snowflake.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSnowflake = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.16,16.13l-2-1.15.89-.24a1,1,0,1,0-.52-1.93l-2.82.76L14,12l2.71-1.57,2.82.76.26,0a1,1,0,0,0,.26-2L19.16,9l2-1.15a1,1,0,0,0-1-1.74L18,7.37l.3-1.11a1,1,0,1,0-1.93-.52l-.82,3L13,10.27V7.14l2.07-2.07a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L13,4.31V2a1,1,0,0,0-2,0V4.47l-.81-.81a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L11,7.3v3L8.43,8.78l-.82-3a1,1,0,1,0-1.93.52L6,7.37,3.84,6.13a1,1,0,0,0-1,1.74L4.84,9,4,9.26a1,1,0,0,0,.26,2l.26,0,2.82-.76L10,12,7.29,13.57l-2.82-.76A1,1,0,1,0,4,14.74l.89.24-2,1.15a1,1,0,0,0,1,1.74L6,16.63l-.3,1.11A1,1,0,0,0,6.39,19a1.15,1.15,0,0,0,.26,0,1,1,0,0,0,1-.74l.82-3L11,13.73v3.13L8.93,18.93a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.71-.3l.65-.65V22a1,1,0,0,0,2,0V19.53l.81.81a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41L13,16.7v-3l2.57,1.49.82,3a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,.71-1.23L18,16.63l2.14,1.24a1,1,0,1,0,1-1.74Z' - })); -}; - -UilSnowflake.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSnowflake; \ No newline at end of file diff --git a/icons/uil-social-distancing.js b/icons/uil-social-distancing.js deleted file mode 100644 index ea3b330a..00000000 --- a/icons/uil-social-distancing.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSocialDistancing = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.5 17H5.914l.293-.293a1 1 0 0 0-1.414-1.414l-2 2a1.004 1.004 0 0 0 0 1.414l2 2a1 1 0 0 0 1.414-1.414L5.914 19H8.5a1 1 0 0 0 0-2Zm12.707.293-2-2a1 1 0 0 0-1.414 1.414l.293.293H15.5a1 1 0 0 0 0 2h2.586l-.293.293a1 1 0 1 0 1.414 1.414l2-2a1.004 1.004 0 0 0 0-1.414Zm-.567-7.521A3.468 3.468 0 0 0 21.5 7.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 13 14a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM18 9a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 18 9Zm-9.36.772A3.468 3.468 0 0 0 9.5 7.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 1 14a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM6 9a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 6 9Z' - })); -}; - -UilSocialDistancing.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSocialDistancing; \ No newline at end of file diff --git a/icons/uil-solid.js b/icons/uil-solid.js deleted file mode 100644 index fef047c4..00000000 --- a/icons/uil-solid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSolid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.4,7.1c-0.1-0.1-0.2-0.1-0.4-0.1h0c-0.3,0-0.5,0-0.8-0.1c-1.7-0.4-2.9-1.7-3-3.4V3.1c0-0.3-0.2-0.5-0.5-0.5h-3.1c-0.3,0-0.5,0.2-0.5,0.5v12.5c0,1.2-1,2.1-2.1,2.1c0,0,0,0,0,0c-0.7,0-1.3-0.3-1.7-0.8c-0.7-0.9-0.5-2.3,0.4-3c0.4-0.3,0.8-0.3,1.6-0.3c0.1,0,0.3,0,0.4-0.1s0.2-0.2,0.2-0.4V9.8c0-0.2-0.2-0.5-0.4-0.5c-1.6-0.2-3.2,0.2-4.4,1.2c-1.1,1-1.9,2.4-2.1,4.1c-0.3,1.9,0.4,3.9,1.7,5.2c1.2,1.3,2.9,1.9,4.5,1.9c1.6,0,3.2-0.6,4.4-1.8c1.2-1.2,1.9-2.8,1.9-4.5v-5.5c1.2,0.6,2.5,1,3.8,1c0.3,0,0.5-0.2,0.5-0.5V7.4C20.6,7.3,20.5,7.2,20.4,7.1z' - })); -}; - -UilSolid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSolid; \ No newline at end of file diff --git a/icons/uil-sort-amount-down.js b/icons/uil-sort-amount-down.js deleted file mode 100644 index f1c5d4b5..00000000 --- a/icons/uil-sort-amount-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSortAmountDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.29,14.29l-.29.3V7A1,1,0,0,0,4,7v7.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,3H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSortAmountDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSortAmountDown; \ No newline at end of file diff --git a/icons/uil-sort-amount-up.js b/icons/uil-sort-amount-up.js deleted file mode 100644 index 18f2e753..00000000 --- a/icons/uil-sort-amount-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSortAmountUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2A1,1,0,0,0,3.71,9.71L4,9.41V17a1,1,0,0,0,2,0V9.41l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,8H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSortAmountUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSortAmountUp; \ No newline at end of file diff --git a/icons/uil-sort.js b/icons/uil-sort.js deleted file mode 100644 index be6ddd84..00000000 --- a/icons/uil-sort.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSort = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.29,14.29,12,18.59l-4.29-4.3a1,1,0,0,0-1.42,1.42l5,5a1,1,0,0,0,1.42,0l5-5a1,1,0,0,0-1.42-1.42ZM7.71,9.71,12,5.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-5-5a1,1,0,0,0-1.42,0l-5,5A1,1,0,0,0,7.71,9.71Z' - })); -}; - -UilSort.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSort; \ No newline at end of file diff --git a/icons/uil-sorting.js b/icons/uil-sorting.js deleted file mode 100644 index 40624e0d..00000000 --- a/icons/uil-sorting.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSorting = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,10.21a1,1,0,0,0,1.42,0l3-3a1,1,0,1,0-1.42-1.42L12,8.09,9.71,5.79A1,1,0,0,0,8.29,7.21Zm1.42,4.58a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42L12,16.91l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilSorting.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSorting; \ No newline at end of file diff --git a/icons/uil-space-key.js b/icons/uil-space-key.js deleted file mode 100644 index 63e2d978..00000000 --- a/icons/uil-space-key.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSpaceKey = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,9a1,1,0,0,0-1,1v3H4V10a1,1,0,0,0-2,0v4a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V10A1,1,0,0,0,21,9Z' - })); -}; - -UilSpaceKey.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSpaceKey; \ No newline at end of file diff --git a/icons/uil-spade.js b/icons/uil-spade.js deleted file mode 100644 index 685527c6..00000000 --- a/icons/uil-spade.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSpade = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.06,12.28a5.69,5.69,0,0,0-1.67-4L14,2.81a2.83,2.83,0,0,0-4,0L4.61,8.23a5.69,5.69,0,0,0-1.67,4A5.7,5.7,0,0,0,8.66,18h0a6.88,6.88,0,0,1-1.23,2.37A1,1,0,0,0,8.24,22h7.52a1,1,0,0,0,.78-1.63A6.84,6.84,0,0,1,15.31,18a5.69,5.69,0,0,0,5.75-5.71ZM18,14.91a3.78,3.78,0,0,1-3.66.95,1,1,0,0,0-.17,0l-.2,0h0a1.41,1.41,0,0,0-.22.06l-.15,0a.69.69,0,0,0-.13.11.75.75,0,0,0-.17.14.6.6,0,0,1-.06.11,2.53,2.53,0,0,0-.12.23v0a1.1,1.1,0,0,0,0,.18c0,.06,0,.12,0,.18v0h0A8.84,8.84,0,0,0,13.94,20H10.06A8.62,8.62,0,0,0,10.94,17h0v0c0-.06,0-.12,0-.19a1.1,1.1,0,0,0,0-.18h0a1.12,1.12,0,0,0-.13-.24.53.53,0,0,0-.06-.1.54.54,0,0,0-.16-.14,1.27,1.27,0,0,0-.13-.11l-.14,0a.88.88,0,0,0-.23-.07h0l-.19,0a1.1,1.1,0,0,0-.18,0A3.81,3.81,0,0,1,6,14.91a3.75,3.75,0,0,1-1.09-2.63A3.69,3.69,0,0,1,6,9.65l5.4-5.42a.81.81,0,0,1,1.13,0L18,9.65a3.69,3.69,0,0,1,1.09,2.63A3.78,3.78,0,0,1,18,14.91Z' - })); -}; - -UilSpade.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSpade; \ No newline at end of file diff --git a/icons/uil-sperms.js b/icons/uil-sperms.js deleted file mode 100644 index a2bc1c67..00000000 --- a/icons/uil-sperms.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSperms = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.06,20.1a2,2,0,0,1-.65-.48,2.47,2.47,0,0,1-.67-1.14,4.19,4.19,0,0,0-1.31-2.06,3.57,3.57,0,0,0-1-3.28,3.28,3.28,0,0,0-4.59-.35,3.29,3.29,0,0,0,.35,4.6A3.87,3.87,0,0,0,5.4,18.51l.36,0a2.85,2.85,0,0,0,1.53-.44A2.05,2.05,0,0,1,7.8,19,4.46,4.46,0,0,0,9,21a4.27,4.27,0,0,0,1.2.88,1,1,0,0,0,.44.1,1,1,0,0,0,.44-1.9ZM6.32,16.33a.86.86,0,0,1-.7.19A1.8,1.8,0,0,1,4.56,16c-.57-.56-.73-1.39-.36-1.77a.82.82,0,0,1,.56-.2A1.8,1.8,0,0,1,6,14.56a1.8,1.8,0,0,1,.55,1.06A.86.86,0,0,1,6.32,16.33Zm15-6.12a2.17,2.17,0,0,1-.91-.59,2.47,2.47,0,0,1-.67-1.14,4.19,4.19,0,0,0-1.31-2.06,3.57,3.57,0,0,0-1.05-3.28,3.28,3.28,0,0,0-4.59-.35,3.29,3.29,0,0,0,.35,4.6A3.87,3.87,0,0,0,15.4,8.51l.36,0a2.85,2.85,0,0,0,1.53-.44A2.05,2.05,0,0,1,17.8,9,4.54,4.54,0,0,0,19,11a4.36,4.36,0,0,0,1.7,1.08,1.25,1.25,0,0,0,.32.05,1,1,0,0,0,.95-.68A1,1,0,0,0,21.32,10.21Zm-5-3.88a.86.86,0,0,1-.7.19A1.8,1.8,0,0,1,14.56,6c-.57-.56-.73-1.39-.36-1.77a.82.82,0,0,1,.56-.2A1.8,1.8,0,0,1,16,4.56a1.8,1.8,0,0,1,.55,1.06A.86.86,0,0,1,16.32,6.33Zm5.39,14.12a4.45,4.45,0,0,0-3.23-3.23,3.18,3.18,0,0,1-1.39-.82,2.93,2.93,0,0,1-.8-1.38A4.65,4.65,0,0,0,13,11.77a2.92,2.92,0,0,1-1.38-.8,3,3,0,0,1-.81-1.39,4.68,4.68,0,0,0-1-1.86A3.94,3.94,0,0,0,10,6.22a4.75,4.75,0,0,0-1.4-2.8A4.78,4.78,0,0,0,5.78,2,3.43,3.43,0,0,0,3,3,3.43,3.43,0,0,0,2,5.78a4.75,4.75,0,0,0,1.4,2.8A4.78,4.78,0,0,0,6.22,10l.43,0a3.39,3.39,0,0,0,2-.6,2.64,2.64,0,0,1,.31.71,5.12,5.12,0,0,0,3.6,3.59,2.61,2.61,0,0,1,1.83,1.84,5.11,5.11,0,0,0,3.6,3.6A2.57,2.57,0,0,1,19.79,21a2.8,2.8,0,0,0,.16.46,1,1,0,0,0,.88.54,1.21,1.21,0,0,0,.44-.1,1,1,0,0,0,.48-1.33S21.72,20.47,21.71,20.45ZM7.64,7.64c-.64.63-1.92.41-2.81-.47A2.78,2.78,0,0,1,4,5.56a1.47,1.47,0,0,1,.35-1.2,1.39,1.39,0,0,1,1-.36,2.71,2.71,0,0,1,1.83.83A2.78,2.78,0,0,1,8,6.44,1.47,1.47,0,0,1,7.64,7.64Z' - })); -}; - -UilSperms.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSperms; \ No newline at end of file diff --git a/icons/uil-spin.js b/icons/uil-spin.js deleted file mode 100644 index 0e006b07..00000000 --- a/icons/uil-spin.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSpin = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,3a7,7,0,0,0,0,14A5,5,0,0,0,13,7a3,3,0,0,0,0,6,1,1,0,0,0,0-2,1,1,0,0,1,0-2,3,3,0,0,1,0,6A5,5,0,0,1,13,5a7,7,0,0,1,0,14,9,9,0,0,1-9-9,1,1,0,0,0-2,0A11,11,0,0,0,13,21,9,9,0,0,0,13,3Z' - })); -}; - -UilSpin.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSpin; \ No newline at end of file diff --git a/icons/uil-spinner-alt.js b/icons/uil-spinner-alt.js deleted file mode 100644 index 68809468..00000000 --- a/icons/uil-spinner-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSpinnerAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.804 15a1 1 0 0 0-1.366-.366l-1.732 1a1 1 0 0 0 1 1.732l1.732-1A1 1 0 0 0 6.804 15ZM3.706 8.366l1.732 1a1 1 0 1 0 1-1.732l-1.732-1a1 1 0 0 0-1 1.732ZM6 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h2a1 1 0 0 0 1-1Zm11.196-3a1 1 0 0 0 1.366.366l1.732-1a1 1 0 1 0-1-1.732l-1.732 1A1 1 0 0 0 17.196 9ZM15 6.804a1 1 0 0 0 1.366-.366l1-1.732a1 1 0 1 0-1.732-1l-1 1.732A1 1 0 0 0 15 6.804Zm5.294 8.83-1.732-1a1 1 0 1 0-1 1.732l1.732 1a1 1 0 0 0 1-1.732Zm-3.928 1.928a1 1 0 1 0-1.732 1l1 1.732a1 1 0 1 0 1.732-1ZM21 11h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Zm-9 7a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1Zm-3-.804a1 1 0 0 0-1.366.366l-1 1.732a1 1 0 0 0 1.732 1l1-1.732A1 1 0 0 0 9 17.196ZM12 2a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1Z' - })); -}; - -UilSpinnerAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSpinnerAlt; \ No newline at end of file diff --git a/icons/uil-spinner.js b/icons/uil-spinner.js deleted file mode 100644 index 82df42c4..00000000 --- a/icons/uil-spinner.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSpinner = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.1 16c-.3-.5-.9-.6-1.4-.4-.5.3-.6.9-.4 1.4.3.5.9.6 1.4.4.5-.3.6-.9.4-1.4zm-.4-9.4c-.5-.2-1.1-.1-1.4.4-.2.5-.1 1.1.4 1.4.5.2 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zm15.6 1.8c.5-.3.6-.9.4-1.4-.3-.5-.9-.6-1.4-.4-.5.3-.6.9-.4 1.4.3.5.9.6 1.4.4zM4 12c0-.6-.4-1-1-1s-1 .4-1 1 .4 1 1 1 1-.4 1-1zm3.2 6.8c-.5.1-.9.7-.7 1.2.1.5.7.9 1.2.7.5-.1.9-.7.7-1.2-.1-.5-.6-.8-1.2-.7zM21 11c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1zm-.7 4.6c-.5-.3-1.1-.1-1.4.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zM17 3.3c-.5-.3-1.1-.1-1.4.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zm-.2 15.5c-.5-.1-1.1.2-1.2.7-.1.5.2 1.1.7 1.2.5.1 1.1-.2 1.2-.7.1-.5-.2-1-.7-1.2zM12 20c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1zm0-18c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1z' - })); -}; - -UilSpinner.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSpinner; \ No newline at end of file diff --git a/icons/uil-square-full.js b/icons/uil-square-full.js deleted file mode 100644 index 07748b41..00000000 --- a/icons/uil-square-full.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSquareFull = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilSquareFull.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSquareFull; \ No newline at end of file diff --git a/icons/uil-square-shape.js b/icons/uil-square-shape.js deleted file mode 100644 index bc323ae1..00000000 --- a/icons/uil-square-shape.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSquareShape = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Z' - })); -}; - -UilSquareShape.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSquareShape; \ No newline at end of file diff --git a/icons/uil-square.js b/icons/uil-square.js deleted file mode 100644 index 80851a12..00000000 --- a/icons/uil-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' - })); -}; - -UilSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSquare; \ No newline at end of file diff --git a/icons/uil-squint.js b/icons/uil-squint.js deleted file mode 100644 index e86f4917..00000000 --- a/icons/uil-squint.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSquint = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9.08,12.21l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM16.58,7.79a1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0,0,1.42l1.5,1.5a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79A1,1,0,0,0,16.58,7.79Z' - })); -}; - -UilSquint.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSquint; \ No newline at end of file diff --git a/icons/uil-star-half-alt.js b/icons/uil-star-half-alt.js deleted file mode 100644 index 16ea7dc3..00000000 --- a/icons/uil-star-half-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStarHalfAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68A1,1,0,0,0,6.9,21.44L12,18.77l5.1,2.67a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67ZM11,17l-3.23,1.7.72-4.2a1,1,0,0,0-.29-.88l-3-3,4.21-.61a1,1,0,0,0,.76-.55L11,7.73Zm4.8-3.38a1,1,0,0,0-.29.88l.72,4.2L13,17V7.73l.88,1.79a1,1,0,0,0,.76.55l4.21.61Z' - })); -}; - -UilStarHalfAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStarHalfAlt; \ No newline at end of file diff --git a/icons/uil-star.js b/icons/uil-star.js deleted file mode 100644 index 7376f8aa..00000000 --- a/icons/uil-star.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStar = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68a1,1,0,0,0,.4,1,1,1,0,0,0,1.05.07L12,18.76l5.1,2.68a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67Zm-6.15,4a1,1,0,0,0-.29.89l.72,4.19-3.76-2a1,1,0,0,0-.94,0l-3.76,2,.72-4.19a1,1,0,0,0-.29-.89l-3-3,4.21-.61a1,1,0,0,0,.76-.55L12,5.7l1.88,3.82a1,1,0,0,0,.76.55l4.21.61Z' - })); -}; - -UilStar.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStar; \ No newline at end of file diff --git a/icons/uil-statistics.js b/icons/uil-statistics.js deleted file mode 100644 index 2fb9b112..00000000 --- a/icons/uil-statistics.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStatistics = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.92,6.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,6H16a1,1,0,0,0,0,2h2.59L13,13.59l-3.29-3.3a1,1,0,0,0-1.42,0l-6,6a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,12.41l3.29,3.3a1,1,0,0,0,1.42,0L20,9.41V12a1,1,0,0,0,2,0V7A1,1,0,0,0,21.92,6.62Z' - })); -}; - -UilStatistics.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStatistics; \ No newline at end of file diff --git a/icons/uil-step-backward-alt.js b/icons/uil-step-backward-alt.js deleted file mode 100644 index 879611f3..00000000 --- a/icons/uil-step-backward-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStepBackwardAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,3a3,3,0,0,0-3,3V18a3,3,0,0,0,6,0V6A3,3,0,0,0,19,3Zm1,15a1,1,0,0,1-2,0V6a1,1,0,0,1,2,0ZM12.63,5.63a2.6,2.6,0,0,0-2.64,0l-6.67,4a2.75,2.75,0,0,0,0,4.7l6.67,4a2.57,2.57,0,0,0,2.64,0A2.74,2.74,0,0,0,14,16V8A2.74,2.74,0,0,0,12.63,5.63ZM12,16a.72.72,0,0,1-.36.64.61.61,0,0,1-.63,0l-6.66-4a.76.76,0,0,1,0-1.28l6.66-4a.63.63,0,0,1,.32-.09.64.64,0,0,1,.31.08A.72.72,0,0,1,12,8Z' - })); -}; - -UilStepBackwardAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStepBackwardAlt; \ No newline at end of file diff --git a/icons/uil-step-backward-circle.js b/icons/uil-step-backward-circle.js deleted file mode 100644 index c6deb2da..00000000 --- a/icons/uil-step-backward-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStepBackwardCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.5,7.38a2,2,0,0,0-2,0l-4,2.31V8a1,1,0,0,0-2,0v8a1,1,0,0,0,2,0V14.31l4,2.31a2,2,0,0,0,2,0,2,2,0,0,0,1-1.73V9.11A2,2,0,0,0,15.5,7.38Zm-1,7.51L9.5,12h0l5-2.89ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilStepBackwardCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStepBackwardCircle; \ No newline at end of file diff --git a/icons/uil-step-backward.js b/icons/uil-step-backward.js deleted file mode 100644 index 2e04479e..00000000 --- a/icons/uil-step-backward.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStepBackward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.28,3.43a3.23,3.23,0,0,0-3.29,0L8,8.84V6A3,3,0,0,0,2,6V18a3,3,0,0,0,6,0V15.16l9,5.37a3.28,3.28,0,0,0,1.68.47,3.24,3.24,0,0,0,1.61-.43,3.38,3.38,0,0,0,1.72-3V6.42A3.38,3.38,0,0,0,20.28,3.43ZM6,18a1,1,0,0,1-2,0V6A1,1,0,0,1,6,6Zm14-.42a1.4,1.4,0,0,1-.71,1.25,1.23,1.23,0,0,1-1.28,0L8.68,13.23a1.45,1.45,0,0,1,0-2.46L18,5.19A1.23,1.23,0,0,1,18.67,5a1.29,1.29,0,0,1,.62.17A1.4,1.4,0,0,1,20,6.42Z' - })); -}; - -UilStepBackward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStepBackward; \ No newline at end of file diff --git a/icons/uil-step-forward.js b/icons/uil-step-forward.js deleted file mode 100644 index 9809e3f9..00000000 --- a/icons/uil-step-forward.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStepForward = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.71,7.29A1,1,0,1,0,7.29,8.71L10.59,12l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,0-1.42ZM16,7a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,16,7Z' - })); -}; - -UilStepForward.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStepForward; \ No newline at end of file diff --git a/icons/uil-stethoscope-alt.js b/icons/uil-stethoscope-alt.js deleted file mode 100644 index 77c32770..00000000 --- a/icons/uil-stethoscope-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStethoscopeAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19 8a2.993 2.993 0 0 0-1 5.816V15.5a4.5 4.5 0 0 1-9 0v-1.02l3.124-2.498A4.976 4.976 0 0 0 14 8.078V3a1 1 0 0 0-1-1h-2a1 1 0 0 0 0 2h1v4.078a2.986 2.986 0 0 1-1.125 2.342L8 12.72l-2.874-2.3A2.985 2.985 0 0 1 4 8.078V4h1a1 1 0 0 0 0-2H3a1 1 0 0 0-1 1v5.078a4.975 4.975 0 0 0 1.876 3.904L7 14.48v1.02a6.5 6.5 0 0 0 13 0v-1.684A2.993 2.993 0 0 0 19 8Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' - })); -}; - -UilStethoscopeAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStethoscopeAlt; \ No newline at end of file diff --git a/icons/uil-stethoscope.js b/icons/uil-stethoscope.js deleted file mode 100644 index a2ed508a..00000000 --- a/icons/uil-stethoscope.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStethoscope = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19 8a2.993 2.993 0 0 0-1 5.816V15.5a4.5 4.5 0 0 1-9 0v-.59A6.004 6.004 0 0 0 14 9V3a1 1 0 0 0-1-1h-2a1 1 0 0 0 0 2h1v5a4 4 0 0 1-8 0V4h1a1 1 0 0 0 0-2H3a1 1 0 0 0-1 1v6a6.004 6.004 0 0 0 5 5.91v.59a6.5 6.5 0 0 0 13 0v-1.684A2.993 2.993 0 0 0 19 8Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' - })); -}; - -UilStethoscope.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStethoscope; \ No newline at end of file diff --git a/icons/uil-stop-circle.js b/icons/uil-stop-circle.js deleted file mode 100644 index b2d11c56..00000000 --- a/icons/uil-stop-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStopCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,8H9A1,1,0,0,0,8,9v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V9A1,1,0,0,0,15,8Zm-1,6H10V10h4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilStopCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStopCircle; \ No newline at end of file diff --git a/icons/uil-stopwatch-slash.js b/icons/uil-stopwatch-slash.js deleted file mode 100644 index c3cbe7d0..00000000 --- a/icons/uil-stopwatch-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStopwatchSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.6,5.63a1,1,0,0,0,.36,2,6.18,6.18,0,0,1,1-.09,6,6,0,0,1,6,6,6.18,6.18,0,0,1-.09,1,1,1,0,0,0,.8,1.16l.18,0a1,1,0,0,0,1-.82A7.45,7.45,0,0,0,20,13.5a8,8,0,0,0-1.7-4.91l.91-.9a1,1,0,0,0-1.42-1.42l-.9.91A8,8,0,0,0,12,5.5,7.45,7.45,0,0,0,10.6,5.63ZM10,4.5h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm3.49,9.08s0-.05,0-.08,0-.05,0-.08l1.34-1.33a1,1,0,1,0-1.42-1.42L12.08,12h-.16L5.71,5.79A1,1,0,0,0,4.29,7.21l.48.48h0l.91.91A8,8,0,0,0,16.9,19.82l1.39,1.39a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,19.5A6,6,0,0,1,7.11,10l3.4,3.39s0,.05,0,.08A1.5,1.5,0,0,0,12,15h.08l3.39,3.4A6,6,0,0,1,12,19.5Z' - })); -}; - -UilStopwatchSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStopwatchSlash; \ No newline at end of file diff --git a/icons/uil-stopwatch.js b/icons/uil-stopwatch.js deleted file mode 100644 index 5709d5d3..00000000 --- a/icons/uil-stopwatch.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStopwatch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.3,8.59l.91-.9a1,1,0,0,0-1.42-1.42l-.9.91a8,8,0,0,0-9.79,0l-.91-.92A1,1,0,0,0,4.77,7.69l.92.91A7.92,7.92,0,0,0,4,13.5,8,8,0,1,0,18.3,8.59ZM12,19.5a6,6,0,1,1,6-6A6,6,0,0,1,12,19.5Zm-2-15h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm3,6a1,1,0,0,0-2,0v1.89a1.5,1.5,0,1,0,2,0Z' - })); -}; - -UilStopwatch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStopwatch; \ No newline at end of file diff --git a/icons/uil-store-alt.js b/icons/uil-store-alt.js deleted file mode 100644 index 6347fc89..00000000 --- a/icons/uil-store-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStoreAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,2H2A1,1,0,0,0,1,3V7A3,3,0,0,0,3,9.82V21a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V9.82A3,3,0,0,0,23,7V3A1,1,0,0,0,22,2ZM15,4h2V7a1,1,0,0,1-2,0ZM11,4h2V7a1,1,0,0,1-2,0ZM7,4H9V7A1,1,0,0,1,7,7ZM4,8A1,1,0,0,1,3,7V4H5V7A1,1,0,0,1,4,8ZM14,20H10V16a2,2,0,0,1,4,0Zm5,0H16V16a4,4,0,0,0-8,0v4H5V9.82a3.17,3.17,0,0,0,1-.6,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3.17,3.17,0,0,0,1,.6ZM21,7a1,1,0,0,1-2,0V4h2Z' - })); -}; - -UilStoreAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStoreAlt; \ No newline at end of file diff --git a/icons/uil-store-slash.js b/icons/uil-store-slash.js deleted file mode 100644 index 7848c31a..00000000 --- a/icons/uil-store-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStoreSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.7 4h9.623l1.661 4.154A1.995 1.995 0 0 1 16 8a1 1 0 0 0-2 0 1.826 1.826 0 0 1-.134.709 1 1 0 0 0 .543 1.305.947.947 0 0 0 .174.035A3.988 3.988 0 0 0 18 12v1.3a1 1 0 0 0 2 0v-1.856a3.985 3.985 0 0 0 1.996-3.405c0-.01.003-.018.003-.028L22 8a.949.949 0 0 0-.035-.171.952.952 0 0 0-.036-.2l-2-5A1 1 0 0 0 19 2H8.7a1 1 0 1 0 0 2Zm14.007 17.293-2.933-2.933a.943.943 0 0 0-.154-.154l-9.95-9.95a.973.973 0 0 0-.206-.206L5.182 3.768a.963.963 0 0 0-.128-.128L2.707 1.293a1 1 0 0 0-1.414 1.414l1.964 1.964-1.178 2.94-.007.017a.953.953 0 0 0-.035.189A.948.948 0 0 0 2 8l.001.012.003.024A3.986 3.986 0 0 0 4 11.444V21a1 1 0 0 0 1 1h14a.993.993 0 0 0 .93-.656l1.363 1.363a1 1 0 0 0 1.414-1.414ZM4.016 8.153l.778-1.945L7.67 9.084A1.972 1.972 0 0 1 6 10a1.996 1.996 0 0 1-1.984-1.846ZM9 15v5H6v-8a3.964 3.964 0 0 0 3.102-1.484L12.586 14H10a1 1 0 0 0-1 1Zm4 5h-2v-4h2Zm5 0h-3v-3.586l3 3Z' - })); -}; - -UilStoreSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStoreSlash; \ No newline at end of file diff --git a/icons/uil-store.js b/icons/uil-store.js deleted file mode 100644 index 123e3664..00000000 --- a/icons/uil-store.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStore = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,7.82a1.25,1.25,0,0,0,0-.19v0h0l-2-5A1,1,0,0,0,19,2H5a1,1,0,0,0-.93.63l-2,5h0v0a1.25,1.25,0,0,0,0,.19A.58.58,0,0,0,2,8H2V8a4,4,0,0,0,2,3.4V21a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V11.44A4,4,0,0,0,22,8V8h0A.58.58,0,0,0,22,7.82ZM13,20H11V16h2Zm5,0H15V15a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v5H6V12a4,4,0,0,0,3-1.38,4,4,0,0,0,6,0A4,4,0,0,0,18,12Zm0-10a2,2,0,0,1-2-2,1,1,0,0,0-2,0,2,2,0,0,1-4,0A1,1,0,0,0,8,8a2,2,0,0,1-4,.15L5.68,4H18.32L20,8.15A2,2,0,0,1,18,10Z' - })); -}; - -UilStore.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStore; \ No newline at end of file diff --git a/icons/uil-streering.js b/icons/uil-streering.js deleted file mode 100644 index 05d6fd4b..00000000 --- a/icons/uil-streering.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStreering = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,12a1,1,0,1,0,1,1A1,1,0,0,0,12,12Zm9.71-2.36a0,0,0,0,1,0,0,10,10,0,0,0-19.4,0,0,0,0,0,1,0,0,9.75,9.75,0,0,0,0,4.72,0,0,0,0,1,0,0A10,10,0,0,0,9.61,21.7h0a9.67,9.67,0,0,0,4.7,0h0a10,10,0,0,0,7.31-7.31,0,0,0,0,1,0,0,9.75,9.75,0,0,0,0-4.72ZM12,4a8,8,0,0,1,7.41,5H4.59A8,8,0,0,1,12,4ZM4,12a8.26,8.26,0,0,1,.07-1H6v2H4.07A8.26,8.26,0,0,1,4,12Zm5,7.41A8,8,0,0,1,4.59,15H7a2,2,0,0,1,2,2Zm4,.52A8.26,8.26,0,0,1,12,20a8.26,8.26,0,0,1-1-.07V18h2ZM13.14,16H10.86A4,4,0,0,0,8,13.14V11h8v2.14A4,4,0,0,0,13.14,16ZM15,19.41V17a2,2,0,0,1,2-2h2.41A8,8,0,0,1,15,19.41ZM19.93,13H18V11h1.93A8.26,8.26,0,0,1,20,12,8.26,8.26,0,0,1,19.93,13Z' - })); -}; - -UilStreering.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStreering; \ No newline at end of file diff --git a/icons/uil-stretcher.js b/icons/uil-stretcher.js deleted file mode 100644 index 5e09a56f..00000000 --- a/icons/uil-stretcher.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStretcher = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,4.5h3a1,1,0,0,0,0-2H18a1,1,0,0,0,0,2Zm3,2H3a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H4.55l5.11,2.56L7.08,16.35A3,3,0,0,0,5,15.5a3,3,0,1,0,3,3,2.2,2.2,0,0,0,0-.36l3.94-2L16,18.24a2.3,2.3,0,0,0,0,.26,3,3,0,1,0,3-3,3,3,0,0,0-2.15.92l-2.72-1.36,5.11-2.56H21a1,1,0,0,0,1-1v-4A1,1,0,0,0,21,6.5ZM5,19.5a1,1,0,1,1,1-1A1,1,0,0,1,5,19.5Zm14-2a1,1,0,1,1-1,1A1,1,0,0,1,19,17.5Zm-7.1-3.56L9,12.5h5.75ZM20,10.5H4v-2H20Z' - })); -}; - -UilStretcher.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStretcher; \ No newline at end of file diff --git a/icons/uil-stroller.js b/icons/uil-stroller.js deleted file mode 100644 index 070c4be2..00000000 --- a/icons/uil-stroller.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilStroller = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,16a3,3,0,1,0,3,3A3,3,0,0,0,19,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,19,20ZM9,16a3,3,0,1,0,3,3A3,3,0,0,0,9,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,9,20ZM22,8.5A6.51,6.51,0,0,0,15.5,2H15a1,1,0,0,0-1,1V8H7.52L6.27,4.65A1,1,0,0,0,5.33,4H3A1,1,0,0,0,3,6H4.64L5.89,9.37l0,0,.51,1.37,0,.09A6.44,6.44,0,0,0,12.5,15h3A6.49,6.49,0,0,0,22,8.5Zm-3.32,3.18A4.47,4.47,0,0,1,15.5,13h-3a4.47,4.47,0,0,1-4.16-2.8.14.14,0,0,1,0-.06L8.26,10H19.74A4.32,4.32,0,0,1,18.68,11.68ZM16,8V4A4.49,4.49,0,0,1,20,8Z' - })); -}; - -UilStroller.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilStroller; \ No newline at end of file diff --git a/icons/uil-subject.js b/icons/uil-subject.js deleted file mode 100644 index 6397f610..00000000 --- a/icons/uil-subject.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSubject = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,16H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2ZM3,8H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm18,3H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' - })); -}; - -UilSubject.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSubject; \ No newline at end of file diff --git a/icons/uil-subway-alt.js b/icons/uil-subway-alt.js deleted file mode 100644 index af53b34c..00000000 --- a/icons/uil-subway-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSubwayAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,17h1a1,1,0,0,0,0-2H15a1,1,0,0,0,0,2Zm6,0V9a3,3,0,0,0-3-3H13V4h4a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4h4V6H6A3,3,0,0,0,3,9v8a3,3,0,0,0,1.2,2.39l-.91.9a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.41,20H17.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.91-.9A3,3,0,0,0,21,17ZM5,9A1,1,0,0,1,6,8h5v4H5Zm14,8a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H19Zm0-5H13V8h5a1,1,0,0,1,1,1ZM8,17H9a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' - })); -}; - -UilSubwayAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSubwayAlt; \ No newline at end of file diff --git a/icons/uil-subway.js b/icons/uil-subway.js deleted file mode 100644 index 05cd8ba1..00000000 --- a/icons/uil-subway.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSubway = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,1,1ZM18,2H6A3,3,0,0,0,3,5V17a3,3,0,0,0,1.2,2.39l-.91.9a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.41,20H17.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.91-.9A3,3,0,0,0,21,17V5A3,3,0,0,0,18,2ZM5,8h6v4H5Zm14,9a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H19Zm0-5H13V8h6Zm0-6H5V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1ZM8,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18A.64.64,0,0,0,7,15.8,1.36,1.36,0,0,0,7,16a1,1,0,0,0,.29.7A1,1,0,0,0,8,17Z' - })); -}; - -UilSubway.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSubway; \ No newline at end of file diff --git a/icons/uil-suitcase-alt.js b/icons/uil-suitcase-alt.js deleted file mode 100644 index 2ecfc393..00000000 --- a/icons/uil-suitcase-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSuitcaseAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6H16V5a2,2,0,0,0-2-2H10A2,2,0,0,0,8,5V6H5A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5h4V6H10ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13H8v1a1,1,0,0,0,2,0V13h4v1a1,1,0,0,0,2,0V13h4Zm0-7H4V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' - })); -}; - -UilSuitcaseAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSuitcaseAlt; \ No newline at end of file diff --git a/icons/uil-suitcase.js b/icons/uil-suitcase.js deleted file mode 100644 index 49873424..00000000 --- a/icons/uil-suitcase.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSuitcase = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13.45H7V14.5a1,1,0,0,0,2,0V13.45h6V14.5a1,1,0,0,0,2,0V13.45h3Zm0-7H4V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' - })); -}; - -UilSuitcase.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSuitcase; \ No newline at end of file diff --git a/icons/uil-sun.js b/icons/uil-sun.js deleted file mode 100644 index 9de340d2..00000000 --- a/icons/uil-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M5.64,17l-.71.71a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l.71-.71A1,1,0,0,0,5.64,17ZM5,12a1,1,0,0,0-1-1H3a1,1,0,0,0,0,2H4A1,1,0,0,0,5,12Zm7-7a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4A1,1,0,0,0,12,5ZM5.64,7.05a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,6.34Zm12,.29a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,5.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,7.34ZM21,11H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm-9,8a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19ZM18.36,17A1,1,0,0,0,17,18.36l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM12,6.5A5.5,5.5,0,1,0,17.5,12,5.51,5.51,0,0,0,12,6.5Zm0,9A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5Z' - })); -}; - -UilSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSun; \ No newline at end of file diff --git a/icons/uil-sunset.js b/icons/uil-sunset.js deleted file mode 100644 index 7776e862..00000000 --- a/icons/uil-sunset.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSunset = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.66,8.34a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,6.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,8.34ZM12,6a1,1,0,0,0,1-1V4a1,1,0,0,0-2,0V5A1,1,0,0,0,12,6ZM4,12H3a1,1,0,0,0,0,2H4a1,1,0,0,0,0-2ZM5.64,8.05a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,7.34ZM21,12H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM11,19H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm7-4h-.88a5.39,5.39,0,0,0,.38-2,5.5,5.5,0,0,0-11,0,5.39,5.39,0,0,0,.38,2H6a1,1,0,0,0,0,2H18a1,1,0,0,0,0-2Zm-3.15,0H9.15a3.44,3.44,0,0,1-.65-2,3.5,3.5,0,0,1,7,0A3.44,3.44,0,0,1,14.85,15ZM16,19H15a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' - })); -}; - -UilSunset.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSunset; \ No newline at end of file diff --git a/icons/uil-surprise.js b/icons/uil-surprise.js deleted file mode 100644 index 87006d7c..00000000 --- a/icons/uil-surprise.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSurprise = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM10,9a1,1,0,1,0-1,1A1,1,0,0,0,10,9Zm5-1a1,1,0,1,0,1,1A1,1,0,0,0,15,8Zm-3,3a3.39,3.39,0,0,0-3.25,3.5A3.39,3.39,0,0,0,12,18a3.39,3.39,0,0,0,3.25-3.5A3.39,3.39,0,0,0,12,11Zm0,5a1.39,1.39,0,0,1-1.25-1.5A1.39,1.39,0,0,1,12,13a1.39,1.39,0,0,1,1.25,1.5A1.39,1.39,0,0,1,12,16Z' - })); -}; - -UilSurprise.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSurprise; \ No newline at end of file diff --git a/icons/uil-swatchbook.js b/icons/uil-swatchbook.js deleted file mode 100644 index af8143ce..00000000 --- a/icons/uil-swatchbook.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSwatchbook = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7,16a1,1,0,1,0,1,1A1,1,0,0,0,7,16Zm12.06-4,1.23-1.23a3,3,0,0,0,0-4.24L17.46,3.71a3,3,0,0,0-4.24,0L12,4.94A3,3,0,0,0,9,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A3,3,0,0,0,19.06,12ZM10,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H9a1,1,0,0,1,1,1ZM12,7.76l2.64-2.64a1,1,0,0,1,1.41,0L18.88,8a1,1,0,0,1,0,1.41L16,12.29h0L12,16.24ZM20,19a1,1,0,0,1-1,1H11.82a3.12,3.12,0,0,0,.17-.92L17.07,14H19a1,1,0,0,1,1,1Z' - })); -}; - -UilSwatchbook.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSwatchbook; \ No newline at end of file diff --git a/icons/uil-swiggy.js b/icons/uil-swiggy.js deleted file mode 100644 index 9c19c6cc..00000000 --- a/icons/uil-swiggy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSwiggy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.878,5.92841a.297.297,0,0,1,.31378.335c.002.09192.00348.18384.0036.27575.00061.59241-.00238,1.18488.00208,1.77723.00329.43353.07947.517.49939.56909a14.83182,14.83182,0,0,0,3.14795-.04578,4.94837,4.94837,0,0,0,1.57287-.37384.50722.50722,0,0,0,.34461-.60242,6.83113,6.83113,0,0,0-5.3432-5.71106,6.60826,6.60826,0,0,0-3.64844.243A6.718,6.718,0,0,0,7.07709,4.147,6.27211,6.27211,0,0,0,5.23022,8.43164,11.18781,11.18781,0,0,0,6.7558,13.9494a1.34216,1.34216,0,0,0,1.32989.74726c.65332-.01569,1.30732-.00354,1.96106-.00354v-.00348q1.04187,0,2.08368.00048c.24927.00055.44654.06012.44458.37226-.00458.72522.00067,1.45044-.00335,2.1756-.00129.22015-.06324.432-.32612.43408-.26391.00207-.32641-.20893-.32971-.42951-.00512-.34716.00019-.69452.00061-1.04174.00049-.45105-.07342-.55677-.52319-.639a7.70231,7.70231,0,0,0-2.348-.0199,2.5959,2.5959,0,0,0-.80054.19476c-.21185.09973-.29608.24506-.19318.46729.10706.23126.20691.46728.3332.68786a43.875,43.875,0,0,0,3.42651,4.95569c.15393.19947.27313.20362.43109.0105.34869-.42639.71491-.83856,1.05994-1.26788a34.22649,34.22649,0,0,0,3.57635-5.25989,14.17129,14.17129,0,0,0,1.49451-3.87146A1.20324,1.20324,0,0,0,17.36145,9.824,6.94268,6.94268,0,0,0,15.691,9.66235c-.909-.00677-1.81812-.00348-2.72717-.00268-.24481.00024-.42688-.07007-.42707-.3573-.00048-1.01117-.00183-2.0224.00184-3.03351C12.53943,6.053,12.64349,5.92041,12.878,5.92841Z' - })); -}; - -UilSwiggy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSwiggy; \ No newline at end of file diff --git a/icons/uil-swimmer.js b/icons/uil-swimmer.js deleted file mode 100644 index 47743065..00000000 --- a/icons/uil-swimmer.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSwimmer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9.28a2,2,0,1,0-2-2A2,2,0,0,0,17,9.28ZM2.71,13.92a3,3,0,0,1,.57.25,4.06,4.06,0,0,0,4.1,0,2.62,2.62,0,0,1,2.56,0l.21.1,0,0a4.14,4.14,0,0,0,3.87-.13,2.62,2.62,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,4,4,0,0,0,2-.56,3,3,0,0,1,.57-.25A1,1,0,1,0,20.71,12a4.82,4.82,0,0,0-1,.44,2.1,2.1,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.52,2.52,0,0,1-.29.12L14.34,11a.75.75,0,0,0,.09-.15,1,1,0,0,0,.12-.16,1.29,1.29,0,0,0,0-.19,1.06,1.06,0,0,0,0-.19,1.13,1.13,0,0,0,0-.18,1.06,1.06,0,0,0,0-.19,1.51,1.51,0,0,0-.1-.17.7.7,0,0,0-.1-.16L11.28,6.28s0,0,0,0A1.1,1.1,0,0,0,11,6.06a.8.8,0,0,0-.21,0,.53.53,0,0,0-.17,0A.89.89,0,0,0,10.2,6L6.66,7.32a1,1,0,0,0-.6,1.28,1,1,0,0,0,1.28.6l2.93-1.07,2,2.12-1.9,1.9a4.62,4.62,0,0,0-3.94.28,2.1,2.1,0,0,1-2.1,0,4.82,4.82,0,0,0-1-.44,1,1,0,1,0-.58,1.91Zm18,3.09a4.82,4.82,0,0,0-1,.44,2.1,2.1,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.62,4.62,0,0,0-4.54,0,2.1,2.1,0,0,1-2.1,0,4.82,4.82,0,0,0-1-.44,1,1,0,1,0-.58,1.91,3,3,0,0,1,.57.25,4.06,4.06,0,0,0,4.1,0,2.62,2.62,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.62,2.62,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,4,4,0,0,0,2-.56,3,3,0,0,1,.57-.25A1,1,0,1,0,20.71,17Z' - })); -}; - -UilSwimmer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSwimmer; \ No newline at end of file diff --git a/icons/uil-sync-exclamation.js b/icons/uil-sync-exclamation.js deleted file mode 100644 index 1a948479..00000000 --- a/icons/uil-sync-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSyncExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.29,15.71A1,1,0,0,0,13,15a1.05,1.05,0,0,0-.29-.71,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21A1.05,1.05,0,0,0,11,15,1,1,0,0,0,11.29,15.71Zm8.62-.2H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.62a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Zm0,11a1,1,0,0,0,1-1V9a1,1,0,0,0-2,0v3A1,1,0,0,0,12,13Z' - })); -}; - -UilSyncExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSyncExclamation; \ No newline at end of file diff --git a/icons/uil-sync-slash.js b/icons/uil-sync-slash.js deleted file mode 100644 index 480998de..00000000 --- a/icons/uil-sync-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSyncSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.88,15.5h-4.5a1,1,0,0,0,0,2h2.4A8,8,0,0,1,12,20a8.08,8.08,0,0,1-3.12-.63L7.39,20.86A9.83,9.83,0,0,0,12,22a10,10,0,0,0,6.88-2.77V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.88,15.5ZM18.31,7.1h0l1.43-1.43h0l2-2a1,1,0,1,0-1.42-1.42l-2,2A9.89,9.89,0,0,0,12,2,10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22a7.93,7.93,0,0,1,10.67-.81L5.69,16.89A7.93,7.93,0,0,1,4,12a1,1,0,0,0-2,0,9.89,9.89,0,0,0,2.27,6.32l-2,2a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2h0l1.43-1.43h0Zm1.06,1.78A8.08,8.08,0,0,1,20,12a1,1,0,0,0,2,0,9.83,9.83,0,0,0-1.14-4.61Z' - })); -}; - -UilSyncSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSyncSlash; \ No newline at end of file diff --git a/icons/uil-sync.js b/icons/uil-sync.js deleted file mode 100644 index 17f77b8e..00000000 --- a/icons/uil-sync.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSync = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19.91,15.51H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Z' - })); -}; - -UilSync.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSync; \ No newline at end of file diff --git a/icons/uil-syringe.js b/icons/uil-syringe.js deleted file mode 100644 index 7ccdf244..00000000 --- a/icons/uil-syringe.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilSyringe = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,2.29a1,1,0,0,0-1.42,0L18.17,4.41l-.71-.7a1,1,0,0,0-1.41,0L14.64,5.12l-.71-.71a1,1,0,0,0-1.42,0L4.74,12.19,4,11.49A1,1,0,0,0,2.62,12.9l3.53,3.54L4.42,18.18l-.71-.72a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42l-.71-.7,1.74-1.74,3.53,3.53a1,1,0,0,0,.71.3,1,1,0,0,0,.7-1.71l-.7-.71,7.78-7.77a1,1,0,0,0,0-1.42l-.71-.71L20.29,8a1,1,0,0,0,0-1.41l-.7-.71,2.12-2.12A1,1,0,0,0,21.71,2.29ZM7.57,15,6.15,13.61l1.41-1.42L9,13.61Zm2.82,2.83L9,16.44,10.39,15l1.42,1.42ZM13.22,15,9,10.78l4.24-4.24.71.7h0l3.53,3.54ZM17.46,8,16.05,6.54l.71-.71.7.7h0l.7.7Z' - })); -}; - -UilSyringe.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilSyringe; \ No newline at end of file diff --git a/icons/uil-table-tennis.js b/icons/uil-table-tennis.js deleted file mode 100644 index 64195197..00000000 --- a/icons/uil-table-tennis.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTableTennis = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.71,16.1l-1.64-1.64a.94.94,0,0,1-.22-1.07A5.78,5.78,0,0,0,19.39,11a.36.36,0,0,0,0-.1,5.74,5.74,0,0,0-1.06-3.34,14.17,14.17,0,0,0-5.17-4.42,7,7,0,0,0-8,1.31l-.67.67a7,7,0,0,0-1.31,8.05l.1.17a3,3,0,0,0-.84,2.06A3,3,0,0,0,7,17.94c.18.14.34.29.52.42A5.55,5.55,0,0,0,8.74,19l.09,0c.18.07.37.13.57.19l.15,0a5.08,5.08,0,0,0,.95.15l.28,0h.12l.22,0c.21,0,.41,0,.62-.06h.17l0,0a5.46,5.46,0,0,0,1.42-.45,1,1,0,0,1,1.07.21l1.46,1.46a3.4,3.4,0,0,0,2.39,1,2.85,2.85,0,0,0,2-.85l.38-.38A3,3,0,0,0,20.71,16.1Zm-15.3.32a1,1,0,1,1,1-1A1,1,0,0,1,5.41,16.42Zm3.1.14-.26-.2a2.94,2.94,0,0,0,.16-.94,3,3,0,0,0-3-3c-.13,0-.25,0-.38,0l-.09-.16a5,5,0,0,1,.93-5.75l.67-.67A5,5,0,0,1,12.28,5a12,12,0,0,1,4.26,3.57Zm10.78,2.37-.37.38c-.42.42-1.07.34-1.61-.2l-1.46-1.45a3,3,0,0,0-3.34-.61,3.39,3.39,0,0,1-1,.31,2.84,2.84,0,0,1-.58.05l-.34,0h-.1l6.87-6.87a3.8,3.8,0,0,1-.34,2h0a3,3,0,0,0,.61,3.34l1.64,1.65A1,1,0,0,1,19.29,18.93Z' - })); -}; - -UilTableTennis.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTableTennis; \ No newline at end of file diff --git a/icons/uil-table.js b/icons/uil-table.js deleted file mode 100644 index ba37e2a9..00000000 --- a/icons/uil-table.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTable = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V16H8Zm0-6H4V10H8ZM8,8H4V4H8Zm6,12H10V16h4Zm0-6H10V10h4Zm0-6H10V4h4Zm6,12H16V16h4Zm0-6H16V10h4Zm0-6H16V4h4Z' - })); -}; - -UilTable.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTable; \ No newline at end of file diff --git a/icons/uil-tablet.js b/icons/uil-tablet.js deleted file mode 100644 index 2d0c8cfa..00000000 --- a/icons/uil-tablet.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTablet = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Zm-5.29-2.71A1,1,0,0,0,11.8,16l-.18.06a.76.76,0,0,0-.18.09l-.15.12a1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.46,1.46,0,0,0,.33.22,1,1,0,0,0,1.09-.22A1,1,0,0,0,13,17a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,12.71,16.29Z' - })); -}; - -UilTablet.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTablet; \ No newline at end of file diff --git a/icons/uil-tablets.js b/icons/uil-tablets.js deleted file mode 100644 index def0103e..00000000 --- a/icons/uil-tablets.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTablets = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.54,3.46a5,5,0,1,0,0,7.08A5,5,0,0,0,20.54,3.46ZM14.88,4.88A3,3,0,0,1,17,4a3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,14.88,4.88Zm4.24,4.24a3,3,0,0,1-3.4.58l4-4A3,3,0,0,1,19.12,9.12ZM8,10a5.93,5.93,0,0,0-4.21,1.73l0,0,0,0A6,6,0,0,0,8,22a6,6,0,0,0,4.14-1.66l.12-.08a1.05,1.05,0,0,1,.07-.11A6,6,0,0,0,8,10ZM5.17,18.83A4,4,0,0,1,4.56,14L10,19.44A4,4,0,0,1,5.17,18.83ZM11.44,18,6,12.56A4,4,0,0,1,8,12a4,4,0,0,1,3.44,6Z' - })); -}; - -UilTablets.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTablets; \ No newline at end of file diff --git a/icons/uil-tachometer-fast-alt.js b/icons/uil-tachometer-fast-alt.js deleted file mode 100644 index 461aed11..00000000 --- a/icons/uil-tachometer-fast-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTachometerFastAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12 5a10 10 0 0 0-8.66 15 1 1 0 0 0 1.74-1A7.92 7.92 0 0 1 4 15a8 8 0 1 1 14.93 4 1 1 0 0 0 .37 1.37 1 1 0 0 0 1.36-.37A10 10 0 0 0 12 5Zm2.84 5.76-1.55 1.54A2.91 2.91 0 0 0 12 12a3 3 0 1 0 3 3 2.9 2.9 0 0 0-.3-1.28l1.55-1.54a1 1 0 0 0 0-1.42 1 1 0 0 0-1.41 0ZM12 16a1 1 0 0 1 0-2 1 1 0 0 1 .7.28 1 1 0 0 1 .3.72 1 1 0 0 1-1 1Z' - })); -}; - -UilTachometerFastAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTachometerFastAlt; \ No newline at end of file diff --git a/icons/uil-tachometer-fast.js b/icons/uil-tachometer-fast.js deleted file mode 100644 index d4f4f114..00000000 --- a/icons/uil-tachometer-fast.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTachometerFast = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.29,10.29l-2.78,2.78A2.09,2.09,0,0,0,12,13a2,2,0,0,0-2,2,2.09,2.09,0,0,0,.07.51l-.78.78a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.78-.78A2.09,2.09,0,0,0,12,17a2,2,0,0,0,2-2,2.09,2.09,0,0,0-.07-.51l2.78-2.78a1,1,0,0,0-1.42-1.42ZM12,4A10,10,0,0,0,2,14a9.91,9.91,0,0,0,1.69,5.56,1,1,0,0,0,1.66-1.12,8,8,0,1,1,13.3,0,1,1,0,0,0,.27,1.39,1,1,0,0,0,.56.17,1,1,0,0,0,.83-.44A9.91,9.91,0,0,0,22,14,10,10,0,0,0,12,4Z' - })); -}; - -UilTachometerFast.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTachometerFast; \ No newline at end of file diff --git a/icons/uil-tag-alt.js b/icons/uil-tag-alt.js deleted file mode 100644 index 6c80693b..00000000 --- a/icons/uil-tag-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTagAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.5,6A1.5,1.5,0,1,0,9,7.5,1.5,1.5,0,0,0,7.5,6Zm13.62,4.71L12.71,2.29A1,1,0,0,0,12,2H3A1,1,0,0,0,2,3v9a1,1,0,0,0,.29.71l8.42,8.41a3,3,0,0,0,4.24,0L21.12,15a3,3,0,0,0,0-4.24Zm-1.41,2.82h0l-6.18,6.17a1,1,0,0,1-1.41,0L4,11.59V4h7.59l8.12,8.12a1,1,0,0,1,.29.71A1,1,0,0,1,19.71,13.53Z' - })); -}; - -UilTagAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTagAlt; \ No newline at end of file diff --git a/icons/uil-tag.js b/icons/uil-tag.js deleted file mode 100644 index 8fe89167..00000000 --- a/icons/uil-tag.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTag = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.12,10.71,12.71,2.29A1,1,0,0,0,12,2H3A1,1,0,0,0,2,3v9a1,1,0,0,0,.29.71l8.42,8.41a3,3,0,0,0,4.24,0L21.12,15a3,3,0,0,0,0-4.24Zm-1.41,2.82h0l-6.18,6.17a1,1,0,0,1-1.41,0L4,11.59V4h7.59l8.12,8.12a1,1,0,0,1,.29.71A1,1,0,0,1,19.71,13.53Z' - })); -}; - -UilTag.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTag; \ No newline at end of file diff --git a/icons/uil-tape.js b/icons/uil-tape.js deleted file mode 100644 index 25a34807..00000000 --- a/icons/uil-tape.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTape = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.5,7a4,4,0,1,0,4,4A4,4,0,0,0,14.5,7Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,14.5,13Zm1-10h-2a7,7,0,0,0-7,7v3h-1a1,1,0,0,0,0,2h1v2h-4a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19h12a7,7,0,0,0,7-7V10A7,7,0,0,0,15.5,3Zm5,9a5,5,0,0,1-5,5h-7V10a5,5,0,0,1,5-5h2a5,5,0,0,1,5,5Z' - })); -}; - -UilTape.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTape; \ No newline at end of file diff --git a/icons/uil-taxi.js b/icons/uil-taxi.js deleted file mode 100644 index 44c6ddd3..00000000 --- a/icons/uil-taxi.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTaxi = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.38,14.58a1,1,0,0,0-.58-.06.64.64,0,0,0-.18.06.76.76,0,0,0-.18.09l-.15.12a1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.19,1.19,0,0,0,.33.22,1,1,0,0,0,1.09-.22,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,18,15.5a1.05,1.05,0,0,0-.29-.71A.93.93,0,0,0,17.38,14.58ZM20,10.68V7.5a3,3,0,0,0-3-3h-.78l-.77-2.32a1,1,0,0,0-.95-.68h-5a1,1,0,0,0-.95.68L7.78,4.5H7a3,3,0,0,0-3,3v3.18A3,3,0,0,0,2,13.5v6a1,1,0,0,0,1,1H4v1a1,1,0,0,0,2,0v-1H18v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,1-1v-6A3,3,0,0,0,20,10.68ZM10.22,3.5h3.56l.33,1H9.89ZM6,7.5a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1v3H6Zm14,11H4v-5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1ZM6.62,14.58a1,1,0,0,0-.33.21A1.05,1.05,0,0,0,6,15.5a1,1,0,0,0,1.38.93,1.19,1.19,0,0,0,.33-.22A1,1,0,0,0,8,15.5a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,6.62,14.58ZM13,14.5H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' - })); -}; - -UilTaxi.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTaxi; \ No newline at end of file diff --git a/icons/uil-tear.js b/icons/uil-tear.js deleted file mode 100644 index cc4551b5..00000000 --- a/icons/uil-tear.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTear = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.56,2.17a1,1,0,0,0-1.12,0c-.3.2-7.19,5-7.19,12.08a7.75,7.75,0,0,0,15.5,0C19.75,7.05,12.85,2.36,12.56,2.17ZM12,20a5.76,5.76,0,0,1-5.75-5.75c0-5,4.21-8.77,5.75-10,1.55,1.21,5.75,5,5.75,10A5.76,5.76,0,0,1,12,20Z' - })); -}; - -UilTear.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTear; \ No newline at end of file diff --git a/icons/uil-telegram-alt.js b/icons/uil-telegram-alt.js deleted file mode 100644 index 04841275..00000000 --- a/icons/uil-telegram-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTelegramAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.26465,2.42773a2.04837,2.04837,0,0,0-2.07813-.32421L2.26562,9.33887a2.043,2.043,0,0,0,.1045,3.81836l3.625,1.26074,2.0205,6.68164A.998.998,0,0,0,8.134,21.352c.00775.012.01868.02093.02692.03259a.98844.98844,0,0,0,.21143.21576c.02307.01758.04516.03406.06982.04968a.98592.98592,0,0,0,.31073.13611l.01184.001.00671.00287a1.02183,1.02183,0,0,0,.20215.02051c.00653,0,.01233-.00312.0188-.00324a.99255.99255,0,0,0,.30109-.05231c.02258-.00769.04193-.02056.06384-.02984a.9931.9931,0,0,0,.20429-.11456,250.75993,250.75993,0,0,1,.15222-.12818L12.416,18.499l4.03027,3.12207a2.02322,2.02322,0,0,0,1.24121.42676A2.05413,2.05413,0,0,0,19.69531,20.415L22.958,4.39844A2.02966,2.02966,0,0,0,22.26465,2.42773ZM9.37012,14.73633a.99357.99357,0,0,0-.27246.50586l-.30951,1.504-.78406-2.59307,4.06525-2.11695ZM17.67188,20.04l-4.7627-3.68945a1.00134,1.00134,0,0,0-1.35352.11914l-.86541.9552.30584-1.48645,7.083-7.083a.99975.99975,0,0,0-1.16894-1.59375L6.74487,12.55432,3.02051,11.19141,20.999,3.999Z' - })); -}; - -UilTelegramAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTelegramAlt; \ No newline at end of file diff --git a/icons/uil-telegram.js b/icons/uil-telegram.js deleted file mode 100644 index 78f9c0c6..00000000 --- a/icons/uil-telegram.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTelegram = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.99432,2a10,10,0,1,0,10,10A9.99917,9.99917,0,0,0,11.99432,2Zm3.17951,15.15247a.70547.70547,0,0,1-1.002.3515l-2.71467-2.10938L9.71484,17.002a.29969.29969,0,0,1-.285.03894l.334-2.98846.01069.00848.00683-.059s4.885-4.44751,5.084-4.637c.20147-.189.135-.23.135-.23.01147-.23053-.36152,0-.36152,0L8.16632,13.299l-2.69549-.918s-.414-.1485-.453-.475c-.041-.324.46649-.5.46649-.5l10.717-4.25751s.881-.39252.881.25751Z' - })); -}; - -UilTelegram.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTelegram; \ No newline at end of file diff --git a/icons/uil-telescope.js b/icons/uil-telescope.js deleted file mode 100644 index 3dafe9df..00000000 --- a/icons/uil-telescope.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTelescope = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.9,7.59l-1-3.87A3,3,0,0,0,17.19,1.6l-1.93.52a1,1,0,0,0-.71,1.23l.26,1L4.19,7.16a1,1,0,0,0-.71,1.22l.26,1-1,.26a1,1,0,0,0,.25,2,1.09,1.09,0,0,0,.26,0l1-.27.26,1a1,1,0,0,0,.46.6,1,1,0,0,0,.5.14.75.75,0,0,0,.26,0L9,12.08v.42a2.9,2.9,0,0,0,.3,1.28l-5,5a1,1,0,0,0,1.41,1.42l5-5,.28.11V21.5a1,1,0,0,0,2,0V15.32a2.52,2.52,0,0,0,.29-.12l5,5a1,1,0,1,0,1.41-1.42l-5-5A3.09,3.09,0,0,0,15,12.5v-2l1.35-.36.25,1a1,1,0,0,0,1,.74l.26,0,1.93-.52A3,3,0,0,0,21.9,7.59ZM13,12.5a1,1,0,0,1-.28.69h0v0a1,1,0,0,1-.69.28,1,1,0,0,1-.7-.29h0a1,1,0,0,1-.29-.7v-1L13,11ZM6.19,10.76,5.67,8.83l9.66-2.59.26,1,.26,1Zm13.68-1.9a1,1,0,0,1-.61.47l-1,.26-.78-2.9L17,4.76h0l-.26-1,1-.26a1,1,0,0,1,1.23.71l1,3.87A1,1,0,0,1,19.87,8.86Z' - })); -}; - -UilTelescope.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTelescope; \ No newline at end of file diff --git a/icons/uil-temperature-empty.js b/icons/uil-temperature-empty.js deleted file mode 100644 index 6da1d62a..00000000 --- a/icons/uil-temperature-empty.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperatureEmpty = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,15a2,2,0,1,0,2,2A2,2,0,0,0,12,15Zm4.5-2V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' - })); -}; - -UilTemperatureEmpty.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperatureEmpty; \ No newline at end of file diff --git a/icons/uil-temperature-half.js b/icons/uil-temperature-half.js deleted file mode 100644 index d2eade2a..00000000 --- a/icons/uil-temperature-half.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperatureHalf = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,15.28V10.5a1,1,0,0,0-2,0v4.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' - })); -}; - -UilTemperatureHalf.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperatureHalf; \ No newline at end of file diff --git a/icons/uil-temperature-minus.js b/icons/uil-temperature-minus.js deleted file mode 100644 index 76c5a412..00000000 --- a/icons/uil-temperature-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperatureMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14,5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,9.49,23,6,6,0,0,0,14,13ZM12,20.11a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6ZM10.5,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,7.5,17a2,2,0,0,0,4,0A2,2,0,0,0,10.5,15.28Zm9-12.78h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Z' - })); -}; - -UilTemperatureMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperatureMinus; \ No newline at end of file diff --git a/icons/uil-temperature-plus.js b/icons/uil-temperature-plus.js deleted file mode 100644 index 16e8cc3c..00000000 --- a/icons/uil-temperature-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperaturePlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.5,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,7.5,17a2,2,0,0,0,4,0A2,2,0,0,0,10.5,15.28Zm9-12.78H19V2a1,1,0,0,0-2,0v.5h-.5a1,1,0,0,0,0,2H17V5a1,1,0,0,0,2,0V4.5h.5a1,1,0,0,0,0-2ZM14,5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,9.49,23,6,6,0,0,0,14,13ZM12,20.11a4,4,0,0,1-6.42-2.2,4,4,0,0,1,1.1-3.76,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' - })); -}; - -UilTemperaturePlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperaturePlus; \ No newline at end of file diff --git a/icons/uil-temperature-quarter.js b/icons/uil-temperature-quarter.js deleted file mode 100644 index c7c04168..00000000 --- a/icons/uil-temperature-quarter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperatureQuarter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6ZM13,15.28V12.5a1,1,0,0,0-2,0v2.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28Z' - })); -}; - -UilTemperatureQuarter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperatureQuarter; \ No newline at end of file diff --git a/icons/uil-temperature-three-quarter.js b/icons/uil-temperature-three-quarter.js deleted file mode 100644 index b8cc43db..00000000 --- a/icons/uil-temperature-three-quarter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperatureThreeQuarter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,15.28V8.5a1,1,0,0,0-2,0v6.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' - })); -}; - -UilTemperatureThreeQuarter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperatureThreeQuarter; \ No newline at end of file diff --git a/icons/uil-temperature.js b/icons/uil-temperature.js deleted file mode 100644 index e8c5b061..00000000 --- a/icons/uil-temperature.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTemperature = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-6.42-2.2,4,4,0,0,1,1.1-3.76,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' - })); -}; - -UilTemperature.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTemperature; \ No newline at end of file diff --git a/icons/uil-tennis-ball.js b/icons/uil-tennis-ball.js deleted file mode 100644 index 18561883..00000000 --- a/icons/uil-tennis-ball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTennisBall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,4.65,18.76l.09.1a10,10,0,0,0,14.52,0l.09-.1A10,10,0,0,0,12,2ZM5.61,16.79a7.93,7.93,0,0,1,0-9.58,6,6,0,0,1,0,9.58ZM12,20a7.91,7.91,0,0,1-5-1.77A8,8,0,0,0,7,5.77a7.95,7.95,0,0,1,10,0,8,8,0,0,0,0,12.46A7.91,7.91,0,0,1,12,20Zm6.39-3.21a6,6,0,0,1,0-9.58,7.93,7.93,0,0,1,0,9.58Z' - })); -}; - -UilTennisBall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTennisBall; \ No newline at end of file diff --git a/icons/uil-text-fields.js b/icons/uil-text-fields.js deleted file mode 100644 index 8af144eb..00000000 --- a/icons/uil-text-fields.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTextFields = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,6a1,1,0,0,0-1-1H3A1,1,0,0,0,3,7H8V18a1,1,0,0,0,2,0V7h5A1,1,0,0,0,16,6Zm5,5H15a1,1,0,0,0,0,2h2v5a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2Z' - })); -}; - -UilTextFields.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTextFields; \ No newline at end of file diff --git a/icons/uil-text-size.js b/icons/uil-text-size.js deleted file mode 100644 index c4616b0f..00000000 --- a/icons/uil-text-size.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTextSize = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,11H3a1,1,0,0,0,0,2H5v5a1,1,0,0,0,2,0V13H9a1,1,0,0,0,0-2ZM21,5H9A1,1,0,0,0,9,7h5V18a1,1,0,0,0,2,0V7h5a1,1,0,0,0,0-2Z' - })); -}; - -UilTextSize.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTextSize; \ No newline at end of file diff --git a/icons/uil-text-strike-through.js b/icons/uil-text-strike-through.js deleted file mode 100644 index 9a001259..00000000 --- a/icons/uil-text-strike-through.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTextStrikeThrough = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15,13H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V15h2a1,1,0,0,0,0-2Zm2-7H7A1,1,0,0,0,7,8h4v2a1,1,0,0,0,2,0V8h4a1,1,0,0,0,0-2Z' - })); -}; - -UilTextStrikeThrough.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTextStrikeThrough; \ No newline at end of file diff --git a/icons/uil-text.js b/icons/uil-text.js deleted file mode 100644 index e715a995..00000000 --- a/icons/uil-text.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilText = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,6H7A1,1,0,0,0,7,8h4v9a1,1,0,0,0,2,0V8h4a1,1,0,0,0,0-2Z' - })); -}; - -UilText.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilText; \ No newline at end of file diff --git a/icons/uil-th-large.js b/icons/uil-th-large.js deleted file mode 100644 index 7d9636f6..00000000 --- a/icons/uil-th-large.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThLarge = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,3H4A1,1,0,0,0,3,4V20a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V4A1,1,0,0,0,20,3ZM11,19H5V13h6Zm0-8H5V5h6Zm8,8H13V13h6Zm0-8H13V5h6Z' - })); -}; - -UilThLarge.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThLarge; \ No newline at end of file diff --git a/icons/uil-th-slash.js b/icons/uil-th-slash.js deleted file mode 100644 index ee2272a5..00000000 --- a/icons/uil-th-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.71,21.29l-1-1h0l-6-6h0l-6-6h0l-6-6h0l-1-1A1,1,0,0,0,1.29,2.71l.71.7V21a1,1,0,0,0,1,1H20.59l.7.71a1,1,0,0,0,1.42,0A1,1,0,0,0,22.71,21.29ZM4,5.41,6.59,8H4ZM8,20H4V16H8Zm0-6H4V10H8Zm2-2.59L12.59,14H10ZM14,20H10V16h4Zm2,0V17.41L18.59,20ZM8.67,4H14V9a1,1,0,0,0,1,1h5v5.33a1,1,0,1,0,2,0V3a1,1,0,0,0-1-1H8.67a1,1,0,0,0,0,2ZM16,4h4V8H16Z' - })); -}; - -UilThSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThSlash; \ No newline at end of file diff --git a/icons/uil-th.js b/icons/uil-th.js deleted file mode 100644 index b3cf2431..00000000 --- a/icons/uil-th.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTh = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V13h7Zm0-9H4V4h7Zm9,9H13V13h7Zm0-9H13V4h7Z' - })); -}; - -UilTh.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTh; \ No newline at end of file diff --git a/icons/uil-thermometer.js b/icons/uil-thermometer.js deleted file mode 100644 index 09217f78..00000000 --- a/icons/uil-thermometer.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThermometer = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.29,6.29l-7,7a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l7-7a1,1,0,1,0-1.42-1.42Zm4.25-2.83a5,5,0,0,0-7.08,0L5.29,11.69a1,1,0,0,0-.29.7v5.19L2.29,20.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.42,19h5.19a1,1,0,0,0,.7-.29l8.23-8.17A5,5,0,0,0,20.54,3.46ZM19.12,9.12,11.2,17H7V12.8l7.88-7.92a3,3,0,0,1,4.24,4.24Z' - })); -}; - -UilThermometer.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThermometer; \ No newline at end of file diff --git a/icons/uil-thumbs-down.js b/icons/uil-thumbs-down.js deleted file mode 100644 index 406a8e15..00000000 --- a/icons/uil-thumbs-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThumbsDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H6.27A3,3,0,0,0,3.32,4.46l-1.27,7A3,3,0,0,0,5,15H9.56L9,16.43A4.13,4.13,0,0,0,12.89,22a1,1,0,0,0,.91-.59L16.65,15H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM15,13.79l-2.72,6.12a2.13,2.13,0,0,1-1.38-2.78l.53-1.43A2,2,0,0,0,9.56,13H5a1,1,0,0,1-.77-.36A1,1,0,0,1,4,11.82l1.27-7a1,1,0,0,1,1-.82H15ZM20,12a1,1,0,0,1-1,1H17V4h2a1,1,0,0,1,1,1Z' - })); -}; - -UilThumbsDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThumbsDown; \ No newline at end of file diff --git a/icons/uil-thumbs-up.js b/icons/uil-thumbs-up.js deleted file mode 100644 index 46a7cc1e..00000000 --- a/icons/uil-thumbs-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThumbsUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.3,10.08A3,3,0,0,0,19,9H14.44L15,7.57A4.13,4.13,0,0,0,11.11,2a1,1,0,0,0-.91.59L7.35,9H5a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17.73a3,3,0,0,0,2.95-2.46l1.27-7A3,3,0,0,0,21.3,10.08ZM7,20H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H7Zm13-7.82-1.27,7a1,1,0,0,1-1,.82H9V10.21l2.72-6.12A2.11,2.11,0,0,1,13.1,6.87L12.57,8.3A2,2,0,0,0,14.44,11H19a1,1,0,0,1,.77.36A1,1,0,0,1,20,12.18Z' - })); -}; - -UilThumbsUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThumbsUp; \ No newline at end of file diff --git a/icons/uil-thunderstorm-moon.js b/icons/uil-thunderstorm-moon.js deleted file mode 100644 index ff396370..00000000 --- a/icons/uil-thunderstorm-moon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThunderstormMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.58,16.5H10.32l.86-1.5a1,1,0,1,0-1.73-1L7.72,17a1,1,0,0,0,.86,1.5H9.85L9,20a1,1,0,0,0,1.74,1l1.73-3a1,1,0,0,0,0-1A1,1,0,0,0,11.58,16.5ZM21.7,7.57a1,1,0,0,0-.93-.26,3.2,3.2,0,0,1-.66.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2.53a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.49,3.49,0,0,0-.34,6.62,1,1,0,1,0,.72-1.86A1.5,1.5,0,0,1,5.5,13.5a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.92,3.92,0,0,1,2.18.66l0,0a4,4,0,0,1,1.57,2,1,1,0,0,0,.78.67,2.33,2.33,0,0,1,.25,4.53,1,1,0,0,0,.27,2,.84.84,0,0,0,.27,0A4.33,4.33,0,0,0,19,14.17a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.5,1,1,0,0,0,21.7,7.57Zm-4.59,2.82a2.61,2.61,0,0,1-.42,0A4.6,4.6,0,0,0,16,10a6,6,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,10.39Z' - })); -}; - -UilThunderstormMoon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThunderstormMoon; \ No newline at end of file diff --git a/icons/uil-thunderstorm-sun.js b/icons/uil-thunderstorm-sun.js deleted file mode 100644 index d291ceee..00000000 --- a/icons/uil-thunderstorm-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThunderstormSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.58,16.5H10.32l.86-1.5a1,1,0,1,0-1.73-1L7.72,17a1,1,0,0,0,.86,1.5H9.85L9,20a1,1,0,0,0,1.74,1l1.73-3a1,1,0,0,0,0-1A1,1,0,0,0,11.58,16.5ZM21,7.5h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.3V3.5a1,1,0,0,0-2,0v.8a4.25,4.25,0,0,0-1.27.52l-.56-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.49,3.49,0,0,0-.34,6.62,1,1,0,1,0,.72-1.86A1.5,1.5,0,0,1,5.5,13.5a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67,2.33,2.33,0,0,1,.25,4.53,1,1,0,0,0,.27,2,.84.84,0,0,0,.27,0,4.3,4.3,0,0,0,2.85-5.72l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9.5H21a1,1,0,0,0,0-2Zm-3.34,2.65h0a2.28,2.28,0,0,1-.6.41A4.17,4.17,0,0,0,16,10a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3Z' - })); -}; - -UilThunderstormSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThunderstormSun; \ No newline at end of file diff --git a/icons/uil-thunderstorm.js b/icons/uil-thunderstorm.js deleted file mode 100644 index aa7e184e..00000000 --- a/icons/uil-thunderstorm.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilThunderstorm = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.5,15H11.23l1.45-2.5a1,1,0,1,0-1.74-1l-2.31,4a1,1,0,0,0,0,1,1,1,0,0,0,.87.5h2.27l-1.45,2.5a1,1,0,0,0,1.74,1l2.31-4a1,1,0,0,0,0-1A1,1,0,0,0,13.5,15Zm4.92-7.79A7,7,0,0,0,5.06,9.11,4,4,0,0,0,6,17a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,15a1,1,0,0,0,0,2,5,5,0,0,0,1.42-9.79Z' - })); -}; - -UilThunderstorm.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilThunderstorm; \ No newline at end of file diff --git a/icons/uil-ticket.js b/icons/uil-ticket.js deleted file mode 100644 index 6da7225b..00000000 --- a/icons/uil-ticket.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTicket = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,9,10Zm12,1a1,1,0,0,0,1-1V6a1,1,0,0,0-1-1H3A1,1,0,0,0,2,6v4a1,1,0,0,0,1,1,1,1,0,0,1,0,2,1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V14a1,1,0,0,0-1-1,1,1,0,0,1,0-2ZM20,9.18a3,3,0,0,0,0,5.64V17H10a1,1,0,0,0-2,0H4V14.82A3,3,0,0,0,4,9.18V7H8a1,1,0,0,0,2,0H20Z' - })); -}; - -UilTicket.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTicket; \ No newline at end of file diff --git a/icons/uil-times-circle.js b/icons/uil-times-circle.js deleted file mode 100644 index cb7cf2bd..00000000 --- a/icons/uil-times-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTimesCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.71,8.29a1,1,0,0,0-1.42,0L12,10.59,9.71,8.29A1,1,0,0,0,8.29,9.71L10.59,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,12l2.3-2.29A1,1,0,0,0,15.71,8.29Zm3.36-3.36A10,10,0,1,0,4.93,19.07,10,10,0,1,0,19.07,4.93ZM17.66,17.66A8,8,0,1,1,20,12,7.95,7.95,0,0,1,17.66,17.66Z' - })); -}; - -UilTimesCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTimesCircle; \ No newline at end of file diff --git a/icons/uil-times-square.js b/icons/uil-times-square.js deleted file mode 100644 index 14822fbc..00000000 --- a/icons/uil-times-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTimesSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.71,8.29a1,1,0,0,0-1.42,0L12,10.59,9.71,8.29A1,1,0,0,0,8.29,9.71L10.59,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,12l2.3-2.29A1,1,0,0,0,15.71,8.29ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilTimesSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTimesSquare; \ No newline at end of file diff --git a/icons/uil-times.js b/icons/uil-times.js deleted file mode 100644 index 6cbf4349..00000000 --- a/icons/uil-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42L12,10.59,7.71,6.29A1,1,0,0,0,6.29,7.71L10.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTimes; \ No newline at end of file diff --git a/icons/uil-toggle-off.js b/icons/uil-toggle-off.js deleted file mode 100644 index 916ffe8c..00000000 --- a/icons/uil-toggle-off.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilToggleOff = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8,8.5A3.5,3.5,0,1,0,11.5,12,3.5,3.5,0,0,0,8,8.5Zm0,5A1.5,1.5,0,1,1,9.5,12,1.5,1.5,0,0,1,8,13.5ZM16,5H8A7,7,0,0,0,8,19h8A7,7,0,0,0,16,5Zm0,12H8A5,5,0,0,1,8,7h8a5,5,0,0,1,0,10Z' - })); -}; - -UilToggleOff.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilToggleOff; \ No newline at end of file diff --git a/icons/uil-toggle-on.js b/icons/uil-toggle-on.js deleted file mode 100644 index b2a69410..00000000 --- a/icons/uil-toggle-on.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilToggleOn = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,8.5A3.5,3.5,0,1,0,19.5,12,3.5,3.5,0,0,0,16,8.5Zm0,5A1.5,1.5,0,1,1,17.5,12,1.5,1.5,0,0,1,16,13.5ZM16,5H8A7,7,0,0,0,8,19h8A7,7,0,0,0,16,5Zm0,12H8A5,5,0,0,1,8,7h8a5,5,0,0,1,0,10Z' - })); -}; - -UilToggleOn.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilToggleOn; \ No newline at end of file diff --git a/icons/uil-toilet-paper.js b/icons/uil-toilet-paper.js deleted file mode 100644 index d65c6f74..00000000 --- a/icons/uil-toilet-paper.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilToiletPaper = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.26 20.357a7.523 7.523 0 0 1-1.76-4.905v-7.46c0-3.308-2.243-6-5-6h-9c-2.757 0-5 2.692-5 6s2.243 6 5 6h3v1.46a9.527 9.527 0 0 0 2.24 6.206 1.001 1.001 0 0 0 .76.35h9a1 1 0 0 0 .76-1.651ZM6.5 11.993c-1.654 0-3-1.795-3-4s1.346-4 3-4 3 1.794 3 4-1.346 4-3 4Zm6.479 8.014a7.58 7.58 0 0 1-1.479-4.555v-7c0-.028-.014-.052-.016-.08.007-.126.016-.251.016-.38a6.68 6.68 0 0 0-1.284-4H15.5c1.654 0 3 1.795 3 4v7.46a9.71 9.71 0 0 0 1.118 4.555ZM6.5 6.743a1.146 1.146 0 0 0-1 1.25 1.146 1.146 0 0 0 1 1.25 1.146 1.146 0 0 0 1-1.25 1.146 1.146 0 0 0-1-1.25Z' - })); -}; - -UilToiletPaper.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilToiletPaper; \ No newline at end of file diff --git a/icons/uil-top-arrow-from-top.js b/icons/uil-top-arrow-from-top.js deleted file mode 100644 index 7d4a3b5a..00000000 --- a/icons/uil-top-arrow-from-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTopArrowFromTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2ZM8.71,7.71,11,5.41V17a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71Z' - })); -}; - -UilTopArrowFromTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTopArrowFromTop; \ No newline at end of file diff --git a/icons/uil-top-arrow-to-top.js b/icons/uil-top-arrow-to-top.js deleted file mode 100644 index 55ce0287..00000000 --- a/icons/uil-top-arrow-to-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTopArrowToTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4a1,1,0,1,0,1.42,1.42L11,9.41V21a1,1,0,0,0,2,0V9.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM19,2H5A1,1,0,0,0,5,4H19a1,1,0,0,0,0-2Z' - })); -}; - -UilTopArrowToTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTopArrowToTop; \ No newline at end of file diff --git a/icons/uil-tornado.js b/icons/uil-tornado.js deleted file mode 100644 index 08b8ab1c..00000000 --- a/icons/uil-tornado.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTornado = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,21H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm1-4H6a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2ZM18,2a1,1,0,0,0-1-1H3A1,1,0,0,0,3,3H17A1,1,0,0,0,18,2Zm3,3H6A1,1,0,0,0,6,7H21a1,1,0,0,0,0-2ZM19,9H10a1,1,0,0,0,0,2h9a1,1,0,0,0,0-2Zm-5,4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' - })); -}; - -UilTornado.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTornado; \ No newline at end of file diff --git a/icons/uil-trademark-circle.js b/icons/uil-trademark-circle.js deleted file mode 100644 index 7bb49738..00000000 --- a/icons/uil-trademark-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrademarkCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,9H7a1,1,0,0,0,0,2h.5v3a1,1,0,0,0,2,0V11H10a1,1,0,0,0,0-2Zm7.38.08a1,1,0,0,0-1.09.21L15,10.59l-1.29-1.3a1,1,0,0,0-1.09-.21A1,1,0,0,0,12,10v4a1,1,0,0,0,2,0V12.41l.29.3a1,1,0,0,0,1.42,0l.29-.3V14a1,1,0,0,0,2,0V10A1,1,0,0,0,17.38,9.08ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilTrademarkCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrademarkCircle; \ No newline at end of file diff --git a/icons/uil-trademark.js b/icons/uil-trademark.js deleted file mode 100644 index e1e7d1ab..00000000 --- a/icons/uil-trademark.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrademark = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.5,7h-6a1,1,0,0,0,0,2h2v7a1,1,0,0,0,2,0V9h2a1,1,0,0,0,0-2Zm11.92.62a1,1,0,0,0-.54-.54,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L17,10.09l-2.79-2.8a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,12.5,8v8a1,1,0,0,0,2,0V10.41l1.79,1.8a1,1,0,0,0,1.42,0l1.79-1.8V16a1,1,0,0,0,2,0V8A1,1,0,0,0,21.42,7.62Z' - })); -}; - -UilTrademark.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrademark; \ No newline at end of file diff --git a/icons/uil-traffic-barrier.js b/icons/uil-traffic-barrier.js deleted file mode 100644 index 448e13a2..00000000 --- a/icons/uil-traffic-barrier.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrafficBarrier = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,5H20V4a1,1,0,0,0-2,0V5H6V4A1,1,0,0,0,4,4V5H3A1,1,0,0,0,2,6v6a1,1,0,0,0,1,1H4v7a1,1,0,0,0,2,0V13H18v7a1,1,0,0,0,2,0V13h1a1,1,0,0,0,1-1V6A1,1,0,0,0,21,5ZM4,9.52V7H6.52ZM5.34,11l4-4h3.33l-4,4Zm6.15,0,4-4h3.18l-4,4ZM20,11H17.49L20,8.49Z' - })); -}; - -UilTrafficBarrier.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrafficBarrier; \ No newline at end of file diff --git a/icons/uil-traffic-light.js b/icons/uil-traffic-light.js deleted file mode 100644 index 47fe65d8..00000000 --- a/icons/uil-traffic-light.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrafficLight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,5.5A1.5,1.5,0,1,0,13.5,7,1.5,1.5,0,0,0,12,5.5Zm10,3h-.54A6,6,0,0,0,23,4.5a1,1,0,0,0-1-1H17.82A3,3,0,0,0,15,1.5H9a3,3,0,0,0-2.82,2H2a1,1,0,0,0-1,1,6,6,0,0,0,1.54,4H2a1,1,0,0,0-1,1,6,6,0,0,0,1.54,4H2a1,1,0,0,0-1,1,6,6,0,0,0,5.16,5.93A3,3,0,0,0,9,22.5h6a3,3,0,0,0,2.84-2.07A6,6,0,0,0,23,14.5a1,1,0,0,0-1-1h-.54A6,6,0,0,0,23,9.5,1,1,0,0,0,22,8.5ZM6,18.37A4,4,0,0,1,3.13,15.5H6Zm0-5A4,4,0,0,1,3.13,10.5H6Zm0-5a4.09,4.09,0,0,1-1.83-1,4.09,4.09,0,0,1-1-1.83H6ZM16,19.5a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V4.5a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm3.83-2.17a4.09,4.09,0,0,1-1.83,1V15.5h2.87A4.09,4.09,0,0,1,19.83,17.33Zm0-5a4.09,4.09,0,0,1-1.83,1V10.5h2.87A4.09,4.09,0,0,1,19.83,12.33Zm0-5a4.09,4.09,0,0,1-1.83,1V5.5h2.87A4.09,4.09,0,0,1,19.83,7.33ZM12,15.5A1.5,1.5,0,1,0,13.5,17,1.5,1.5,0,0,0,12,15.5Zm0-5A1.5,1.5,0,1,0,13.5,12,1.5,1.5,0,0,0,12,10.5Z' - })); -}; - -UilTrafficLight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrafficLight; \ No newline at end of file diff --git a/icons/uil-transaction.js b/icons/uil-transaction.js deleted file mode 100644 index c4ba6e60..00000000 --- a/icons/uil-transaction.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTransaction = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20 2H10a3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3Zm1 10a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1Zm-3.5-4a1.49 1.49 0 0 0-1 .39 1.5 1.5 0 1 0 0 2.22 1.5 1.5 0 1 0 1-2.61ZM16 17a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-4h1a1 1 0 0 0 0-2H3v-1a1 1 0 0 1 1-1 1 1 0 0 0 0-2 3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-1a1 1 0 0 0-1-1ZM6 18h1a1 1 0 0 0 0-2H6a1 1 0 0 0 0 2Z' - })); -}; - -UilTransaction.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTransaction; \ No newline at end of file diff --git a/icons/uil-trash-alt.js b/icons/uil-trash-alt.js deleted file mode 100644 index a363a50b..00000000 --- a/icons/uil-trash-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrashAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,18a1,1,0,0,0,1-1V11a1,1,0,0,0-2,0v6A1,1,0,0,0,10,18ZM20,6H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H4A1,1,0,0,0,4,8H5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8h1a1,1,0,0,0,0-2ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm7,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17Zm-3-1a1,1,0,0,0,1-1V11a1,1,0,0,0-2,0v6A1,1,0,0,0,14,18Z' - })); -}; - -UilTrashAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrashAlt; \ No newline at end of file diff --git a/icons/uil-trash.js b/icons/uil-trash.js deleted file mode 100644 index 19dc5fea..00000000 --- a/icons/uil-trash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,6H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H4A1,1,0,0,0,4,8H5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8h1a1,1,0,0,0,0-2ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm7,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17Z' - })); -}; - -UilTrash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrash; \ No newline at end of file diff --git a/icons/uil-trees.js b/icons/uil-trees.js deleted file mode 100644 index 1282863c..00000000 --- a/icons/uil-trees.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrees = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.5,5A4.86,4.86,0,0,0,14,5.69,6,6,0,0,0,2.5,8v4a6,6,0,0,0,5,5.91V21a1,1,0,0,0,2,0V17.91a6.08,6.08,0,0,0,2.78-1.26A5,5,0,0,0,15.5,18.9V21a1,1,0,0,0,2,0V18.9a5,5,0,0,0,4-4.9V10A5,5,0,0,0,16.5,5Zm-5,5v4a5.23,5.23,0,0,0,.06.57,4,4,0,0,1-2.06,1.3V13a1,1,0,0,0-2,0v2.86A4,4,0,0,1,4.5,12V8a4,4,0,0,1,6.83-2.84,3.94,3.94,0,0,1,1.06,2A5,5,0,0,0,11.5,10Zm8,4a3,3,0,0,1-2,2.82V13a1,1,0,0,0-2,0v3.82a3,3,0,0,1-2-2.82V10a3,3,0,0,1,6,0Z' - })); -}; - -UilTrees.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrees; \ No newline at end of file diff --git a/icons/uil-triangle.js b/icons/uil-triangle.js deleted file mode 100644 index 2606fcba..00000000 --- a/icons/uil-triangle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTriangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.87,19.29l-9-15.58a1,1,0,0,0-1.74,0l-9,15.58a1,1,0,0,0,0,1,1,1,0,0,0,.87.5H21a1,1,0,0,0,.87-.5A1,1,0,0,0,21.87,19.29Zm-17.14-.5L12,6.21l7.27,12.58Z' - })); -}; - -UilTriangle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTriangle; \ No newline at end of file diff --git a/icons/uil-trophy.js b/icons/uil-trophy.js deleted file mode 100644 index bef5b15c..00000000 --- a/icons/uil-trophy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrophy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,4H18V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V4H3A1,1,0,0,0,2,5V8a4,4,0,0,0,4,4H7.54A6,6,0,0,0,11,13.91V16H10a3,3,0,0,0-3,3v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V19a3,3,0,0,0-3-3H13V13.91A6,6,0,0,0,16.46,12H18a4,4,0,0,0,4-4V5A1,1,0,0,0,21,4ZM6,10A2,2,0,0,1,4,8V6H6V8a6,6,0,0,0,.35,2Zm8,8a1,1,0,0,1,1,1v1H9V19a1,1,0,0,1,1-1ZM16,8A4,4,0,0,1,8,8V4h8Zm4,0a2,2,0,0,1-2,2h-.35A6,6,0,0,0,18,8V6h2Z' - })); -}; - -UilTrophy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrophy; \ No newline at end of file diff --git a/icons/uil-trowel.js b/icons/uil-trowel.js deleted file mode 100644 index ad447a09..00000000 --- a/icons/uil-trowel.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTrowel = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.12,2.88a3.08,3.08,0,0,0-4.24,0L14.46,5.29a3,3,0,0,0-.57,3.41l-2.15,2.15-2-2a3,3,0,0,0-5,1.17l-2.66,8a3,3,0,0,0,.72,3.07A3,3,0,0,0,5,22a2.87,2.87,0,0,0,1-.16l8-2.66a3,3,0,0,0,1.17-5l-2-2,2.15-2.15a3,3,0,0,0,3.41-.57l2.41-2.42A3,3,0,0,0,21.12,2.88ZM13.7,15.63a1,1,0,0,1-.4,1.65L5.32,20a1,1,0,0,1-1-.25,1,1,0,0,1-.25-1l2.67-8A1,1,0,0,1,7.44,10a1.07,1.07,0,0,1,.23,0,1,1,0,0,1,.7.29l2,2-.87.86a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.86-.87Zm6-9.92L17.29,8.12a1,1,0,0,1-1.7-.71,1,1,0,0,1,.29-.7l2.41-2.42a1,1,0,0,1,1.42,0A1,1,0,0,1,19.71,5.71Z' - })); -}; - -UilTrowel.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTrowel; \ No newline at end of file diff --git a/icons/uil-truck-loading.js b/icons/uil-truck-loading.js deleted file mode 100644 index f800151c..00000000 --- a/icons/uil-truck-loading.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTruckLoading = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,16H19.82A3,3,0,0,0,20,15V10a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v5a3,3,0,0,0,.18,1H7a1,1,0,0,1-1-1V5A3,3,0,0,0,3,2H2A1,1,0,0,0,2,4H3A1,1,0,0,1,4,5V15a3,3,0,0,0,2.22,2.88,3,3,0,1,0,5.6.12h3.36a3,3,0,1,0,5.64,0H22a1,1,0,0,0,0-2ZM9,20a1,1,0,1,1,1-1A1,1,0,0,1,9,20Zm2-4a1,1,0,0,1-1-1V10a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Zm7,4a1,1,0,1,1,1-1A1,1,0,0,1,18,20Z' - })); -}; - -UilTruckLoading.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTruckLoading; \ No newline at end of file diff --git a/icons/uil-truck.js b/icons/uil-truck.js deleted file mode 100644 index 5058829c..00000000 --- a/icons/uil-truck.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTruck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M1,12.5v5a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V5.5a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v2H6A3,3,0,0,0,3.6,8.7L1.2,11.9a.61.61,0,0,0-.07.14l-.06.11A1,1,0,0,0,1,12.5Zm16,6a1,1,0,1,1,1,1A1,1,0,0,1,17,18.5Zm-7-13a1,1,0,0,1,1-1h9a1,1,0,0,1,1,1v11h-.78a3,3,0,0,0-4.44,0H10Zm-2,6H4L5.2,9.9A1,1,0,0,1,6,9.5H8Zm-3,7a1,1,0,1,1,1,1A1,1,0,0,1,5,18.5Zm-2-5H8v2.78a3,3,0,0,0-4.22.22H3Z' - })); -}; - -UilTruck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTruck; \ No newline at end of file diff --git a/icons/uil-tumblr-alt.js b/icons/uil-tumblr-alt.js deleted file mode 100644 index d27b03ef..00000000 --- a/icons/uil-tumblr-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTumblrAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17.43359,20.50825l-.96191-2.85351a1.00073,1.00073,0,0,0-1.37891-.583,3.7631,3.7631,0,0,1-1.209.249.93653.93653,0,0,1-.65918-.165,1.20025,1.20025,0,0,1-.23926-.80762V12.00044H16.002a.99942.99942,0,0,0,1-1V7.09517a.99942.99942,0,0,0-1-1H13V2.00044a.99942.99942,0,0,0-1-1H9.07031a1.14806,1.14806,0,0,0-1.13769,1.04A5.09342,5.09342,0,0,1,4.65234,6.59809a.99923.99923,0,0,0-.66113.94043v3.584a.99943.99943,0,0,0,1,1H6.01562v4.53516a6.41109,6.41109,0,0,0,1.88672,4.47851A6.90463,6.90463,0,0,0,12.877,22.99946c.05371,0,.1084,0,.16309-.001,1.5459-.0254,3.61816-.64747,4.27246-1.60743A.99833.99833,0,0,0,17.43359,20.50825Zm-4.42675.49024A4.87007,4.87007,0,0,1,9.30469,19.7104a4.36971,4.36971,0,0,1-1.28907-3.05273V11.12251a.99942.99942,0,0,0-1-1H5.99121v-1.917A6.95438,6.95438,0,0,0,9.80957,3.00044H11V7.09517a.99943.99943,0,0,0,1,1h3.002v1.90527h-3.0166a.99942.99942,0,0,0-1,1V16.3647a3.07681,3.07681,0,0,0,.85645,2.23535,2.76714,2.76714,0,0,0,2.0957.7207,5.90822,5.90822,0,0,0,.94727-.11328l.4248,1.25879A5.909,5.909,0,0,1,13.00684,20.99849Z' - })); -}; - -UilTumblrAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTumblrAlt; \ No newline at end of file diff --git a/icons/uil-tumblr-square.js b/icons/uil-tumblr-square.js deleted file mode 100644 index 3cdf6e98..00000000 --- a/icons/uil-tumblr-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTumblrSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2,2V22H22V2ZM13.57,17.85a3.4,3.4,0,0,1-3.75-3.33V10.44H8.56V8.83A3.83,3.83,0,0,0,11,5.47a.09.09,0,0,1,.09-.09h1.82V8.55h2.5v1.89H12.92v3.89a1.11,1.11,0,0,0,1.2,1.23,3,3,0,0,0,1-.22l.6,1.78A3.34,3.34,0,0,1,13.57,17.85Z' - })); -}; - -UilTumblrSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTumblrSquare; \ No newline at end of file diff --git a/icons/uil-tumblr.js b/icons/uil-tumblr.js deleted file mode 100644 index 5d57f06f..00000000 --- a/icons/uil-tumblr.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTumblr = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.79,18a4.65,4.65,0,0,1-1.62.35,1.75,1.75,0,0,1-1.92-2V10.12h4v-3h-4V2H10.33a.15.15,0,0,0-.14.15A6.11,6.11,0,0,1,6.25,7.54v2.58h2v6.54c0,2.23,1.65,5.41,6,5.34,1.47,0,3.11-.64,3.47-1.17Z' - })); -}; - -UilTumblr.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTumblr; \ No newline at end of file diff --git a/icons/uil-tv-retro-slash.js b/icons/uil-tv-retro-slash.js deleted file mode 100644 index d8bb5ae0..00000000 --- a/icons/uil-tv-retro-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTvRetroSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11.62,7.92A1,1,0,0,0,12,8h6a1,1,0,0,1,1,1v5.34a1,1,0,1,0,2,0V9a3,3,0,0,0-3-3H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,11.62,7.92ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L4.83,6.24A3,3,0,0,0,3,9v8a3,3,0,0,0,3,3v1a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V20a3.07,3.07,0,0,0,.53-.06l1.76,1.77a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,18a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8h.59l10,10Z' - })); -}; - -UilTvRetroSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTvRetroSlash; \ No newline at end of file diff --git a/icons/uil-tv-retro.js b/icons/uil-tv-retro.js deleted file mode 100644 index 85d05629..00000000 --- a/icons/uil-tv-retro.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTvRetro = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,6H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L12,5.54l-1.17-2a1,1,0,1,0-1.74,1L10,6H6A3,3,0,0,0,3,9v8a3,3,0,0,0,3,3v1a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V20a3,3,0,0,0,3-3V9A3,3,0,0,0,18,6Zm1,11a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8H18a1,1,0,0,1,1,1Z' - })); -}; - -UilTvRetro.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTvRetro; \ No newline at end of file diff --git a/icons/uil-twitter-alt.js b/icons/uil-twitter-alt.js deleted file mode 100644 index 70e65afc..00000000 --- a/icons/uil-twitter-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTwitterAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.99121,3.9502a.99942.99942,0,0,0-1.51074-.85938,7.47956,7.47956,0,0,1-1.873.793,5.15234,5.15234,0,0,0-3.374-1.24219,5.23238,5.23238,0,0,0-5.22363,5.06348A11.03194,11.03194,0,0,1,4.19629,3.78125,1.01154,1.01154,0,0,0,3.33887,3.416a.99852.99852,0,0,0-.78516.5,5.2755,5.2755,0,0,0-.24219,4.76855l-.00195.00195a1.0411,1.0411,0,0,0-.49512.88868,3.04174,3.04174,0,0,0,.02637.43945,5.1854,5.1854,0,0,0,1.56836,3.3125.99813.99813,0,0,0-.06641.76953,5.20436,5.20436,0,0,0,2.36231,2.92187,7.46464,7.46464,0,0,1-3.58985.44825.99975.99975,0,0,0-.665,1.833A12.94248,12.94248,0,0,0,8.46,21.36133,12.7878,12.7878,0,0,0,20.9248,11.998,12.82166,12.82166,0,0,0,21.46,8.35156c0-.06543,0-.13281-.001-.20019A5.76963,5.76963,0,0,0,22.99121,3.9502ZM19.68457,7.16211a.995.995,0,0,0-.2334.70215c.00977.165.00879.331.00879.4873a10.82371,10.82371,0,0,1-.4541,3.08106A10.68457,10.68457,0,0,1,8.46,19.36133a10.93791,10.93791,0,0,1-2.55078-.30078,9.47951,9.47951,0,0,0,2.94238-1.56348A1.00033,1.00033,0,0,0,8.25,15.71094a3.208,3.208,0,0,1-2.21387-.93457q.22413-.04248.44532-.10547a1.00026,1.00026,0,0,0-.08008-1.94336,3.19824,3.19824,0,0,1-2.25-1.72559,5.29929,5.29929,0,0,0,.54492.0459,1.02093,1.02093,0,0,0,.9834-.69629A.9998.9998,0,0,0,5.2793,9.21484,3.19559,3.19559,0,0,1,3.85547,6.542c0-.0664.00195-.13281.00586-.19824a13.01365,13.01365,0,0,0,8.209,3.47949,1.02046,1.02046,0,0,0,.81739-.3584,1.00037,1.00037,0,0,0,.206-.86816,3.15653,3.15653,0,0,1-.08691-.72852A3.23,3.23,0,0,1,16.2334,4.6416a3.18428,3.18428,0,0,1,2.34472,1.02051A.993.993,0,0,0,19.499,5.96a9.27073,9.27073,0,0,0,1.21192-.32226A6.68126,6.68126,0,0,1,19.68457,7.16211Z' - })); -}; - -UilTwitterAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTwitterAlt; \ No newline at end of file diff --git a/icons/uil-twitter.js b/icons/uil-twitter.js deleted file mode 100644 index e73ee5c3..00000000 --- a/icons/uil-twitter.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilTwitter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,5.8a8.49,8.49,0,0,1-2.36.64,4.13,4.13,0,0,0,1.81-2.27,8.21,8.21,0,0,1-2.61,1,4.1,4.1,0,0,0-7,3.74A11.64,11.64,0,0,1,3.39,4.62a4.16,4.16,0,0,0-.55,2.07A4.09,4.09,0,0,0,4.66,10.1,4.05,4.05,0,0,1,2.8,9.59v.05a4.1,4.1,0,0,0,3.3,4A3.93,3.93,0,0,1,5,13.81a4.9,4.9,0,0,1-.77-.07,4.11,4.11,0,0,0,3.83,2.84A8.22,8.22,0,0,1,3,18.34a7.93,7.93,0,0,1-1-.06,11.57,11.57,0,0,0,6.29,1.85A11.59,11.59,0,0,0,20,8.45c0-.17,0-.35,0-.53A8.43,8.43,0,0,0,22,5.8Z' - })); -}; - -UilTwitter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilTwitter; \ No newline at end of file diff --git a/icons/uil-umbrella.js b/icons/uil-umbrella.js deleted file mode 100644 index 6cf1a458..00000000 --- a/icons/uil-umbrella.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUmbrella = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11.24s0,0,0,0a.22.22,0,0,1,0-.08l0-.19c0-.23-.06-.46-.1-.69a.75.75,0,0,1,0-.16c-.05-.25-.12-.49-.19-.73v0a8.91,8.91,0,0,0-5.86-5.87l-.08,0c-.22-.07-.45-.13-.68-.18l-.18,0a5.21,5.21,0,0,0-.55-.08l-.24,0V3a1,1,0,0,0-2,0v.06a8.7,8.7,0,0,0-1,.18,4.71,4.71,0,0,0-.62.16l-.13,0c-.25.08-.48.17-.72.26l0,0A8.93,8.93,0,0,0,3.42,9.28a.31.31,0,0,0,0,.08,6.38,6.38,0,0,0-.19.72l0,.16q-.08.36-.12.75s0,.07,0,.11,0,.06,0,.09,0,0,0,.05c0,.25,0,.5,0,.76a1,1,0,0,0,1,1h7v6a1,1,0,0,1-2,0,1,1,0,0,0-2,0,3,3,0,0,0,6,0V13h7a1,1,0,0,0,1-1C21,11.74,21,11.49,21,11.24ZM8,11H5.08s0-.07,0-.11,0-.28.08-.41,0-.13,0-.19.08-.32.13-.48l0-.08A7,7,0,0,1,9.1,5.64,16.09,16.09,0,0,0,8,11Zm2,0c.19-3.91,1.44-6,2-6s1.79,2.09,2,6Zm6,0A16.09,16.09,0,0,0,14.9,5.64a7,7,0,0,1,3.73,4.12v0a4.61,4.61,0,0,1,.15.53.83.83,0,0,0,0,.15c0,.14.06.29.08.43s0,.07,0,.11Z' - })); -}; - -UilUmbrella.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUmbrella; \ No newline at end of file diff --git a/icons/uil-unamused.js b/icons/uil-unamused.js deleted file mode 100644 index b98943b9..00000000 --- a/icons/uil-unamused.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUnamused = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.66,13.56l-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88Zm-4-3a1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0Zm7-1.41a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' - })); -}; - -UilUnamused.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUnamused; \ No newline at end of file diff --git a/icons/uil-underline.js b/icons/uil-underline.js deleted file mode 100644 index 38158247..00000000 --- a/icons/uil-underline.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUnderline = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,15.5a5,5,0,0,0,5-5v-5a1,1,0,0,0-2,0v5a3,3,0,0,1-6,0v-5a1,1,0,0,0-2,0v5A5,5,0,0,0,12,15.5Zm5,2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' - })); -}; - -UilUnderline.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUnderline; \ No newline at end of file diff --git a/icons/uil-university.js b/icons/uil-university.js deleted file mode 100644 index 006049e7..00000000 --- a/icons/uil-university.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUniversity = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10a.99974.99974,0,0,0,1-1V6a.9989.9989,0,0,0-.68359-.94824l-9-3a1.002,1.002,0,0,0-.63282,0l-9,3A.9989.9989,0,0,0,2,6V9a.99974.99974,0,0,0,1,1H4v7.18427A2.99507,2.99507,0,0,0,2,20v2a.99974.99974,0,0,0,1,1H21a.99974.99974,0,0,0,1-1V20a2.99507,2.99507,0,0,0-2-2.81573V10ZM20,21H4V20a1.001,1.001,0,0,1,1-1H19a1.001,1.001,0,0,1,1,1ZM6,17V10H8v7Zm4,0V10h4v7Zm6,0V10h2v7ZM4,8V6.7207l8-2.667,8,2.667V8Z' - })); -}; - -UilUniversity.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUniversity; \ No newline at end of file diff --git a/icons/uil-unlock-alt.js b/icons/uil-unlock-alt.js deleted file mode 100644 index c401b6cd..00000000 --- a/icons/uil-unlock-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUnlockAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V14A1,1,0,0,0,12,13Zm5-4H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilUnlockAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUnlockAlt; \ No newline at end of file diff --git a/icons/uil-unlock.js b/icons/uil-unlock.js deleted file mode 100644 index b3702b9f..00000000 --- a/icons/uil-unlock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUnlock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,9H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' - })); -}; - -UilUnlock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUnlock; \ No newline at end of file diff --git a/icons/uil-upload-alt.js b/icons/uil-upload-alt.js deleted file mode 100644 index e9102d47..00000000 --- a/icons/uil-upload-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUploadAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M9.71,6.71,11,5.41V17a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3A1,1,0,0,0,9.71,6.71ZM18,9H16a1,1,0,0,0,0,2h2a1,1,0,0,1,1,1v7a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H8A1,1,0,0,0,8,9H6a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A3,3,0,0,0,18,9Z' - })); -}; - -UilUploadAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUploadAlt; \ No newline at end of file diff --git a/icons/uil-upload.js b/icons/uil-upload.js deleted file mode 100644 index 3a0b4ed0..00000000 --- a/icons/uil-upload.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUpload = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.71,7.71,11,5.41V15a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71ZM21,12a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a1,1,0,0,0-2,0v6a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12Z' - })); -}; - -UilUpload.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUpload; \ No newline at end of file diff --git a/icons/uil-usd-circle.js b/icons/uil-usd-circle.js deleted file mode 100644 index 645b1495..00000000 --- a/icons/uil-usd-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUsdCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,9h4a1,1,0,0,0,0-2H13V6a1,1,0,0,0-2,0V7a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2H9a1,1,0,0,0,0,2h2v1a1,1,0,0,0,2,0V17a3,3,0,0,0,0-6H11a1,1,0,0,1,0-2Zm1-8A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' - })); -}; - -UilUsdCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUsdCircle; \ No newline at end of file diff --git a/icons/uil-usd-square.js b/icons/uil-usd-square.js deleted file mode 100644 index 1b756965..00000000 --- a/icons/uil-usd-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUsdSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,9h4a1,1,0,0,0,0-2H13V6a1,1,0,0,0-2,0V7a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2H9a1,1,0,0,0,0,2h2v1a1,1,0,0,0,2,0V17a3,3,0,0,0,0-6H11a1,1,0,0,1,0-2Zm8-7H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilUsdSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUsdSquare; \ No newline at end of file diff --git a/icons/uil-user-arrows.js b/icons/uil-user-arrows.js deleted file mode 100644 index b16a25d5..00000000 --- a/icons/uil-user-arrows.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserArrows = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.64 15.772a3.468 3.468 0 0 0 .86-2.272 3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 13 20a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM18 15a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 18 15ZM6.793 7.707l2 2a1 1 0 0 0 1.414-1.414L9.914 8h4.172l-.293.293a1 1 0 1 0 1.414 1.414l2-2a1.004 1.004 0 0 0 0-1.414l-2-2a1 1 0 0 0-1.414 1.414l.293.293H9.914l.293-.293a1 1 0 0 0-1.414-1.414l-2 2a1.004 1.004 0 0 0 0 1.414Zm1.847 8.065A3.468 3.468 0 0 0 9.5 13.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 1 20a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM6 15a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 6 15Z' - })); -}; - -UilUserArrows.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserArrows; \ No newline at end of file diff --git a/icons/uil-user-check.js b/icons/uil-user-check.js deleted file mode 100644 index a9388448..00000000 --- a/icons/uil-user-check.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserCheck = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.3,12.22A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5ZM21.71,9.13a1,1,0,0,0-1.42,0l-2,2-.62-.63a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l1.34,1.34a1,1,0,0,0,1.41,0l2.67-2.67A1,1,0,0,0,21.71,9.13Z' - })); -}; - -UilUserCheck.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserCheck; \ No newline at end of file diff --git a/icons/uil-user-circle.js b/icons/uil-user-circle.js deleted file mode 100644 index 03981188..00000000 --- a/icons/uil-user-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2A10,10,0,0,0,4.65,18.76h0a10,10,0,0,0,14.7,0h0A10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-5.55-2.25,6,6,0,0,1,11.1,0A8,8,0,0,1,12,20ZM10,10a2,2,0,1,1,2,2A2,2,0,0,1,10,10Zm8.91,6A8,8,0,0,0,15,12.62a4,4,0,1,0-6,0A8,8,0,0,0,5.09,16,7.92,7.92,0,0,1,4,12a8,8,0,0,1,16,0A7.92,7.92,0,0,1,18.91,16Z' - })); -}; - -UilUserCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserCircle; \ No newline at end of file diff --git a/icons/uil-user-exclamation.js b/icons/uil-user-exclamation.js deleted file mode 100644 index d9237c69..00000000 --- a/icons/uil-user-exclamation.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserExclamation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.55,12.22a4.92,4.92,0,0,0,1.7-3.72,5,5,0,0,0-10,0A4.92,4.92,0,0,0,8,12.22a8,8,0,0,0-4.7,7.28,1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,14.55,12.22Zm-3.3-.72a3,3,0,1,1,3-3A3,3,0,0,1,11.25,11.5Zm8.5-5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,19.75,6.5ZM19,11.79a1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,.9.9,0,0,0,.54-.54.84.84,0,0,0,.08-.38A1,1,0,0,0,19,11.79Z' - })); -}; - -UilUserExclamation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserExclamation; \ No newline at end of file diff --git a/icons/uil-user-location.js b/icons/uil-user-location.js deleted file mode 100644 index 0d15c0c8..00000000 --- a/icons/uil-user-location.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserLocation = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.49,10.86a3.09,3.09,0,1,0-5,0,4.67,4.67,0,0,0-1.12,1A1,1,0,1,0,10,13.12a2.62,2.62,0,0,1,2.05-1h0a2.62,2.62,0,0,1,2.05,1,1,1,0,0,0,.78.37,1,1,0,0,0,.78-1.62A4.67,4.67,0,0,0,14.49,10.86ZM12,10.13h0A1.09,1.09,0,1,1,13.09,9,1.09,1.09,0,0,1,12,10.13Zm8.46-.5A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' - })); -}; - -UilUserLocation.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserLocation; \ No newline at end of file diff --git a/icons/uil-user-md.js b/icons/uil-user-md.js deleted file mode 100644 index 87aa07e5..00000000 --- a/icons/uil-user-md.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserMd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'm15.899 13.229-.005-.002c-.063-.027-.124-.058-.188-.083A5.988 5.988 0 0 0 18 8.434a5.29 5.29 0 0 0-.045-.63.946.946 0 0 0 .038-.122l.281-2.397a3.006 3.006 0 0 0-2.442-3.302l-.79-.143a16.931 16.931 0 0 0-6.083 0l-.791.143a3.006 3.006 0 0 0-2.442 3.302l.28 2.397a.946.946 0 0 0 .039.122 5.29 5.29 0 0 0-.045.63 5.988 5.988 0 0 0 2.294 4.71c-.064.025-.125.056-.188.083l-.005.002a9.948 9.948 0 0 0-6.035 8.097 1 1 0 0 0 1.988.217 7.948 7.948 0 0 1 4.216-6.185l3.023 3.023a1 1 0 0 0 1.414 0l3.023-3.023a7.948 7.948 0 0 1 4.216 6.185 1 1 0 0 0 .992.892 1.048 1.048 0 0 0 .11-.006 1 1 0 0 0 .886-1.103 9.948 9.948 0 0 0-6.036-8.097ZM7.712 5.051a1.002 1.002 0 0 1 .814-1.1l.79-.143a14.93 14.93 0 0 1 5.368 0l.79.143a1.002 1.002 0 0 1 .814 1.1l-.178 1.514H7.89ZM12 16.261l-1.65-1.651a7.85 7.85 0 0 1 3.3 0Zm0-3.826a4.005 4.005 0 0 1-3.998-3.87h7.996A4.005 4.005 0 0 1 12 12.435Z' - })); -}; - -UilUserMd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserMd; \ No newline at end of file diff --git a/icons/uil-user-minus.js b/icons/uil-user-minus.js deleted file mode 100644 index 5219c339..00000000 --- a/icons/uil-user-minus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserMinus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10.5H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-7.7,1.72A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Z' - })); -}; - -UilUserMinus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserMinus; \ No newline at end of file diff --git a/icons/uil-user-nurse.js b/icons/uil-user-nurse.js deleted file mode 100644 index 9d84919f..00000000 --- a/icons/uil-user-nurse.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserNurse = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.174 12.916c-.018-.008-.035-.017-.053-.024-.138-.062-.274-.127-.415-.183a6 6 0 1 0-7.412 0c-.14.056-.277.121-.415.183l-.054.024a9.946 9.946 0 0 0-5.76 7.976 1 1 0 1 0 1.99.216A7.945 7.945 0 0 1 8.04 15.05l3.252 3.251a1 1 0 0 0 1.414 0l3.252-3.251a7.945 7.945 0 0 1 3.987 6.058 1 1 0 0 0 .992.892 1.048 1.048 0 0 0 .11-.006 1 1 0 0 0 .886-1.102 9.946 9.946 0 0 0-5.76-7.976ZM8.041 7.594a3.977 3.977 0 0 1 7.918 0ZM12 16.18l-1.937-1.937a7.834 7.834 0 0 1 3.874 0ZM12 12a4.003 4.003 0 0 1-3.664-2.406h7.328A4.003 4.003 0 0 1 12 12Z' - })); -}; - -UilUserNurse.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserNurse; \ No newline at end of file diff --git a/icons/uil-user-plus.js b/icons/uil-user-plus.js deleted file mode 100644 index c4a4636a..00000000 --- a/icons/uil-user-plus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserPlus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,10.5H20v-1a1,1,0,0,0-2,0v1H17a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm-7.7,1.72A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Z' - })); -}; - -UilUserPlus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserPlus; \ No newline at end of file diff --git a/icons/uil-user-square.js b/icons/uil-user-square.js deleted file mode 100644 index 3eca59a5..00000000 --- a/icons/uil-user-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.81,12.28a3.73,3.73,0,0,0,1-2.5,3.78,3.78,0,0,0-7.56,0,3.73,3.73,0,0,0,1,2.5A5.94,5.94,0,0,0,6,16.89a1,1,0,0,0,2,.22,4,4,0,0,1,7.94,0A1,1,0,0,0,17,18h.11a1,1,0,0,0,.88-1.1A5.94,5.94,0,0,0,14.81,12.28ZM12,11.56a1.78,1.78,0,1,1,1.78-1.78A1.78,1.78,0,0,1,12,11.56ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilUserSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserSquare; \ No newline at end of file diff --git a/icons/uil-user-times.js b/icons/uil-user-times.js deleted file mode 100644 index ae4fee2f..00000000 --- a/icons/uil-user-times.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUserTimes = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M13.3,12.22A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Zm10.91.5.8-.79a1,1,0,0,0-1.42-1.42l-.79.8-.79-.8a1,1,0,0,0-1.42,1.42l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.79-.8.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilUserTimes.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUserTimes; \ No newline at end of file diff --git a/icons/uil-user.js b/icons/uil-user.js deleted file mode 100644 index 70c92fe4..00000000 --- a/icons/uil-user.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUser = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.71,12.71a6,6,0,1,0-7.42,0,10,10,0,0,0-6.22,8.18,1,1,0,0,0,2,.22,8,8,0,0,1,15.9,0,1,1,0,0,0,1,.89h.11a1,1,0,0,0,.88-1.1A10,10,0,0,0,15.71,12.71ZM12,12a4,4,0,1,1,4-4A4,4,0,0,1,12,12Z' - })); -}; - -UilUser.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUser; \ No newline at end of file diff --git a/icons/uil-users-alt.js b/icons/uil-users-alt.js deleted file mode 100644 index 4922b66d..00000000 --- a/icons/uil-users-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUsersAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.3,12.22A4.92,4.92,0,0,0,14,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,1,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,12.3,12.22ZM9,11.5a3,3,0,1,1,3-3A3,3,0,0,1,9,11.5Zm9.74.32A5,5,0,0,0,15,3.5a1,1,0,0,0,0,2,3,3,0,0,1,3,3,3,3,0,0,1-1.5,2.59,1,1,0,0,0-.5.84,1,1,0,0,0,.45.86l.39.26.13.07a7,7,0,0,1,4,6.38,1,1,0,0,0,2,0A9,9,0,0,0,18.74,11.82Z' - })); -}; - -UilUsersAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUsersAlt; \ No newline at end of file diff --git a/icons/uil-utensils-alt.js b/icons/uil-utensils-alt.js deleted file mode 100644 index fda17354..00000000 --- a/icons/uil-utensils-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUtensilsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.53,14.13a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l6.18,6.18a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41Zm1.23-2.49a3,3,0,0,0,2.12-.88l2.83-2.83a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L17.46,9.35a1,1,0,0,1-1.41,0l3.54-3.54a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L14.64,7.93h0a1,1,0,0,1,0-1.41l2.82-2.83a1,1,0,1,0-1.41-1.41L13.22,5.11a3,3,0,0,0,0,4.24h0L12,10.59,10.44,9.05a4.16,4.16,0,0,0-.74-5C8.26,2.61,4.53,1,2.77,2.79S2.6,8.27,4,9.72A4.36,4.36,0,0,0,6.94,11h.14A3.88,3.88,0,0,0,9,10.46L10.57,12,2.29,20.28a1,1,0,1,0,1.42,1.41l9-9,0,0,0,0,1.92-1.92A3,3,0,0,0,16.76,11.64ZM8.43,8.44A1.93,1.93,0,0,1,7,9,2.26,2.26,0,0,1,5.46,8.3C4.38,7.22,3.62,4.77,4.19,4.2A1,1,0,0,1,4.85,4,5.87,5.87,0,0,1,8.29,5.47,2.12,2.12,0,0,1,8.43,8.44Z' - })); -}; - -UilUtensilsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUtensilsAlt; \ No newline at end of file diff --git a/icons/uil-utensils.js b/icons/uil-utensils.js deleted file mode 100644 index f3a2acce..00000000 --- a/icons/uil-utensils.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilUtensils = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2a1,1,0,0,0-1,1V8.46l-1,.67V3a1,1,0,0,0-2,0V9.13l-1-.67V3a1,1,0,0,0-2,0V9a1,1,0,0,0,.45.83L15,11.54V21a1,1,0,0,0,2,0V11.54l2.55-1.71A1,1,0,0,0,20,9V3A1,1,0,0,0,19,2ZM9,2H9A5,5,0,0,0,4,7v6a1,1,0,0,0,1,1H8v7a1,1,0,0,0,2,0V3A1,1,0,0,0,9,2ZM8,12H6V7A3,3,0,0,1,8,4.17Z' - })); -}; - -UilUtensils.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilUtensils; \ No newline at end of file diff --git a/icons/uil-vector-square-alt.js b/icons/uil-vector-square-alt.js deleted file mode 100644 index 5feb4d8e..00000000 --- a/icons/uil-vector-square-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVectorSquareAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16,7H8A1,1,0,0,0,7,8v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V8A1,1,0,0,0,16,7Zm-1,8H9V9h6Zm6,3.28V5.72A2,2,0,1,0,18.28,3H5.72A2,2,0,1,0,3,5.72V18.28A2,2,0,1,0,5.72,21H18.28A2,2,0,1,0,21,18.28Zm-2,0a1.91,1.91,0,0,0-.72.72H5.72A1.91,1.91,0,0,0,5,18.28V5.72A1.91,1.91,0,0,0,5.72,5H18.28a1.91,1.91,0,0,0,.72.72Z' - })); -}; - -UilVectorSquareAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVectorSquareAlt; \ No newline at end of file diff --git a/icons/uil-vector-square.js b/icons/uil-vector-square.js deleted file mode 100644 index 554f789f..00000000 --- a/icons/uil-vector-square.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVectorSquare = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,16.18V7.82A3,3,0,1,0,16.18,4H7.82A3,3,0,1,0,4,7.82v8.36A3,3,0,1,0,7.82,20h8.36A3,3,0,1,0,20,16.18ZM19,4a1,1,0,1,1-1,1A1,1,0,0,1,19,4ZM5,4A1,1,0,1,1,4,5,1,1,0,0,1,5,4ZM5,20a1,1,0,1,1,1-1A1,1,0,0,1,5,20Zm11.18-2H7.82A3,3,0,0,0,6,16.18V7.82A3,3,0,0,0,7.82,6h8.36A3,3,0,0,0,18,7.82v8.36A3,3,0,0,0,16.18,18ZM19,20a1,1,0,1,1,1-1A1,1,0,0,1,19,20Z' - })); -}; - -UilVectorSquare.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVectorSquare; \ No newline at end of file diff --git a/icons/uil-venus.js b/icons/uil-venus.js deleted file mode 100644 index 9ed80ef0..00000000 --- a/icons/uil-venus.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVenus = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,9a7,7,0,1,0-8,6.92V18H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2H13V15.92A7,7,0,0,0,19,9Zm-7,5a5,5,0,1,1,5-5A5,5,0,0,1,12,14Z' - })); -}; - -UilVenus.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVenus; \ No newline at end of file diff --git a/icons/uil-vertical-align-bottom.js b/icons/uil-vertical-align-bottom.js deleted file mode 100644 index 124c1309..00000000 --- a/icons/uil-vertical-align-bottom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalAlignBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,20H18V9a1,1,0,0,0-1-1H14V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-9,0H8V4h4Zm4,0H14V10h2Z' - })); -}; - -UilVerticalAlignBottom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalAlignBottom; \ No newline at end of file diff --git a/icons/uil-vertical-align-center.js b/icons/uil-vertical-align-center.js deleted file mode 100644 index e79a409c..00000000 --- a/icons/uil-vertical-align-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalAlignCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,11H18V6a1,1,0,0,0-1-1H14V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3v8H3a1,1,0,0,0,0,2H6v8a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V19h3a1,1,0,0,0,1-1V13h3a1,1,0,0,0,0-2Zm-9,9H8V4h4Zm4-3H14V7h2Z' - })); -}; - -UilVerticalAlignCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalAlignCenter; \ No newline at end of file diff --git a/icons/uil-vertical-align-top.js b/icons/uil-vertical-align-top.js deleted file mode 100644 index eb425302..00000000 --- a/icons/uil-vertical-align-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalAlignTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,3,4H6V21a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V16h3a1,1,0,0,0,1-1V4h3a1,1,0,0,0,0-2ZM12,20H8V4h4Zm4-6H14V4h2Z' - })); -}; - -UilVerticalAlignTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalAlignTop; \ No newline at end of file diff --git a/icons/uil-vertical-distribute-bottom.js b/icons/uil-vertical-distribute-bottom.js deleted file mode 100644 index c50961b2..00000000 --- a/icons/uil-vertical-distribute-bottom.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalDistributeBottom = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,18H20V13a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1v5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-3,0H6V14H18ZM3,10H21a1,1,0,0,0,0-2H19V5a1,1,0,0,0-1-1H6A1,1,0,0,0,5,5V8H3a1,1,0,0,0,0,2ZM7,6H17V8H7Z' - })); -}; - -UilVerticalDistributeBottom.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalDistributeBottom; \ No newline at end of file diff --git a/icons/uil-vertical-distribution-center.js b/icons/uil-vertical-distribution-center.js deleted file mode 100644 index ad4ee463..00000000 --- a/icons/uil-vertical-distribution-center.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalDistributionCenter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,15H20V13a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1v2H3a1,1,0,0,0,0,2H4v2a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V17h1a1,1,0,0,0,0-2Zm-3,3H6V14H18ZM3,8H5V9a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V8h2a1,1,0,0,0,0-2H19V5a1,1,0,0,0-1-1H6A1,1,0,0,0,5,5V6H3A1,1,0,0,0,3,8ZM7,6H17V8H7Z' - })); -}; - -UilVerticalDistributionCenter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalDistributionCenter; \ No newline at end of file diff --git a/icons/uil-vertical-distribution-top.js b/icons/uil-vertical-distribution-top.js deleted file mode 100644 index 29357676..00000000 --- a/icons/uil-vertical-distribution-top.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVerticalDistributionTop = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,6H4v5a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V6h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,6ZM6,6H18v4H6Zm15,8H3a1,1,0,0,0,0,2H5v3a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V16h2a1,1,0,0,0,0-2Zm-4,4H7V16H17Z' - })); -}; - -UilVerticalDistributionTop.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVerticalDistributionTop; \ No newline at end of file diff --git a/icons/uil-video-question.js b/icons/uil-video-question.js deleted file mode 100644 index 140a68f1..00000000 --- a/icons/uil-video-question.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVideoQuestion = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.21,17.29a1.04667,1.04667,0,0,0-1.41992,0,1.02673,1.02673,0,0,0-.21.32959.94223.94223,0,0,0,0,.76025,1.15384,1.15384,0,0,0,.21.33008A1,1,0,0,0,10.5,18a.99993.99993,0,0,0-.08008-.38037A1.1515,1.1515,0,0,0,10.21,17.29ZM9.5,9a3.00933,3.00933,0,0,0-2.59766,1.49951.99956.99956,0,1,0,1.73047,1.001A1.00032,1.00032,0,1,1,9.5,13a.99974.99974,0,0,0-1,1v1a1,1,0,0,0,2,0v-.18427A2.99257,2.99257,0,0,0,9.5,9ZM21.52539,6.14941a.999.999,0,0,0-.97266-.04394l-3.56408,1.782A2.9975,2.9975,0,0,0,14,5H5A3.00328,3.00328,0,0,0,2,8v6a3.00328,3.00328,0,0,0,3,3H6a1,1,0,0,0,0-2H5a1.001,1.001,0,0,1-1-1V8A1.001,1.001,0,0,1,5,7h9a1.001,1.001,0,0,1,1,1v6a1.001,1.001,0,0,1-1,1h-.5a1,1,0,0,0,0,2H14a2.9975,2.9975,0,0,0,2.98865-2.88751l3.56408,1.782A1.00038,1.00038,0,0,0,22,15V7A.99976.99976,0,0,0,21.52539,6.14941ZM20,13.38184l-3-1.5V10.11816l3-1.5Z' - })); -}; - -UilVideoQuestion.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVideoQuestion; \ No newline at end of file diff --git a/icons/uil-video-slash.js b/icons/uil-video-slash.js deleted file mode 100644 index fb12cb4f..00000000 --- a/icons/uil-video-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVideoSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M7.71,6.29h0l-4-4A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3h9a3,3,0,0,0,1.9-.69l4.39,4.4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM14,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H6.59l7.87,7.88A1,1,0,0,1,14,16Zm7.53-8.85a1,1,0,0,0-1,0L17,8.89A3,3,0,0,0,14,6H12.66a1,1,0,0,0,0,2H14a1,1,0,0,1,1,1v1.5h0a1.62,1.62,0,0,0,0,.19.65.65,0,0,0,.05.2h0s.05.06.07.1a1,1,0,0,0,.15.21s.1.06.15.1l.17.11a.85.85,0,0,0,.23,0,.7.7,0,0,0,.14,0h0a1.62,1.62,0,0,0,.19,0,.65.65,0,0,0,.2-.05h0L20,9.62v5.72a1,1,0,1,0,2,0V8A1,1,0,0,0,21.53,7.15Z' - })); -}; - -UilVideoSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVideoSlash; \ No newline at end of file diff --git a/icons/uil-video.js b/icons/uil-video.js deleted file mode 100644 index 0df489fb..00000000 --- a/icons/uil-video.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVideo = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.53,7.15a1,1,0,0,0-1,0L17,8.89A3,3,0,0,0,14,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3h9a3,3,0,0,0,3-2.89l3.56,1.78A1,1,0,0,0,21,17a1,1,0,0,0,.53-.15A1,1,0,0,0,22,16V8A1,1,0,0,0,21.53,7.15ZM15,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8h9a1,1,0,0,1,1,1Zm5-.62-3-1.5V11.12l3-1.5Z' - })); -}; - -UilVideo.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVideo; \ No newline at end of file diff --git a/icons/uil-virus-slash.js b/icons/uil-virus-slash.js deleted file mode 100644 index 56a83da5..00000000 --- a/icons/uil-virus-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVirusSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10.17 5.236a7.514 7.514 0 0 1 .83-.158v1.27a1 1 0 1 0 2 0V5.071a6.946 6.946 0 0 1 3.95 1.98v.001l.001.001a6.987 6.987 0 0 1 1.97 3.949H18a1 1 0 0 0 0 2h.922a7.65 7.65 0 0 1-.16.827 1 1 0 0 0 .718 1.217.983.983 0 0 0 .25.032 1 1 0 0 0 .968-.75 9.594 9.594 0 0 0 .236-1.326H22a1 1 0 0 0 0-2h-1.06a8.933 8.933 0 0 0-1.912-4.614l.75-.75a1 1 0 0 0-1.414-1.414l-.753.753A8.911 8.911 0 0 0 13 3.067V1.999a1 1 0 1 0-2 0v1.066a9.473 9.473 0 0 0-1.33.236 1 1 0 0 0 .5 1.936ZM14 9.002a1 1 0 1 0 1-1 1 1 0 0 0-1 1Zm4.377 7.963-.007-.011-.012-.008L2.707 1.295a1 1 0 0 0-1.414 1.414l3.679 3.679a8.932 8.932 0 0 0-1.913 4.614H2a1 1 0 0 0 0 2h1.06a8.948 8.948 0 0 0 1.911 4.615l-.75.75a1 1 0 1 0 1.415 1.413l.75-.75A8.946 8.946 0 0 0 11 20.94v1.063a1 1 0 0 0 2 0v-1.063a8.946 8.946 0 0 0 4.614-1.909l3.679 3.679a1 1 0 0 0 1.414-1.414ZM13 18.92v-1.917a1 1 0 0 0-2 0v1.917a6.986 6.986 0 0 1-3.945-1.96l-.005-.007-.007-.005a6.994 6.994 0 0 1-1.963-3.945H6a1 1 0 0 0 0-2h-.921a6.943 6.943 0 0 1 1.32-3.187L8.253 9.67a1.5 1.5 0 0 0 2.08 2.08l5.853 5.853A6.957 6.957 0 0 1 13 18.919Zm-4-4.917a1 1 0 1 0 1 1 1 1 0 0 0-1-1Z' - })); -}; - -UilVirusSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVirusSlash; \ No newline at end of file diff --git a/icons/uil-visual-studio.js b/icons/uil-visual-studio.js deleted file mode 100644 index c2ae49d1..00000000 --- a/icons/uil-visual-studio.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVisualStudio = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.85,2,9.09,9.77,4.19,5.91,2.05,7V17L4.2,18.09l4.93-3.85L16.87,22,22,19.93V4ZM4.37,14.3V9.65l2.44,2.43ZM16.7,15.59,12.05,12,16.7,8.41Z' - })); -}; - -UilVisualStudio.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVisualStudio; \ No newline at end of file diff --git a/icons/uil-vk-alt.js b/icons/uil-vk-alt.js deleted file mode 100644 index 5ed8c761..00000000 --- a/icons/uil-vk-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVkAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.74365,13.5293a5.5186,5.5186,0,0,0-.97741-.83612A7.87286,7.87286,0,0,0,17.625,8.22168a1,1,0,1,0-1.9502-.44336,5.86,5.86,0,0,1-3.0205,3.90228V8.002a.95817.95817,0,0,0-.0437-.21643,1.0238,1.0238,0,0,0-.03449-.17083.991.991,0,0,0-.16681-.24891c-.01788-.02124-.02691-.04925-.04645-.0689a1.00121,1.00121,0,0,0-.24609-.16706c-.02551-.01361-.04449-.03662-.07129-.048a1.01943,1.01943,0,0,0-.23645-.04865.94528.94528,0,0,0-.15179-.03119L11.00293,7H11a.99525.99525,0,0,0-.3501,1.92865v4.89069A11.307,11.307,0,0,1,7.64014,7.835a.99988.99988,0,1,0-1.97168.334,13.33371,13.33371,0,0,0,5.3999,8.64355.986.986,0,0,0,.12781.06445.94.94,0,0,0,.10748.0542.99383.99383,0,0,0,.35065.0708.98307.98307,0,0,0,.42382-.10186c.00995-.0047.02137-.00251.03126-.00751a.99262.99262,0,0,0,.24011-.17529c.01422-.01386.02374-.03089.03717-.04554a.98836.98836,0,0,0,.15991-.23718c.01392-.02869.02661-.05609.03778-.08624a.9878.9878,0,0,0,.06995-.34638l.00049-2.126a3.55144,3.55144,0,0,1,1.61474,1.00488l1.64795,1.79687a.99979.99979,0,1,0,1.47363-1.35156ZM15.07275,1H8.9375C2.78027,1,1,2.77832,1,8.92676V15.0625C1,21.21973,2.77783,23,8.92725,23H15.0625C21.21973,23,23,21.22168,23,15.07324V8.9375C23,2.78027,21.22217,1,15.07275,1ZM21,15.07324C21,20.11328,20.1123,21,15.0625,21H8.92725C3.88623,21,3,20.1123,3,15.0625V8.92676C3,3.88672,3.8877,3,8.9375,3h6.13525C20.11377,3,21,3.8877,21,8.9375Z' - })); -}; - -UilVkAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVkAlt; \ No newline at end of file diff --git a/icons/uil-vk.js b/icons/uil-vk.js deleted file mode 100644 index 36ca47f8..00000000 --- a/icons/uil-vk.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVk = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M15.07294,2H8.9375C3.33331,2,2,3.33331,2,8.92706V15.0625C2,20.66663,3.32294,22,8.92706,22H15.0625C20.66669,22,22,20.67706,22,15.07288V8.9375C22,3.33331,20.67706,2,15.07294,2Zm3.07287,14.27081H16.6875c-.55206,0-.71875-.44793-1.70831-1.4375-.86463-.83331-1.22919-.9375-1.44794-.9375-.30206,0-.38544.08332-.38544.5v1.3125c0,.35419-.11456.5625-1.04162.5625a5.69214,5.69214,0,0,1-4.44794-2.66668A11.62611,11.62611,0,0,1,5.35419,8.77081c0-.21875.08331-.41668.5-.41668H7.3125c.375,0,.51044.16668.65625.55212.70831,2.08331,1.91669,3.89581,2.40625,3.89581.1875,0,.27081-.08331.27081-.55206V10.10413c-.0625-.97913-.58331-1.0625-.58331-1.41663a.36008.36008,0,0,1,.375-.33337h2.29169c.3125,0,.41662.15625.41662.53125v2.89587c0,.3125.13544.41663.22919.41663.1875,0,.33331-.10413.67706-.44788a11.99877,11.99877,0,0,0,1.79169-2.97919.62818.62818,0,0,1,.63544-.41668H17.9375c.4375,0,.53125.21875.4375.53125A18.20507,18.20507,0,0,1,16.41669,12.25c-.15625.23956-.21875.36456,0,.64581.14581.21875.65625.64582,1,1.05207a6.48553,6.48553,0,0,1,1.22912,1.70837C18.77081,16.0625,18.5625,16.27081,18.14581,16.27081Z' - })); -}; - -UilVk.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVk; \ No newline at end of file diff --git a/icons/uil-voicemail-rectangle.js b/icons/uil-voicemail-rectangle.js deleted file mode 100644 index 30f15a8c..00000000 --- a/icons/uil-voicemail-rectangle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVoicemailRectangle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,4H4A3,3,0,0,0,1,7V17a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V7A3,3,0,0,0,20,4Zm1,13a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V7A1,1,0,0,1,4,6H20a1,1,0,0,1,1,1ZM16,9a3,3,0,0,0-2.82,4H10.82A3,3,0,1,0,8,15h8a3,3,0,0,0,0-6ZM8,13a1,1,0,1,1,1-1A1,1,0,0,1,8,13Zm8,0a1,1,0,1,1,1-1A1,1,0,0,1,16,13Z' - })); -}; - -UilVoicemailRectangle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVoicemailRectangle; \ No newline at end of file diff --git a/icons/uil-voicemail.js b/icons/uil-voicemail.js deleted file mode 100644 index 74bef8da..00000000 --- a/icons/uil-voicemail.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVoicemail = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18,8a4,4,0,0,0-4,4,3.91,3.91,0,0,0,.56,2H9.44A3.91,3.91,0,0,0,10,12a4,4,0,1,0-4,4H18a4,4,0,0,0,0-8ZM6,14a2,2,0,1,1,2-2A2,2,0,0,1,6,14Zm12,0a2,2,0,1,1,2-2A2,2,0,0,1,18,14Z' - })); -}; - -UilVoicemail.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVoicemail; \ No newline at end of file diff --git a/icons/uil-volleyball.js b/icons/uil-volleyball.js deleted file mode 100644 index 6d589b7b..00000000 --- a/icons/uil-volleyball.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolleyball = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20.59,6.9a0,0,0,0,1,0,0,.86.86,0,0,0-.07-.1A10,10,0,0,0,7.6,3l0,0h0l-.07,0a10,10,0,0,0-1,17.19h0l.33.2.1.07h0A9.93,9.93,0,0,0,12,22h.21A10,10,0,0,0,20.59,6.9ZM19,8.06a7.64,7.64,0,0,1,.65,1.46,10,10,0,0,0-3-.49.81.81,0,0,0-.31,0,9.78,9.78,0,0,0-3.58.73,7.85,7.85,0,0,1-1.84-1.6A8.16,8.16,0,0,1,19,8.06ZM12,4a7.86,7.86,0,0,1,4,1.07A7.77,7.77,0,0,0,15,5,10,10,0,0,0,9.8,6.47a8,8,0,0,1-.64-1.94A7.92,7.92,0,0,1,12,4ZM6,6.71A8.26,8.26,0,0,1,7.33,5.52,9.9,9.9,0,0,0,12,11.61a7.89,7.89,0,0,1-.77,2.88A8,8,0,0,1,6,7C6,6.9,6,6.81,6,6.71ZM4,12a8.1,8.1,0,0,1,.36-2.37,10,10,0,0,0,5.7,6.56,7.84,7.84,0,0,1-2.93,2.14A8,8,0,0,1,4,12Zm7.86,8a7.8,7.8,0,0,1-2.61-.49,9.94,9.94,0,0,0,3.23-3.22l0,0A10,10,0,0,0,14,11.41a7.71,7.71,0,0,1,1.78-.36A8,8,0,0,1,11.86,20Zm4.22-1.12A9.94,9.94,0,0,0,18,13a10.69,10.69,0,0,0-.18-1.88,8.34,8.34,0,0,1,2.17.7c0,.06,0,.12,0,.18A8,8,0,0,1,16.08,18.87Z' - })); -}; - -UilVolleyball.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolleyball; \ No newline at end of file diff --git a/icons/uil-volume-down.js b/icons/uil-volume-down.js deleted file mode 100644 index 5b5cb29a..00000000 --- a/icons/uil-volume-down.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolumeDown = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.83,9.17a1,1,0,1,0-1.42,1.42A2,2,0,0,1,18,12a2,2,0,0,1-.71,1.53,1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.12A4,4,0,0,0,20,12,4.06,4.06,0,0,0,18.83,9.17ZM14.43,4.1a1,1,0,0,0-1,.12L8.65,8H5A1,1,0,0,0,4,9v6a1,1,0,0,0,1,1H8.65l4.73,3.78A1,1,0,0,0,14,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,15,19V5A1,1,0,0,0,14.43,4.1ZM13,16.92l-3.38-2.7A1,1,0,0,0,9,14H6V10H9a1,1,0,0,0,.62-.22L13,7.08Z' - })); -}; - -UilVolumeDown.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolumeDown; \ No newline at end of file diff --git a/icons/uil-volume-mute.js b/icons/uil-volume-mute.js deleted file mode 100644 index 1f8a166d..00000000 --- a/icons/uil-volume-mute.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolumeMute = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM19.91,12l1.8-1.79a1,1,0,0,0-1.42-1.42l-1.79,1.8-1.79-1.8a1,1,0,0,0-1.42,1.42L17.09,12l-1.8,1.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l1.79-1.8,1.79,1.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' - })); -}; - -UilVolumeMute.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolumeMute; \ No newline at end of file diff --git a/icons/uil-volume-off.js b/icons/uil-volume-off.js deleted file mode 100644 index 5be5b6df..00000000 --- a/icons/uil-volume-off.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolumeOff = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.93,4.1a1,1,0,0,0-1,.12L11.15,8H7.5a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h3.65l4.73,3.78a1,1,0,0,0,.62.22.91.91,0,0,0,.43-.1,1,1,0,0,0,.57-.9V5A1,1,0,0,0,16.93,4.1ZM15.5,16.92l-3.38-2.7A1,1,0,0,0,11.5,14h-3V10h3a1,1,0,0,0,.62-.22l3.38-2.7Z' - })); -}; - -UilVolumeOff.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolumeOff; \ No newline at end of file diff --git a/icons/uil-volume-up.js b/icons/uil-volume-up.js deleted file mode 100644 index fbbbebbd..00000000 --- a/icons/uil-volume-up.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolumeUp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM15.14,4.09a1,1,0,1,0-.28,2,6,6,0,0,1,0,11.86,1,1,0,0,0,.14,2h.14a8,8,0,0,0,0-15.82Zm-.46,9.78a1,1,0,0,0,.32,2,1.13,1.13,0,0,0,.32-.05,4,4,0,0,0,0-7.54,1,1,0,0,0-.64,1.9,2,2,0,0,1,0,3.74Z' - })); -}; - -UilVolumeUp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolumeUp; \ No newline at end of file diff --git a/icons/uil-volume.js b/icons/uil-volume.js deleted file mode 100644 index dc1df805..00000000 --- a/icons/uil-volume.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVolume = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM19.66,6.34a1,1,0,0,0-1.42,1.42,6,6,0,0,1-.38,8.84,1,1,0,0,0,.64,1.76,1,1,0,0,0,.64-.23,8,8,0,0,0,.52-11.79ZM16.83,9.17a1,1,0,1,0-1.42,1.42A2,2,0,0,1,16,12a2,2,0,0,1-.71,1.53,1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.12A4,4,0,0,0,18,12,4.06,4.06,0,0,0,16.83,9.17Z' - })); -}; - -UilVolume.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVolume; \ No newline at end of file diff --git a/icons/uil-vuejs-alt.js b/icons/uil-vuejs-alt.js deleted file mode 100644 index de7b3800..00000000 --- a/icons/uil-vuejs-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVuejsAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22.86723,3.374a.99906.99906,0,0,0-.86622-.50195l-4.97064-.00391-.00738-.001-3.64356.001a1.00172,1.00172,0,0,0-.81787.42481l-.55859.7959L11.43851,3.291a.9983.9983,0,0,0-.81591-.42286l-3.646-.001H6.97611l-.00146.00018-.00147-.00018H6.96781l-4.97314.02734a.99989.99989,0,0,0-.85742,1.50586L11.15678,21.50586A1.00068,1.00068,0,0,0,12.01957,22h.001a1.00062,1.00062,0,0,0,.86328-.49609L22.8643,4.376A1.00212,1.00212,0,0,0,22.86723,3.374ZM10.10453,4.86816l1.085,1.53321a.99856.99856,0,0,0,.81641.42285h.00146a1.00252,1.00252,0,0,0,.8169-.42481l1.07519-1.53125,1.36267-.001-3.244,5.45373L8.7432,4.86719Zm1.9126,14.14942L3.7393,4.88477l2.66992-.01465,4.75342,7.918a1.00082,1.00082,0,0,0,.85742.48535H12.022l.001-.00012.001.00012h.002a1,1,0,0,0,.85742-.48926l4.708-7.916,2.66949.00293Z' - })); -}; - -UilVuejsAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVuejsAlt; \ No newline at end of file diff --git a/icons/uil-vuejs.js b/icons/uil-vuejs.js deleted file mode 100644 index c4246ae0..00000000 --- a/icons/uil-vuejs.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilVuejs = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.03079,2.44284V2.44278l-.15448.00006-.84552-.00006-.00012.00024-2.64319.00055L12.01321,6.39951,9.62961,2.44357l-2.64594-.001-.00024-.00037H2.2717v.00055L.83231,2.44266,12.029,21.55777,23.16769,2.443ZM12.02505,17.59293,4.322,4.44223H7.14566l4.88562,8.4071,4.8468-8.4071h2.80939Z' - })); -}; - -UilVuejs.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilVuejs; \ No newline at end of file diff --git a/icons/uil-wall.js b/icons/uil-wall.js deleted file mode 100644 index 6ef28c4e..00000000 --- a/icons/uil-wall.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWall = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,9a1,1,0,0,0,0-2H20V5h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5H6V7H3A1,1,0,0,0,3,9H4v2H3a1,1,0,0,0,0,2H6v2H3a1,1,0,0,0,0,2H4v2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2H18V17h3a1,1,0,0,0,0-2H20V13h1a1,1,0,0,0,0-2H18V9ZM8,5h4V7H8Zm8,4v2H12V9ZM6,9h4v2H6Zm6,4v2H8V13Zm-2,6H6V17h4Zm6,0H12V17h4Zm2-4H14V13h4ZM14,7V5h4V7Z' - })); -}; - -UilWall.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWall; \ No newline at end of file diff --git a/icons/uil-wallet.js b/icons/uil-wallet.js deleted file mode 100644 index 7b3d7168..00000000 --- a/icons/uil-wallet.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWallet = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,7H18V6a3,3,0,0,0-3-3H5A3,3,0,0,0,2,6H2V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V10A3,3,0,0,0,19,7ZM5,5H15a1,1,0,0,1,1,1V7H5A1,1,0,0,1,5,5ZM20,15H19a1,1,0,0,1,0-2h1Zm0-4H19a3,3,0,0,0,0,6h1v1a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.83A3,3,0,0,0,5,9H19a1,1,0,0,1,1,1Z' - })); -}; - -UilWallet.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWallet; \ No newline at end of file diff --git a/icons/uil-watch-alt.js b/icons/uil-watch-alt.js deleted file mode 100644 index 67d7ae73..00000000 --- a/icons/uil-watch-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWatchAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,8.61,16,2.84A1,1,0,0,0,15,2H9a1,1,0,0,0-1,.84l-1,5.77a6,6,0,0,0,0,6.78l1,5.77A1,1,0,0,0,9,22h6a1,1,0,0,0,1-.84l1-5.77a6,6,0,0,0,0-6.78ZM9.85,4h4.3l.44,2.59a6,6,0,0,0-5.18,0Zm4.3,16H9.85l-.44-2.59a6,6,0,0,0,5.18,0ZM12,16a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' - })); -}; - -UilWatchAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWatchAlt; \ No newline at end of file diff --git a/icons/uil-watch.js b/icons/uil-watch.js deleted file mode 100644 index ac342f17..00000000 --- a/icons/uil-watch.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWatch = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,6.78V3a1,1,0,0,0-1-1H8A1,1,0,0,0,7,3V6.78A3,3,0,0,0,6,9v6a3,3,0,0,0,1,2.22V21a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V17.22A3,3,0,0,0,18,15V9A3,3,0,0,0,17,6.78ZM9,4h6V6H9Zm6,16H9V18h6Zm1-5a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V9A1,1,0,0,1,9,8h6a1,1,0,0,1,1,1Z' - })); -}; - -UilWatch.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWatch; \ No newline at end of file diff --git a/icons/uil-water-drop-slash.js b/icons/uil-water-drop-slash.js deleted file mode 100644 index 79a27af8..00000000 --- a/icons/uil-water-drop-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWaterDropSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l4,4a12.46,12.46,0,0,0-2,6.57A7.76,7.76,0,0,0,12,22a7.64,7.64,0,0,0,5.87-2.71l2.42,2.42a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM12,20a5.76,5.76,0,0,1-5.75-5.75A10.3,10.3,0,0,1,7.72,9.14l8.74,8.73A5.67,5.67,0,0,1,12,20ZM10.85,5.24c.45-.42.85-.75,1.15-1,1.43,1.12,5.13,4.43,5.68,8.88a1,1,0,0,0,1,.88h.12a1,1,0,0,0,.87-1.11c-.78-6.43-6.85-10.55-7.1-10.72a1,1,0,0,0-1.12,0A18.73,18.73,0,0,0,9.49,3.78a1,1,0,0,0,1.36,1.46Z' - })); -}; - -UilWaterDropSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWaterDropSlash; \ No newline at end of file diff --git a/icons/uil-water-glass.js b/icons/uil-water-glass.js deleted file mode 100644 index a8d3f2ff..00000000 --- a/icons/uil-water-glass.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWaterGlass = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.08,7A1,1,0,0,0,17,7.92l-.35,4.55a2.67,2.67,0,0,1-1.2-.77,1,1,0,0,0-1.5,0,2.65,2.65,0,0,1-3.9,0,1,1,0,0,0-1.5,0,2.7,2.7,0,0,1-1.2.77L7,7.92A1,1,0,0,0,5.92,7,1,1,0,0,0,5,8.08l.86,11.15a3,3,0,0,0,3,2.77h6.3a3,3,0,0,0,3-2.77L19,8.08A1,1,0,0,0,18.08,7ZM16.14,19.08a1,1,0,0,1-1,.92H8.85a1,1,0,0,1-1-.92L7.5,14.5a4.77,4.77,0,0,0,1.8-.79,4.66,4.66,0,0,0,5.4,0,4.77,4.77,0,0,0,1.8.79ZM12,10a3.26,3.26,0,0,0,3.25-3.25c0-2.75-2.58-4.51-2.69-4.58a1,1,0,0,0-1.12,0C11.33,2.25,8.75,4,8.75,6.75A3.26,3.26,0,0,0,12,10Zm0-5.7a3.61,3.61,0,0,1,1.25,2.45,1.25,1.25,0,0,1-2.5,0A3.66,3.66,0,0,1,12,4.3Z' - })); -}; - -UilWaterGlass.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWaterGlass; \ No newline at end of file diff --git a/icons/uil-water.js b/icons/uil-water.js deleted file mode 100644 index dcf7d4eb..00000000 --- a/icons/uil-water.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWater = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M2.72,7.65a2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92,4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45,1,1,0,1,0-.56,1.92Zm18,8.08a4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45,1,1,0,1,0-.56,1.92,2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92Zm0-5a4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45A1,1,0,0,0,2,11.41a1,1,0,0,0,.68,1.24,2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92Z' - })); -}; - -UilWater.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWater; \ No newline at end of file diff --git a/icons/uil-web-grid-alt.js b/icons/uil-web-grid-alt.js deleted file mode 100644 index 9f68e61b..00000000 --- a/icons/uil-web-grid-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWebGridAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V10h7Zm9,0H13V10h7ZM20,8H4V4H20Z' - })); -}; - -UilWebGridAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWebGridAlt; \ No newline at end of file diff --git a/icons/uil-web-grid.js b/icons/uil-web-grid.js deleted file mode 100644 index c30fe6eb..00000000 --- a/icons/uil-web-grid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWebGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM14,20H4V13H14Zm0-9H4V4H14Zm6,9H16V4h4Z' - })); -}; - -UilWebGrid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWebGrid; \ No newline at end of file diff --git a/icons/uil-web-section-alt.js b/icons/uil-web-section-alt.js deleted file mode 100644 index 047edc78..00000000 --- a/icons/uil-web-section-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWebSectionAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm12,0H10V4H20Z' - })); -}; - -UilWebSectionAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWebSectionAlt; \ No newline at end of file diff --git a/icons/uil-web-section.js b/icons/uil-web-section.js deleted file mode 100644 index 574203a3..00000000 --- a/icons/uil-web-section.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWebSection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM14,20H4V4H14Zm6,0H16V4h4Z' - })); -}; - -UilWebSection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWebSection; \ No newline at end of file diff --git a/icons/uil-webcam.js b/icons/uil-webcam.js deleted file mode 100644 index 7246ed6e..00000000 --- a/icons/uil-webcam.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWebcam = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,13a3,3,0,1,0-3-3A3,3,0,0,0,12,13Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,12,9Zm9.59,9.16A10,10,0,0,0,19,13.89a8,8,0,1,0-14,0,9.9,9.9,0,0,0-2.6,4.27,3,3,0,0,0,.47,2.63A3,3,0,0,0,5.3,22H18.7a3,3,0,0,0,2.42-1.21A3,3,0,0,0,21.59,18.16ZM12,4a6,6,0,1,1-6,6A6,6,0,0,1,12,4Zm7.52,15.59a1,1,0,0,1-.82.41H5.3a1,1,0,0,1-.82-.41,1,1,0,0,1-.15-.87A7.85,7.85,0,0,1,6.21,15.5a8,8,0,0,0,11.58,0,7.85,7.85,0,0,1,1.88,3.22A1,1,0,0,1,19.52,19.59Z' - })); -}; - -UilWebcam.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWebcam; \ No newline at end of file diff --git a/icons/uil-weight.js b/icons/uil-weight.js deleted file mode 100644 index 50516e89..00000000 --- a/icons/uil-weight.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWeight = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,4H17.55A3.08,3.08,0,0,0,17,3a3,3,0,0,0-2.25-1H9.27A3,3,0,0,0,7,3a3.08,3.08,0,0,0-.57,1H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM8.52,4.34A1,1,0,0,1,9.27,4h5.46a1,1,0,0,1,.75.34,1,1,0,0,1,.25.78l-.5,4a1,1,0,0,1-1,.88H12.59l1.14-2.4a1,1,0,0,0-1.8-.86L10.37,10h-.6a1,1,0,0,1-1-.88l-.5-4A1,1,0,0,1,8.52,4.34ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6H6.37l.42,3.37a3,3,0,0,0,3,2.63h4.46a3,3,0,0,0,3-2.63L17.63,6H19a1,1,0,0,1,1,1Zm-6-3H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' - })); -}; - -UilWeight.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWeight; \ No newline at end of file diff --git a/icons/uil-whatsapp-alt.js b/icons/uil-whatsapp-alt.js deleted file mode 100644 index 651616cc..00000000 --- a/icons/uil-whatsapp-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWhatsappAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22,6.55a12.61,12.61,0,0,0-.1-1.29,4.29,4.29,0,0,0-.37-1.08,3.66,3.66,0,0,0-.71-1,3.91,3.91,0,0,0-1-.71,4.28,4.28,0,0,0-1.08-.36A10.21,10.21,0,0,0,17.46,2H6.55a12.61,12.61,0,0,0-1.29.1,4.29,4.29,0,0,0-1.08.37,3.66,3.66,0,0,0-1,.71,3.91,3.91,0,0,0-.71,1,4.28,4.28,0,0,0-.36,1.08A10.21,10.21,0,0,0,2,6.54C2,6.73,2,7,2,7.08v9.84c0,.11,0,.35,0,.53a12.61,12.61,0,0,0,.1,1.29,4.29,4.29,0,0,0,.37,1.08,3.66,3.66,0,0,0,.71,1,3.91,3.91,0,0,0,1,.71,4.28,4.28,0,0,0,1.08.36A10.21,10.21,0,0,0,6.54,22H17.45a12.61,12.61,0,0,0,1.29-.1,4.29,4.29,0,0,0,1.08-.37,3.66,3.66,0,0,0,1-.71,3.91,3.91,0,0,0,.71-1,4.28,4.28,0,0,0,.36-1.08A10.21,10.21,0,0,0,22,17.46c0-.19,0-.43,0-.54V7.08C22,7,22,6.73,22,6.55ZM12.23,19h0A7.12,7.12,0,0,1,8.8,18.1L5,19.1l1-3.72a7.11,7.11,0,0,1-1-3.58A7.18,7.18,0,1,1,12.23,19Zm0-13.13A6,6,0,0,0,7.18,15l.14.23-.6,2.19L9,16.8l.22.13a6,6,0,0,0,3,.83h0a6,6,0,0,0,6-6,6,6,0,0,0-6-6Zm3.5,8.52a1.82,1.82,0,0,1-1.21.85,2.33,2.33,0,0,1-1.12-.07,8.9,8.9,0,0,1-1-.38,8,8,0,0,1-3.06-2.7,3.48,3.48,0,0,1-.73-1.85,2,2,0,0,1,.63-1.5.65.65,0,0,1,.48-.22H10c.11,0,.26,0,.4.31s.51,1.24.56,1.33a.34.34,0,0,1,0,.31,1.14,1.14,0,0,1-.18.3c-.09.11-.19.24-.27.32s-.18.18-.08.36a5.56,5.56,0,0,0,1,1.24,5,5,0,0,0,1.44.89c.18.09.29.08.39,0s.45-.52.57-.7.24-.15.4-.09,1.05.49,1.23.58.29.13.34.21A1.56,1.56,0,0,1,15.73,14.36Z' - })); -}; - -UilWhatsappAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWhatsappAlt; \ No newline at end of file diff --git a/icons/uil-whatsapp.js b/icons/uil-whatsapp.js deleted file mode 100644 index 48a0916f..00000000 --- a/icons/uil-whatsapp.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWhatsapp = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.2-.6.3-.6.6-.9 1.3-.9 2.1.1.9.4 1.8 1 2.6 1.1 1.6 2.5 2.9 4.2 3.7.5.2.9.4 1.4.5.5.2 1 .2 1.6.1.7-.1 1.3-.6 1.7-1.2.2-.4.2-.8.1-1.2l-.4-.2m2.5-9.1C15.2 1 8.9 1 5 4.9c-3.2 3.2-3.8 8.1-1.6 12L2 22l5.3-1.4c1.5.8 3.1 1.2 4.7 1.2 5.5 0 9.9-4.4 9.9-9.9.1-2.6-1-5.1-2.8-7m-2.7 14c-1.3.8-2.8 1.3-4.4 1.3-1.5 0-2.9-.4-4.2-1.1l-.3-.2-3.1.8.8-3-.2-.3c-2.4-4-1.2-9 2.7-11.5S16.6 3.7 19 7.5c2.4 3.9 1.3 9-2.6 11.4' - })); -}; - -UilWhatsapp.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWhatsapp; \ No newline at end of file diff --git a/icons/uil-wheel-barrow.js b/icons/uil-wheel-barrow.js deleted file mode 100644 index 3b25d97a..00000000 --- a/icons/uil-wheel-barrow.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWheelBarrow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H19l-.09,0-.21,0-.16.07-.17.11a.8.8,0,0,0-.13.13.86.86,0,0,0-.1.16.71.71,0,0,0-.08.18l0,.09L17.38,6H16.24L13.12,2.89a3.06,3.06,0,0,0-4.24,0L5.76,6H3a1,1,0,0,0-.87.5,1,1,0,0,0,0,1l4,7h0L5.36,16A2.2,2.2,0,0,0,5,16a3,3,0,1,0,3,3,3,3,0,0,0-.85-2.08l1-2,1.38-.14,3.94,5.91A2.93,2.93,0,0,0,16,22a3.18,3.18,0,0,0,1.13-.21A3,3,0,0,0,19,18.49L18,13l1.79-9H21a1,1,0,0,0,0-2ZM5,20a1,1,0,1,1,1-1A1,1,0,0,1,5,20ZM10.3,4.29a1,1,0,0,1,1.4,0L13.41,6H8.59ZM7.55,12.94,4.72,8H17l-.82,4.08Zm8.81,7a1,1,0,0,1-1.2-.38l-3.34-5,4.37-.43L17,18.82A1,1,0,0,1,16.36,19.93Z' - })); -}; - -UilWheelBarrow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWheelBarrow; \ No newline at end of file diff --git a/icons/uil-wheelchair-alt.js b/icons/uil-wheelchair-alt.js deleted file mode 100644 index a2452ac8..00000000 --- a/icons/uil-wheelchair-alt.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWheelchairAlt = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M20,16.18V16a3,3,0,0,0-2-2.82V7h1a1,1,0,0,0,0-2H7A3,3,0,0,0,4,2H3A1,1,0,0,0,3,4H4A1,1,0,0,1,5,5v7.42A5,5,0,1,0,12,17a4.94,4.94,0,0,0-.42-2H17a1,1,0,0,1,1,1v.18a3,3,0,1,0,2,0ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Zm9-7H10a4.93,4.93,0,0,0-3-1V11h9Zm0-4H7V7h9Zm3,11a1,1,0,1,1,1-1A1,1,0,0,1,19,20ZM7,16a1,1,0,1,0,1,1A1,1,0,0,0,7,16Z' - })); -}; - -UilWheelchairAlt.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWheelchairAlt; \ No newline at end of file diff --git a/icons/uil-wheelchair.js b/icons/uil-wheelchair.js deleted file mode 100644 index 2fc96d9e..00000000 --- a/icons/uil-wheelchair.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWheelchair = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,6.5a2,2,0,1,0-2-2A2,2,0,0,0,12,6.5Zm7.5,14h-1v-5a1,1,0,0,0-1-1h-5v-2h5a1,1,0,0,0,0-2h-5v-2a1,1,0,0,0-2,0v7a1,1,0,0,0,1,1h5v5a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2Zm-6.8-1.6a4,4,0,0,1-7.2-2.4,4,4,0,0,1,2.4-3.66A1,1,0,1,0,7.1,11a6,6,0,1,0,7.2,9.1,1,1,0,0,0-1.6-1.2Z' - })); -}; - -UilWheelchair.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWheelchair; \ No newline at end of file diff --git a/icons/uil-wifi-router.js b/icons/uil-wifi-router.js deleted file mode 100644 index 97917887..00000000 --- a/icons/uil-wifi-router.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWifiRouter = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8.9,17a1,1,0,1,0,1,1A1,1,0,0,0,8.9,17Zm-3,0a1,1,0,1,0,1,1A1,1,0,0,0,5.9,17Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,11.9,17ZM15,8.5a1,1,0,0,1,1.73,0,1,1,0,0,0,1.36.37A1,1,0,0,0,18.5,7.5a3,3,0,0,0-5.2,0A1,1,0,0,0,15,8.5ZM22,5.5a7,7,0,0,0-12.12,0,1,1,0,0,0,.37,1.37A1,1,0,0,0,10.7,7a1,1,0,0,0,.87-.5,5,5,0,0,1,8.66,0,1,1,0,0,0,1.37.37A1,1,0,0,0,22,5.5ZM17.9,14h-1V11a1,1,0,1,0-2,0v3H4.9a3,3,0,0,0-3,3v2a3,3,0,0,0,3,3h13a3,3,0,0,0,3-3V17A3,3,0,0,0,17.9,14Zm1,5a1,1,0,0,1-1,1H4.9a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h13a1,1,0,0,1,1,1Z' - })); -}; - -UilWifiRouter.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWifiRouter; \ No newline at end of file diff --git a/icons/uil-wifi-slash.js b/icons/uil-wifi-slash.js deleted file mode 100644 index 7bde140d..00000000 --- a/icons/uil-wifi-slash.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWifiSlash = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M6.92,5.51h0L3.71,2.29A1,1,0,0,0,2.29,3.71L4.56,6A15.21,15.21,0,0,0,1.4,8.39a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.7-.29A13.07,13.07,0,0,1,6.05,7.46L7.54,9a10.78,10.78,0,0,0-3.32,2.27,1,1,0,1,0,1.42,1.4,8.8,8.8,0,0,1,3.45-2.12l1.62,1.61a7.07,7.07,0,0,0-3.66,1.94,1,1,0,1,0,1.42,1.4A5,5,0,0,1,12,14a4.13,4.13,0,0,1,.63.05l7.66,7.66a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,16a3,3,0,1,0,3,3A3,3,0,0,0,12,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,20ZM22.61,8.39A15,15,0,0,0,10.29,4.1a1,1,0,1,0,.22,2A13.07,13.07,0,0,1,21.2,9.81a1,1,0,0,0,1.41-1.42Zm-4.25,4.24a1,1,0,0,0,1.42-1.4,10.75,10.75,0,0,0-4.84-2.82,1,1,0,1,0-.52,1.92A8.94,8.94,0,0,1,18.36,12.63Z' - })); -}; - -UilWifiSlash.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWifiSlash; \ No newline at end of file diff --git a/icons/uil-wifi.js b/icons/uil-wifi.js deleted file mode 100644 index be4dcd72..00000000 --- a/icons/uil-wifi.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWifi = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,15a3,3,0,1,0,3,3A3,3,0,0,0,12,15Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,19Zm0-8a7.06,7.06,0,0,0-4.95,2.05,1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0,5,5,0,0,1,7.08,0,1,1,0,0,0,.7.3A1,1,0,0,0,17,13.05,7.06,7.06,0,0,0,12,11Zm0-4a11.08,11.08,0,0,0-7.78,3.22,1,1,0,0,0,1.42,1.42,9,9,0,0,1,12.72,0,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42A11.08,11.08,0,0,0,12,7Zm10.61.39a15,15,0,0,0-21.22,0A1,1,0,0,0,2.81,8.81a13,13,0,0,1,18.38,0,1,1,0,0,0,1.42,0A1,1,0,0,0,22.61,7.39Z' - })); -}; - -UilWifi.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWifi; \ No newline at end of file diff --git a/icons/uil-wind-moon.js b/icons/uil-wind-moon.js deleted file mode 100644 index 2ee771c8..00000000 --- a/icons/uil-wind-moon.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindMoon = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,19H7a1,1,0,0,0,0,2h5a1.01348,1.01348,0,0,1,1,1,1,1,0,0,0,2,0A3.00328,3.00328,0,0,0,12,19ZM14,9a1,1,0,1,0-1-1A1,1,0,0,0,14,9Zm4,0h2a3.00328,3.00328,0,0,0,3-3,1,1,0,0,0-2,0,1.01348,1.01348,0,0,1-1,1H18a1,1,0,0,0,0,2Zm2,6H17.83868a8.04287,8.04287,0,0,0,1.14667-2.9502,1.00038,1.00038,0,0,0-1.30566-1.11718,5.96932,5.96932,0,0,1-1.91992.31738A6.06179,6.06179,0,0,1,9.7002,5.2002a7.15542,7.15542,0,0,1,.09765-1.04883A.99925.99925,0,0,0,8.49023,3.05273,8.03194,8.03194,0,0,0,4.26587,15H3a1,1,0,0,0,0,2H8a1,1,0,0,0,0-2H6.83051a6.028,6.028,0,0,1,.8814-9.36035A8.06544,8.06544,0,0,0,15.75977,13.25a7.87832,7.87832,0,0,0,.78906-.03906A6.02734,6.02734,0,0,1,15.27728,15H12a1,1,0,0,0,0,2h8a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM2.62012,19.08008a1.14718,1.14718,0,0,0-.33008.21A1.02776,1.02776,0,0,0,2,20a.98979.98979,0,0,0,1.37988.91992A1.16044,1.16044,0,0,0,3.71,20.71.99349.99349,0,0,0,4,20a1.05232,1.05232,0,0,0-.29-.71A1.00157,1.00157,0,0,0,2.62012,19.08008Z' - })); -}; - -UilWindMoon.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindMoon; \ No newline at end of file diff --git a/icons/uil-wind-sun.js b/icons/uil-wind-sun.js deleted file mode 100644 index fc4a979a..00000000 --- a/icons/uil-wind-sun.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindSun = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M11,4.5a.99943.99943,0,0,0,1-1v-1a1,1,0,0,0-2,0v1A.99943.99943,0,0,0,11,4.5Zm-7,7a.99943.99943,0,0,0-1-1H2a1,1,0,0,0,0,2H3A.99943.99943,0,0,0,4,11.5Zm.63574,4.9502-.707.707a.99989.99989,0,1,0,1.41406,1.41406l.707-.707A.99989.99989,0,1,0,4.63574,16.4502Zm0-9.9004A.99989.99989,0,0,0,6.0498,5.13574l-.707-.707A.99989.99989,0,0,0,3.92871,5.84277Zm12.02149.293a.99672.99672,0,0,0,.707-.293l.707-.707a.99989.99989,0,1,0-1.41406-1.41406l-.707.707a1,1,0,0,0,.707,1.707ZM13,12a.99943.99943,0,0,0,1,1h5a3.00328,3.00328,0,0,0,3-3,1,1,0,0,0-2,0,1.01348,1.01348,0,0,1-1,1H14A.99943.99943,0,0,0,13,12Zm7,3H15a1,1,0,0,0,0,2h5a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM9,19a1,1,0,1,0,1,1A1,1,0,0,0,9,19Zm6,0H13a1,1,0,0,0,0,2h2a1.01348,1.01348,0,0,1,1,1,1,1,0,0,0,2,0A3.00328,3.00328,0,0,0,15,19Zm-4-4a3.5,3.5,0,0,1,0-7,3.41539,3.41539,0,0,1,2.1875.77441,1.00008,1.00008,0,1,0,1.26562-1.54882A5.39339,5.39339,0,0,0,11,6a5.5,5.5,0,0,0,0,11,1,1,0,0,0,0-2Z' - })); -}; - -UilWindSun.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindSun; \ No newline at end of file diff --git a/icons/uil-wind.js b/icons/uil-wind.js deleted file mode 100644 index fd60757f..00000000 --- a/icons/uil-wind.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWind = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.5,9a1,1,0,1,0-1-1A1,1,0,0,0,3.5,9Zm4,0h7a3,3,0,0,0,0-6,3.06,3.06,0,0,0-1.5.4,1,1,0,0,0-.37,1.37A1,1,0,0,0,14,5.13,1.09,1.09,0,0,1,14.5,5a1,1,0,0,1,0,2h-7a1,1,0,0,0,0,2Zm-4,4h7a1,1,0,0,0,0-2h-7a1,1,0,0,0,0,2Zm17-4a1,1,0,1,0-1-1A1,1,0,0,0,20.5,9Zm-2,2h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm-6,4h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,0,2,1.09,1.09,0,0,1-.5-.13,1,1,0,1,0-1,1.73,3.06,3.06,0,0,0,1.5.4,3,3,0,0,0,0-6Zm-8,0h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' - })); -}; - -UilWind.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWind; \ No newline at end of file diff --git a/icons/uil-window-grid.js b/icons/uil-window-grid.js deleted file mode 100644 index 6aff99a5..00000000 --- a/icons/uil-window-grid.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindowGrid = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm12,0H10V13H20Zm0-9H10V4H20Z' - })); -}; - -UilWindowGrid.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindowGrid; \ No newline at end of file diff --git a/icons/uil-window-maximize.js b/icons/uil-window-maximize.js deleted file mode 100644 index 803d5541..00000000 --- a/icons/uil-window-maximize.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindowMaximize = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V10H20ZM20,8H4V4H20Z' - })); -}; - -UilWindowMaximize.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindowMaximize; \ No newline at end of file diff --git a/icons/uil-window-restore.js b/icons/uil-window-restore.js deleted file mode 100644 index a8621174..00000000 --- a/icons/uil-window-restore.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindowRestore = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M19,2H9A3,3,0,0,0,6,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H15a3,3,0,0,0,3-3V18h1a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM16,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H16Zm0-9H4V9A1,1,0,0,1,5,8H15a1,1,0,0,1,1,1Zm4,5a1,1,0,0,1-1,1H18V9a3,3,0,0,0-.18-1H20Zm0-9H8V5A1,1,0,0,1,9,4H19a1,1,0,0,1,1,1Z' - })); -}; - -UilWindowRestore.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindowRestore; \ No newline at end of file diff --git a/icons/uil-window-section.js b/icons/uil-window-section.js deleted file mode 100644 index 56206e1f..00000000 --- a/icons/uil-window-section.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindowSection = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V10H8Zm6,0H10V10h4Zm6,0H16V10h4ZM20,8H4V4H20Z' - })); -}; - -UilWindowSection.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindowSection; \ No newline at end of file diff --git a/icons/uil-window.js b/icons/uil-window.js deleted file mode 100644 index bcbb4638..00000000 --- a/icons/uil-window.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindow = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M10,5a1,1,0,1,0,1,1A1,1,0,0,0,10,5ZM6,5A1,1,0,1,0,7,6,1,1,0,0,0,6,5Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,14,5Zm6-4H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1Zm1,19a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11H21ZM21,9H3V4A1,1,0,0,1,4,3H20a1,1,0,0,1,1,1Z' - })); -}; - -UilWindow.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindow; \ No newline at end of file diff --git a/icons/uil-windows.js b/icons/uil-windows.js deleted file mode 100644 index 0f1668b2..00000000 --- a/icons/uil-windows.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindows = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M22 2 11.2 3.6v8l10.8-.1V2zM10.2 12.5 2 12.4v6.8l8.1 1.1.1-7.8zM2 4.8v6.8h8.1V3.7L2 4.8zm9.1 7.7v7.9L22 22v-9.4l-10.9-.1z' - })); -}; - -UilWindows.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindows; \ No newline at end of file diff --git a/icons/uil-windsock.js b/icons/uil-windsock.js deleted file mode 100644 index d2679035..00000000 --- a/icons/uil-windsock.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindsock = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.08,5,10,4.33h0L7,4.08V3A1,1,0,0,0,5,3V21a1,1,0,0,0,2,0V13.92l3-.25h0L18.08,13A1,1,0,0,0,19,12V6A1,1,0,0,0,18.08,5ZM9,11.75l-2,.16V6.09l2,.16Zm4-.34-2,.17V6.42l2,.17Zm4-.33-2,.17V6.75l2,.17Z' - })); -}; - -UilWindsock.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindsock; \ No newline at end of file diff --git a/icons/uil-windy.js b/icons/uil-windy.js deleted file mode 100644 index b2762332..00000000 --- a/icons/uil-windy.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWindy = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M17,15a1.73,1.73,0,0,1-.86-.23,3.11,3.11,0,0,0-3.27,0,1.73,1.73,0,0,1-1.73,0,3.11,3.11,0,0,0-3.27,0A1.74,1.74,0,0,1,7,15a1,1,0,0,0,0,2,3.72,3.72,0,0,0,1.9-.52,1.13,1.13,0,0,1,1.2,0,3.75,3.75,0,0,0,3.8,0,1.13,1.13,0,0,1,1.2,0A3.72,3.72,0,0,0,17,17a1,1,0,0,0,0-2Zm0,4a1.73,1.73,0,0,1-.86-.23,3.11,3.11,0,0,0-3.27,0,1.73,1.73,0,0,1-1.73,0,3.11,3.11,0,0,0-3.27,0A1.74,1.74,0,0,1,7,19a1,1,0,0,0,0,2,3.72,3.72,0,0,0,1.9-.52,1.13,1.13,0,0,1,1.2,0,3.75,3.75,0,0,0,3.8,0,1.13,1.13,0,0,1,1.2,0A3.72,3.72,0,0,0,17,21a1,1,0,0,0,0-2ZM18.42,7.21A7,7,0,0,0,5.06,9.11,4,4,0,0,0,2,13a4,4,0,0,0,1.34,3,1,1,0,0,0,.66.25,1,1,0,0,0,.75-.35,1,1,0,0,0-.09-1.41A1.93,1.93,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,20,12a2.93,2.93,0,0,1-.74,2,1,1,0,1,0,1.48,1.33A4.91,4.91,0,0,0,22,12,5,5,0,0,0,18.42,7.21Z' - })); -}; - -UilWindy.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWindy; \ No newline at end of file diff --git a/icons/uil-wordpress-simple.js b/icons/uil-wordpress-simple.js deleted file mode 100644 index 504317d2..00000000 --- a/icons/uil-wordpress-simple.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWordpressSimple = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,2a10.00009,10.00009,0,1,0,10,9.99976A10.01117,10.01117,0,0,0,12,2ZM3.00928,11.99976a8.95547,8.95547,0,0,1,.77844-3.659L8.07654,20.09131A8.99123,8.99123,0,0,1,3.00928,11.99976ZM12,20.99121a8.98726,8.98726,0,0,1-2.54-.36633l2.69788-7.83869,2.7633,7.57135a.84386.84386,0,0,0,.06446.12391A8.97138,8.97138,0,0,1,12,20.99121ZM13.239,7.78436c.54126-.02844,1.02906-.08539,1.02906-.08539a.37165.37165,0,0,0-.05738-.741s-1.4563.11432-2.39648.11432c-.8833,0-2.3678-.11432-2.3678-.11432a.37165.37165,0,0,0-.057.741s.4585.05695.943.08539l1.40075,3.838-1.968,5.90087L6.49133,7.78436C7.033,7.75592,7.52026,7.699,7.52026,7.699a.37166.37166,0,0,0-.05749-.741s-1.45593.11432-2.39612.11432c-.1687,0-.36768-.00415-.57861-.01093A8.98815,8.98815,0,0,1,18.07117,5.36957c-.0387-.00238-.07654-.0072-.11634-.0072A1.55669,1.55669,0,0,0,16.445,6.958a4.21016,4.21016,0,0,0,.88317,2.1087,4.73577,4.73577,0,0,1,.74122,2.47955,10.88314,10.88314,0,0,1-.68409,2.9065l-.897,2.99634ZM16.52,19.771l2.74609-7.9397A8.489,8.489,0,0,0,19.94983,8.611a6.9105,6.9105,0,0,0-.06043-.92456A8.99224,8.99224,0,0,1,16.52,19.771Z' - })); -}; - -UilWordpressSimple.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWordpressSimple; \ No newline at end of file diff --git a/icons/uil-wordpress.js b/icons/uil-wordpress.js deleted file mode 100644 index f9db746f..00000000 --- a/icons/uil-wordpress.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWordpress = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3.66675,11.99976c-0.00055,3.1933,1.82367,6.10608,4.69678,7.49969L4.38818,8.60846C3.91162,9.67548,3.66583,10.83112,3.66675,11.99976z M12.14648,12.7287l-2.50073,7.2652c1.67889,0.49438,3.47076,0.44788,5.1217-0.13293c-0.02319-0.0365-0.04315-0.07489-0.05969-0.11487L12.14648,12.7287z M17.62573,11.57953c-0.01117-0.815-0.24902-1.61078-0.68701-2.29816c-0.44788-0.56354-0.7312-1.23999-0.8186-1.95453c-0.0202-0.79413,0.60535-1.45526,1.39941-1.47894c0.03699,0,0.07202,0.00446,0.10791,0.00671C14.23444,2.74658,8.96436,2.97766,5.85638,6.37061C5.55566,6.69885,5.2818,7.05066,5.03735,7.42267C5.23291,7.42889,5.41724,7.4328,5.57361,7.4328c0.87146,0,2.22107-0.10602,2.22107-0.10602C7.98462,7.3158,8.14752,7.46088,8.15851,7.65082C8.16919,7.83551,8.03204,7.99567,7.8479,8.01355c0,0-0.45166,0.05286-0.95361,0.07916l3.03442,9.02649l1.82397-5.4693l-1.29834-3.55713c-0.44897-0.02631-0.87402-0.07916-0.87402-0.07916c-0.18933-0.01831-0.328-0.18665-0.30975-0.37598c0.01782-0.18427,0.17804-0.32147,0.36279-0.31079c0,0,1.37585,0.10602,2.19458,0.10602c0.87146,0,2.22131-0.10602,2.22131-0.10602c0.18988-0.01111,0.35291,0.13385,0.36401,0.32373c0.0108,0.18494-0.12653,0.34534-0.31091,0.36304c0,0-0.45203,0.05286-0.95361,0.07916l3.01147,8.95776l0.85962-2.72406C17.35553,13.44556,17.55969,12.51996,17.62573,11.57953z M19.36877,8.85889c-0.01447,1.02673-0.2298,2.04077-0.63391,2.98474l-2.54517,7.35889c3.90363-2.27075,5.28845-7.23743,3.12299-11.20044C19.35059,8.28607,19.36932,8.57233,19.36877,8.85889z M12,2.00012c-5.52283,0-10,4.47717-10,10s4.47717,10,10,10s10-4.47717,10-10S17.52283,2.00012,12,2.00012z M15.65869,20.66162c-2.92645,1.23846-6.28082,0.91241-8.91394-0.86652c-1.51147-1.02045-2.69464-2.45721-3.40637-4.13629c-1.23877-2.92645-0.9126-6.28094,0.8667-8.91394c1.02026-1.5116,2.45703-2.69489,4.13623-3.40631c2.92645-1.23846,6.28082-0.91241,8.91394,0.86652c1.51147,1.02045,2.69464,2.45721,3.40637,4.13629c1.23877,2.92645,0.9126,6.28094-0.8667,8.91394C18.77466,18.76691,17.33789,19.9502,15.65869,20.66162z' - })); -}; - -UilWordpress.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWordpress; \ No newline at end of file diff --git a/icons/uil-wrap-text.js b/icons/uil-wrap-text.js deleted file mode 100644 index 533777e2..00000000 --- a/icons/uil-wrap-text.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWrapText = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm6,8H3a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9.5-5H3a1,1,0,0,0,0,2H18.5a1.5,1.5,0,0,1,0,3H15.41l.3-.29a1,1,0,0,0-1.42-1.42l-2,2a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29H18.5a3.5,3.5,0,0,0,0-7Z' - })); -}; - -UilWrapText.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWrapText; \ No newline at end of file diff --git a/icons/uil-wrench.js b/icons/uil-wrench.js deleted file mode 100644 index fff89104..00000000 --- a/icons/uil-wrench.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilWrench = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M21.71,15.58l-4.52-4.51a6.85,6.85,0,0,0,.14-1.4A7.67,7.67,0,0,0,6.42,2.72a1,1,0,0,0-.57.74,1,1,0,0,0,.28.88l4.35,4.34-1.8,1.8L4.34,6.13a1,1,0,0,0-.88-.27,1,1,0,0,0-.74.56,7.67,7.67,0,0,0,7,10.91,6.85,6.85,0,0,0,1.4-.14l4.51,4.52a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4.9-4.9a1,1,0,0,0-.95-.26,5.88,5.88,0,0,1-1.48.2A5.67,5.67,0,0,1,4,9.67a6,6,0,0,1,.08-1L8,12.6a1,1,0,0,0,1.42,0L12.6,9.39A1,1,0,0,0,12.6,8L8.71,4.08a6.12,6.12,0,0,1,1-.08,5.67,5.67,0,0,1,5.66,5.67,5.88,5.88,0,0,1-.2,1.48,1,1,0,0,0,.26.95l4.9,4.9a1,1,0,0,0,1.42-1.42Z' - })); -}; - -UilWrench.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilWrench; \ No newline at end of file diff --git a/icons/uil-x-add.js b/icons/uil-x-add.js deleted file mode 100644 index d6f19d42..00000000 --- a/icons/uil-x-add.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilXAdd = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M14.71 7.29a1 1 0 0 0-1.42 0L11 9.59l-2.29-2.3a1 1 0 1 0-1.42 1.42L9.59 11l-2.3 2.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l2.29-2.3 2.29 2.3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42L12.41 11l2.3-2.29a1 1 0 0 0 0-1.42ZM7 18a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3 1 1 0 0 0 0-2 5 5 0 0 0-5 5v8a5 5 0 0 0 5 5 1 1 0 0 0 0-2ZM18 7v6a1 1 0 0 0 2 0V7a5 5 0 0 0-5-5 1 1 0 0 0 0 2 3 3 0 0 1 3 3Zm3 11h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Z' - })); -}; - -UilXAdd.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilXAdd; \ No newline at end of file diff --git a/icons/uil-x.js b/icons/uil-x.js deleted file mode 100644 index cede3326..00000000 --- a/icons/uil-x.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilX = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M8 19a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3 1 1 0 0 0 0-2 5 5 0 0 0-5 5v8a5 5 0 0 0 5 5 1 1 0 0 0 0-2Zm7.71-3.29a1 1 0 0 0 0-1.42L13.41 12l2.3-2.29a1 1 0 0 0-1.42-1.42L12 10.59l-2.29-2.3a1 1 0 0 0-1.42 1.42l2.3 2.29-2.3 2.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l2.29-2.3 2.29 2.3a1 1 0 0 0 1.42 0ZM16 3a1 1 0 0 0 0 2 3 3 0 0 1 3 3v8a3 3 0 0 1-3 3 1 1 0 0 0 0 2 5 5 0 0 0 5-5V8a5 5 0 0 0-5-5Z' - })); -}; - -UilX.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilX; \ No newline at end of file diff --git a/icons/uil-yen-circle.js b/icons/uil-yen-circle.js deleted file mode 100644 index df82ff84..00000000 --- a/icons/uil-yen-circle.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilYenCircle = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21ZM14.83,6.45,12,10.7,9.17,6.45a1,1,0,0,0-1.39-.28A1,1,0,0,0,7.5,7.55l2.11,3.17H9a1,1,0,0,0,0,2H11l.05.08v.92H9a1,1,0,0,0,0,2h2V18a1,1,0,0,0,2,0V15.72h2a1,1,0,0,0,0-2H13V12.8l.05-.08H15a1,1,0,0,0,0-2h-.61L16.5,7.55a1,1,0,0,0-.28-1.38A1,1,0,0,0,14.83,6.45Z' - })); -}; - -UilYenCircle.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilYenCircle; \ No newline at end of file diff --git a/icons/uil-yen.js b/icons/uil-yen.js deleted file mode 100644 index 68194ea3..00000000 --- a/icons/uil-yen.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilYen = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M18.55,2.17a1,1,0,0,0-1.38.28L12,10.2,6.83,2.45a1,1,0,0,0-1.66,1.1l5,7.45H7a1,1,0,0,0,0,2h4v2H7a1,1,0,0,0,0,2h4v4a1,1,0,0,0,2,0V17h4a1,1,0,0,0,0-2H13V13h4a1,1,0,0,0,0-2H13.87l5-7.45A1,1,0,0,0,18.55,2.17Z' - })); -}; - -UilYen.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilYen; \ No newline at end of file diff --git a/icons/uil-yin-yang.js b/icons/uil-yin-yang.js deleted file mode 100644 index e87460f7..00000000 --- a/icons/uil-yin-yang.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilYinYang = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M12,15.5a1,1,0,1,0,1,1A1,1,0,0,0,12,15.5ZM12,2a5.54514,5.54514,0,0,0-.56165.0285A9.99347,9.99347,0,0,0,12,22a5.54514,5.54514,0,0,0,.56165-.0285A9.99347,9.99347,0,0,0,12,2Zm0,18A7.98889,7.98889,0,0,1,6.70935,6.01538,5.48381,5.48381,0,0,0,12,13a3.5,3.5,0,0,1,0,7Zm5.29065-2.01538A5.48381,5.48381,0,0,0,12,11a3.5,3.5,0,0,1,0-7,7.98889,7.98889,0,0,1,5.29065,13.98462ZM12,6.5a1,1,0,1,0,1,1A1,1,0,0,0,12,6.5Z' - })); -}; - -UilYinYang.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilYinYang; \ No newline at end of file diff --git a/icons/uil-youtube.js b/icons/uil-youtube.js deleted file mode 100644 index d527ae12..00000000 --- a/icons/uil-youtube.js +++ /dev/null @@ -1,22 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -const UilYoutube = ({ color = 'currentColor', size = '24', ...otherProps }) => { - return React.createElement('svg', { - xmlns: 'http://www.w3.org/2000/svg', - width: size, - height: size, - viewBox: '0 0 24 24', - fill: color, - ...otherProps - }, React.createElement('path', { - d: 'M23,9.71a8.5,8.5,0,0,0-.91-4.13,2.92,2.92,0,0,0-1.72-1A78.36,78.36,0,0,0,12,4.27a78.45,78.45,0,0,0-8.34.3,2.87,2.87,0,0,0-1.46.74c-.9.83-1,2.25-1.1,3.45a48.29,48.29,0,0,0,0,6.48,9.55,9.55,0,0,0,.3,2,3.14,3.14,0,0,0,.71,1.36,2.86,2.86,0,0,0,1.49.78,45.18,45.18,0,0,0,6.5.33c3.5.05,6.57,0,10.2-.28a2.88,2.88,0,0,0,1.53-.78,2.49,2.49,0,0,0,.61-1,10.58,10.58,0,0,0,.52-3.4C23,13.69,23,10.31,23,9.71ZM9.74,14.85V8.66l5.92,3.11C14,12.69,11.81,13.73,9.74,14.85Z' - })); -}; - -UilYoutube.propTypes = { - color: PropTypes.string, - size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]), -}; - -export default UilYoutube; \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 36976fd2..25472f87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,29 +8,442 @@ "name": "@iconscout/react-unicons", "version": "2.2.3", "license": "IconScout Simple License", - "dependencies": { - "react": ">=15.0.0 <17.0.0" - }, "devDependencies": { "@iconscout/unicons": "^4.2.0", + "@types/react": "^16.14.62", "cheerio": "^1.0.0", - "fs-plus": "^3.1.1", - "uppercamelcase": "^3.0.0", - "webpack": "^5.96.1", - "webpack-cli": "^5.1.4" + "fs-extra": "^11.3.0", + "tsup": "^8.3.6", + "typescript": "^5.7.3", + "uppercamelcase": "^3.0.0" }, "peerDependencies": { - "react": ">=15.0.0 <17.0.0" + "react": ">=16.0.0" } }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "node_modules/@esbuild/aix-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", + "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", + "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", + "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", + "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", + "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", + "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", + "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", + "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", + "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", + "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", + "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", + "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", + "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", + "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", + "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", + "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", + "cpu": [ + "s390x" + ], "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10.0.0" + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", + "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", + "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", + "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", + "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", + "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", + "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", + "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", + "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", + "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" } }, "node_modules/@gar/promisify": { @@ -64,6 +477,78 @@ "uuid": "^3.3.2" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "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" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", @@ -99,17 +584,6 @@ "node": ">=6.0.0" } }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" - } - }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", @@ -174,290 +648,332 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@tootallnate/once": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", - "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "license": "MIT", + "optional": true, "engines": { - "node": ">= 10" + "node": ">=14" } }, - "node_modules/@types/eslint": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", - "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.1.tgz", + "integrity": "sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.1.tgz", + "integrity": "sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "22.10.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.1.tgz", - "integrity": "sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.1.tgz", + "integrity": "sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "undici-types": "~6.20.0" - } - }, - "node_modules/@types/q": { - "version": "1.5.8", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", - "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.1.tgz", + "integrity": "sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.1.tgz", + "integrity": "sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/helper-numbers": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.1.tgz", + "integrity": "sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.1.tgz", + "integrity": "sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.1.tgz", + "integrity": "sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.1.tgz", + "integrity": "sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.13.2", - "@webassemblyjs/helper-api-error": "1.13.2", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.1.tgz", + "integrity": "sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.1.tgz", + "integrity": "sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/wasm-gen": "1.14.1" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.1.tgz", + "integrity": "sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==", + "cpu": [ + "ppc64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.1.tgz", + "integrity": "sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==", + "cpu": [ + "riscv64" + ], "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.1.tgz", + "integrity": "sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==", + "cpu": [ + "s390x" + ], "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.1.tgz", + "integrity": "sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/helper-wasm-section": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-opt": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1", - "@webassemblyjs/wast-printer": "1.14.1" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.1.tgz", + "integrity": "sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.1.tgz", + "integrity": "sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.1.tgz", + "integrity": "sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==", + "cpu": [ + "ia32" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-api-error": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.1.tgz", + "integrity": "sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@xtuc/long": "4.2.2" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@webpack-cli/configtest": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", - "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", "dev": true, "license": "MIT", "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" + "node": ">= 10" } }, - "node_modules/@webpack-cli/info": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", - "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } + "license": "MIT" }, - "node_modules/@webpack-cli/serve": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", - "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } + "license": "MIT" }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", "dev": true, - "license": "BSD-3-Clause" + "license": "MIT" }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "node_modules/@types/react": { + "version": "16.14.62", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.62.tgz", + "integrity": "sha512-BWf7hqninZav6nerxXj+NeZT/mTpDeG6Lk2zREHAy63CrnXoOGPGtNqTFYFN/sqpSaREDP5otVV88axIXmKfGA==", "dev": true, - "license": "Apache-2.0" + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "^0.16", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", + "dev": true, + "license": "MIT" }, "node_modules/abbrev": { "version": "1.1.1", @@ -466,19 +982,6 @@ "dev": true, "license": "ISC" }, - "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", @@ -537,33 +1040,6 @@ "node": ">=8" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "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" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -587,6 +1063,13 @@ "node": ">=4" } }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, "node_modules/aproba": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", @@ -792,46 +1275,6 @@ "concat-map": "0.0.1" } }, - "node_modules/browserslist": { - "version": "4.24.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", - "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001669", - "electron-to-chromium": "^1.5.41", - "node-releases": "^2.0.18", - "update-browserslist-db": "^1.1.1" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true, - "license": "MIT" - }, "node_modules/buffer-indexof-polyfill": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", @@ -864,6 +1307,32 @@ "node": ">=8.12.0" } }, + "node_modules/bundle-require": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-5.1.0.tgz", + "integrity": "sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "load-tsconfig": "^0.2.3" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "esbuild": ">=0.18" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/cacache": { "version": "16.1.3", "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", @@ -1031,27 +1500,6 @@ "node": ">=4" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001686", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001686.tgz", - "integrity": "sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, "node_modules/chainsaw": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", @@ -1124,6 +1572,22 @@ "url": "https://github.com/sponsors/fb55" } }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/chownr": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", @@ -1134,16 +1598,6 @@ "node": ">=10" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0" - } - }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -1154,21 +1608,6 @@ "node": ">=6" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/coa": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", @@ -1211,13 +1650,6 @@ "color-support": "bin.js" } }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true, - "license": "MIT" - }, "node_modules/colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", @@ -1255,6 +1687,16 @@ "dev": true, "license": "MIT" }, + "node_modules/consola": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.0.tgz", + "integrity": "sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, "node_modules/console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", @@ -1369,6 +1811,13 @@ "node": ">=0.10.0" } }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, "node_modules/data-view-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", @@ -1595,12 +2044,12 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/electron-to-chromium": { - "version": "1.5.68", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz", - "integrity": "sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==", + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true, - "license": "ISC" + "license": "MIT" }, "node_modules/emoji-regex": { "version": "8.0.0", @@ -1634,20 +2083,6 @@ "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" } }, - "node_modules/enhanced-resolve": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", - "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -1671,19 +2106,6 @@ "node": ">=6" } }, - "node_modules/envinfo": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", - "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", - "dev": true, - "license": "MIT", - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/err-code": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", @@ -1782,13 +2204,6 @@ "node": ">= 0.4" } }, - "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true, - "license": "MIT" - }, "node_modules/es-object-atoms": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", @@ -1835,95 +2250,69 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/esbuild": { + "version": "0.24.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", + "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", "dev": true, + "hasInstallScript": true, "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "license": "BSD-2-Clause", "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=4" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.24.2", + "@esbuild/android-arm": "0.24.2", + "@esbuild/android-arm64": "0.24.2", + "@esbuild/android-x64": "0.24.2", + "@esbuild/darwin-arm64": "0.24.2", + "@esbuild/darwin-x64": "0.24.2", + "@esbuild/freebsd-arm64": "0.24.2", + "@esbuild/freebsd-x64": "0.24.2", + "@esbuild/linux-arm": "0.24.2", + "@esbuild/linux-arm64": "0.24.2", + "@esbuild/linux-ia32": "0.24.2", + "@esbuild/linux-loong64": "0.24.2", + "@esbuild/linux-mips64el": "0.24.2", + "@esbuild/linux-ppc64": "0.24.2", + "@esbuild/linux-riscv64": "0.24.2", + "@esbuild/linux-s390x": "0.24.2", + "@esbuild/linux-x64": "0.24.2", + "@esbuild/netbsd-arm64": "0.24.2", + "@esbuild/netbsd-x64": "0.24.2", + "@esbuild/openbsd-arm64": "0.24.2", + "@esbuild/openbsd-x64": "0.24.2", + "@esbuild/sunos-x64": "0.24.2", + "@esbuild/win32-arm64": "0.24.2", + "@esbuild/win32-ia32": "0.24.2", + "@esbuild/win32-x64": "0.24.2" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "engines": { - "node": ">=4.0" + "node": ">=0.8.0" } }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, "engines": { - "node": ">=0.8.x" + "node": ">=4" } }, "node_modules/exponential-backoff": { @@ -1933,28 +2322,19 @@ "dev": true, "license": "Apache-2.0" }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "node_modules/fdir": { + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz", + "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 4.9.1" + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } } }, "node_modules/file-uri-to-path": { @@ -1964,30 +2344,6 @@ "dev": true, "license": "MIT" }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "dev": true, - "license": "BSD-3-Clause", - "bin": { - "flat": "cli.js" - } - }, "node_modules/follow-redirects": { "version": "1.15.9", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", @@ -2039,6 +2395,36 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/form-data": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", @@ -2054,6 +2440,21 @@ "node": ">= 6" } }, + "node_modules/fs-extra": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -2107,6 +2508,21 @@ "dev": true, "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/fstream": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", @@ -2257,13 +2673,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true, - "license": "BSD-2-Clause" - }, "node_modules/globalthis": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", @@ -2517,26 +2926,6 @@ "node": ">=0.10.0" } }, - "node_modules/import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", - "dev": true, - "license": "MIT", - "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", @@ -2605,16 +2994,6 @@ "node": ">= 0.4" } }, - "node_modules/interpret": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", - "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/ip-address": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", @@ -2715,22 +3094,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", - "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-data-view": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", @@ -2871,19 +3234,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-regex": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.0.tgz", @@ -3053,62 +3403,38 @@ "dev": true, "license": "ISC" }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", "dev": true, "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/js-yaml": { "version": "3.14.1", @@ -3131,30 +3457,39 @@ "dev": true, "license": "MIT" }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" } }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, "node_modules/listenercount": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", @@ -3162,27 +3497,14 @@ "dev": true, "license": "ISC" }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/load-tsconfig": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.5.tgz", + "integrity": "sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==", "dev": true, "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, "node_modules/lodash": { @@ -3192,11 +3514,19 @@ "dev": true, "license": "MIT" }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true, + "license": "MIT" + }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "license": "MIT", + "peer": true, "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, @@ -3249,13 +3579,6 @@ "dev": true, "license": "MPL-2.0" }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", @@ -3419,6 +3742,18 @@ "dev": true, "license": "MIT" }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "node_modules/nan": { "version": "2.22.0", "resolved": "https://registry.npmjs.org/nan/-/nan-2.22.0.tgz", @@ -3467,13 +3802,6 @@ "node": ">= 0.6" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true, - "license": "MIT" - }, "node_modules/node-gyp": { "version": "9.4.1", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.1.tgz", @@ -3517,13 +3845,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/node-releases": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", - "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", - "dev": true, - "license": "MIT" - }, "node_modules/nopt": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz", @@ -3688,35 +4009,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/p-map": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", @@ -3733,15 +4025,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } + "license": "BlueOak-1.0.0" }, "node_modules/parse-svg-path": { "version": "0.1.2", @@ -3790,16 +4079,6 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", @@ -3820,12 +4099,39 @@ "node": ">=8" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, - "license": "MIT" + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/path-scurry/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } }, "node_modules/picocolors": { "version": "1.1.1", @@ -3834,17 +4140,27 @@ "dev": true, "license": "ISC" }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", "dev": true, "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 6" } }, "node_modules/possible-typed-array-names": { @@ -3857,6 +4173,49 @@ "node": ">= 0.4" } }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -3890,6 +4249,7 @@ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "license": "MIT", + "peer": true, "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", @@ -3925,21 +4285,12 @@ "teleport": ">=0.2.0" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, "node_modules/react": { "version": "16.14.0", "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", "license": "MIT", + "peer": true, "dependencies": { "loose-envify": "^1.1.0", "object-assign": "^4.1.1", @@ -3953,7 +4304,8 @@ "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/readable-stream": { "version": "3.6.2", @@ -3970,17 +4322,18 @@ "node": ">= 6" } }, - "node_modules/rechoir": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", - "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "node_modules/readdirp": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.1.tgz", + "integrity": "sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==", "dev": true, "license": "MIT", - "dependencies": { - "resolve": "^1.20.0" - }, "engines": { - "node": ">= 10.13.0" + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, "node_modules/reflect.getprototypeof": { @@ -4024,37 +4377,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", @@ -4089,6 +4411,45 @@ "rimraf": "bin.js" } }, + "node_modules/rollup": { + "version": "4.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.1.tgz", + "integrity": "sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.32.1", + "@rollup/rollup-android-arm64": "4.32.1", + "@rollup/rollup-darwin-arm64": "4.32.1", + "@rollup/rollup-darwin-x64": "4.32.1", + "@rollup/rollup-freebsd-arm64": "4.32.1", + "@rollup/rollup-freebsd-x64": "4.32.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.32.1", + "@rollup/rollup-linux-arm-musleabihf": "4.32.1", + "@rollup/rollup-linux-arm64-gnu": "4.32.1", + "@rollup/rollup-linux-arm64-musl": "4.32.1", + "@rollup/rollup-linux-loongarch64-gnu": "4.32.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.32.1", + "@rollup/rollup-linux-riscv64-gnu": "4.32.1", + "@rollup/rollup-linux-s390x-gnu": "4.32.1", + "@rollup/rollup-linux-x64-gnu": "4.32.1", + "@rollup/rollup-linux-x64-musl": "4.32.1", + "@rollup/rollup-win32-arm64-msvc": "4.32.1", + "@rollup/rollup-win32-ia32-msvc": "4.32.1", + "@rollup/rollup-win32-x64-msvc": "4.32.1", + "fsevents": "~2.3.2" + } + }, "node_modules/safe-array-concat": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", @@ -4168,25 +4529,6 @@ "dev": true, "license": "MIT" }, - "node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", @@ -4200,16 +4542,6 @@ "node": ">=10" } }, - "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" - } - }, "node_modules/serialize-svg-path": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/serialize-svg-path/-/serialize-svg-path-0.1.0.tgz", @@ -4265,19 +4597,6 @@ "dev": true, "license": "MIT" }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -4396,27 +4715,6 @@ "node": ">=0.10.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -4470,6 +4768,22 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", @@ -4535,30 +4849,121 @@ "node": ">=8" } }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", "dev": true, "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, "engines": { - "node": ">= 0.4" + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/sucrase/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sucrase/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, "node_modules/svgo": { @@ -4858,16 +5263,6 @@ "parse5": "^6.0.1" } }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/tar": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", @@ -4891,88 +5286,181 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, - "license": "ISC", + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz", + "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==", + "dev": true, + "license": "MIT/X11", "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/terser": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.36.0.tgz", - "integrity": "sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==", + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, + "license": "MIT", "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" + "tree-kill": "cli.js" } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/tsup": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/tsup/-/tsup-8.3.6.tgz", + "integrity": "sha512-XkVtlDV/58S9Ye0JxUUTcrQk4S+EqlOHKzg6Roa62rdjL1nGWNUstG0xgI4vanHdfIpjP448J8vlN0oK6XOJ5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "bundle-require": "^5.0.0", + "cac": "^6.7.14", + "chokidar": "^4.0.1", + "consola": "^3.2.3", + "debug": "^4.3.7", + "esbuild": "^0.24.0", + "joycon": "^3.1.1", + "picocolors": "^1.1.1", + "postcss-load-config": "^6.0.1", + "resolve-from": "^5.0.0", + "rollup": "^4.24.0", + "source-map": "0.8.0-beta.0", + "sucrase": "^3.35.0", + "tinyexec": "^0.3.1", + "tinyglobby": "^0.2.9", + "tree-kill": "^1.2.2" }, - "engines": { - "node": ">= 10.13.0" + "bin": { + "tsup": "dist/cli-default.js", + "tsup-node": "dist/cli-node.js" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": ">=18" }, "peerDependencies": { - "webpack": "^5.1.0" + "@microsoft/api-extractor": "^7.36.0", + "@swc/core": "^1", + "postcss": "^8.4.12", + "typescript": ">=4.5.0" }, "peerDependenciesMeta": { + "@microsoft/api-extractor": { + "optional": true + }, "@swc/core": { "optional": true }, - "esbuild": { + "postcss": { "optional": true }, - "uglify-js": { + "typescript": { "optional": true } } }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/traverse": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", - "integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==", + "node_modules/tsup/node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dev": true, - "license": "MIT/X11", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, "engines": { - "node": "*" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "node_modules/tsup/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", "dev": true, - "license": "0BSD" + "license": "BSD-3-Clause", + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } }, "node_modules/ttf2woff2": { "version": "5.0.0", @@ -5072,6 +5560,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/typescript": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", + "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, "node_modules/unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", @@ -5114,13 +5616,6 @@ "node": ">=18.17" } }, - "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", - "dev": true, - "license": "MIT" - }, "node_modules/unique-filename": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", @@ -5147,6 +5642,16 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/unquote": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", @@ -5213,37 +5718,6 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/update-browserslist-db": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", - "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.2.0", - "picocolors": "^1.1.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, "node_modules/uppercamelcase": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/uppercamelcase/-/uppercamelcase-3.0.0.tgz", @@ -5257,16 +5731,6 @@ "node": ">=4" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -5301,147 +5765,12 @@ "uuid": "bin/uuid" } }, - "node_modules/watchpack": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", - "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack": { - "version": "5.96.1", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz", - "integrity": "sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.7", - "@types/estree": "^1.0.6", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.14.0", - "browserslist": "^4.24.0", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.17.1", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.11", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-cli": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", - "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.1.1", - "@webpack-cli/info": "^2.0.2", - "@webpack-cli/serve": "^2.0.5", - "colorette": "^2.0.14", - "commander": "^10.0.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true - }, - "webpack-bundle-analyzer": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - } - } - }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - } - }, - "node_modules/webpack-merge": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", - "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", - "dev": true, - "license": "MIT", - "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.13.0" - } + "license": "BSD-2-Clause" }, "node_modules/whatwg-encoding": { "version": "3.1.1", @@ -5466,6 +5795,18 @@ "node": ">=18" } }, + "node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -5579,13 +5920,146 @@ "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/wildcard": { + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", - "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true, "license": "MIT" }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/package.json b/package.json index 36e92427..d2b4482f 100644 --- a/package.json +++ b/package.json @@ -2,21 +2,36 @@ "name": "@iconscout/react-unicons", "version": "2.2.3", "description": "4,500+ vector icons as easy to use React Components", - "main": "./lib/cjs/index.js", - "module": "./index.js", + "main": "dist/index.js", + "module": "dist/index.mjs", + "types": "dist/index.d.ts", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./icons/*": { + "types": "./dist/icons/*.d.ts", + "import": "./dist/icons/*.mjs", + "require": "./dist/icons/*.js" + } + }, + "files": [ + "dist" + ], "sideEffects": false, "scripts": { - "generate": "node ./build/generate.js && webpack" + "generate": "node ./build/generate.js", + "dev": "tsup --watch", + "build": "tsup" }, "repository": { "type": "git", "url": "git+https://github.com/Iconscout/react-unicons.git" }, "peerDependencies": { - "react": ">=15.0.0 <17.0.0" - }, - "dependencies": { - "react": ">=15.0.0 <17.0.0" + "react": ">=16.0.0" }, "keywords": [ "unicons", @@ -34,10 +49,11 @@ "homepage": "https://iconscout.com/unicons", "devDependencies": { "@iconscout/unicons": "^4.2.0", + "@types/react": "^16.14.62", "cheerio": "^1.0.0", - "fs-plus": "^3.1.1", - "uppercamelcase": "^3.0.0", - "webpack": "^5.96.1", - "webpack-cli": "^5.1.4" + "fs-extra": "^11.3.0", + "tsup": "^8.3.6", + "typescript": "^5.7.3", + "uppercamelcase": "^3.0.0" } } diff --git a/src/icons/uil-0-plus.ts b/src/icons/uil-0-plus.ts new file mode 100644 index 00000000..299a84f7 --- /dev/null +++ b/src/icons/uil-0-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil0Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM12.5,6h-1a3,3,0,0,0-3,3v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V9A3,3,0,0,0,12.5,6Zm1,9a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Zm8.1-6a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil0Plus \ No newline at end of file diff --git a/src/icons/uil-10-plus.ts b/src/icons/uil-10-plus.ts new file mode 100644 index 00000000..94848ccf --- /dev/null +++ b/src/icons/uil-10-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil10Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11,9v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm5,0v6a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1A1,1,0,0,1,16,9Zm5.6,0a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7Z' + }) + ) +} + +export default Uil10Plus \ No newline at end of file diff --git a/src/icons/uil-12-plus.ts b/src/icons/uil-12-plus.ts new file mode 100644 index 00000000..b3058fc1 --- /dev/null +++ b/src/icons/uil-12-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil12Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,9a1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H13V14a1,1,0,0,1,1-1h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm7-4h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil12Plus \ No newline at end of file diff --git a/src/icons/uil-13-plus.ts b/src/icons/uil-13-plus.ts new file mode 100644 index 00000000..c4cdc27e --- /dev/null +++ b/src/icons/uil-13-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil13Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11,9a1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-.5a1,1,0,0,0,0,2H15a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,18,10V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil13Plus \ No newline at end of file diff --git a/src/icons/uil-16-plus.ts b/src/icons/uil-16-plus.ts new file mode 100644 index 00000000..102ddd5d --- /dev/null +++ b/src/icons/uil-16-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil16Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2Zm3.6,4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7Zm4,2v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-3-3H13V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm4,4a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V13Z' + }) + ) +} + +export default Uil16Plus \ No newline at end of file diff --git a/src/icons/uil-17-plus.ts b/src/icons/uil-17-plus.ts new file mode 100644 index 00000000..f209bb15 --- /dev/null +++ b/src/icons/uil-17-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil17Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,7V9a1,1,0,0,0,2,0V8h2.78L14,16.8A1,1,0,0,0,14.8,18l.2,0a1,1,0,0,0,1-.8l2-10a1,1,0,0,0-.21-.83A1,1,0,0,0,17,6H12A1,1,0,0,0,11,7Zm7-2h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil17Plus \ No newline at end of file diff --git a/src/icons/uil-18-plus.ts b/src/icons/uil-18-plus.ts new file mode 100644 index 00000000..e756d236 --- /dev/null +++ b/src/icons/uil-18-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil18Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM7,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,7,7ZM21.6,9a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM11,9v1a3,3,0,0,0,.78,2A3,3,0,0,0,11,14v1a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,18,10V9a3,3,0,0,0-3-3H14A3,3,0,0,0,11,9Zm5,6a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Zm0-6v1a1,1,0,0,1-1,1H14a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h1A1,1,0,0,1,16,9Z' + }) + ) +} + +export default Uil18Plus \ No newline at end of file diff --git a/src/icons/uil-21-plus.ts b/src/icons/uil-21-plus.ts new file mode 100644 index 00000000..5f3306c1 --- /dev/null +++ b/src/icons/uil-21-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil21Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,18a1,1,0,0,0,1-1V7a1,1,0,0,0-2,0V17A1,1,0,0,0,17,18ZM18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2Zm3.6,4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9ZM10,13h1a3,3,0,0,0,3-3V9a3,3,0,0,0-3-3H10A3,3,0,0,0,7,9,1,1,0,0,0,9,9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H10a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H9V14A1,1,0,0,1,10,13Z' + }) + ) +} + +export default Uil21Plus \ No newline at end of file diff --git a/src/icons/uil-3-plus.ts b/src/icons/uil-3-plus.ts new file mode 100644 index 00000000..4fb37f6e --- /dev/null +++ b/src/icons/uil-3-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil3Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM15.5,9a3,3,0,0,0-3-3h-1a3,3,0,0,0-3,3,1,1,0,0,0,2,0,1,1,0,0,1,1-1h1a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1H12a1,1,0,0,0,0,2h.5a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2,3,3,0,0,0,.78-2Zm6.1,0a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil3Plus \ No newline at end of file diff --git a/src/icons/uil-500px.ts b/src/icons/uil-500px.ts new file mode 100644 index 00000000..99d7d2aa --- /dev/null +++ b/src/icons/uil-500px.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil500px = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,15.14a1.41,1.41,0,0,0,.17.44,6.28,6.28,0,0,0,1.39,2.08,6.67,6.67,0,0,0,2.09,1.4,6.21,6.21,0,0,0,2.54.52,6.29,6.29,0,0,0,2.55-.52,6.63,6.63,0,0,0,2.08-1.4,6.39,6.39,0,0,0,1.41-2.08A6.55,6.55,0,0,0,19.69,13a6.76,6.76,0,0,0-.51-2.56,6.35,6.35,0,0,0-1.41-2.07,6.46,6.46,0,0,0-4.63-1.92A6.63,6.63,0,0,0,10.56,7a7.09,7.09,0,0,0-1.2.68,7.14,7.14,0,0,0-1.14.94h0V3.23h9.05c.22,0,.34-.21.34-.62S17.48,2,17.26,2H7.47a.37.37,0,0,0-.3.13.4.4,0,0,0-.12.29V10a.39.39,0,0,0,.17.3,1.09,1.09,0,0,0,.41.18.73.73,0,0,0,.43,0,.92.92,0,0,0,.24-.11,1,1,0,0,0,.14-.17l0,0a6.9,6.9,0,0,1,.86-1,5.15,5.15,0,0,1,3.79-1.56A5.15,5.15,0,0,1,16.9,9.25,5.17,5.17,0,0,1,18.48,13a5.31,5.31,0,0,1-.41,2A5.36,5.36,0,0,1,15.17,18a5.4,5.4,0,0,1-2.06.4,5.09,5.09,0,0,1-2.7-.75V13a2.66,2.66,0,0,1,.71-1.79,2.53,2.53,0,0,1,2-.89,2.65,2.65,0,0,1,2,.79A2.55,2.55,0,0,1,15.87,13a2.73,2.73,0,0,1-2.77,2.74l-.34,0-.37-.07-.15,0c-.21-.06-.37.1-.49.48s-.07.6.14.68a4.34,4.34,0,0,0,1.25.18,3.84,3.84,0,0,0,2.8-1.16A3.81,3.81,0,0,0,17.1,13a3.73,3.73,0,0,0-1.16-2.78,3.8,3.8,0,0,0-2.8-1.15,3.86,3.86,0,0,0-2.82,1.15,3.57,3.57,0,0,0-1.14,2.59v3.8h0a5.63,5.63,0,0,1-1.08-1.86c-.08-.21-.3-.25-.67-.13s-.55.29-.48.49Zm6.25-11a8.16,8.16,0,0,0-3.34.64A.25.25,0,0,0,9.68,5a1.26,1.26,0,0,0,.09.43c.14.35.3.48.5.41a8.09,8.09,0,0,1,2.93-.55,7.54,7.54,0,0,1,3.08.63A8.67,8.67,0,0,1,18.59,7.4a.25.25,0,0,0,.18.08c.09,0,.24-.1.43-.29L19.39,7a.37.37,0,0,0,.06-.21.3.3,0,0,0-.1-.2,8.62,8.62,0,0,0-2.62-1.69A9,9,0,0,0,13.2,4.14Zm-1.61,9.91a.46.46,0,0,0,.2.33l0,0a.52.52,0,0,0,.35.18.24.24,0,0,0,.17-.06l.73-.73.7.68a.28.28,0,0,0,.21.11.58.58,0,0,0,.36-.19c.2-.21.23-.39.07-.55l-.7-.7.74-.74c.12-.12.08-.29-.13-.49s-.4-.27-.53-.14l-.73.72-.72-.74a.3.3,0,0,0-.15-.05.56.56,0,0,0-.34.2c-.23.22-.28.38-.16.5l.74.74-.74.72A.35.35,0,0,0,11.59,14.05Zm7.93,4.57a1.24,1.24,0,0,0-.37-.25.28.28,0,0,0-.28.07l-.07.07a8,8,0,0,1-2.51,1.69,7.94,7.94,0,0,1-8.68-1.69A7.48,7.48,0,0,1,5.91,16a9.33,9.33,0,0,1-.51-1.77.1.1,0,0,0,0,0c0-.21-.25-.29-.63-.23s-.56.2-.53.4a8.52,8.52,0,0,0,.6,2.11,8.84,8.84,0,0,0,2,2.88,9,9,0,0,0,2.89,2,9.13,9.13,0,0,0,3.54.71,9.28,9.28,0,0,0,3.54-.71,9,9,0,0,0,2.89-2l.06-.06C19.85,19.11,19.78,18.89,19.52,18.62Z' + }) + ) +} + +export default Uil500px \ No newline at end of file diff --git a/src/icons/uil-6-plus.ts b/src/icons/uil-6-plus.ts new file mode 100644 index 00000000..de9f9a41 --- /dev/null +++ b/src/icons/uil-6-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const Uil6Plus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,5h1V6a1,1,0,0,0,2,0V5h1a1,1,0,0,0,0-2H21V2a1,1,0,0,0-2,0V3H18a1,1,0,0,0,0,2ZM11.5,8h1a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3h-1a3,3,0,0,0-3,3v6a3,3,0,0,0,3,3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-3-3h-2V9A1,1,0,0,1,11.5,8Zm1,5a1,1,0,0,1,1,1v1a1,1,0,0,1-1,1h-1a1,1,0,0,1-1-1V13Zm9.1-4a1,1,0,0,0-.78,1.18,9,9,0,1,1-7-7,1,1,0,1,0,.4-2A10.8,10.8,0,0,0,12,1,11,11,0,1,0,23,12a10.8,10.8,0,0,0-.22-2.2A1,1,0,0,0,21.6,9Z' + }) + ) +} + +export default Uil6Plus \ No newline at end of file diff --git a/src/icons/uil-abacus.ts b/src/icons/uil-abacus.ts new file mode 100644 index 00000000..c0001207 --- /dev/null +++ b/src/icons/uil-abacus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAbacus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2a1,1,0,0,0-1,1V6H16V5a1,1,0,0,0-2,0V6H12V5a1,1,0,0,0-2,0V6H8V5A1,1,0,0,0,6,5V6H4V3A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V3A1,1,0,0,0,21,2ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H6v1a1,1,0,0,0,2,0V16h2v1a1,1,0,0,0,2,0V16h4v1a1,1,0,0,0,2,0V16h2Zm0-5H18V13a1,1,0,0,0-2,0v1H12V13a1,1,0,0,0-2,0v1H8V13a1,1,0,0,0-2,0v1H4V8H6V9A1,1,0,0,0,8,9V8h2V9a1,1,0,0,0,2,0V8h2V9a1,1,0,0,0,2,0V8h4Z' + }) + ) +} + +export default UilAbacus \ No newline at end of file diff --git a/src/icons/uil-accessible-icon-alt.ts b/src/icons/uil-accessible-icon-alt.ts new file mode 100644 index 00000000..7244a857 --- /dev/null +++ b/src/icons/uil-accessible-icon-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAccessibleIconAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,7a2,2,0,1,0-2-2A2,2,0,0,0,16,7ZM12.7,18.4A4,4,0,1,1,9.05,12a1,1,0,1,0-.22-2A6,6,0,0,0,9.5,22a6,6,0,0,0,4.8-2.4,1,1,0,0,0-1.6-1.2ZM19.5,20h-1V15a1,1,0,0,0-1-1H12.93l1.69-4.66s0-.07,0-.11l0-.2a1.1,1.1,0,0,0,0-.18,1.06,1.06,0,0,0,0-.19,1.4,1.4,0,0,0-.09-.17.72.72,0,0,0-.11-.15.64.64,0,0,0-.15-.13s0-.06-.08-.08L9.71,5.55l-.12,0a1.06,1.06,0,0,0-.19-.06H9a.8.8,0,0,0-.2.07l-.11,0L6,7.13A1,1,0,0,0,6.48,9,1,1,0,0,0,7,8.87l2.23-1.3,3.24,1.88-1.89,5.21a.88.88,0,0,0,0,.16.58.58,0,0,0,0,.18,0,0,0,0,0,0,0,3,3,0,0,0,.08.38l.11.15a.57.57,0,0,0,.11.16.67.67,0,0,0,.14.09,1.22,1.22,0,0,0,.19.12h0a1,1,0,0,0,.34.06h5v5a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAccessibleIconAlt \ No newline at end of file diff --git a/src/icons/uil-adjust-alt.ts b/src/icons/uil-adjust-alt.ts new file mode 100644 index 00000000..18972888 --- /dev/null +++ b/src/icons/uil-adjust-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdjustAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.83,7.32h0a.2.2,0,0,0,0-.08,10,10,0,0,0-3.38-3.65l0,0h0A9.89,9.89,0,0,0,12,2a1,1,0,0,0-1,1V21a1,1,0,0,0,1,1h.28A10,10,0,0,0,20.83,7.32ZM13,4.06a8,8,0,0,1,2.49.74L13,9.12Zm0,9.06L17.17,5.9a7.89,7.89,0,0,1,1.58,1.83L13,17.69Zm1.16,6.57L19.75,10A8.36,8.36,0,0,1,20,12,7.94,7.94,0,0,1,14.16,19.69Z' + }) + ) +} + +export default UilAdjustAlt \ No newline at end of file diff --git a/src/icons/uil-adjust-circle.ts b/src/icons/uil-adjust-circle.ts new file mode 100644 index 00000000..127a2c52 --- /dev/null +++ b/src/icons/uil-adjust-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdjustCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,7A7.74,7.74,0,1,0,7,17,7.74,7.74,0,1,0,17,7Zm-1.6,1.6a6.12,6.12,0,0,1,.11,1.14,5.92,5.92,0,0,1-.16,1.34L12.91,8.66a5.92,5.92,0,0,1,1.34-.16A6.12,6.12,0,0,1,15.39,8.61ZM14.46,13A6,6,0,0,1,13,14.46L9.54,11A6,6,0,0,1,11,9.54Zm-8,1.46a5.75,5.75,0,1,1,8-8h-.25A7.76,7.76,0,0,0,6.5,14.25C6.5,14.33,6.51,14.42,6.51,14.5Zm2.1.89a6.12,6.12,0,0,1-.11-1.14,5.92,5.92,0,0,1,.16-1.34l2.43,2.43a5.92,5.92,0,0,1-1.34.16A6.12,6.12,0,0,1,8.61,15.39ZM14.25,20A5.77,5.77,0,0,1,9.5,17.49h.25A7.76,7.76,0,0,0,17.5,9.75c0-.08,0-.17,0-.25A5.75,5.75,0,0,1,14.25,20Z' + }) + ) +} + +export default UilAdjustCircle \ No newline at end of file diff --git a/src/icons/uil-adjust-half.ts b/src/icons/uil-adjust-half.ts new file mode 100644 index 00000000..85981fc3 --- /dev/null +++ b/src/icons/uil-adjust-half.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdjustHalf = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.83,7.32h0a10.11,10.11,0,0,0-3.44-3.73l0,0h0A10,10,0,1,0,12,22h.29A10,10,0,0,0,20.83,7.32ZM11,19.93A8,8,0,0,1,11,4.07ZM13,4.07a8.07,8.07,0,0,1,2.49.74L13,9.12Zm0,9L17.17,5.9a8.14,8.14,0,0,1,1.58,1.83L13,17.69Zm1.15,6.58L19.74,10A8.16,8.16,0,0,1,20,12,8,8,0,0,1,14.15,19.7Z' + }) + ) +} + +export default UilAdjustHalf \ No newline at end of file diff --git a/src/icons/uil-adjust.ts b/src/icons/uil-adjust.ts new file mode 100644 index 00000000..43a7ef5d --- /dev/null +++ b/src/icons/uil-adjust.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdjust = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2ZM11,19.93A8,8,0,0,1,11,4.07Zm2,0V4.07a8,8,0,0,1,0,15.86Z' + }) + ) +} + +export default UilAdjust \ No newline at end of file diff --git a/src/icons/uil-adobe-alt.ts b/src/icons/uil-adobe-alt.ts new file mode 100644 index 00000000..93568733 --- /dev/null +++ b/src/icons/uil-adobe-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdobeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.24707,2.40278a.99893.99893,0,0,0-.83057-.44336H1.9917a.99974.99974,0,0,0-1,1v18.082a1.00015,1.00015,0,0,0,1.92529.37989l7.42481-18.082A1.00042,1.00042,0,0,0,10.24707,2.40278ZM2.9917,15.97309V3.95942H7.9248Zm19-14.01367H14.47412a1,1,0,0,0-.92139,1.3877l7.51758,17.84961a.99894.99894,0,0,0,.9209.6123,1.04879,1.04879,0,0,0,.19824-.01953,1.001,1.001,0,0,0,.80225-.98047V2.95942A.99974.99974,0,0,0,21.9917,1.95942Zm-1,13.89844L15.98047,3.95942H20.9917ZM12.94922,9.52a.99993.99993,0,0,0-.92578-.64648h-.00977a.99988.99988,0,0,0-.92822.62793L8.02637,17.13227a1,1,0,0,0,.92822,1.37207H11.209l1.52247,2.99024a.999.999,0,0,0,.89111.54687h2.61279a1.00015,1.00015,0,0,0,.93555-1.35351Zm1.28662,10.52148-1.52246-2.99023a.99905.99905,0,0,0-.89111-.54688H10.43262l1.55371-3.875,2.80176,7.41211Z' + }) + ) +} + +export default UilAdobeAlt \ No newline at end of file diff --git a/src/icons/uil-adobe.ts b/src/icons/uil-adobe.ts new file mode 100644 index 00000000..7d455118 --- /dev/null +++ b/src/icons/uil-adobe.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAdobe = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.07,17.28h2.78l1.75,3.44h2.54L12,9.87ZM2,3V21L9.42,3ZM14.48,3,22,20.81V3Z' + }) + ) +} + +export default UilAdobe \ No newline at end of file diff --git a/src/icons/uil-airplay.ts b/src/icons/uil-airplay.ts new file mode 100644 index 00000000..819fab5d --- /dev/null +++ b/src/icons/uil-airplay.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAirplay = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.83,13.45a1,1,0,0,0-1.66,0l-4,6a1,1,0,0,0,0,1A1,1,0,0,0,8,21h8a1,1,0,0,0,.88-.53,1,1,0,0,0-.05-1ZM9.87,19,12,15.8,14.13,19ZM19,3H5A3,3,0,0,0,2,6v9a3,3,0,0,0,3,3h.85a1,1,0,1,0,0-2H5a1,1,0,0,1-1-1V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1v9a1,1,0,0,1-1,1h-.85a1,1,0,0,0,0,2H19a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Z' + }) + ) +} + +export default UilAirplay \ No newline at end of file diff --git a/src/icons/uil-align-alt.ts b/src/icons/uil-align-alt.ts new file mode 100644 index 00000000..48a27c22 --- /dev/null +++ b/src/icons/uil-align-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,11H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2ZM14,5h7a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2ZM10,7H3A1,1,0,0,0,3,9h7a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2ZM10,3H7A1,1,0,0,0,7,5h3a1,1,0,0,0,0-2ZM21,7H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm0,4H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Zm-4,8H14a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm4-4H14a1,1,0,0,0,0,2h7a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignAlt \ No newline at end of file diff --git a/src/icons/uil-align-center-alt.ts b/src/icons/uil-align-center-alt.ts new file mode 100644 index 00000000..5ac8d3d2 --- /dev/null +++ b/src/icons/uil-align-center-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignCenterAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,8H19a1,1,0,0,0,0-2H5A1,1,0,0,0,5,8Zm16,3H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-2,5H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignCenterAlt \ No newline at end of file diff --git a/src/icons/uil-align-center-h.ts b/src/icons/uil-align-center-h.ts new file mode 100644 index 00000000..aad992cd --- /dev/null +++ b/src/icons/uil-align-center-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignCenterH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H16a1,1,0,0,0,0,2h2.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62ZM8,11H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H8a1,1,0,0,0,0-2Zm4-4a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,12,7Z' + }) + ) +} + +export default UilAlignCenterH \ No newline at end of file diff --git a/src/icons/uil-align-center-justify.ts b/src/icons/uil-align-center-justify.ts new file mode 100644 index 00000000..9acee61e --- /dev/null +++ b/src/icons/uil-align-center-justify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignCenterJustify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,15H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM17,19H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2ZM21,7H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignCenterJustify \ No newline at end of file diff --git a/src/icons/uil-align-center-v.ts b/src/icons/uil-align-center-v.ts new file mode 100644 index 00000000..f5e078d9 --- /dev/null +++ b/src/icons/uil-align-center-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignCenterV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.21,6.21l.79-.8V8a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42ZM16,11H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm-2.21,6.79-.79.8V16a1,1,0,0,0-2,0v2.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilAlignCenterV \ No newline at end of file diff --git a/src/icons/uil-align-center.ts b/src/icons/uil-align-center.ts new file mode 100644 index 00000000..fc0b80f8 --- /dev/null +++ b/src/icons/uil-align-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM7,9a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm14,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-4,4H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignCenter \ No newline at end of file diff --git a/src/icons/uil-align-justify.ts b/src/icons/uil-align-justify.ts new file mode 100644 index 00000000..ad591ab7 --- /dev/null +++ b/src/icons/uil-align-justify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignJustify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignJustify \ No newline at end of file diff --git a/src/icons/uil-align-left-justify.ts b/src/icons/uil-align-left-justify.ts new file mode 100644 index 00000000..42168b89 --- /dev/null +++ b/src/icons/uil-align-left-justify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignLeftJustify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM15,19H3a1,1,0,0,0,0,2H15a1,1,0,0,0,0-2Zm6-8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Zm0,8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignLeftJustify \ No newline at end of file diff --git a/src/icons/uil-align-left.ts b/src/icons/uil-align-left.ts new file mode 100644 index 00000000..f1eeb8ab --- /dev/null +++ b/src/icons/uil-align-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm0,4H17a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-4,4H3a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignLeft \ No newline at end of file diff --git a/src/icons/uil-align-letter-right.ts b/src/icons/uil-align-letter-right.ts new file mode 100644 index 00000000..9295f7a1 --- /dev/null +++ b/src/icons/uil-align-letter-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignLetterRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,4H21a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM21,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM21,6H3A1,1,0,0,0,3,8H21a1,1,0,0,0,0-2Zm0,10H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-6H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignLetterRight \ No newline at end of file diff --git a/src/icons/uil-align-right-justify.ts b/src/icons/uil-align-right-justify.ts new file mode 100644 index 00000000..36785d38 --- /dev/null +++ b/src/icons/uil-align-right-justify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignRightJustify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,5H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5ZM21,19H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H3A1,1,0,0,0,3,9H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignRightJustify \ No newline at end of file diff --git a/src/icons/uil-align-right.ts b/src/icons/uil-align-right.ts new file mode 100644 index 00000000..6f2b09c2 --- /dev/null +++ b/src/icons/uil-align-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlignRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-8H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilAlignRight \ No newline at end of file diff --git a/src/icons/uil-align.ts b/src/icons/uil-align.ts new file mode 100644 index 00000000..ceb5a1e6 --- /dev/null +++ b/src/icons/uil-align.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAlign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,15H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm0-4H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2ZM3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM19.64,9.57a1,1,0,1,0-1.28,1.53l1.08.9-1.08.9a1,1,0,0,0-.13,1.41,1,1,0,0,0,.77.36,1,1,0,0,0,.64-.24l2-1.66a1,1,0,0,0,0-1.54Z' + }) + ) +} + +export default UilAlign \ No newline at end of file diff --git a/src/icons/uil-amazon.ts b/src/icons/uil-amazon.ts new file mode 100644 index 00000000..0ab9438e --- /dev/null +++ b/src/icons/uil-amazon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAmazon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M1.04,17.52q.1-.16.32-.02a21.3078,21.3078,0,0,0,10.88,2.9,21.52431,21.52431,0,0,0,7.74-1.46q.1-.04.29-.12t.27-.12a.35611.35611,0,0,1,.47.12q.17.24-.11.44-.36.26-.92.6a14.99023,14.99023,0,0,1-3.84,1.58A16.1749,16.1749,0,0,1,12,22a16.01714,16.01714,0,0,1-5.9-1.09,16.24638,16.24638,0,0,1-4.98-3.07.273.273,0,0,1-.12-.2A.215.215,0,0,1,1.04,17.52Zm6.02-5.7a4.03628,4.03628,0,0,1,.68-2.36A4.19676,4.19676,0,0,1,9.6,7.98a10.06288,10.06288,0,0,1,2.66-.66q.54-.06,1.76-.16V6.82a3.56151,3.56151,0,0,0-.28-1.72,1.49917,1.49917,0,0,0-1.32-.6h-.16a2.18852,2.18852,0,0,0-1.14.42,1.63936,1.63936,0,0,0-.62,1,.50779.50779,0,0,1-.4.46L7.8,6.1q-.34-.08-.34-.36a.58734.58734,0,0,1,.02-.14A3.83352,3.83352,0,0,1,9.15,2.96,6.26811,6.26811,0,0,1,12.26,2h.5a5.05441,5.05441,0,0,1,3.56,1.18,3.81,3.81,0,0,1,.37.43,3.8746,3.8746,0,0,1,.27.41,2.09844,2.09844,0,0,1,.18.52q.08.34.12.47a2.85611,2.85611,0,0,1,.06.56q.02.43.02.51v4.84a2.86841,2.86841,0,0,0,.15.95,2.47465,2.47465,0,0,0,.29.62q.14.19.46.61a.59856.59856,0,0,1,.12.32.346.346,0,0,1-.16.28q-1.66,1.44-1.8,1.56a.557.557,0,0,1-.58.04q-.28-.24-.49-.46t-.3-.32a4.46629,4.46629,0,0,1-.29-.39q-.2-.29-.28-.39a4.91083,4.91083,0,0,1-2.2,1.52,6.03757,6.03757,0,0,1-1.68.2,3.50454,3.50454,0,0,1-2.53-.95A3.553,3.553,0,0,1,7.06,11.82Zm3.44-.4a1.89505,1.89505,0,0,0,.39,1.25,1.29375,1.29375,0,0,0,1.05.47,1.022,1.022,0,0,0,.17-.02,1.02168,1.02168,0,0,1,.15-.02,2.03262,2.03262,0,0,0,1.3-1.08,3.13045,3.13045,0,0,0,.33-.83,3.80062,3.80062,0,0,0,.12-.73q.01-.28.01-.92v-.5a7.28689,7.28689,0,0,0-1.76.16A2.1441,2.1441,0,0,0,10.5,11.42Zm8.4,6.44a.62647.62647,0,0,1,.12-.16,3.13921,3.13921,0,0,1,.96-.46,6.52032,6.52032,0,0,1,1.48-.22,1.19457,1.19457,0,0,1,.38.02q.9.08,1.08.3a.65471.65471,0,0,1,.08.36v.14a4.55955,4.55955,0,0,1-.38,1.65,3.84046,3.84046,0,0,1-1.06,1.53.302.302,0,0,1-.18.08.17736.17736,0,0,1-.08-.02q-.12-.06-.06-.22a7.63215,7.63215,0,0,0,.74-2.42.51274.51274,0,0,0-.08-.32q-.2-.24-1.12-.24-.34,0-.8.04-.5.06-.92.12A.23166.23166,0,0,1,18.9,18a.06531.06531,0,0,1-.02-.08A.15332.15332,0,0,1,18.9,17.86Z' + }) + ) +} + +export default UilAmazon \ No newline at end of file diff --git a/src/icons/uil-ambulance.ts b/src/icons/uil-ambulance.ts new file mode 100644 index 00000000..c8713a7b --- /dev/null +++ b/src/icons/uil-ambulance.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAmbulance = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,9.5h-1v-1a1,1,0,0,0-2,0v1h-1a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm12.43,2.15-.06-.11a.61.61,0,0,0-.07-.14L20.4,8.2A3,3,0,0,0,18,7H16V6a3,3,0,0,0-3-3H4A3,3,0,0,0,1,6V17a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V12A1,1,0,0,0,22.93,11.65ZM6,19a1,1,0,1,1,1-1A1,1,0,0,1,6,19Zm8-3H8.22a3,3,0,0,0-4.44,0H3V6A1,1,0,0,1,4,5h9a1,1,0,0,1,1,1Zm2-7h2a1,1,0,0,1,.8.4L20,11H16Zm2,10a1,1,0,1,1,1-1A1,1,0,0,1,18,19Zm3-3h-.78A3,3,0,0,0,16,15.78V13h5Z' + }) + ) +} + +export default UilAmbulance \ No newline at end of file diff --git a/src/icons/uil-analysis.ts b/src/icons/uil-analysis.ts new file mode 100644 index 00000000..bbe1555e --- /dev/null +++ b/src/icons/uil-analysis.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnalysis = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,7.29a1,1,0,0,0-1.42,0L14,13.59,9.71,9.29a1,1,0,0,0-1.42,0l-6,6a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,11.41l4.29,4.3a1,1,0,0,0,1.42,0l7-7A1,1,0,0,0,21.71,7.29Z' + }) + ) +} + +export default UilAnalysis \ No newline at end of file diff --git a/src/icons/uil-analytics.ts b/src/icons/uil-analytics.ts new file mode 100644 index 00000000..c222395b --- /dev/null +++ b/src/icons/uil-analytics.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnalytics = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,12a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V13A1,1,0,0,0,5,12ZM10,2A1,1,0,0,0,9,3V21a1,1,0,0,0,2,0V3A1,1,0,0,0,10,2ZM20,16a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V17A1,1,0,0,0,20,16ZM15,8a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V9A1,1,0,0,0,15,8Z' + }) + ) +} + +export default UilAnalytics \ No newline at end of file diff --git a/src/icons/uil-anchor.ts b/src/icons/uil-anchor.ts new file mode 100644 index 00000000..0693f515 --- /dev/null +++ b/src/icons/uil-anchor.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnchor = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,13H17a1,1,0,0,0,0,2h.91A6,6,0,0,1,13,19.91V11h1a1,1,0,0,0,0-2H13V7.82a3,3,0,1,0-2,0V9H10a1,1,0,0,0,0,2h1v8.91A6,6,0,0,1,6.09,15H7a1,1,0,0,0,0-2H5a1,1,0,0,0-1,1,8,8,0,0,0,16,0A1,1,0,0,0,19,13ZM12,6a1,1,0,1,1,1-1A1,1,0,0,1,12,6Z' + }) + ) +} + +export default UilAnchor \ No newline at end of file diff --git a/src/icons/uil-android-alt.ts b/src/icons/uil-android-alt.ts new file mode 100644 index 00000000..373cbec3 --- /dev/null +++ b/src/icons/uil-android-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAndroidAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.9917,9.00044a.99973.99973,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A.99973.99973,0,0,0,2.9917,9.00044Zm18,0a.99973.99973,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A.99973.99973,0,0,0,20.9917,9.00044Zm-4.13428-5.5a.99974.99974,0,1,0-1.73144-1l-.61414,1.06238a5.92782,5.92782,0,0,0-5.04028,0L8.85742,2.50044a.99974.99974,0,1,0-1.73144,1l.6925,1.19794A5.97889,5.97889,0,0,0,5.9917,9.00044v8a.99974.99974,0,0,0,1,1h2v3a1,1,0,0,0,2,0v-3h2v3a1,1,0,0,0,2,0v-3h2a.99974.99974,0,0,0,1-1v-8a5.97889,5.97889,0,0,0-1.82678-4.30206Zm-.86572,12.5h-8v-5h8Zm-8-7a4,4,0,0,1,8,0Z' + }) + ) +} + +export default UilAndroidAlt \ No newline at end of file diff --git a/src/icons/uil-android-phone-slash.ts b/src/icons/uil-android-phone-slash.ts new file mode 100644 index 00000000..5b477812 --- /dev/null +++ b/src/icons/uil-android-phone-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAndroidPhoneSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,17.71a1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76,1.15,1.15,0,0,0-.21-.33,1,1,0,0,0-1.42,0,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,11.29,17.71ZM8.66,4H16a1,1,0,0,1,1,1v7.34a1,1,0,0,0,2,0V5a3,3,0,0,0-3-3H8.66a1,1,0,0,0,0,2ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L5,6.41V19a3,3,0,0,0,3,3h8a3,3,0,0,0,2.76-1.83l1.53,1.54a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM17,19a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8.41l10,10Z' + }) + ) +} + +export default UilAndroidPhoneSlash \ No newline at end of file diff --git a/src/icons/uil-android.ts b/src/icons/uil-android.ts new file mode 100644 index 00000000..5572a470 --- /dev/null +++ b/src/icons/uil-android.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAndroid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.97535,3.01886l.95982-1.73159a.19342.19342,0,0,0-.33833-.18756l-.97045,1.75078a6.54141,6.54141,0,0,0-5.25275,0L8.40316,1.09971a.19342.19342,0,0,0-.33833.18756l.95985,1.7316A5.54614,5.54614,0,0,0,5.93152,7.89522h12.137A5.54615,5.54615,0,0,0,14.97535,3.01886ZM9.19911,5.67446a.5068.5068,0,1,1,.5068-.5068A.50737.50737,0,0,1,9.19911,5.67446Zm5.60178,0a.5068.5068,0,1,1,.5068-.5068A.50737.50737,0,0,1,14.80089,5.67446Zm-8.86946,11.497a1.46713,1.46713,0,0,0,1.46713,1.46713h.9736v3.00095a1.36046,1.36046,0,1,0,2.72091,0V18.63859h1.81386v3.00095a1.36046,1.36046,0,1,0,2.72091,0V18.63859h.97364a1.46713,1.46713,0,0,0,1.46713-1.46713V8.37532H5.93143ZM4.06415,8.14191A1.362,1.362,0,0,0,2.7037,9.50237v5.66846a1.36046,1.36046,0,1,0,2.72091,0V9.50237A1.362,1.362,0,0,0,4.06415,8.14191Zm15.8717,0a1.362,1.362,0,0,0-1.36046,1.36046v5.66846a1.36046,1.36046,0,1,0,2.72091,0V9.50237A1.362,1.362,0,0,0,19.93585,8.14191Z' + }) + ) +} + +export default UilAndroid \ No newline at end of file diff --git a/src/icons/uil-angle-double-down.ts b/src/icons/uil-angle-double-down.ts new file mode 100644 index 00000000..be372ad6 --- /dev/null +++ b/src/icons/uil-angle-double-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleDoubleDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,11.46a1,1,0,0,0,1.42,0l3-3A1,1,0,1,0,14.29,7L12,9.34,9.71,7A1,1,0,1,0,8.29,8.46Zm3,1.08L12,14.84l-2.29-2.3A1,1,0,0,0,8.29,14l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilAngleDoubleDown \ No newline at end of file diff --git a/src/icons/uil-angle-double-left.ts b/src/icons/uil-angle-double-left.ts new file mode 100644 index 00000000..96d37afa --- /dev/null +++ b/src/icons/uil-angle-double-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleDoubleLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.46,8.29a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.16,12l2.3-2.29A1,1,0,0,0,11.46,8.29ZM14.66,12,17,9.71a1,1,0,0,0-1.42-1.42l-3,3a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilAngleDoubleLeft \ No newline at end of file diff --git a/src/icons/uil-angle-double-right.ts b/src/icons/uil-angle-double-right.ts new file mode 100644 index 00000000..1ed516eb --- /dev/null +++ b/src/icons/uil-angle-double-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleDoubleRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.46,8.29A1,1,0,1,0,7,9.71L9.34,12,7,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,0-1.42Zm8.5,3-3-3a1,1,0,0,0-1.42,1.42L14.84,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3A1,1,0,0,0,17,11.29Z' + }) + ) +} + +export default UilAngleDoubleRight \ No newline at end of file diff --git a/src/icons/uil-angle-double-up.ts b/src/icons/uil-angle-double-up.ts new file mode 100644 index 00000000..0d35e3a6 --- /dev/null +++ b/src/icons/uil-angle-double-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleDoubleUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,12.54a1,1,0,0,0-1.42,0l-3,3A1,1,0,0,0,9.71,17L12,14.66,14.29,17a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-3-1.08L12,9.16l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42Z' + }) + ) +} + +export default UilAngleDoubleUp \ No newline at end of file diff --git a/src/icons/uil-angle-down.ts b/src/icons/uil-angle-down.ts new file mode 100644 index 00000000..b5679b0c --- /dev/null +++ b/src/icons/uil-angle-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9.17a1,1,0,0,0-1.41,0L12,12.71,8.46,9.17a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l4.24,4.24a1,1,0,0,0,1.42,0L17,10.59A1,1,0,0,0,17,9.17Z' + }) + ) +} + +export default UilAngleDown \ No newline at end of file diff --git a/src/icons/uil-angle-left-b.ts b/src/icons/uil-angle-left-b.ts new file mode 100644 index 00000000..63e07f82 --- /dev/null +++ b/src/icons/uil-angle-left-b.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleLeftB = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm8.5 12.8 5.7 5.6c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4l-4.9-5 4.9-5c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3-.3 0-.5.1-.7.3l-5.7 5.6c-.4.5-.4 1.1 0 1.6 0-.1 0-.1 0 0z' + }) + ) +} + +export default UilAngleLeftB \ No newline at end of file diff --git a/src/icons/uil-angle-left.ts b/src/icons/uil-angle-left.ts new file mode 100644 index 00000000..7b663892 --- /dev/null +++ b/src/icons/uil-angle-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,12l3.54-3.54a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L9.17,11.29a1,1,0,0,0,0,1.42L13.41,17a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41Z' + }) + ) +} + +export default UilAngleLeft \ No newline at end of file diff --git a/src/icons/uil-angle-right-b.ts b/src/icons/uil-angle-right-b.ts new file mode 100644 index 00000000..52943671 --- /dev/null +++ b/src/icons/uil-angle-right-b.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleRightB = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.54,11.29,9.88,5.64a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l4.95,5L8.46,17a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.71-.3l5.66-5.65A1,1,0,0,0,15.54,11.29Z' + }) + ) +} + +export default UilAngleRightB \ No newline at end of file diff --git a/src/icons/uil-angle-right.ts b/src/icons/uil-angle-right.ts new file mode 100644 index 00000000..2845419d --- /dev/null +++ b/src/icons/uil-angle-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.83,11.29,10.59,7.05a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L12.71,12,9.17,15.54a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l4.24-4.24A1,1,0,0,0,14.83,11.29Z' + }) + ) +} + +export default UilAngleRight \ No newline at end of file diff --git a/src/icons/uil-angle-up.ts b/src/icons/uil-angle-up.ts new file mode 100644 index 00000000..0d765bb9 --- /dev/null +++ b/src/icons/uil-angle-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngleUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,13.41,12.71,9.17a1,1,0,0,0-1.42,0L7.05,13.41a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0L12,11.29l3.54,3.54a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29A1,1,0,0,0,17,13.41Z' + }) + ) +} + +export default UilAngleUp \ No newline at end of file diff --git a/src/icons/uil-angry.ts b/src/icons/uil-angry.ts new file mode 100644 index 00000000..dd0e4d0c --- /dev/null +++ b/src/icons/uil-angry.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAngry = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,11a1,1,0,0,0,.89-.55,1,1,0,0,0-.44-1.34l-2-1a1,1,0,1,0-.9,1.78l2,1A.93.93,0,0,0,10,11Zm2-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,.64.23,1,1,0,0,0,.64-1.76A5.81,5.81,0,0,0,8.36,15.33Zm7.19-7.22-2,1a1,1,0,0,0-.44,1.34A1,1,0,0,0,14,11a.93.93,0,0,0,.45-.11l2-1a1,1,0,0,0-.9-1.78Z' + }) + ) +} + +export default UilAngry \ No newline at end of file diff --git a/src/icons/uil-ankh.ts b/src/icons/uil-ankh.ts new file mode 100644 index 00000000..e79c2dcf --- /dev/null +++ b/src/icons/uil-ankh.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnkh = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,12H14.91A7.23,7.23,0,0,0,17,7,5,5,0,0,0,7,7a7.23,7.23,0,0,0,2.09,5H6a1,1,0,0,0,0,2h5v7a1,1,0,0,0,2,0V14h5a1,1,0,0,0,0-2Zm-6-.16C11.07,11.22,9,9.58,9,7a3,3,0,0,1,6,0C15,9.58,12.93,11.23,12,11.84Z' + }) + ) +} + +export default UilAnkh \ No newline at end of file diff --git a/src/icons/uil-annoyed-alt.ts b/src/icons/uil-annoyed-alt.ts new file mode 100644 index 00000000..174ddca5 --- /dev/null +++ b/src/icons/uil-annoyed-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnnoyedAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.66,13.56l-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88Zm-4-5a1,1,0,0,0-1.41,0,1,1,0,0,1-1.42,0,1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42,3,3,0,0,0,4.24,0A1,1,0,0,0,10.62,8.54Zm7,0a1,1,0,0,0-1.41,0,1,1,0,0,1-1.42,0,1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42,3,3,0,0,0,4.24,0A1,1,0,0,0,17.62,8.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilAnnoyedAlt \ No newline at end of file diff --git a/src/icons/uil-annoyed.ts b/src/icons/uil-annoyed.ts new file mode 100644 index 00000000..d8f373fe --- /dev/null +++ b/src/icons/uil-annoyed.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAnnoyed = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Zm6,4a5,5,0,0,0-4.37,2.57A1,1,0,0,0,11,16.93a1,1,0,0,0,.49.13,1,1,0,0,0,.87-.51A3,3,0,0,1,15,15a1,1,0,0,0,0-2Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilAnnoyed \ No newline at end of file diff --git a/src/icons/uil-apple-alt.ts b/src/icons/uil-apple-alt.ts new file mode 100644 index 00000000..5509237a --- /dev/null +++ b/src/icons/uil-apple-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAppleAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.50439,15.7436a3.38641,3.38641,0,0,1-2.05468-3.127,3.49747,3.49747,0,0,1,1.6875-2.94629.99994.99994,0,0,0,.2998-1.415A5.57386,5.57386,0,0,0,16.4209,5.86958,6.422,6.422,0,0,0,17.38574,1.893a.98411.98411,0,0,0-1.0332-.8916,6.69083,6.69083,0,0,0-4.44336,2.26074,6.84216,6.84216,0,0,0-1.47949,2.89941,5.2637,5.2637,0,0,0-1.62012-.27734A5.92528,5.92528,0,0,0,3.81885,8.892c-1.8877,3.27734-.73291,8.18848,1.312,11.14453.82031,1.18457,2.05127,2.96289,3.9082,2.96289.03662,0,.07373,0,.11084-.002a4.74,4.74,0,0,0,1.79248-.46387,3.274,3.274,0,0,1,1.44532-.35351,3.04472,3.04472,0,0,1,1.35742.33789,4.75244,4.75244,0,0,0,1.96191.45605c1.91309-.03613,3.043-1.68652,3.86817-2.89258a12.04214,12.04214,0,0,0,1.51269-3.1084A1.00325,1.00325,0,0,0,20.50439,15.7436ZM13.42334,4.56782a4.94131,4.94131,0,0,1,1.91943-1.32226,4.85545,4.85545,0,0,1-1.03662,2.15136A4.39075,4.39075,0,0,1,13.042,6.437l-.00293.001c-.02832.01172-.05664.02246-.085.03418-.18652.07324-.417.16406-.59472.22265A4.825,4.825,0,0,1,13.42334,4.56782ZM17.9248,18.95259c-.80371,1.17383-1.436,2.00683-2.25439,2.02148a2.36658,2.36658,0,0,1-1.13135-.292,4.96942,4.96942,0,0,0-2.15136-.502,5.21424,5.21424,0,0,0-2.22852.51269,2.88493,2.88493,0,0,1-1.08594.30664H9.04346c-.813,0-1.6875-1.26269-2.26807-2.10156-1.45264-2.09961-2.79248-6.2832-1.22314-9.00781A3.917,3.917,0,0,1,8.84277,7.88423l.03369-.001a4.75808,4.75808,0,0,1,1.64112.44434c.13135.05175.26074.10351.38916.15136.03271.01368.0664.02637.10058.03711a3.31547,3.31547,0,0,0,1.11719.23731,4.436,4.436,0,0,0,1.564-.4209,4.95643,4.95643,0,0,1,2.22265-.49707,3.787,3.787,0,0,1,2.25049.85352,5.31025,5.31025,0,0,0-1.71191,3.94531v.001a5.30031,5.30031,0,0,0,2.45117,4.50293A10.19829,10.19829,0,0,1,17.9248,18.95259Z' + }) + ) +} + +export default UilAppleAlt \ No newline at end of file diff --git a/src/icons/uil-apple.ts b/src/icons/uil-apple.ts new file mode 100644 index 00000000..83b3b512 --- /dev/null +++ b/src/icons/uil-apple.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilApple = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.94,5.19A4.38,4.38,0,0,0,16,2,4.44,4.44,0,0,0,13,3.52,4.17,4.17,0,0,0,12,6.61,3.69,3.69,0,0,0,14.94,5.19Zm2.52,7.44a4.51,4.51,0,0,1,2.16-3.81,4.66,4.66,0,0,0-3.66-2c-1.56-.16-3,.91-3.83.91s-2-.89-3.3-.87A4.92,4.92,0,0,0,4.69,9.39C2.93,12.45,4.24,17,6,19.47,6.8,20.68,7.8,22.05,9.12,22s1.75-.82,3.28-.82,2,.82,3.3.79,2.22-1.24,3.06-2.45a11,11,0,0,0,1.38-2.85A4.41,4.41,0,0,1,17.46,12.63Z' + }) + ) +} + +export default UilApple \ No newline at end of file diff --git a/src/icons/uil-apps.ts b/src/icons/uil-apps.ts new file mode 100644 index 00000000..ca967bc2 --- /dev/null +++ b/src/icons/uil-apps.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilApps = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,13H3a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V14A1,1,0,0,0,10,13ZM9,20H4V15H9ZM21,2H14a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,9H15V4h5Zm1,4H14a1,1,0,0,0-1,1v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V14A1,1,0,0,0,21,13Zm-1,7H15V15h5ZM10,2H3A1,1,0,0,0,2,3v7a1,1,0,0,0,1,1h7a1,1,0,0,0,1-1V3A1,1,0,0,0,10,2ZM9,9H4V4H9Z' + }) + ) +} + +export default UilApps \ No newline at end of file diff --git a/src/icons/uil-archive-alt.ts b/src/icons/uil-archive-alt.ts new file mode 100644 index 00000000..bf8ea6f6 --- /dev/null +++ b/src/icons/uil-archive-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArchiveAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,13h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM19,3H5A3,3,0,0,0,4,8.82V18a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V8.82A3,3,0,0,0,19,3ZM18,18a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V9H18ZM19,7H5A1,1,0,0,1,5,5H19a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilArchiveAlt \ No newline at end of file diff --git a/src/icons/uil-archive.ts b/src/icons/uil-archive.ts new file mode 100644 index 00000000..c8c5026c --- /dev/null +++ b/src/icons/uil-archive.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArchive = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,14h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM19,3H5A3,3,0,0,0,2,6V9a1,1,0,0,0,1,1H4v8a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10h1a1,1,0,0,0,1-1V6A3,3,0,0,0,19,3ZM18,18a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V10H18ZM20,8H4V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilArchive \ No newline at end of file diff --git a/src/icons/uil-archway.ts b/src/icons/uil-archway.ts new file mode 100644 index 00000000..67d9f762 --- /dev/null +++ b/src/icons/uil-archway.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArchway = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,20H21V8h1a1,1,0,0,0,0-2H21V3a1,1,0,0,0-1-1H4A1,1,0,0,0,3,3V6H2A1,1,0,0,0,2,8H3V20H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2Zm-7,0H9V16.47a6.21,6.21,0,0,1,3-5.33,6.21,6.21,0,0,1,3,5.33Zm4,0H17V16.47a8.17,8.17,0,0,0-4.55-7.36,1,1,0,0,0-.9,0A8.17,8.17,0,0,0,7,16.47V20H5V8H19ZM19,6H5V4H19Z' + }) + ) +} + +export default UilArchway \ No newline at end of file diff --git a/src/icons/uil-arrow-break.ts b/src/icons/uil-arrow-break.ts new file mode 100644 index 00000000..559b2222 --- /dev/null +++ b/src/icons/uil-arrow-break.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowBreak = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,11H17a1,1,0,0,0,0-2H13V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V9H7a1,1,0,0,0,0,2Zm10,2H7a1,1,0,0,0,0,2h4v3.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V15h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowBreak \ No newline at end of file diff --git a/src/icons/uil-arrow-circle-down.ts b/src/icons/uil-arrow-circle-down.ts new file mode 100644 index 00000000..5123a816 --- /dev/null +++ b/src/icons/uil-arrow-circle-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowCircleDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,15.71a1,1,0,0,0,.33.21,1,1,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42L13,12.59V9a1,1,0,0,0-2,0v3.59l-1.29-1.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.42ZM12,22A10,10,0,1,0,2,12,10,10,0,0,0,12,22ZM12,4a8,8,0,1,1-8,8A8,8,0,0,1,12,4Z' + }) + ) +} + +export default UilArrowCircleDown \ No newline at end of file diff --git a/src/icons/uil-arrow-circle-left.ts b/src/icons/uil-arrow-circle-left.ts new file mode 100644 index 00000000..a9678a4d --- /dev/null +++ b/src/icons/uil-arrow-circle-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowCircleLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.29,11.29a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42-1.42L11.41,13H15a1,1,0,0,0,0-2H11.41l1.3-1.29a1,1,0,0,0,0-1.42,1,1,0,0,0-1.42,0ZM2,12A10,10,0,1,0,12,2,10,10,0,0,0,2,12Zm18,0a8,8,0,1,1-8-8A8,8,0,0,1,20,12Z' + }) + ) +} + +export default UilArrowCircleLeft \ No newline at end of file diff --git a/src/icons/uil-arrow-circle-right.ts b/src/icons/uil-arrow-circle-right.ts new file mode 100644 index 00000000..175dd4ad --- /dev/null +++ b/src/icons/uil-arrow-circle-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowCircleRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.71,12.71a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L12.59,11H9a1,1,0,0,0,0,2h3.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM22,12A10,10,0,1,0,12,22,10,10,0,0,0,22,12ZM4,12a8,8,0,1,1,8,8A8,8,0,0,1,4,12Z' + }) + ) +} + +export default UilArrowCircleRight \ No newline at end of file diff --git a/src/icons/uil-arrow-circle-up.ts b/src/icons/uil-arrow-circle-up.ts new file mode 100644 index 00000000..36294604 --- /dev/null +++ b/src/icons/uil-arrow-circle-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowCircleUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,8.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L11,11.41V15a1,1,0,0,0,2,0V11.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilArrowCircleUp \ No newline at end of file diff --git a/src/icons/uil-arrow-compress-h.ts b/src/icons/uil-arrow-compress-h.ts new file mode 100644 index 00000000..c824136a --- /dev/null +++ b/src/icons/uil-arrow-compress-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowCompressH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,5a1,1,0,0,0-1,1V18a1,1,0,0,0,2,0V6A1,1,0,0,0,12,5Zm-1.29,6.29-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H3a1,1,0,0,0,0,2H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,11H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0,0,1.42l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowCompressH \ No newline at end of file diff --git a/src/icons/uil-arrow-down-left.ts b/src/icons/uil-arrow-down-left.ts new file mode 100644 index 00000000..681b5368 --- /dev/null +++ b/src/icons/uil-arrow-down-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowDownLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,16H9.41l8.3-8.29a1,1,0,1,0-1.42-1.42L8,14.59V7A1,1,0,0,0,6,7V17a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,7,18H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowDownLeft \ No newline at end of file diff --git a/src/icons/uil-arrow-down-right.ts b/src/icons/uil-arrow-down-right.ts new file mode 100644 index 00000000..5a23411b --- /dev/null +++ b/src/icons/uil-arrow-down-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowDownRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,6a1,1,0,0,0-1,1v7.59L7.71,6.29A1,1,0,0,0,6.29,7.71L14.59,16H7a1,1,0,0,0,0,2H17a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,18,17V7A1,1,0,0,0,17,6Z' + }) + ) +} + +export default UilArrowDownRight \ No newline at end of file diff --git a/src/icons/uil-arrow-down.ts b/src/icons/uil-arrow-down.ts new file mode 100644 index 00000000..a656f4bd --- /dev/null +++ b/src/icons/uil-arrow-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.71,11.29a1,1,0,0,0-1.42,0L13,14.59V7a1,1,0,0,0-2,0v7.59l-3.29-3.3a1,1,0,0,0-1.42,1.42l5,5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l5-5A1,1,0,0,0,17.71,11.29Z' + }) + ) +} + +export default UilArrowDown \ No newline at end of file diff --git a/src/icons/uil-arrow-from-right.ts b/src/icons/uil-arrow-from-right.ts new file mode 100644 index 00000000..0350a597 --- /dev/null +++ b/src/icons/uil-arrow-from-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowFromRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,4A1,1,0,0,0,2,5V19a1,1,0,0,0,2,0V5A1,1,0,0,0,3,4Zm18.92,7.62a1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L18.59,11H7a1,1,0,0,0,0,2H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' + }) + ) +} + +export default UilArrowFromRight \ No newline at end of file diff --git a/src/icons/uil-arrow-from-top.ts b/src/icons/uil-arrow-from-top.ts new file mode 100644 index 00000000..c95daef9 --- /dev/null +++ b/src/icons/uil-arrow-from-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowFromTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.29,16.29,13,18.59V7a1,1,0,0,0-2,0V18.59l-2.29-2.3a1,1,0,1,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42ZM19,2H5A1,1,0,0,0,5,4H19a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowFromTop \ No newline at end of file diff --git a/src/icons/uil-arrow-left.ts b/src/icons/uil-arrow-left.ts new file mode 100644 index 00000000..70531dde --- /dev/null +++ b/src/icons/uil-arrow-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,11H9.41l3.3-3.29a1,1,0,1,0-1.42-1.42l-5,5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowLeft \ No newline at end of file diff --git a/src/icons/uil-arrow-random.ts b/src/icons/uil-arrow-random.ts new file mode 100644 index 00000000..01d691c8 --- /dev/null +++ b/src/icons/uil-arrow-random.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowRandom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.7,10a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L3.84,2.29A1,1,0,0,0,2.42,3.71ZM21,14a1,1,0,0,0-1,1v3.59L15.44,14A1,1,0,0,0,14,15.44L18.59,20H15a1,1,0,0,0,0,2h6a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V15A1,1,0,0,0,21,14Zm.92-11.38a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L2.29,20.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilArrowRandom \ No newline at end of file diff --git a/src/icons/uil-arrow-resize-diagonal.ts b/src/icons/uil-arrow-resize-diagonal.ts new file mode 100644 index 00000000..7e670cc8 --- /dev/null +++ b/src/icons/uil-arrow-resize-diagonal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowResizeDiagonal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L4,18.59V15a1,1,0,0,0-2,0v6a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H9a1,1,0,0,0,0-2H5.41L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilArrowResizeDiagonal \ No newline at end of file diff --git a/src/icons/uil-arrow-right.ts b/src/icons/uil-arrow-right.ts new file mode 100644 index 00000000..3c2ef9bc --- /dev/null +++ b/src/icons/uil-arrow-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.92,11.62a1,1,0,0,0-.21-.33l-5-5a1,1,0,0,0-1.42,1.42L14.59,11H7a1,1,0,0,0,0,2h7.59l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,.21-.33A1,1,0,0,0,17.92,11.62Z' + }) + ) +} + +export default UilArrowRight \ No newline at end of file diff --git a/src/icons/uil-arrow-to-bottom.ts b/src/icons/uil-arrow-to-bottom.ts new file mode 100644 index 00000000..a9f47009 --- /dev/null +++ b/src/icons/uil-arrow-to-bottom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowToBottom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Zm-7.71-2.29a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42L13,14.59V3a1,1,0,0,0-2,0V14.59l-2.29-2.3a1,1,0,1,0-1.42,1.42Z' + }) + ) +} + +export default UilArrowToBottom \ No newline at end of file diff --git a/src/icons/uil-arrow-to-right.ts b/src/icons/uil-arrow-to-right.ts new file mode 100644 index 00000000..14f5511d --- /dev/null +++ b/src/icons/uil-arrow-to-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowToRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.71,11.29l-4-4a1,1,0,1,0-1.42,1.42L14.59,11H3a1,1,0,0,0,0,2H14.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,17.71,11.29ZM21,4a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4Z' + }) + ) +} + +export default UilArrowToRight \ No newline at end of file diff --git a/src/icons/uil-arrow-up-left.ts b/src/icons/uil-arrow-up-left.ts new file mode 100644 index 00000000..8a75e699 --- /dev/null +++ b/src/icons/uil-arrow-up-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowUpLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.41,8H17a1,1,0,0,0,0-2H7a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,6,7V17a1,1,0,0,0,2,0V9.41l8.29,8.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilArrowUpLeft \ No newline at end of file diff --git a/src/icons/uil-arrow-up-right.ts b/src/icons/uil-arrow-up-right.ts new file mode 100644 index 00000000..521b3737 --- /dev/null +++ b/src/icons/uil-arrow-up-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowUpRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.92,6.62a1,1,0,0,0-.54-.54A1,1,0,0,0,17,6H7A1,1,0,0,0,7,8h7.59l-8.3,8.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L16,9.41V17a1,1,0,0,0,2,0V7A1,1,0,0,0,17.92,6.62Z' + }) + ) +} + +export default UilArrowUpRight \ No newline at end of file diff --git a/src/icons/uil-arrow-up.ts b/src/icons/uil-arrow-up.ts new file mode 100644 index 00000000..a5a80151 --- /dev/null +++ b/src/icons/uil-arrow-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.71,11.29l-5-5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-5,5a1,1,0,0,0,1.42,1.42L11,9.41V17a1,1,0,0,0,2,0V9.41l3.29,3.3a1,1,0,0,0,1.42,0A1,1,0,0,0,17.71,11.29Z' + }) + ) +} + +export default UilArrowUp \ No newline at end of file diff --git a/src/icons/uil-arrow.ts b/src/icons/uil-arrow.ts new file mode 100644 index 00000000..8ce7d240 --- /dev/null +++ b/src/icons/uil-arrow.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.71,6.29a1,1,0,0,0-1.42,0l-5,5a1,1,0,0,0,0,1.42l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,12l4.3-4.29A1,1,0,0,0,9.71,6.29Zm11,5-5-5a1,1,0,0,0-1.42,1.42L18.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5A1,1,0,0,0,20.71,11.29Z' + }) + ) +} + +export default UilArrow \ No newline at end of file diff --git a/src/icons/uil-arrows-h-alt.ts b/src/icons/uil-arrows-h-alt.ts new file mode 100644 index 00000000..a54deea2 --- /dev/null +++ b/src/icons/uil-arrows-h-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsHAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H14a1,1,0,0,0,0,2h4.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62ZM10,11H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H10a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowsHAlt \ No newline at end of file diff --git a/src/icons/uil-arrows-h.ts b/src/icons/uil-arrows-h.ts new file mode 100644 index 00000000..871215b1 --- /dev/null +++ b/src/icons/uil-arrows-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L18.59,11H5.41l2.3-2.29A1,1,0,1,0,6.29,7.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' + }) + ) +} + +export default UilArrowsH \ No newline at end of file diff --git a/src/icons/uil-arrows-left-down.ts b/src/icons/uil-arrows-left-down.ts new file mode 100644 index 00000000..a9068c13 --- /dev/null +++ b/src/icons/uil-arrows-left-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsLeftDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,16.29a1,1,0,0,0-1.42,0L18,18.59V9a3,3,0,0,0-3-3H5.41l2.3-2.29A1,1,0,0,0,6.29,2.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,8H15a1,1,0,0,1,1,1v9.59l-2.29-2.3a1,1,0,0,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4A1,1,0,0,0,21.71,16.29Z' + }) + ) +} + +export default UilArrowsLeftDown \ No newline at end of file diff --git a/src/icons/uil-arrows-maximize.ts b/src/icons/uil-arrows-maximize.ts new file mode 100644 index 00000000..7c040de8 --- /dev/null +++ b/src/icons/uil-arrows-maximize.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsMaximize = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14a1,1,0,0,0-1,1v3.59L5.41,4H9A1,1,0,0,0,9,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V9A1,1,0,0,0,4,9V5.41L18.59,20H15a1,1,0,0,0,0,2h6a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V15A1,1,0,0,0,21,14Z' + }) + ) +} + +export default UilArrowsMaximize \ No newline at end of file diff --git a/src/icons/uil-arrows-merge.ts b/src/icons/uil-arrows-merge.ts new file mode 100644 index 00000000..abedf112 --- /dev/null +++ b/src/icons/uil-arrows-merge.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsMerge = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.71,11.29l-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H4V7A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V13H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,6a1,1,0,0,0-1,1v4H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H20v4a1,1,0,0,0,2,0V7A1,1,0,0,0,21,6Z' + }) + ) +} + +export default UilArrowsMerge \ No newline at end of file diff --git a/src/icons/uil-arrows-resize-h.ts b/src/icons/uil-arrows-resize-h.ts new file mode 100644 index 00000000..f80a08df --- /dev/null +++ b/src/icons/uil-arrows-resize-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsResizeH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,6A1,1,0,0,0,9,7v4H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H9v4a1,1,0,0,0,2,0V7A1,1,0,0,0,10,6Zm11.92,5.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H15V7a1,1,0,0,0-2,0V17a1,1,0,0,0,2,0V13h3.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' + }) + ) +} + +export default UilArrowsResizeH \ No newline at end of file diff --git a/src/icons/uil-arrows-resize-v.ts b/src/icons/uil-arrows-resize-v.ts new file mode 100644 index 00000000..903aeb2b --- /dev/null +++ b/src/icons/uil-arrows-resize-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsResizeV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,11H13V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V11H8a1,1,0,0,0,0,2h3v5.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V13h3a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowsResizeV \ No newline at end of file diff --git a/src/icons/uil-arrows-resize.ts b/src/icons/uil-arrows-resize.ts new file mode 100644 index 00000000..332416d2 --- /dev/null +++ b/src/icons/uil-arrows-resize.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsResize = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,11.62a1,1,0,0,0-.21-.33l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H13V8a1,1,0,0,0-2,0v3H5.41l.8-.79A1,1,0,0,0,4.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H11v3a1,1,0,0,0,2,0V13h5.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33A1,1,0,0,0,21.92,11.62Z' + }) + ) +} + +export default UilArrowsResize \ No newline at end of file diff --git a/src/icons/uil-arrows-right-down.ts b/src/icons/uil-arrows-right-down.ts new file mode 100644 index 00000000..7753b9bd --- /dev/null +++ b/src/icons/uil-arrows-right-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsRightDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.92,6.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,6H9A3,3,0,0,0,6,9v8.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42L8,17.59V9A1,1,0,0,1,9,8h8.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,6.62Z' + }) + ) +} + +export default UilArrowsRightDown \ No newline at end of file diff --git a/src/icons/uil-arrows-shrink-h.ts b/src/icons/uil-arrows-shrink-h.ts new file mode 100644 index 00000000..28ca441b --- /dev/null +++ b/src/icons/uil-arrows-shrink-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsShrinkH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.71,11.29l-2.5-2.5a1,1,0,0,0-1.42,1.42l.8.79H9.41l.8-.79A1,1,0,0,0,8.79,8.79l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13h5.18l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,17.71,11.29ZM3,6A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V7A1,1,0,0,0,3,6ZM21,6a1,1,0,0,0-1,1V17a1,1,0,0,0,2,0V7A1,1,0,0,0,21,6Z' + }) + ) +} + +export default UilArrowsShrinkH \ No newline at end of file diff --git a/src/icons/uil-arrows-shrink-v.ts b/src/icons/uil-arrows-shrink-v.ts new file mode 100644 index 00000000..30644f6f --- /dev/null +++ b/src/icons/uil-arrows-shrink-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsShrinkV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.79,10.21a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8v5.18l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42l-.79.8V9.41ZM7,4H17a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4ZM17,20H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilArrowsShrinkV \ No newline at end of file diff --git a/src/icons/uil-arrows-up-right.ts b/src/icons/uil-arrows-up-right.ts new file mode 100644 index 00000000..21211fbe --- /dev/null +++ b/src/icons/uil-arrows-up-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsUpRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.92,16.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,16H9a1,1,0,0,1-1-1V6.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3A1,1,0,0,0,4.71,7.71L6,6.41V15a3,3,0,0,0,3,3h8.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,16.62Z' + }) + ) +} + +export default UilArrowsUpRight \ No newline at end of file diff --git a/src/icons/uil-arrows-v-alt.ts b/src/icons/uil-arrows-v-alt.ts new file mode 100644 index 00000000..0a184e19 --- /dev/null +++ b/src/icons/uil-arrows-v-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsVAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.21,6.21l.79-.8V10a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42Zm3.58,11.58-.79.8V14a1,1,0,0,0-2,0v4.59l-.79-.8a1,1,0,0,0-1.42,1.42l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilArrowsVAlt \ No newline at end of file diff --git a/src/icons/uil-arrows-v.ts b/src/icons/uil-arrows-v.ts new file mode 100644 index 00000000..4681253c --- /dev/null +++ b/src/icons/uil-arrows-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilArrowsV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.29,16.29,13,18.59V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71L11,5.41V18.59l-2.29-2.3a1,1,0,1,0-1.42,1.42l4,4a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilArrowsV \ No newline at end of file diff --git a/src/icons/uil-assistive-listening-systems.ts b/src/icons/uil-assistive-listening-systems.ts new file mode 100644 index 00000000..e09f0c2c --- /dev/null +++ b/src/icons/uil-assistive-listening-systems.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAssistiveListeningSystems = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,3a7,7,0,0,0-7,7,1,1,0,0,0,2,0,5,5,0,0,1,10,0,5.07,5.07,0,0,1-.71,2.57L11.73,20A2,2,0,0,1,10,21a2,2,0,0,1-2-2,1,1,0,0,0-2,0,4,4,0,0,0,4,4,4,4,0,0,0,3.5-2.07l3.56-7.43A6.93,6.93,0,0,0,18,10,7,7,0,0,0,11,3ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM17.59,1.2a1,1,0,1,0-1.2,1.6A9,9,0,0,1,20,10a1,1,0,0,0,2,0A11.06,11.06,0,0,0,17.59,1.2ZM11,9a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-6,0,3,3,0,0,0,.51,1.68,3.5,3.5,0,0,0,.47.54l.2.22a1,1,0,0,1,0,1.11,1,1,0,0,0,.25,1.39,1,1,0,0,0,.57.18,1,1,0,0,0,.82-.43,3,3,0,0,0,0-3.39,3.39,3.39,0,0,0-.35-.42l-.14-.14a1.37,1.37,0,0,1-.16-.18A1,1,0,0,1,10,10,1,1,0,0,1,11,9ZM7,15a1,1,0,1,0-1-1A1,1,0,0,0,7,15Z' + }) + ) +} + +export default UilAssistiveListeningSystems \ No newline at end of file diff --git a/src/icons/uil-asterisk.ts b/src/icons/uil-asterisk.ts new file mode 100644 index 00000000..9aef5829 --- /dev/null +++ b/src/icons/uil-asterisk.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAsterisk = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.562,14.63379,14.00031,12,18.562,9.36621a1.00016,1.00016,0,0,0-1-1.73242L13,10.26776V5a1,1,0,0,0-2,0v5.26776l-4.562-2.634a1.00016,1.00016,0,0,0-1,1.73242L9.99969,12,5.438,14.63379a1.00016,1.00016,0,0,0,1,1.73242L11,13.73224V19a1,1,0,0,0,2,0V13.73224l4.562,2.634a1.00016,1.00016,0,0,0,1-1.73242Z' + }) + ) +} + +export default UilAsterisk \ No newline at end of file diff --git a/src/icons/uil-at.ts b/src/icons/uil-at.ts new file mode 100644 index 00000000..3fbe14d5 --- /dev/null +++ b/src/icons/uil-at.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2a10,10,0,1,0,5,18.66,1,1,0,1,0-1-1.73A8,8,0,1,1,20,12v.75a1.75,1.75,0,0,1-3.5,0V8.5a1,1,0,0,0-1-1,1,1,0,0,0-1,.79A4.45,4.45,0,0,0,12,7.5,4.5,4.5,0,1,0,15.3,15,3.74,3.74,0,0,0,22,12.75V12A10,10,0,0,0,12,2Zm0,12.5A2.5,2.5,0,1,1,14.5,12,2.5,2.5,0,0,1,12,14.5Z' + }) + ) +} + +export default UilAt \ No newline at end of file diff --git a/src/icons/uil-atom.ts b/src/icons/uil-atom.ts new file mode 100644 index 00000000..d7b4ea23 --- /dev/null +++ b/src/icons/uil-atom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAtom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm7.62,1,.11-.14C21.08,10,21.4,8.29,20.66,7S18.26,5.14,16,5.37l-.18,0C14.91,3.3,13.56,2,12,2S9.09,3.3,8.19,5.4L8,5.37C5.74,5.14,4.08,5.71,3.34,7s-.42,3,.93,4.86l.11.14-.11.14C2.92,14,2.6,15.71,3.34,17,4,18.1,5.27,18.68,7,18.68c.31,0,.63,0,1-.05l.18,0C9.09,20.7,10.44,22,12,22s2.91-1.3,3.81-3.4l.18,0c.34,0,.66.05,1,.05,1.77,0,3.07-.58,3.7-1.68.74-1.29.42-3-.93-4.86ZM5.07,8c.25-.44,1-.68,2-.68l.49,0a14.78,14.78,0,0,0-.35,1.87,15,15,0,0,0-1.45,1.25C5,9.44,4.78,8.5,5.07,8Zm0,8c-.29-.5,0-1.44.67-2.47a15,15,0,0,0,1.45,1.25,14.94,14.94,0,0,0,.35,1.88C6.3,16.74,5.36,16.5,5.07,16ZM12,4c.56,0,1.23.66,1.8,1.83a17.6,17.6,0,0,0-1.8.63,17.6,17.6,0,0,0-1.8-.63C10.77,4.66,11.44,4,12,4Zm0,16c-.56,0-1.23-.66-1.8-1.83a17.6,17.6,0,0,0,1.8-.63,17.6,17.6,0,0,0,1.8.63C13.23,19.34,12.56,20,12,20Zm2.93-6.31c-.46.32-.93.62-1.43.91s-1,.55-1.5.78q-.75-.35-1.5-.78c-.5-.29-1-.59-1.43-.91C9,13.15,9,12.59,9,12s0-1.15.07-1.69c.46-.32.93-.62,1.43-.91s1-.55,1.5-.78q.75.35,1.5.78c.5.29,1,.59,1.43.91,0,.54.07,1.1.07,1.69S15,13.15,14.93,13.69Zm4,2.31c-.29.5-1.23.75-2.47.66a14.94,14.94,0,0,0,.35-1.88,15,15,0,0,0,1.45-1.25C19,14.56,19.22,15.5,18.93,16Zm-.67-5.53a15,15,0,0,0-1.45-1.25,14.78,14.78,0,0,0-.35-1.87l.49,0c1,0,1.73.24,2,.68S19,9.44,18.26,10.47Z' + }) + ) +} + +export default UilAtom \ No newline at end of file diff --git a/src/icons/uil-auto-flash.ts b/src/icons/uil-auto-flash.ts new file mode 100644 index 00000000..6054253b --- /dev/null +++ b/src/icons/uil-auto-flash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAutoFlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.87,8.6A1,1,0,0,0,17,8H12.42l1.27-4.74a1,1,0,0,0-.17-.87,1,1,0,0,0-.8-.39h-7a1,1,0,0,0-1,.74l-2.68,10a1,1,0,0,0,1,1.26H6.89L5.08,20.74a1,1,0,0,0,1.71.93l10.9-12A1,1,0,0,0,17.87,8.6ZM8.08,17.28l1.08-4A1,1,0,0,0,9,12.39,1,1,0,0,0,8.19,12H4.35L6.49,4h4.93L10.15,8.74a1,1,0,0,0,1,1.26h3.57ZM19,13H18a3,3,0,0,0-3,3v5a1,1,0,0,0,2,0V19h3v2a1,1,0,0,0,2,0V16A3,3,0,0,0,19,13Zm1,4H17V16a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilAutoFlash \ No newline at end of file diff --git a/src/icons/uil-award-alt.ts b/src/icons/uil-award-alt.ts new file mode 100644 index 00000000..d6bfcc06 --- /dev/null +++ b/src/icons/uil-award-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAwardAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,1A7,7,0,0,0,7,12.89V22a1,1,0,0,0,1.45.89L12,21.12l3.55,1.77A1,1,0,0,0,16,23a1,1,0,0,0,.53-.15A1,1,0,0,0,17,22V12.89A7,7,0,0,0,12,1Zm3,19.38-2.55-1.27a1,1,0,0,0-.9,0L9,20.38V14.32a7,7,0,0,0,2,.6V16a1,1,0,0,0,2,0V14.92a7,7,0,0,0,2-.6ZM12,13a5,5,0,1,1,5-5A5,5,0,0,1,12,13Z' + }) + ) +} + +export default UilAwardAlt \ No newline at end of file diff --git a/src/icons/uil-award.ts b/src/icons/uil-award.ts new file mode 100644 index 00000000..dcbc6e93 --- /dev/null +++ b/src/icons/uil-award.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilAward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.87,17.25l-2.71-4.68A6.9,6.9,0,0,0,19,9.25a7,7,0,0,0-14,0,6.9,6.9,0,0,0,.84,3.32L3.13,17.25A1,1,0,0,0,4,18.75l2.87,0,1.46,2.46a1,1,0,0,0,.18.22,1,1,0,0,0,.69.28h.14a1,1,0,0,0,.73-.49L12,17.9l1.93,3.35a1,1,0,0,0,.73.48h.14a1,1,0,0,0,.7-.28.87.87,0,0,0,.17-.21l1.46-2.46,2.87,0a1,1,0,0,0,.87-.5A1,1,0,0,0,20.87,17.25ZM9.19,18.78,8.3,17.29a1,1,0,0,0-.85-.49l-1.73,0,1.43-2.48a7,7,0,0,0,3.57,1.84ZM12,14.25a5,5,0,1,1,5-5A5,5,0,0,1,12,14.25Zm4.55,2.55a1,1,0,0,0-.85.49l-.89,1.49-1.52-2.65a7.06,7.06,0,0,0,3.56-1.84l1.43,2.48Z' + }) + ) +} + +export default UilAward \ No newline at end of file diff --git a/src/icons/uil-backpack.ts b/src/icons/uil-backpack.ts new file mode 100644 index 00000000..9cb483da --- /dev/null +++ b/src/icons/uil-backpack.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBackpack = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,10H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm5,0a4,4,0,0,0-3-3.86V5A3,3,0,0,0,9,5V6.14A4,4,0,0,0,6,10a4,4,0,0,0-4,4v3a3,3,0,0,0,3,3H6.18A3,3,0,0,0,9,22h6a3,3,0,0,0,2.82-2H19a3,3,0,0,0,3-3V14A4,4,0,0,0,18,10ZM6,18H5a1,1,0,0,1-1-1V14a2,2,0,0,1,2-2ZM11,5a1,1,0,0,1,2,0V6H11Zm5,14a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V18a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2Zm0-4.44A3.91,3.91,0,0,0,14,14H10a3.91,3.91,0,0,0-2,.56V10a2,2,0,0,1,2-2h4a2,2,0,0,1,2,2ZM20,17a1,1,0,0,1-1,1H18V12a2,2,0,0,1,2,2Z' + }) + ) +} + +export default UilBackpack \ No newline at end of file diff --git a/src/icons/uil-backspace.ts b/src/icons/uil-backspace.ts new file mode 100644 index 00000000..20567ee3 --- /dev/null +++ b/src/icons/uil-backspace.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBackspace = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,5H9.83a3,3,0,0,0-2.12.88L2.29,11.29a1,1,0,0,0,0,1.42l5.42,5.41A3,3,0,0,0,9.83,19H19a3,3,0,0,0,3-3V8A3,3,0,0,0,19,5Zm1,11a1,1,0,0,1-1,1H9.83a1.05,1.05,0,0,1-.71-.29L4.41,12,9.12,7.29A1.05,1.05,0,0,1,9.83,7H19a1,1,0,0,1,1,1ZM16.71,9.29a1,1,0,0,0-1.42,0L14,10.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L12.59,12l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L14,13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L15.41,12l1.3-1.29A1,1,0,0,0,16.71,9.29Z' + }) + ) +} + +export default UilBackspace \ No newline at end of file diff --git a/src/icons/uil-backward.ts b/src/icons/uil-backward.ts new file mode 100644 index 00000000..13971782 --- /dev/null +++ b/src/icons/uil-backward.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBackward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.67,5.85a2.63,2.63,0,0,0-2.67,0L14,8.15h0a2.67,2.67,0,0,0-4-2.31L3.33,9.69a2.67,2.67,0,0,0,0,4.62L10,18.16a2.66,2.66,0,0,0,2.67,0A2.65,2.65,0,0,0,14,15.85h0l4,2.31a2.69,2.69,0,0,0,1.33.36,2.61,2.61,0,0,0,1.34-.37A2.63,2.63,0,0,0,22,15.85V8.15A2.63,2.63,0,0,0,20.67,5.85ZM12,15.85a.66.66,0,0,1-.33.58.69.69,0,0,1-.67,0L4.33,12.58a.67.67,0,0,1,0-1.16L11,7.57a.67.67,0,0,1,.67,0,.66.66,0,0,1,.33.58Zm8,0a.67.67,0,0,1-1,.57l-5-2.88V10.46l5-2.88a.67.67,0,0,1,1,.57Z' + }) + ) +} + +export default UilBackward \ No newline at end of file diff --git a/src/icons/uil-bag-alt.ts b/src/icons/uil-bag-alt.ts new file mode 100644 index 00000000..81b5d0af --- /dev/null +++ b/src/icons/uil-bag-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBagAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a21.71,21.71,0,0,0,8,1.53A21.75,21.75,0,0,0,20,13Zm0-7.69a19.89,19.89,0,0,1-16,0V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBagAlt \ No newline at end of file diff --git a/src/icons/uil-bag-slash.ts b/src/icons/uil-bag-slash.ts new file mode 100644 index 00000000..4cc95924 --- /dev/null +++ b/src/icons/uil-bag-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBagSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H16V5a2,2,0,0,0-2-2H10a1.86,1.86,0,0,0-.61.1,1,1,0,0,0-.64,1.27A1,1,0,0,0,10,5h4V6H12.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v1.28l-2.57.86a1,1,0,0,0-.63,1.27,1,1,0,0,0,.95.68,1.19,1.19,0,0,0,.32-.05L20,12.39v2.95a1,1,0,1,0,2,0V9A3,3,0,0,0,19,6ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3.07,3.07,0,0,0,.53-.06l.76.77a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM4,9A1,1,0,0,1,5,8H6.59l4,4H9.16L4,10.28ZM5,19a1,1,0,0,1-1-1V12.39L8.68,14A1.19,1.19,0,0,0,9,14h3.59l5,5Z' + }) + ) +} + +export default UilBagSlash \ No newline at end of file diff --git a/src/icons/uil-bag.ts b/src/icons/uil-bag.ts new file mode 100644 index 00000000..207d7515 --- /dev/null +++ b/src/icons/uil-bag.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBag = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H16V5a2,2,0,0,0-2-2H10A2,2,0,0,0,8,5V6H5A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5h4V6H10ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12.39L8.68,14A1.19,1.19,0,0,0,9,14h6a1.19,1.19,0,0,0,.32-.05L20,12.39Zm0-7.72L14.84,12H9.16L4,10.28V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBag \ No newline at end of file diff --git a/src/icons/uil-balance-scale.ts b/src/icons/uil-balance-scale.ts new file mode 100644 index 00000000..6ec2fd11 --- /dev/null +++ b/src/icons/uil-balance-scale.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBalanceScale = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.96423,13.82263a.94762.94762,0,0,0-.02819-.17419L20.63135,7.51135A2.99558,2.99558,0,0,0,22,5a1,1,0,0,0-2,0,1.00037,1.00037,0,0,1-1.88184.47266A2.8934,2.8934,0,0,0,15.54,4H13V3a1,1,0,0,0-2,0V4H8.46A2.8934,2.8934,0,0,0,5.88184,5.47266,1.00037,1.00037,0,0,1,4,5,1,1,0,0,0,2,5,2.99558,2.99558,0,0,0,3.36865,7.51135L1.064,13.64844a.94762.94762,0,0,0-.02819.17419A.94855.94855,0,0,0,1,14c0,.00928.00269.01782.00275.0271.0003.01318.003.02533.0039.03845a3.99379,3.99379,0,0,0,7.9867,0c.00085-.01312.0036-.02527.0039-.03845C8.99731,14.01782,9,14.00928,9,14a.94855.94855,0,0,0-.03577-.17737.94762.94762,0,0,0-.02819-.17419L6.62866,7.50421A2.98961,2.98961,0,0,0,7.64258,6.41992.917.917,0,0,1,8.46,6H11V20H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2H13V6h2.54a.917.917,0,0,1,.81738.41992,2.98961,2.98961,0,0,0,1.01392,1.08429L15.064,13.64844a.94762.94762,0,0,0-.02819.17419A.94855.94855,0,0,0,15,14c0,.00928.00269.01782.00275.0271.0003.01318.003.02533.0039.03845a3.99379,3.99379,0,0,0,7.9867,0c.00085-.01312.0036-.02527.0039-.03845C22.99731,14.01782,23,14.00928,23,14A.94855.94855,0,0,0,22.96423,13.82263ZM5,8.85553,6.5564,13H3.4436ZM6.72266,15A2.02306,2.02306,0,0,1,5,16a2.00023,2.00023,0,0,1-1.73145-1ZM19,8.85553,20.5564,13H17.4436ZM19,16a2.00023,2.00023,0,0,1-1.73145-1h3.45411A2.02306,2.02306,0,0,1,19,16Z' + }) + ) +} + +export default UilBalanceScale \ No newline at end of file diff --git a/src/icons/uil-ban.ts b/src/icons/uil-ban.ts new file mode 100644 index 00000000..4b914c3b --- /dev/null +++ b/src/icons/uil-ban.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBan = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L16.9,18.31A7.92,7.92,0,0,1,12,20Zm6.31-3.1L7.1,5.69A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' + }) + ) +} + +export default UilBan \ No newline at end of file diff --git a/src/icons/uil-band-aid.ts b/src/icons/uil-band-aid.ts new file mode 100644 index 00000000..a4f9fda4 --- /dev/null +++ b/src/icons/uil-band-aid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBandAid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.82,11.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.42A1,1,0,0,0,8.82,11.29Zm2.47,2.48a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,13.77Zm9-10A6,6,0,0,0,12,3.55a6,6,0,0,0-8.24.2h0A6,6,0,0,0,3.57,12,6,6,0,0,0,8,22a5.92,5.92,0,0,0,4-1.55,6,6,0,0,0,8.25-.2A6,6,0,0,0,20.43,12,6,6,0,0,0,20.25,3.75ZM18.83,5.17A4,4,0,0,1,19,10.56L13.44,5A4.07,4.07,0,0,1,18.83,5.17ZM5.17,18.83A4,4,0,0,1,5,13.44l5.6,5.6A4.08,4.08,0,0,1,5.17,18.83Zm13.66,0a4.08,4.08,0,0,1-5.64,0l-8-8a4,4,0,0,1,0-5.64h0a4,4,0,0,1,5.64,0l8,8A4,4,0,0,1,18.83,18.83Zm-5.06-7.54a1,1,0,0,0,0,1.42,1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.42A1,1,0,0,0,13.77,11.29ZM11.29,8.82a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,8.82Z' + }) + ) +} + +export default UilBandAid \ No newline at end of file diff --git a/src/icons/uil-bars.ts b/src/icons/uil-bars.ts new file mode 100644 index 00000000..9533a5c3 --- /dev/null +++ b/src/icons/uil-bars.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBars = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,8H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm18,8H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilBars \ No newline at end of file diff --git a/src/icons/uil-baseball-ball.ts b/src/icons/uil-baseball-ball.ts new file mode 100644 index 00000000..72147ff4 --- /dev/null +++ b/src/icons/uil-baseball-ball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBaseballBall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.92188,6.44043a1.00009,1.00009,0,0,0-1.70313,1.04883q.26514.4292.56543.84375a.99994.99994,0,0,0,1.61914-1.17383Q14.147,6.80616,13.92188,6.44043Zm-2.7295,9.22168A1,1,0,1,0,9.583,16.84961c.16992.22949.32715.4668.47558.709a1.0004,1.0004,0,1,0,1.70508-1.04687C11.58594,16.22266,11.39551,15.93848,11.19238,15.66211Zm-3.707-3.42871a.99989.99989,0,0,0-1.04492,1.70508q.36329.22264.71289.47851A1.00029,1.00029,0,1,0,8.33105,12.7998Q7.91651,12.498,7.48535,12.2334Zm10.06055-2.167q-.36475-.22413-.71582-.4795a1.0003,1.0003,0,0,0-1.17774,1.61719q.41456.30176.84668.56738a1.0004,1.0004,0,1,0,1.04688-1.70507ZM18.99219,5.001a9.90088,9.90088,0,1,0,0,14.001A9.91268,9.91268,0,0,0,18.99219,5.001ZM17.71875,17.72852a8.02918,8.02918,0,0,1-4.51563,2.27374.97071.97071,0,0,0-1.74633.07324,8.0616,8.0616,0,0,1-7.535-7.53155.97507.97507,0,0,0,.07282-1.74714,8.0395,8.0395,0,0,1,6.78479-6.79174.99669.99669,0,0,0,.85632.49786,1.02809,1.02809,0,0,0,.22949-.02637.98194.98194,0,0,0,.65912-.54583,8.05437,8.05437,0,0,1,7.53772,7.53869.97244.97244,0,0,0-.07385,1.74085A8.046,8.046,0,0,1,17.71875,17.72852Z' + }) + ) +} + +export default UilBaseballBall \ No newline at end of file diff --git a/src/icons/uil-basketball-hoop.ts b/src/icons/uil-basketball-hoop.ts new file mode 100644 index 00000000..aa783087 --- /dev/null +++ b/src/icons/uil-basketball-hoop.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBasketballHoop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,10H6a1,1,0,0,0,0,2H7v9a1,1,0,0,0,2,0V20h2v1a1,1,0,0,0,2,0V20h2v1a1,1,0,0,0,2,0V12h1a1,1,0,0,0,0-2Zm-7,8H9V16h2Zm0-4H9V12h2Zm4,4H13V16h2Zm0-4H13V12h2ZM20,2H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3,1,1,0,0,0,0-2,1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,0,0,3-3V5A3,3,0,0,0,20,2ZM14,8a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilBasketballHoop \ No newline at end of file diff --git a/src/icons/uil-basketball.ts b/src/icons/uil-basketball.ts new file mode 100644 index 00000000..b57658ac --- /dev/null +++ b/src/icons/uil-basketball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBasketball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,3.6,6.59l0,0A10,10,0,0,0,18.26,19.79l0,0A10,10,0,0,0,12,2Zm2,2.26A8,8,0,0,1,19.74,10,9.78,9.78,0,0,0,15,11.38a15.7,15.7,0,0,0-2.4-2.21A10.06,10.06,0,0,0,14,4.26ZM12,4a7.9,7.9,0,0,1-1.14,4.07c-.15-.08-.29-.17-.44-.24A15.52,15.52,0,0,0,6.33,6.36,8,8,0,0,1,12,4ZM5,8.16A13.75,13.75,0,0,1,9.49,9.6l.13.08A7.93,7.93,0,0,1,4,12,8,8,0,0,1,5,8.16Zm5,11.58A8,8,0,0,1,4.26,14a9.9,9.9,0,0,0,7.08-3.21,14,14,0,0,1,2,1.8A10,10,0,0,0,10,19.74ZM12,20a8,8,0,0,1,2.56-5.85c.06.08.12.15.17.23a14,14,0,0,1,1.84,4.18A7.93,7.93,0,0,1,12,20Zm6.21-3a16,16,0,0,0-1.8-3.75L16.2,13A7.93,7.93,0,0,1,20,12,8,8,0,0,1,18.21,17Z' + }) + ) +} + +export default UilBasketball \ No newline at end of file diff --git a/src/icons/uil-bath.ts b/src/icons/uil-bath.ts new file mode 100644 index 00000000..a729be3b --- /dev/null +++ b/src/icons/uil-bath.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBath = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22 12H5V6.41a1.975 1.975 0 0 1 1.04-1.759 1.995 1.995 0 0 1 1.148-.23 3.491 3.491 0 0 0 .837 3.554l1.06 1.06a1 1 0 0 0 1.415 0L14.035 5.5a1 1 0 0 0 0-1.414l-1.06-1.06a3.494 3.494 0 0 0-4.53-.343A3.992 3.992 0 0 0 3 6.41V12H2a1 1 0 0 0 0 2h1v3a2.995 2.995 0 0 0 2 2.816V21a1 1 0 0 0 2 0v-1h10v1a1 1 0 0 0 2 0v-1.184A2.995 2.995 0 0 0 21 17v-3h1a1 1 0 0 0 0-2ZM9.44 4.44a1.502 1.502 0 0 1 2.12 0l.354.353-2.121 2.121-.354-.353a1.501 1.501 0 0 1 0-2.122ZM19 17a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3h14Z' + }) + ) +} + +export default UilBath \ No newline at end of file diff --git a/src/icons/uil-battery-bolt.ts b/src/icons/uil-battery-bolt.ts new file mode 100644 index 00000000..da8e3143 --- /dev/null +++ b/src/icons/uil-battery-bolt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBatteryBolt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.69,15H4V9H6.31a1,1,0,0,0,0-2H4A2,2,0,0,0,2,9v6a2,2,0,0,0,2,2H6.69a1,1,0,1,0,0-2Zm7.2-2.56a1.27,1.27,0,0,0,.06-.18,1.42,1.42,0,0,0,0-.2s0,0,0-.06,0-.08,0-.12a.65.65,0,0,0-.05-.2.89.89,0,0,0-.08-.17.86.86,0,0,0-.1-.16l-.16-.13-.09-.09-.06,0-.18-.06-.2,0H9.73l1.45-2.5a1,1,0,1,0-1.74-1l-2.31,4s0,0,0,.06a1.27,1.27,0,0,0-.06.18,1.42,1.42,0,0,0,0,.2S7,12,7,12s0,.08,0,.12a.65.65,0,0,0,.05.2.89.89,0,0,0,.08.17.86.86,0,0,0,.1.16l.16.13a.76.76,0,0,0,.09.09l.07,0,.09,0A1,1,0,0,0,8,13h3.27L9.82,15.5a1,1,0,0,0,1.74,1l2.31-4S13.88,12.46,13.89,12.44ZM21,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,21,10ZM17,7H14.31a1,1,0,0,0,0,2H17v6H14.69a1,1,0,1,0,0,2H17a2,2,0,0,0,2-2V9A2,2,0,0,0,17,7Z' + }) + ) +} + +export default UilBatteryBolt \ No newline at end of file diff --git a/src/icons/uil-battery-empty.ts b/src/icons/uil-battery-empty.ts new file mode 100644 index 00000000..364b6072 --- /dev/null +++ b/src/icons/uil-battery-empty.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBatteryEmpty = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,7H4A2,2,0,0,0,2,9v6a2,2,0,0,0,2,2H17a2,2,0,0,0,2-2V9A2,2,0,0,0,17,7Zm0,8H4V9H17Zm4-5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,21,10Z' + }) + ) +} + +export default UilBatteryEmpty \ No newline at end of file diff --git a/src/icons/uil-bed-double.ts b/src/icons/uil-bed-double.ts new file mode 100644 index 00000000..a371e14f --- /dev/null +++ b/src/icons/uil-bed-double.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBedDouble = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,3.5H4a3,3,0,0,0-3,3v13a1,1,0,0,0,1,1H6a1,1,0,0,0,.83-.45L8.54,17.5h6.92l1.71,2.55a1,1,0,0,0,.83.45h4a1,1,0,0,0,1-1V6.5A3,3,0,0,0,20,3.5Zm1,15H18.54L16.83,16A1,1,0,0,0,16,15.5H8a1,1,0,0,0-.83.45L5.46,18.5H3v-5H21Zm-14-7v-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1Zm6,0v-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1Zm8,0H19v-1a3,3,0,0,0-3-3H14a3,3,0,0,0-2,.78,3,3,0,0,0-2-.78H8a3,3,0,0,0-3,3v1H3v-5a1,1,0,0,1,1-1H20a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBedDouble \ No newline at end of file diff --git a/src/icons/uil-behance-alt.ts b/src/icons/uil-behance-alt.ts new file mode 100644 index 00000000..52c799be --- /dev/null +++ b/src/icons/uil-behance-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBehanceAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.1084,15.03169a.99748.99748,0,0,0-1.21582.72265,2.99839,2.99839,0,0,1-5.90088-.7539v-1h7a.99974.99974,0,0,0,1-1,5,5,0,1,0-10,0v2a4.99837,4.99837,0,0,0,9.83935,1.24609A.999.999,0,0,0,22.1084,15.03169Zm-4.1167-5.03125a3.01119,3.01119,0,0,1,2.11816.87207,3.04438,3.04438,0,0,1,.69867,1.12793H15.176A2.99509,2.99509,0,0,1,17.9917,10.00044Zm-2-3h4a1,1,0,0,0,0-2h-4a1,1,0,0,0,0,2Zm-6.082,4.71716a3.98653,3.98653,0,0,0-2.918-6.71716h-5a.99973.99973,0,0,0-1,1v13a.99974.99974,0,0,0,1,1h5.5a4.492,4.492,0,0,0,2.418-8.28284ZM2.9917,7.00044h4a2,2,0,1,1,0,4h-4Zm4.5,11h-4.5v-5h4.5a2.5,2.5,0,0,1,0,5Z' + }) + ) +} + +export default UilBehanceAlt \ No newline at end of file diff --git a/src/icons/uil-behance.ts b/src/icons/uil-behance.ts new file mode 100644 index 00000000..b7252ce1 --- /dev/null +++ b/src/icons/uil-behance.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBehance = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.07,6.35H15V7.76h5.09ZM19,16.05a2.23,2.23,0,0,1-1.3.37A2.23,2.23,0,0,1,16,15.88a2.49,2.49,0,0,1-.62-1.76H22a6.47,6.47,0,0,0-.17-2,5.08,5.08,0,0,0-.8-1.73,4.17,4.17,0,0,0-1.42-1.21,4.37,4.37,0,0,0-2-.45,4.88,4.88,0,0,0-1.9.37,4.51,4.51,0,0,0-1.47,1,4.4,4.4,0,0,0-.95,1.52,5.4,5.4,0,0,0-.33,1.91,5.52,5.52,0,0,0,.32,1.94A4.46,4.46,0,0,0,14.16,17a4,4,0,0,0,1.46,1,5.2,5.2,0,0,0,1.94.34,4.77,4.77,0,0,0,2.64-.7,4.21,4.21,0,0,0,1.63-2.35H19.62A1.54,1.54,0,0,1,19,16.05Zm-3.43-4.12a1.87,1.87,0,0,1,1-1.14,2.28,2.28,0,0,1,1-.2,1.73,1.73,0,0,1,1.36.49,2.91,2.91,0,0,1,.63,1.45H15.41A3,3,0,0,1,15.52,11.93Zm-5.29-.48a3.06,3.06,0,0,0,1.28-1,2.72,2.72,0,0,0,.43-1.58,3.28,3.28,0,0,0-.29-1.48,2.4,2.4,0,0,0-.82-1,3.24,3.24,0,0,0-1.27-.52,7.54,7.54,0,0,0-1.64-.16H2V18.29H8.1a6.55,6.55,0,0,0,1.65-.21,4.55,4.55,0,0,0,1.43-.65,3.13,3.13,0,0,0,1-1.14,3.41,3.41,0,0,0,.37-1.65,3.47,3.47,0,0,0-.57-2A3,3,0,0,0,10.23,11.45ZM4.77,7.86H7.36a4.17,4.17,0,0,1,.71.06,1.64,1.64,0,0,1,.61.22,1.05,1.05,0,0,1,.42.44,1.42,1.42,0,0,1,.16.72,1.36,1.36,0,0,1-.47,1.15,2,2,0,0,1-1.22.35H4.77ZM9.61,15.3a1.28,1.28,0,0,1-.45.5,2,2,0,0,1-.65.26,3.33,3.33,0,0,1-.78.08h-3V12.69h3a2.4,2.4,0,0,1,1.45.41,1.65,1.65,0,0,1,.54,1.39A1.77,1.77,0,0,1,9.61,15.3Z' + }) + ) +} + +export default UilBehance \ No newline at end of file diff --git a/src/icons/uil-bell-school.ts b/src/icons/uil-bell-school.ts new file mode 100644 index 00000000..e35c660d --- /dev/null +++ b/src/icons/uil-bell-school.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBellSchool = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,8a2,2,0,1,0-2.27,2,4.49,4.49,0,0,1-3,5.85,3,3,0,0,0-1.3-1.43,7,7,0,1,0-10.9,0A3,3,0,0,0,2,17v1a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-.19a6.47,6.47,0,0,0,4.58-8.59A2,2,0,0,0,21,8ZM14,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h.41a6.94,6.94,0,0,0,7.18,0H13a1,1,0,0,1,1,1ZM9,15a5,5,0,1,1,5-5A5,5,0,0,1,9,15ZM9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Z' + }) + ) +} + +export default UilBellSchool \ No newline at end of file diff --git a/src/icons/uil-bell-slash.ts b/src/icons/uil-bell-slash.ts new file mode 100644 index 00000000..954b950d --- /dev/null +++ b/src/icons/uil-bell-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBellSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.07,6.12A3.48,3.48,0,0,1,12,6a4,4,0,0,1,4,4v1.34a1,1,0,0,0,2,0V10a6,6,0,0,0-5-5.91V3a1,1,0,0,0-2,0V4.1l-.45.08a1,1,0,0,0,.52,1.94ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L6.41,7.82A6,6,0,0,0,6,10v3.18A3,3,0,0,0,4,16v2a1,1,0,0,0,1,1H8.14a4,4,0,0,0,7.72,0h1.73l2.7,2.71a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM8,10a3.31,3.31,0,0,1,0-.55L11.59,13H8Zm4,10a2,2,0,0,1-1.72-1h3.44A2,2,0,0,1,12,20ZM6,17V16a1,1,0,0,1,1-1h6.59l2,2Z' + }) + ) +} + +export default UilBellSlash \ No newline at end of file diff --git a/src/icons/uil-bell.ts b/src/icons/uil-bell.ts new file mode 100644 index 00000000..9f4d0e3e --- /dev/null +++ b/src/icons/uil-bell.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBell = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,13.18V10a6,6,0,0,0-5-5.91V3a1,1,0,0,0-2,0V4.09A6,6,0,0,0,6,10v3.18A3,3,0,0,0,4,16v2a1,1,0,0,0,1,1H8.14a4,4,0,0,0,7.72,0H19a1,1,0,0,0,1-1V16A3,3,0,0,0,18,13.18ZM8,10a4,4,0,0,1,8,0v3H8Zm4,10a2,2,0,0,1-1.72-1h3.44A2,2,0,0,1,12,20Zm6-3H6V16a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBell \ No newline at end of file diff --git a/src/icons/uil-bill.ts b/src/icons/uil-bill.ts new file mode 100644 index 00000000..1b9a8df4 --- /dev/null +++ b/src/icons/uil-bill.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBill = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.5,10.5H12a1,1,0,0,0,0-2H11V8A1,1,0,0,0,9,8v.55a2.5,2.5,0,0,0,.5,4.95h1a.5.5,0,0,1,0,1H8a1,1,0,0,0,0,2H9V17a1,1,0,0,0,2,0v-.55a2.5,2.5,0,0,0-.5-4.95h-1a.5.5,0,0,1,0-1ZM21,12H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Z' + }) + ) +} + +export default UilBill \ No newline at end of file diff --git a/src/icons/uil-bing.ts b/src/icons/uil-bing.ts new file mode 100644 index 00000000..334af833 --- /dev/null +++ b/src/icons/uil-bing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.1,8.6l1.7,4.3l2.8,1.3L9,17.5V3.4L5,2v17.8L9,22l10-5.8v-4.5L10.1,8.6z' + }) + ) +} + +export default UilBing \ No newline at end of file diff --git a/src/icons/uil-bitcoin-alt.ts b/src/icons/uil-bitcoin-alt.ts new file mode 100644 index 00000000..42f2c6f8 --- /dev/null +++ b/src/icons/uil-bitcoin-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBitcoinAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.30426,11.24115A3.99779,3.99779,0,0,0,12.9917,5.002v-1a1,1,0,1,0-2,0v1h-2v-1a1,1,0,1,0-2,0v1h-1a1,1,0,0,0,0,2h1v10h-1a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h2v1a1,1,0,0,0,2,0v-1h2a3.98966,3.98966,0,0,0,1.31256-7.7608ZM8.9917,7.002h4a2,2,0,0,1,0,4h-4Zm6,10h-6v-4h6a2,2,0,1,1,0,4Z' + }) + ) +} + +export default UilBitcoinAlt \ No newline at end of file diff --git a/src/icons/uil-bitcoin-circle.ts b/src/icons/uil-bitcoin-circle.ts new file mode 100644 index 00000000..549c6303 --- /dev/null +++ b/src/icons/uil-bitcoin-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBitcoinCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21ZM14,7V6a1,1,0,0,0-2,0V7H11V6A1,1,0,0,0,9,6V7H8A1,1,0,0,0,8,9H9v6H8a1,1,0,0,0,0,2H9v1a1,1,0,0,0,2,0V17h1v1a1,1,0,0,0,2,0V17a3,3,0,0,0,3-3,3,3,0,0,0-.77-2A3,3,0,0,0,17,10,3,3,0,0,0,14,7Zm0,8H11V13h3a1,1,0,0,1,0,2Zm0-4H11V9h3a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilBitcoinCircle \ No newline at end of file diff --git a/src/icons/uil-bitcoin-sign.ts b/src/icons/uil-bitcoin-sign.ts new file mode 100644 index 00000000..a2452678 --- /dev/null +++ b/src/icons/uil-bitcoin-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBitcoinSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,9a4,4,0,0,0-4-4V3a1,1,0,0,0-2,0V5H11V3A1,1,0,0,0,9,3V5H6A1,1,0,0,0,6,7H7V17H6a1,1,0,0,0,0,2H9v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19a4,4,0,0,0,2.62-7A4,4,0,0,0,19,9Zm-4,8H9V13h6a2,2,0,0,1,0,4Zm0-6H9V7h6a2,2,0,0,1,0,4Z' + }) + ) +} + +export default UilBitcoinSign \ No newline at end of file diff --git a/src/icons/uil-bitcoin.ts b/src/icons/uil-bitcoin.ts new file mode 100644 index 00000000..812a111e --- /dev/null +++ b/src/icons/uil-bitcoin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBitcoin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.136,12.11664l-.59577,2.41528c.73542.18469,3.00373.92127,3.33893-.44122C14.22961,12.66974,11.8714,12.30225,11.136,12.11664Zm.81262-3.29621-.5401,2.19056c.61243.15442,2.5003.78405,2.80621-.45526C14.53339,9.26294,12.5611,8.97479,11.94867,8.82043ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm4.358,8.57538a1.74286,1.74286,0,0,1-1.38525,1.611,1.93285,1.93285,0,0,1,.99682,2.66089c-.58551,1.69214-1.97662,1.835-3.82653,1.48089l-.449,1.81971-1.08484-.27344.44312-1.79529c-.28119-.07062-.56855-.14563-.86457-.22687L9.7431,17.65594l-1.08362-.27343.449-1.82312c-.25342-.06562-.5108-.13532-.77344-.20185l-1.41174-.35595.53857-1.25592s.79932.215.78852.19909a.39446.39446,0,0,0,.49719-.26062L9.965,8.74634a.583.583,0,0,0-.5055-.63812c.017-.01154-.788-.19812-.788-.19812l.28863-1.17188,1.4961.37781L10.455,7.1217c.22491.05652.45666.11029.69275.16468l.44464-1.80188,1.08423.27343L12.241,7.52448c.29107.06719.584.135.8692.2069l.43255-1.755,1.0849.27344-.44433,1.80249C15.553,8.52948,16.55475,9.24481,16.358,10.57538Z' + }) + ) +} + +export default UilBitcoin \ No newline at end of file diff --git a/src/icons/uil-black-berry.ts b/src/icons/uil-black-berry.ts new file mode 100644 index 00000000..86db8e62 --- /dev/null +++ b/src/icons/uil-black-berry.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBlackBerry = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2ZM7.19,13.35H5.27l.52-2.41H7.63c1.2,0,1.48.58,1.48,1.05C9.11,12.64,8.68,13.35,7.19,13.35Zm.66-3.64H5.94L6.46,7.3H8.3c1.19,0,1.47.59,1.47,1C9.77,9,9.35,9.71,7.85,9.71Zm3.75,7.43H9.68l.53-2.42h1.84c1.19,0,1.47.59,1.47,1.06C13.52,16.43,13.1,17.14,11.6,17.14Zm.71-3.79H10.4l.52-2.41h1.84c1.19,0,1.47.58,1.47,1.05C14.23,12.64,13.81,13.35,12.31,13.35ZM13,9.71H11.06l.52-2.41h1.84c1.2,0,1.48.59,1.48,1C14.9,9,14.47,9.71,13,9.71Zm3.74,5.61H14.81l.52-2.42h1.84c1.19,0,1.48.59,1.48,1.06C18.65,14.61,18.22,15.32,16.72,15.32Zm.72-3.44H15.52L16,9.46h1.84c1.2,0,1.48.59,1.48,1C19.36,11.17,18.93,11.88,17.44,11.88Z' + }) + ) +} + +export default UilBlackBerry \ No newline at end of file diff --git a/src/icons/uil-blogger-alt.ts b/src/icons/uil-blogger-alt.ts new file mode 100644 index 00000000..7a5ee6d3 --- /dev/null +++ b/src/icons/uil-blogger-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBloggerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.99121,13.00044h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-4-2h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm6-1.001v-.999a4.004,4.004,0,0,0-4-4h-2a5.00589,5.00589,0,0,0-5,5v4a5.00589,5.00589,0,0,0,5,5h4a5.00589,5.00589,0,0,0,5-5v-1A3.00474,3.00474,0,0,0,15.99121,9.99946Zm0,.001v.001l-1-.001Zm1,4a3.00328,3.00328,0,0,1-3,3h-4a3.00328,3.00328,0,0,1-3-3v-4a3.00328,3.00328,0,0,1,3-3h2a2.0026,2.0026,0,0,1,2,2v1a2.0026,2.0026,0,0,0,2,2,1.00067,1.00067,0,0,1,1,1Zm3-13h-16a3.00328,3.00328,0,0,0-3,3v16a3.00328,3.00328,0,0,0,3,3h16a3.00328,3.00328,0,0,0,3-3v-16A3.00328,3.00328,0,0,0,19.99121,1.00044Zm1,19a1.00067,1.00067,0,0,1-1,1h-16a1.00067,1.00067,0,0,1-1-1v-16a1.00067,1.00067,0,0,1,1-1h16a1.00067,1.00067,0,0,1,1,1Z' + }) + ) +} + +export default UilBloggerAlt \ No newline at end of file diff --git a/src/icons/uil-blogger.ts b/src/icons/uil-blogger.ts new file mode 100644 index 00000000..776f42e8 --- /dev/null +++ b/src/icons/uil-blogger.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBlogger = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.71008,10.46008h2.23883a.77084.77084,0,1,0,0-1.54168H9.71008a.77084.77084,0,1,0,0,1.54168Zm9.71826-8.45837H4.555A2.57277,2.57277,0,0,0,1.9917,4.56506V19.43829A2.57278,2.57278,0,0,0,4.555,22.00171H19.42822a2.57268,2.57268,0,0,0,2.56348-2.56329V4.56506A2.57267,2.57267,0,0,0,19.42834,2.00171ZM18.35577,11.6795l-.01965,2.67542a4.0515,4.0515,0,0,1-4.03857,4.02179h-4.639a4.04922,4.04922,0,0,1-4.04181-4.0249V9.65747A4.05258,4.05258,0,0,1,9.65851,5.62671h2.82373a4.45954,4.45954,0,0,1,3.1203,2.19971,3.15646,3.15646,0,0,1,.36182,1.36767c.06738.50556.10284.88123.33007,1.08942.31934.28949,1.50727.09448,1.74219.27844l.17883.13983.10889.22168.036.17755Zm-4.097,1.8639H9.71008a.75035.75035,0,1,0,0,1.5h4.54871a.75024.75024,0,1,0,0-1.5Z' + }) + ) +} + +export default UilBlogger \ No newline at end of file diff --git a/src/icons/uil-bluetooth-b.ts b/src/icons/uil-bluetooth-b.ts new file mode 100644 index 00000000..722d438f --- /dev/null +++ b/src/icons/uil-bluetooth-b.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBluetoothB = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.41,12l3.8-3.79a1,1,0,0,0,0-1.42l-4.5-4.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,11,3V9.59L8.21,6.79A1,1,0,1,0,6.79,8.21L10.59,12l-3.8,3.79a1,1,0,1,0,1.42,1.42L11,14.41V21a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4.5-4.5a1,1,0,0,0,0-1.42ZM13,5.41,15.09,7.5,13,9.59Zm0,13.18V14.41l2.09,2.09Z' + }) + ) +} + +export default UilBluetoothB \ No newline at end of file diff --git a/src/icons/uil-bold.ts b/src/icons/uil-bold.ts new file mode 100644 index 00000000..d330dabf --- /dev/null +++ b/src/icons/uil-bold.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBold = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.5,9.5A3.5,3.5,0,0,0,13,6H8.5a1,1,0,0,0-1,1V17a1,1,0,0,0,1,1H13a3.49,3.49,0,0,0,2.44-6A3.5,3.5,0,0,0,16.5,9.5ZM13,16H9.5V13H13a1.5,1.5,0,0,1,0,3Zm0-5H9.5V8H13a1.5,1.5,0,0,1,0,3Z' + }) + ) +} + +export default UilBold \ No newline at end of file diff --git a/src/icons/uil-bolt-alt.ts b/src/icons/uil-bolt-alt.ts new file mode 100644 index 00000000..1ed6fd60 --- /dev/null +++ b/src/icons/uil-bolt-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBoltAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.89,9.55A1,1,0,0,0,19,9H14V3a1,1,0,0,0-.69-1,1,1,0,0,0-1.12.36l-8,11a1,1,0,0,0-.08,1A1,1,0,0,0,5,15h5v6a1,1,0,0,0,.69.95A1.12,1.12,0,0,0,11,22a1,1,0,0,0,.81-.41l8-11A1,1,0,0,0,19.89,9.55ZM12,17.92V14a1,1,0,0,0-1-1H7l5-6.92V10a1,1,0,0,0,1,1h4Z' + }) + ) +} + +export default UilBoltAlt \ No newline at end of file diff --git a/src/icons/uil-bolt-slash.ts b/src/icons/uil-bolt-slash.ts new file mode 100644 index 00000000..f7c0cc4e --- /dev/null +++ b/src/icons/uil-bolt-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBoltSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.67,4.23A1,1,0,0,0,9.6,4h5.1L13.43,8.74a1,1,0,0,0,.17.87,1,1,0,0,0,.79.39H18l-1.13,1.24a1,1,0,0,0,.07,1.41,1,1,0,0,0,.67.26,1,1,0,0,0,.74-.33L21,9.67A1,1,0,0,0,20.23,8H15.69L17,3.26a1,1,0,0,0-.18-.87A1,1,0,0,0,16,2H9a1,1,0,0,0-1,.74L8,3A1,1,0,0,0,8.67,4.23Zm13,16.06-18-18A1,1,0,0,0,2.29,3.71L6.61,8,5.35,12.74a1,1,0,0,0,.18.87,1,1,0,0,0,.79.39h3.84L8.35,20.74a1,1,0,0,0,.49,1.14,1,1,0,0,0,.48.12,1,1,0,0,0,.74-.33l4.85-5.34,5.38,5.38a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM7.62,12l.63-2.34L10.59,12Zm3.73,5.28,1-3.56,1.2,1.19Z' + }) + ) +} + +export default UilBoltSlash \ No newline at end of file diff --git a/src/icons/uil-bolt.ts b/src/icons/uil-bolt.ts new file mode 100644 index 00000000..9a5358eb --- /dev/null +++ b/src/icons/uil-bolt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBolt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.87,8.6A1,1,0,0,0,19,8H14.42l1.27-4.74a1,1,0,0,0-.17-.87A1,1,0,0,0,14.73,2h-7a1,1,0,0,0-1,.74l-2.68,10a1,1,0,0,0,.17.87,1,1,0,0,0,.8.39H8.89L7.08,20.74a1,1,0,0,0,1.71.93l10.9-12A1,1,0,0,0,19.87,8.6Zm-9.79,8.68,1.07-4a1,1,0,0,0-.17-.87,1,1,0,0,0-.79-.39H6.35L8.49,4h4.93L12.15,8.74a1,1,0,0,0,1,1.26h3.57Z' + }) + ) +} + +export default UilBolt \ No newline at end of file diff --git a/src/icons/uil-book-alt.ts b/src/icons/uil-book-alt.ts new file mode 100644 index 00000000..6e265baa --- /dev/null +++ b/src/icons/uil-book-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,2H8A4,4,0,0,0,4,6V18a4,4,0,0,0,4,4H18a2,2,0,0,0,2-2V4A2,2,0,0,0,18,2ZM6,6A2,2,0,0,1,8,4H18V14H8a3.91,3.91,0,0,0-2,.56ZM8,20a2,2,0,0,1,0-4H18v4ZM10,8h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilBookAlt \ No newline at end of file diff --git a/src/icons/uil-book-medical.ts b/src/icons/uil-book-medical.ts new file mode 100644 index 00000000..af4bb318 --- /dev/null +++ b/src/icons/uil-book-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,9H11V7A1,1,0,0,0,9,7V9H7a1,1,0,0,0,0,2H9v2a1,1,0,0,0,2,0V11h2a1,1,0,0,0,0-2Zm5,6V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM4,15V5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H5A1,1,0,0,1,4,15ZM21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Z' + }) + ) +} + +export default UilBookMedical \ No newline at end of file diff --git a/src/icons/uil-book-open.ts b/src/icons/uil-book-open.ts new file mode 100644 index 00000000..d6ce26b8 --- /dev/null +++ b/src/icons/uil-book-open.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookOpen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.17,2.06A13.1,13.1,0,0,0,19,1.87a12.94,12.94,0,0,0-7,2.05,12.94,12.94,0,0,0-7-2,13.1,13.1,0,0,0-2.17.19,1,1,0,0,0-.83,1v12a1,1,0,0,0,1.17,1,10.9,10.9,0,0,1,8.25,1.91l.12.07.11,0a.91.91,0,0,0,.7,0l.11,0,.12-.07A10.9,10.9,0,0,1,20.83,16a1,1,0,0,0,1.17-1v-12A1,1,0,0,0,21.17,2.06ZM11,15.35a12.87,12.87,0,0,0-6-1.48c-.33,0-.66,0-1,0v-10a8.69,8.69,0,0,1,1,0,10.86,10.86,0,0,1,6,1.8Zm9-1.44c-.34,0-.67,0-1,0a12.87,12.87,0,0,0-6,1.48V5.67a10.86,10.86,0,0,1,6-1.8,8.69,8.69,0,0,1,1,0Zm1.17,4.15A13.1,13.1,0,0,0,19,17.87a12.94,12.94,0,0,0-7,2.05,12.94,12.94,0,0,0-7-2.05,13.1,13.1,0,0,0-2.17.19A1,1,0,0,0,2,19.21,1,1,0,0,0,3.17,20a10.9,10.9,0,0,1,8.25,1.91,1,1,0,0,0,1.16,0A10.9,10.9,0,0,1,20.83,20,1,1,0,0,0,22,19.21,1,1,0,0,0,21.17,18.06Z' + }) + ) +} + +export default UilBookOpen \ No newline at end of file diff --git a/src/icons/uil-book-reader.ts b/src/icons/uil-book-reader.ts new file mode 100644 index 00000000..5becabe3 --- /dev/null +++ b/src/icons/uil-book-reader.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookReader = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.18,10.19A11.9,11.9,0,0,0,18,10c-.42,0-.83,0-1.24.08a5.91,5.91,0,0,0-1.91-1.65,3.81,3.81,0,0,0,1-2.57,3.86,3.86,0,0,0-7.72,0,3.81,3.81,0,0,0,1,2.57,6.11,6.11,0,0,0-1.91,1.64C6.83,10,6.42,10,6,10a11.9,11.9,0,0,0-2.18.21,1,1,0,0,0-.82,1v8.25a1,1,0,0,0,.36.77,1,1,0,0,0,.82.22A9.75,9.75,0,0,1,6,20.23a9.89,9.89,0,0,1,5.45,1.63h0l0,0,.13.05h0A1.09,1.09,0,0,0,12,22a.87.87,0,0,0,.28-.05l.07,0,.13-.05,0,0h0A9.89,9.89,0,0,1,18,20.23a9.75,9.75,0,0,1,1.82.18,1,1,0,0,0,.82-.22,1,1,0,0,0,.36-.77V11.17A1,1,0,0,0,20.18,10.19ZM12,4a1.86,1.86,0,0,1,0,3.71h0A1.86,1.86,0,0,1,12,4ZM11,19.33a11.92,11.92,0,0,0-5-1.1c-.33,0-.66,0-1,.05V12a9.63,9.63,0,0,1,2.52.05l.11,0A10,10,0,0,1,11,13.33Zm1-7.73a11.77,11.77,0,0,0-1.38-.68l-.06,0c-.33-.13-.66-.26-1-.36A4,4,0,0,1,12,9.69h0a4,4,0,0,1,2.44.85A12.43,12.43,0,0,0,12,11.6Zm7,6.68a11.6,11.6,0,0,0-6,1v-6a9.76,9.76,0,0,1,3.37-1.22l.2,0A9.39,9.39,0,0,1,19,12Z' + }) + ) +} + +export default UilBookReader \ No newline at end of file diff --git a/src/icons/uil-book.ts b/src/icons/uil-book.ts new file mode 100644 index 00000000..06c8ed68 --- /dev/null +++ b/src/icons/uil-book.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBook = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,6H9A1,1,0,0,0,8,7v4a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V7A1,1,0,0,0,15,6Zm-1,4H10V8h4Zm3-8H5A1,1,0,0,0,4,3V21a1,1,0,0,0,1,1H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H6V4H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBook \ No newline at end of file diff --git a/src/icons/uil-bookmark-full.ts b/src/icons/uil-bookmark-full.ts new file mode 100644 index 00000000..c4d6885e --- /dev/null +++ b/src/icons/uil-bookmark-full.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookmarkFull = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,2H6A1,1,0,0,0,5,3V21a1,1,0,0,0,1.65.76L12,17.27l5.29,4.44A1,1,0,0,0,18,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,19,21V3A1,1,0,0,0,18,2ZM17,18.86,12.64,15.2a1,1,0,0,0-1.28,0L7,18.86V4H17Z' + }) + ) +} + +export default UilBookmarkFull \ No newline at end of file diff --git a/src/icons/uil-bookmark.ts b/src/icons/uil-bookmark.ts new file mode 100644 index 00000000..5eda0870 --- /dev/null +++ b/src/icons/uil-bookmark.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBookmark = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,2H8A3,3,0,0,0,5,5V21a1,1,0,0,0,.5.87,1,1,0,0,0,1,0L12,18.69l5.5,3.18A1,1,0,0,0,18,22a1,1,0,0,0,.5-.13A1,1,0,0,0,19,21V5A3,3,0,0,0,16,2Zm1,17.27-4.5-2.6a1,1,0,0,0-1,0L7,19.27V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBookmark \ No newline at end of file diff --git a/src/icons/uil-books.ts b/src/icons/uil-books.ts new file mode 100644 index 00000000..029f4852 --- /dev/null +++ b/src/icons/uil-books.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBooks = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.47,18.82l-1-3.86h0L18.32,3.37a1,1,0,0,0-1.22-.71l-3.87,1a1,1,0,0,0-.73-.33H2.5a1,1,0,0,0-1,1v16a1,1,0,0,0,1,1h10a1,1,0,0,0,1-1v-8l2.2,8.22a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0l4.83-1.29a1,1,0,0,0,.61-.47A1.05,1.05,0,0,0,22.47,18.82Zm-16,.55h-3v-2h3Zm0-4h-3v-6h3Zm0-8h-3v-2h3Zm5,12h-3v-2h3Zm0-4h-3v-6h3Zm0-8h-3v-2h3Zm2.25-1.74,2.9-.78.52,1.93-2.9.78Zm2.59,9.66-1.55-5.8,2.9-.78,1.55,5.8Zm1,3.86-.52-1.93,2.9-.78.52,1.93Z' + }) + ) +} + +export default UilBooks \ No newline at end of file diff --git a/src/icons/uil-boombox.ts b/src/icons/uil-boombox.ts new file mode 100644 index 00000000..a3319d29 --- /dev/null +++ b/src/icons/uil-boombox.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBoombox = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Zm-3.62-8.2A3,3,0,0,0,15,9,3,3,0,0,0,9,9a3,3,0,0,0,.62,1.8,4,4,0,1,0,4.76,0ZM12,8a1,1,0,1,1-1,1A1,1,0,0,1,12,8Zm0,8a2,2,0,1,1,2-2A2,2,0,0,1,12,16Z' + }) + ) +} + +export default UilBoombox \ No newline at end of file diff --git a/src/icons/uil-border-alt.ts b/src/icons/uil-border-alt.ts new file mode 100644 index 00000000..31931362 --- /dev/null +++ b/src/icons/uil-border-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.5,18.5a1,1,0,1,0,1,1A1,1,0,0,0,11.5,18.5Zm9-15a1,1,0,0,0-1-1H3.5a1,1,0,0,0-1,1v16a1,1,0,0,0,2,0V4.5h15A1,1,0,0,0,20.5,3.5Zm-5,15a1,1,0,1,0,1,1A1,1,0,0,0,15.5,18.5Zm-8,0a1,1,0,1,0,1,1A1,1,0,0,0,7.5,18.5Zm12-12a1,1,0,1,0,1,1A1,1,0,0,0,19.5,6.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,10.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,14.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,18.5Z' + }) + ) +} + +export default UilBorderAlt \ No newline at end of file diff --git a/src/icons/uil-border-bottom.ts b/src/icons/uil-border-bottom.ts new file mode 100644 index 00000000..24354c74 --- /dev/null +++ b/src/icons/uil-border-bottom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderBottom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13.5a1,1,0,1,0-1-1A1,1,0,0,0,12,13.5Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,12,17.5Zm0-8a1,1,0,1,0-1-1A1,1,0,0,0,12,9.5Zm-4-4a1,1,0,1,0-1-1A1,1,0,0,0,8,5.5Zm0,8a1,1,0,1,0-1-1A1,1,0,0,0,8,13.5Zm12-8a1,1,0,1,0-1-1A1,1,0,0,0,20,5.5Zm-4,8a1,1,0,1,0-1-1A1,1,0,0,0,16,13.5Zm-4-8a1,1,0,1,0-1-1A1,1,0,0,0,12,5.5Zm4,0a1,1,0,1,0-1-1A1,1,0,0,0,16,5.5Zm4,10a1,1,0,1,0,1,1A1,1,0,0,0,20,15.5Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,20,11.5Zm0,8H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm0-12a1,1,0,1,0,1,1A1,1,0,0,0,20,7.5Zm-16,6a1,1,0,1,0-1-1A1,1,0,0,0,4,13.5Zm0-4a1,1,0,1,0-1-1A1,1,0,0,0,4,9.5Zm0,8a1,1,0,1,0-1-1A1,1,0,0,0,4,17.5Zm0-12a1,1,0,1,0-1-1A1,1,0,0,0,4,5.5Z' + }) + ) +} + +export default UilBorderBottom \ No newline at end of file diff --git a/src/icons/uil-border-clear.ts b/src/icons/uil-border-clear.ts new file mode 100644 index 00000000..2d7d4af3 --- /dev/null +++ b/src/icons/uil-border-clear.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderClear = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,19ZM4,3A1,1,0,1,0,5,4,1,1,0,0,0,4,3Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,4,11ZM20,5a1,1,0,1,0-1-1A1,1,0,0,0,20,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19Zm8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,15ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM4,7A1,1,0,1,0,5,8,1,1,0,0,0,4,7ZM8,3A1,1,0,1,0,9,4,1,1,0,0,0,8,3ZM20,15a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,19ZM20,7a1,1,0,1,0,1,1A1,1,0,0,0,20,7Zm-8,4a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,20,11ZM16,3a1,1,0,1,0,1,1A1,1,0,0,0,16,3ZM12,3a1,1,0,1,0,1,1A1,1,0,0,0,12,3Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,12,7Zm4,12a1,1,0,1,0,1,1A1,1,0,0,0,16,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,16,11Z' + }) + ) +} + +export default UilBorderClear \ No newline at end of file diff --git a/src/icons/uil-border-horizontal.ts b/src/icons/uil-border-horizontal.ts new file mode 100644 index 00000000..5c5b6111 --- /dev/null +++ b/src/icons/uil-border-horizontal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderHorizontal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,5A1,1,0,1,0,7,4,1,1,0,0,0,8,5ZM4,9A1,1,0,1,0,3,8,1,1,0,0,0,4,9Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,12,9ZM4,5A1,1,0,1,0,3,4,1,1,0,0,0,4,5ZM16,5a1,1,0,1,0-1-1A1,1,0,0,0,16,5ZM12,5a1,1,0,1,0-1-1A1,1,0,0,0,12,5Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,20,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19Zm16,0a1,1,0,1,0,1,1A1,1,0,0,0,20,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm0-4H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,16,19ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15ZM20,7a1,1,0,1,0,1,1A1,1,0,0,0,20,7ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,12,15Z' + }) + ) +} + +export default UilBorderHorizontal \ No newline at end of file diff --git a/src/icons/uil-border-inner.ts b/src/icons/uil-border-inner.ts new file mode 100644 index 00000000..b4e8be83 --- /dev/null +++ b/src/icons/uil-border-inner.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderInner = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,5A1,1,0,1,0,7,4,1,1,0,0,0,8,5ZM4,9A1,1,0,1,0,3,8,1,1,0,0,0,4,9ZM4,5A1,1,0,1,0,3,4,1,1,0,0,0,4,5ZM4,19a1,1,0,1,0,1,1A1,1,0,0,0,4,19ZM20,5a1,1,0,1,0-1-1A1,1,0,0,0,20,5Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,20,9ZM16,5a1,1,0,1,0-1-1A1,1,0,0,0,16,5Zm4,14a1,1,0,1,0,1,1A1,1,0,0,0,20,19ZM4,15a1,1,0,1,0,1,1A1,1,0,0,0,4,15Zm16,0a1,1,0,1,0,1,1A1,1,0,0,0,20,15Zm-4,4a1,1,0,1,0,1,1A1,1,0,0,0,16,19Zm5-7a1,1,0,0,0-1-1H13V4a1,1,0,0,0-2,0v7H4a1,1,0,0,0,0,2h7v7a1,1,0,0,0,2,0V13h7A1,1,0,0,0,21,12ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Z' + }) + ) +} + +export default UilBorderInner \ No newline at end of file diff --git a/src/icons/uil-border-left.ts b/src/icons/uil-border-left.ts new file mode 100644 index 00000000..2f2c8c59 --- /dev/null +++ b/src/icons/uil-border-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.5,19a1,1,0,1,0,1,1A1,1,0,0,0,11.5,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,11.5,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,11.5,11Zm-8-8a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,3.5,3Zm16,2a1,1,0,1,0-1-1A1,1,0,0,0,19.5,5Zm-8,2a1,1,0,1,0,1,1A1,1,0,0,0,11.5,7Zm-4,4a1,1,0,1,0,1,1A1,1,0,0,0,7.5,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,7.5,19Zm0-16a1,1,0,1,0,1,1A1,1,0,0,0,7.5,3Zm12,8a1,1,0,1,0,1,1A1,1,0,0,0,19.5,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,19.5,15Zm-8-12a1,1,0,1,0,1,1A1,1,0,0,0,11.5,3Zm8,16a1,1,0,1,0,1,1A1,1,0,0,0,19.5,19Zm0-12a1,1,0,1,0,1,1A1,1,0,0,0,19.5,7Zm-4-4a1,1,0,1,0,1,1A1,1,0,0,0,15.5,3Zm0,16a1,1,0,1,0,1,1A1,1,0,0,0,15.5,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,15.5,11Z' + }) + ) +} + +export default UilBorderLeft \ No newline at end of file diff --git a/src/icons/uil-border-out.ts b/src/icons/uil-border-out.ts new file mode 100644 index 00000000..ee868c57 --- /dev/null +++ b/src/icons/uil-border-out.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderOut = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9a1,1,0,1,0-1-1A1,1,0,0,0,12,9Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,12,13Zm4,0a1,1,0,1,0-1-1A1,1,0,0,0,16,13Zm-4,4a1,1,0,1,0-1-1A1,1,0,0,0,12,17ZM20,3H4A1,1,0,0,0,3,4V20a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V4A1,1,0,0,0,20,3ZM19,19H5V5H19ZM8,13a1,1,0,1,0-1-1A1,1,0,0,0,8,13Z' + }) + ) +} + +export default UilBorderOut \ No newline at end of file diff --git a/src/icons/uil-border-right.ts b/src/icons/uil-border-right.ts new file mode 100644 index 00000000..6d1bb23b --- /dev/null +++ b/src/icons/uil-border-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.5,7a1,1,0,1,0,1,1A1,1,0,0,0,4.5,7Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,4.5,3Zm4,16a1,1,0,1,0,1,1A1,1,0,0,0,8.5,19Zm-4,0a1,1,0,1,0,1,1A1,1,0,0,0,4.5,19Zm4-8a1,1,0,1,0,1,1A1,1,0,0,0,8.5,11Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,8.5,3Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,4.5,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,4.5,15Zm12-12a1,1,0,1,0,1,1A1,1,0,0,0,16.5,3Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,16.5,11Zm-4,8a1,1,0,1,0,1,1A1,1,0,0,0,12.5,19Zm0-16a1,1,0,1,0,1,1A1,1,0,0,0,12.5,3Zm8,0a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,20.5,3Zm-4,16a1,1,0,1,0,1,1A1,1,0,0,0,16.5,19Zm-4-12a1,1,0,1,0,1,1A1,1,0,0,0,12.5,7Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,12.5,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,12.5,11Z' + }) + ) +} + +export default UilBorderRight \ No newline at end of file diff --git a/src/icons/uil-border-top.ts b/src/icons/uil-border-top.ts new file mode 100644 index 00000000..6fb94a59 --- /dev/null +++ b/src/icons/uil-border-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,18.5a1,1,0,1,0,1,1A1,1,0,0,0,8,18.5Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,8,10.5Zm4,8a1,1,0,1,0,1,1A1,1,0,0,0,12,18.5ZM4,6.5a1,1,0,1,0,1,1A1,1,0,0,0,4,6.5Zm0,12a1,1,0,1,0,1,1A1,1,0,0,0,4,18.5Zm0-14H20a1,1,0,0,0,0-2H4a1,1,0,0,0,0,2Zm0,10a1,1,0,1,0,1,1A1,1,0,0,0,4,14.5Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,4,10.5Zm8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,6.5Zm8,8a1,1,0,1,0,1,1A1,1,0,0,0,20,14.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,18.5Zm-8-4a1,1,0,1,0,1,1A1,1,0,0,0,12,14.5Zm8-8a1,1,0,1,0,1,1A1,1,0,0,0,20,6.5Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,20,10.5Zm-8,0a1,1,0,1,0,1,1A1,1,0,0,0,12,10.5Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,16,10.5Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,16,18.5Z' + }) + ) +} + +export default UilBorderTop \ No newline at end of file diff --git a/src/icons/uil-border-vertical.ts b/src/icons/uil-border-vertical.ts new file mode 100644 index 00000000..76b94bbd --- /dev/null +++ b/src/icons/uil-border-vertical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBorderVertical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,3A1,1,0,1,0,4,4,1,1,0,0,0,3,3ZM3,7A1,1,0,1,0,4,8,1,1,0,0,0,3,7ZM19,5a1,1,0,1,0-1-1A1,1,0,0,0,19,5ZM7,11a1,1,0,1,0,1,1A1,1,0,0,0,7,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,7,19ZM7,3A1,1,0,1,0,8,4,1,1,0,0,0,7,3ZM3,15a1,1,0,1,0,1,1A1,1,0,0,0,3,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,3,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,3,19Zm16-4a1,1,0,1,0,1,1A1,1,0,0,0,19,15Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,19,11Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,19,19ZM19,7a1,1,0,1,0,1,1A1,1,0,0,0,19,7ZM15,3a1,1,0,1,0,1,1A1,1,0,0,0,15,3ZM11,3a1,1,0,0,0-1,1V20a1,1,0,0,0,2,0V4A1,1,0,0,0,11,3Zm4,16a1,1,0,1,0,1,1A1,1,0,0,0,15,19Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,15,11Z' + }) + ) +} + +export default UilBorderVertical \ No newline at end of file diff --git a/src/icons/uil-bowling-ball.ts b/src/icons/uil-bowling-ball.ts new file mode 100644 index 00000000..dfacead0 --- /dev/null +++ b/src/icons/uil-bowling-ball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBowlingBall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.9917,8.00171a1,1,0,1,0,1,1A1,1,0,0,0,7.9917,8.00171ZM11.99121,2.002a10,10,0,1,0,10,10A10.01177,10.01177,0,0,0,11.99121,2.002Zm0,18a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,11.99121,20.002ZM10.9917,10.00171a1,1,0,1,0,1,1A1,1,0,0,0,10.9917,10.00171Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,10.9917,6.00171Z' + }) + ) +} + +export default UilBowlingBall \ No newline at end of file diff --git a/src/icons/uil-box.ts b/src/icons/uil-box.ts new file mode 100644 index 00000000..ece33046 --- /dev/null +++ b/src/icons/uil-box.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBox = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.49,7.52a.19.19,0,0,1,0-.08.17.17,0,0,1,0-.07l0-.09-.06-.15,0,0h0l0,0,0,0a.48.48,0,0,0-.09-.11l-.09-.08h0l-.05,0,0,0L16.26,4.45h0l-3.72-2.3A.85.85,0,0,0,12.25,2h-.08a.82.82,0,0,0-.27,0h-.1a1.13,1.13,0,0,0-.33.13L4,6.78l-.09.07-.09.08L3.72,7l-.05.06,0,0-.06.15,0,.09v.06a.69.69,0,0,0,0,.2v8.73a1,1,0,0,0,.47.85l7.5,4.64h0l0,0,.15.06.08,0a.86.86,0,0,0,.52,0l.08,0,.15-.06,0,0h0L20,17.21a1,1,0,0,0,.47-.85V7.63S20.49,7.56,20.49,7.52ZM12,4.17l1.78,1.1L8.19,8.73,6.4,7.63Zm-1,15L5.5,15.81V9.42l5.5,3.4Zm1-8.11L10.09,9.91l5.59-3.47L17.6,7.63Zm6.5,4.72L13,19.2V12.82l5.5-3.4Z' + }) + ) +} + +export default UilBox \ No newline at end of file diff --git a/src/icons/uil-brackets-curly.ts b/src/icons/uil-brackets-curly.ts new file mode 100644 index 00000000..152eb51d --- /dev/null +++ b/src/icons/uil-brackets-curly.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBracketsCurly = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6 6a2 2 0 0 1 2-2 1 1 0 0 0 0-2 4 4 0 0 0-4 4v3a2 2 0 0 1-2 2 1 1 0 0 0 0 2 2 2 0 0 1 2 2v3a4 4 0 0 0 4 4 1 1 0 0 0 0-2 2 2 0 0 1-2-2v-3a4 4 0 0 0-1.38-3A4 4 0 0 0 6 9Zm16 5a2 2 0 0 1-2-2V6a4 4 0 0 0-4-4 1 1 0 0 0 0 2 2 2 0 0 1 2 2v3a4 4 0 0 0 1.38 3A4 4 0 0 0 18 15v3a2 2 0 0 1-2 2 1 1 0 0 0 0 2 4 4 0 0 0 4-4v-3a2 2 0 0 1 2-2 1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilBracketsCurly \ No newline at end of file diff --git a/src/icons/uil-brain.ts b/src/icons/uil-brain.ts new file mode 100644 index 00000000..dee715ee --- /dev/null +++ b/src/icons/uil-brain.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrain = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,11A4,4,0,0,0,20,7.52,3,3,0,0,0,20,7a3,3,0,0,0-3-3l-.18,0A3,3,0,0,0,12,2.78,3,3,0,0,0,7.18,4L7,4A3,3,0,0,0,4,7a3,3,0,0,0,0,.52,4,4,0,0,0-.55,6.59A4,4,0,0,0,7,20l.18,0A3,3,0,0,0,12,21.22,3,3,0,0,0,16.82,20L17,20a4,4,0,0,0,3.5-5.89A4,4,0,0,0,22,11ZM11,8.55a4.72,4.72,0,0,0-.68-.32,1,1,0,0,0-.64,1.9A2,2,0,0,1,11,12v1.55a4.72,4.72,0,0,0-.68-.32,1,1,0,0,0-.64,1.9A2,2,0,0,1,11,17v2a1,1,0,0,1-1,1,1,1,0,0,1-.91-.6,4.07,4.07,0,0,0,.48-.33,1,1,0,1,0-1.28-1.54A2,2,0,0,1,7,18a2,2,0,0,1-2-2,2,2,0,0,1,.32-1.06A3.82,3.82,0,0,0,6,15a1,1,0,0,0,0-2,1.84,1.84,0,0,1-.69-.13A2,2,0,0,1,5,9.25a3.1,3.1,0,0,0,.46.35,1,1,0,1,0,1-1.74.9.9,0,0,1-.34-.33A.92.92,0,0,1,6,7,1,1,0,0,1,7,6a.76.76,0,0,1,.21,0,3.85,3.85,0,0,0,.19.47,1,1,0,0,0,1.37.37A1,1,0,0,0,9.13,5.5,1.06,1.06,0,0,1,9,5a1,1,0,0,1,2,0Zm7.69,4.32A1.84,1.84,0,0,1,18,13a1,1,0,0,0,0,2,3.82,3.82,0,0,0,.68-.06A2,2,0,0,1,19,16a2,2,0,0,1-2,2,2,2,0,0,1-1.29-.47,1,1,0,0,0-1.28,1.54,4.07,4.07,0,0,0,.48.33A1,1,0,0,1,14,20a1,1,0,0,1-1-1V17a2,2,0,0,1,1.32-1.87,1,1,0,0,0-.64-1.9,4.72,4.72,0,0,0-.68.32V12a2,2,0,0,1,1.32-1.87,1,1,0,0,0-.64-1.9,4.72,4.72,0,0,0-.68.32V5a1,1,0,0,1,2,0,1.06,1.06,0,0,1-.13.5,1,1,0,0,0,.36,1.37A1,1,0,0,0,16.6,6.5,3.85,3.85,0,0,0,16.79,6,.76.76,0,0,1,17,6a1,1,0,0,1,1,1,1,1,0,0,1-.17.55.9.9,0,0,1-.33.31,1,1,0,0,0,1,1.74A2.66,2.66,0,0,0,19,9.25a2,2,0,0,1-.27,3.62Z' + }) + ) +} + +export default UilBrain \ No newline at end of file diff --git a/src/icons/uil-briefcase-alt.ts b/src/icons/uil-briefcase-alt.ts new file mode 100644 index 00000000..1d3a17b8 --- /dev/null +++ b/src/icons/uil-briefcase-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBriefcaseAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a21.27,21.27,0,0,0,3,.94v.59a1,1,0,0,0,2,0v-.21a23,23,0,0,0,3,.21,23,23,0,0,0,3-.21v.21a1,1,0,0,0,2,0v-.59A21.27,21.27,0,0,0,20,13Zm0-7.69a20.39,20.39,0,0,1-3,1V11.5a1,1,0,0,0-2,0v.74a20.11,20.11,0,0,1-6,0V11.5a1,1,0,0,0-2,0v.33a20.39,20.39,0,0,1-3-1V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBriefcaseAlt \ No newline at end of file diff --git a/src/icons/uil-briefcase.ts b/src/icons/uil-briefcase.ts new file mode 100644 index 00000000..c4cdec09 --- /dev/null +++ b/src/icons/uil-briefcase.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBriefcase = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,6H17V5a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5V6H3A1,1,0,0,0,2,7v4a3,3,0,0,0,1,2.22V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V13.22A3,3,0,0,0,22,11V7A1,1,0,0,0,21,6ZM9,5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1V6H9ZM19,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H7v1a1,1,0,0,0,2,0V14h6v1a1,1,0,0,0,2,0V14h2Zm1-8a1,1,0,0,1-1,1H17V11a1,1,0,0,0-2,0v1H9V11a1,1,0,0,0-2,0v1H5a1,1,0,0,1-1-1V8H20Z' + }) + ) +} + +export default UilBriefcase \ No newline at end of file diff --git a/src/icons/uil-bright.ts b/src/icons/uil-bright.ts new file mode 100644 index 00000000..d2e65ef3 --- /dev/null +++ b/src/icons/uil-bright.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBright = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Zm9.71-2.71L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' + }) + ) +} + +export default UilBright \ No newline at end of file diff --git a/src/icons/uil-brightness-empty.ts b/src/icons/uil-brightness-empty.ts new file mode 100644 index 00000000..b0688977 --- /dev/null +++ b/src/icons/uil-brightness-empty.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightnessEmpty = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,11.29,19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' + }) + ) +} + +export default UilBrightnessEmpty \ No newline at end of file diff --git a/src/icons/uil-brightness-half.ts b/src/icons/uil-brightness-half.ts new file mode 100644 index 00000000..0d170929 --- /dev/null +++ b/src/icons/uil-brightness-half.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightnessHalf = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8a1,1,0,0,0,0,2,2,2,0,0,1,0,4,1,1,0,0,0,0,2,4,4,0,0,0,0-8Zm9.71,3.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' + }) + ) +} + +export default UilBrightnessHalf \ No newline at end of file diff --git a/src/icons/uil-brightness-low.ts b/src/icons/uil-brightness-low.ts new file mode 100644 index 00000000..b07a3186 --- /dev/null +++ b/src/icons/uil-brightness-low.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightnessLow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,11a1,1,0,1,0,1,1A1,1,0,0,0,3,11Zm1.93,6.66a1,1,0,1,0,1.41,0A1,1,0,0,0,4.93,17.66ZM6.34,6.34a1,1,0,1,0-1.41,0A1,1,0,0,0,6.34,6.34ZM12,4a1,1,0,1,0-1-1A1,1,0,0,0,12,4Zm5.66,13.66a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,17.66ZM21,11a1,1,0,1,0,1,1A1,1,0,0,0,21,11ZM17.66,4.93a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,4.93ZM12,20a1,1,0,1,0,1,1A1,1,0,0,0,12,20ZM12,6a6,6,0,1,0,6,6A6,6,0,0,0,12,6Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' + }) + ) +} + +export default UilBrightnessLow \ No newline at end of file diff --git a/src/icons/uil-brightness-minus.ts b/src/icons/uil-brightness-minus.ts new file mode 100644 index 00000000..9d41bca2 --- /dev/null +++ b/src/icons/uil-brightness-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightnessMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm7.71.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' + }) + ) +} + +export default UilBrightnessMinus \ No newline at end of file diff --git a/src/icons/uil-brightness-plus.ts b/src/icons/uil-brightness-plus.ts new file mode 100644 index 00000000..48f44d5c --- /dev/null +++ b/src/icons/uil-brightness-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightnessPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Zm7.71.29L19.36,9V5.64a1,1,0,0,0-1-1H15.05L12.71,2.29a1,1,0,0,0-1.42,0L9,4.64H5.64a1,1,0,0,0-1,1V9L2.29,11.29a1,1,0,0,0,0,1.42l2.35,2.34v3.31a1,1,0,0,0,1,1H9l2.34,2.35a1,1,0,0,0,1.42,0l2.34-2.35h3.31a1,1,0,0,0,1-1V15.05l2.35-2.34A1,1,0,0,0,21.71,11.29Zm-4.05,2.64a1,1,0,0,0-.3.71v2.72H14.64a1,1,0,0,0-.71.3L12,19.59l-1.93-1.93a1,1,0,0,0-.71-.3H6.64V14.64a1,1,0,0,0-.3-.71L4.41,12l1.93-1.93a1,1,0,0,0,.3-.71V6.64H9.36a1,1,0,0,0,.71-.3L12,4.41l1.93,1.93a1,1,0,0,0,.71.3h2.72V9.36a1,1,0,0,0,.3.71L19.59,12Z' + }) + ) +} + +export default UilBrightnessPlus \ No newline at end of file diff --git a/src/icons/uil-brightness.ts b/src/icons/uil-brightness.ts new file mode 100644 index 00000000..baa6e007 --- /dev/null +++ b/src/icons/uil-brightness.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrightness = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,12a1,1,0,0,0-1-1H3a1,1,0,0,0,0,2H4A1,1,0,0,0,5,12ZM5.64,17l-.71.71a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l.71-.71A1,1,0,0,0,5.64,17ZM12,5a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4A1,1,0,0,0,12,5Zm5.66,2.34a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,5.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,7.34Zm-12-.29a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,6.34ZM21,11H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM18.36,17A1,1,0,0,0,17,18.36l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM12,6.5A5.5,5.5,0,1,0,17.5,12,5.51,5.51,0,0,0,12,6.5Zm0,9A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5ZM12,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19Z' + }) + ) +} + +export default UilBrightness \ No newline at end of file diff --git a/src/icons/uil-bring-bottom.ts b/src/icons/uil-bring-bottom.ts new file mode 100644 index 00000000..f57068c6 --- /dev/null +++ b/src/icons/uil-bring-bottom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBringBottom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H19a1,1,0,1,0,0,2h1v4H4V16h7a1,1,0,0,0,0-2H10V9A1,1,0,0,0,9,8H3A1,1,0,0,0,2,9v6H2v6a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V15A1,1,0,0,0,21,14ZM4,10H8v4H4ZM12.71,6.7,14,5.41V17a1,1,0,1,0,2,0V5.41L17.29,6.7A1,1,0,0,0,18,7a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,0,1.41A1,1,0,0,0,12.71,6.7Z' + }) + ) +} + +export default UilBringBottom \ No newline at end of file diff --git a/src/icons/uil-bring-front.ts b/src/icons/uil-bring-front.ts new file mode 100644 index 00000000..5556231e --- /dev/null +++ b/src/icons/uil-bring-front.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBringFront = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,17.3,10,18.59V7A1,1,0,0,0,8,7v11.6L6.71,17.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,0-1.41A1,1,0,0,0,11.29,17.3ZM22,3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V9a1,1,0,0,0,1,1H5A1,1,0,0,0,5,8H4V4H20V8H13a1,1,0,0,0,0,2h1v5a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V9h0ZM20,14H16V10h4Z' + }) + ) +} + +export default UilBringFront \ No newline at end of file diff --git a/src/icons/uil-brush-alt.ts b/src/icons/uil-brush-alt.ts new file mode 100644 index 00000000..3b78f687 --- /dev/null +++ b/src/icons/uil-brush-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBrushAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,18a1,1,0,1,0,1,1A1,1,0,0,0,12,18ZM18,1H6A1,1,0,0,0,5,2v9a3,3,0,0,0,3,3H9v2.37a4,4,0,1,0,6,0V14h1a3,3,0,0,0,3-3V2A1,1,0,0,0,18,1ZM12,21a2,2,0,0,1-1.33-3.48,1,1,0,0,0,.33-.74V14h2v2.78a1,1,0,0,0,.33.74A2,2,0,0,1,12,21Zm5-10a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V10H17Zm0-3H7V3H17Z' + }) + ) +} + +export default UilBrushAlt \ No newline at end of file diff --git a/src/icons/uil-bug.ts b/src/icons/uil-bug.ts new file mode 100644 index 00000000..aba03c7b --- /dev/null +++ b/src/icons/uil-bug.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBug = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,14h2a1,1,0,0,0,0-2H19V11a5.15,5.15,0,0,0-.21-1.36A5,5,0,0,0,22,5a1,1,0,0,0-2,0,3,3,0,0,1-2.14,2.87A5,5,0,0,0,16,6.4,2.58,2.58,0,0,0,16,6,4,4,0,0,0,8,6a2.58,2.58,0,0,0,0,.4,5,5,0,0,0-1.9,1.47A3,3,0,0,1,4,5,1,1,0,0,0,2,5,5,5,0,0,0,5.21,9.64,5.15,5.15,0,0,0,5,11v1H3a1,1,0,0,0,0,2H5v1a7,7,0,0,0,.14,1.38A5,5,0,0,0,2,21a1,1,0,0,0,2,0,3,3,0,0,1,1.81-2.74,7,7,0,0,0,12.38,0A3,3,0,0,1,20,21a1,1,0,0,0,2,0,5,5,0,0,0-3.14-4.62A7,7,0,0,0,19,15Zm-8,5.9A5,5,0,0,1,7,15V11a3,3,0,0,1,3-3h1ZM10,6a2,2,0,0,1,4,0Zm7,9a5,5,0,0,1-4,4.9V8h1a3,3,0,0,1,3,3Z' + }) + ) +} + +export default UilBug \ No newline at end of file diff --git a/src/icons/uil-building.ts b/src/icons/uil-building.ts new file mode 100644 index 00000000..3d3478fd --- /dev/null +++ b/src/icons/uil-building.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBuilding = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,8h1a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2Zm0,4h1a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2ZM9,8h1a1,1,0,0,0,0-2H9A1,1,0,0,0,9,8Zm0,4h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm12,8H20V3a1,1,0,0,0-1-1H5A1,1,0,0,0,4,3V20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-8,0H11V16h2Zm5,0H15V15a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v5H6V4H18Z' + }) + ) +} + +export default UilBuilding \ No newline at end of file diff --git a/src/icons/uil-bullseye.ts b/src/icons/uil-bullseye.ts new file mode 100644 index 00000000..235155c9 --- /dev/null +++ b/src/icons/uil-bullseye.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBullseye = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,5a7,7,0,1,0,7,7A7,7,0,0,0,12,5Zm0,12a5,5,0,1,1,5-5A5,5,0,0,1,12,17Zm0-8a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13ZM12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' + }) + ) +} + +export default UilBullseye \ No newline at end of file diff --git a/src/icons/uil-bus-alt.ts b/src/icons/uil-bus-alt.ts new file mode 100644 index 00000000..5e4e3e5d --- /dev/null +++ b/src/icons/uil-bus-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBusAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.5,2H6.5a3,3,0,0,0-3,3V17a3,3,0,0,0,2,2.82V21a1,1,0,0,0,2,0V20h10v1a1,1,0,0,0,2,0V19.82a3,3,0,0,0,2-2.82V5A3,3,0,0,0,18.5,2ZM5.5,8h6v4h-6Zm14,9a1,1,0,0,1-1,1H6.5a1,1,0,0,1-1-1V14h14Zm0-5h-6V8h6Zm0-6H5.5V5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1ZM16.12,16.92a1,1,0,0,0,.38.08,1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12a.76.76,0,0,0-.18-.09A.64.64,0,0,0,16.7,15a1,1,0,0,0-.91.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,16.12,16.92Zm-8,0A1,1,0,0,0,8.5,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12-.18-.09L8.7,15a1,1,0,0,0-.91.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,8.12,16.92Z' + }) + ) +} + +export default UilBusAlt \ No newline at end of file diff --git a/src/icons/uil-bus-school.ts b/src/icons/uil-bus-school.ts new file mode 100644 index 00000000..0d0947ac --- /dev/null +++ b/src/icons/uil-bus-school.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBusSchool = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M1,12.5v4a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V6.5a3,3,0,0,0-3-3H8.44A3,3,0,0,0,5.6,5.55L4.16,9.86,1.45,11.67A1,1,0,0,0,1,12.5Zm20-3H19v-4h1a1,1,0,0,1,1,1Zm-4,8a1,1,0,1,1,1,1A1,1,0,0,1,17,17.5Zm-2-6h6v4h-.78a3,3,0,0,0-4.44,0H15Zm0-6h2v4H15Zm-4,6h2v4H11Zm0-6h2v4H11Zm-2,4H6.39l1.1-3.32a1,1,0,0,1,.95-.68H9Zm-4,8a1,1,0,1,1,1,1A1,1,0,0,1,5,17.5ZM3,13,5.3,11.5H9v4H8.22a3,3,0,0,0-4.44,0H3Z' + }) + ) +} + +export default UilBusSchool \ No newline at end of file diff --git a/src/icons/uil-bus.ts b/src/icons/uil-bus.ts new file mode 100644 index 00000000..80a50acf --- /dev/null +++ b/src/icons/uil-bus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilBus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1,1,0,0,0-.33-.21A1,1,0,0,0,8.3,15l-.18.06-.18.09a1.58,1.58,0,0,0-.15.12l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,1,1Zm8,0a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7A1,1,0,0,0,16.5,17Zm-3-12h-2a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm5-3H6.5a3,3,0,0,0-3,3V17a3,3,0,0,0,2,2.82V21a1,1,0,0,0,2,0V20h10v1a1,1,0,0,0,2,0V19.82a3,3,0,0,0,2-2.82V5A3,3,0,0,0,18.5,2Zm1,15a1,1,0,0,1-1,1H6.5a1,1,0,0,1-1-1V14h14Zm0-5H5.5V5a1,1,0,0,1,1-1h12a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilBus \ No newline at end of file diff --git a/src/icons/uil-calculator-alt.ts b/src/icons/uil-calculator-alt.ts new file mode 100644 index 00000000..ac74e530 --- /dev/null +++ b/src/icons/uil-calculator-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalculatorAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.5,8H6v.5a1,1,0,0,0,2,0V8h.5a1,1,0,0,0,0-2H8V5.5a1,1,0,0,0-2,0V6H5.5a1,1,0,0,0,0,2ZM4.88,19.12a1,1,0,0,0,1.41,0L7,18.41l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L8.41,17l.71-.71a1,1,0,0,0-1.41-1.41L7,15.59l-.71-.71a1,1,0,0,0-1.41,1.41l.71.71-.71.71A1,1,0,0,0,4.88,19.12ZM20,1H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1ZM11,21H4a1,1,0,0,1-1-1V13h8Zm0-10H3V4A1,1,0,0,1,4,3h7Zm10,9a1,1,0,0,1-1,1H13V13h8Zm0-9H13V3h7a1,1,0,0,1,1,1Zm-5.5,5.5h3a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2ZM18.5,6h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm-3,13.5h3a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilCalculatorAlt \ No newline at end of file diff --git a/src/icons/uil-calculator.ts b/src/icons/uil-calculator.ts new file mode 100644 index 00000000..3367be29 --- /dev/null +++ b/src/icons/uil-calculator.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalculator = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,17.29a1,1,0,0,0-.16-.12.56.56,0,0,0-.17-.09.6.6,0,0,0-.19-.06.93.93,0,0,0-.57.06.9.9,0,0,0-.54.54A.84.84,0,0,0,11,18a1,1,0,0,0,.07.38,1.46,1.46,0,0,0,.22.33A1,1,0,0,0,12,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13,18a1,1,0,0,0-.08-.38A1,1,0,0,0,12.71,17.29ZM8.55,13.17a.56.56,0,0,0-.17-.09A.6.6,0,0,0,8.19,13a.86.86,0,0,0-.39,0l-.18.06-.18.09-.15.12A1.05,1.05,0,0,0,7,14a1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21A1,1,0,0,0,9,14a1.05,1.05,0,0,0-.29-.71Zm.16,4.12a1,1,0,0,0-.33-.21A1,1,0,0,0,7.8,17l-.18.06a.76.76,0,0,0-.18.09,1.58,1.58,0,0,0-.15.12,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,8,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,8.71,17.29Zm2.91-4.21a1,1,0,0,0-.33.21A1.05,1.05,0,0,0,11,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,11.62,13.08Zm5.09,4.21a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,16,19a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1,1,0,0,0,16.71,17.29ZM16,5H8A1,1,0,0,0,7,6v4a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V6A1,1,0,0,0,16,5ZM15,9H9V7h6Zm3-8H6A3,3,0,0,0,3,4V20a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V4A3,3,0,0,0,18,1Zm1,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V4A1,1,0,0,1,6,3H18a1,1,0,0,1,1,1Zm-2.45-6.83a.56.56,0,0,0-.17-.09.6.6,0,0,0-.19-.06.86.86,0,0,0-.39,0l-.18.06-.18.09-.15.12A1.05,1.05,0,0,0,15,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,17,14a1.05,1.05,0,0,0-.29-.71Z' + }) + ) +} + +export default UilCalculator \ No newline at end of file diff --git a/src/icons/uil-calendar-alt.ts b/src/icons/uil-calendar-alt.ts new file mode 100644 index 00000000..d1fb48ea --- /dev/null +++ b/src/icons/uil-calendar-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalendarAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,19a1,1,0,1,0-1-1A1,1,0,0,0,12,19Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,19Zm0-4a1,1,0,1,0-1-1A1,1,0,0,0,17,15Zm-5,0a1,1,0,1,0-1-1A1,1,0,0,0,12,15ZM19,3H18V2a1,1,0,0,0-2,0V3H8V2A1,1,0,0,0,6,2V3H5A3,3,0,0,0,2,6V20a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11H20ZM20,9H4V6A1,1,0,0,1,5,5H6V6A1,1,0,0,0,8,6V5h8V6a1,1,0,0,0,2,0V5h1a1,1,0,0,1,1,1ZM7,15a1,1,0,1,0-1-1A1,1,0,0,0,7,15Zm0,4a1,1,0,1,0-1-1A1,1,0,0,0,7,19Z' + }) + ) +} + +export default UilCalendarAlt \ No newline at end of file diff --git a/src/icons/uil-calendar-slash.ts b/src/icons/uil-calendar-slash.ts new file mode 100644 index 00000000..4cb23897 --- /dev/null +++ b/src/icons/uil-calendar-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalendarSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.66,7H15V8a1,1,0,0,0,2,0V7h1a1,1,0,0,1,1,1v3H17.66a1,1,0,0,0,0,2H19v1.34a1,1,0,1,0,2,0V8a3,3,0,0,0-3-3H17V4a1,1,0,0,0-2,0V5H11.66a1,1,0,0,0,0,2ZM21.71,20.29l-1.6-1.6h0L3.71,2.29A1,1,0,0,0,2.29,3.71L4.2,5.61A3,3,0,0,0,3,8V18a3,3,0,0,0,3,3H18a3,3,0,0,0,1.29-.3l1,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,8a1,1,0,0,1,.66-.93L9.59,11H5ZM6,19a1,1,0,0,1-1-1V13h6.59l6,6Z' + }) + ) +} + +export default UilCalendarSlash \ No newline at end of file diff --git a/src/icons/uil-calendar.ts b/src/icons/uil-calendar.ts new file mode 100644 index 00000000..4ba14a10 --- /dev/null +++ b/src/icons/uil-calendar.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalendar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H17V3a1,1,0,0,0-2,0V4H9V3A1,1,0,0,0,7,3V4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm1,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H20Zm0-9H4V7A1,1,0,0,1,5,6H7V7A1,1,0,0,0,9,7V6h6V7a1,1,0,0,0,2,0V6h2a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCalendar \ No newline at end of file diff --git a/src/icons/uil-calling.ts b/src/icons/uil-calling.ts new file mode 100644 index 00000000..f9e6aec4 --- /dev/null +++ b/src/icons/uil-calling.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCalling = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.47,9a1,1,0,1,0-1-1A1,1,0,0,0,20.47,9Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,17.47,9Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,14.47,9ZM18.91,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.48,12.48,0,0,1-2.67-2,12.83,12.83,0,0,1-2-2.66L10,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.23-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-2.24,1,3,3,0,0,0-.73,2.39A19,19,0,0,0,18,21.91a2.56,2.56,0,0,0,.39,0,3,3,0,0,0,3-3v-3A3,3,0,0,0,18.91,13Zm.49,6a1,1,0,0,1-1.15,1,17.12,17.12,0,0,1-9.87-4.85A17.14,17.14,0,0,1,3.54,5.22a1,1,0,0,1,.25-.82,1,1,0,0,1,.74-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.56-.52l.63-1.4a13.69,13.69,0,0,0,1.58.46c.26.06.54.11.81.15a1,1,0,0,1,.78,1Z' + }) + ) +} + +export default UilCalling \ No newline at end of file diff --git a/src/icons/uil-camera-change.ts b/src/icons/uil-camera-change.ts new file mode 100644 index 00000000..b9a3d40c --- /dev/null +++ b/src/icons/uil-camera-change.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCameraChange = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.29,5.21l1.5,1.5a1,1,0,0,0,1.42,0,1,1,0,0,0,.13-1.21H19a1,1,0,0,0,0-2H15.34a1,1,0,0,0-.13-1.21,1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,12.29,5.21ZM22.92,9.12a1,1,0,0,0-.21-.33l-1.5-1.5a1,1,0,0,0-1.42,0,1,1,0,0,0-.13,1.21H16a1,1,0,0,0,0,2h3.66a1,1,0,0,0,.13,1.21,1,1,0,0,0,1.42,0l1.5-1.5a1,1,0,0,0,.21-.33A1,1,0,0,0,22.92,9.12ZM11,10a4,4,0,1,0,4,4A4,4,0,0,0,11,10Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,11,16Zm9-3a1,1,0,0,0-1,1v5a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H6a1,1,0,0,0,1-.69l.54-1.62A1,1,0,0,1,8.44,7H10a1,1,0,0,0,0-2H8.44A3,3,0,0,0,5.59,7.06L5.28,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V14A1,1,0,0,0,20,13Z' + }) + ) +} + +export default UilCameraChange \ No newline at end of file diff --git a/src/icons/uil-camera-plus.ts b/src/icons/uil-camera-plus.ts new file mode 100644 index 00000000..ca148bd6 --- /dev/null +++ b/src/icons/uil-camera-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCameraPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,10.5a1,1,0,0,0-1,1v7a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H6a1,1,0,0,0,1-.68l.54-1.64a1,1,0,0,1,.95-.68H14a1,1,0,0,0,0-2H8.44A3,3,0,0,0,5.6,6.55l-.32,1H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3v-7A1,1,0,0,0,20,10.5Zm-9-1a4,4,0,1,0,4,4A4,4,0,0,0,11,9.5Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,11,15.5Zm11-11H21v-1a1,1,0,0,0-2,0v1H18a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCameraPlus \ No newline at end of file diff --git a/src/icons/uil-camera-slash.ts b/src/icons/uil-camera-slash.ts new file mode 100644 index 00000000..645bbd4d --- /dev/null +++ b/src/icons/uil-camera-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCameraSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.71,2.29A1,1,0,0,0,2.29,3.71L5.09,6.5H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19.08l1.21,1.22a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6.49,9.33,2.68,2.68a2,2,0,0,1-.88.2,2,2,0,0,1-2-2A2,2,0,0,1,10.2,11.62ZM5,18.5a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H7.07l1.7,1.69A3.92,3.92,0,0,0,8,12.5a4,4,0,0,0,4,4,3.92,3.92,0,0,0,2.32-.77l2.77,2.77Zm14-12H17.72l-.31-1a3,3,0,0,0-2.85-2h-4.4a1,1,0,0,0,0,2h4.4a1,1,0,0,1,.95.68l.54,1.63A1,1,0,0,0,17,8.5h2a1,1,0,0,1,1,1v5.84a1,1,0,1,0,2,0V9.5A3,3,0,0,0,19,6.5Z' + }) + ) +} + +export default UilCameraSlash \ No newline at end of file diff --git a/src/icons/uil-camera.ts b/src/icons/uil-camera.ts new file mode 100644 index 00000000..2c490174 --- /dev/null +++ b/src/icons/uil-camera.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCamera = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6.5H17.72l-.32-1a3,3,0,0,0-2.84-2H9.44A3,3,0,0,0,6.6,5.55l-.32,1H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-8A3,3,0,0,0,19,6.5Zm1,11a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1v-8a1,1,0,0,1,1-1H7a1,1,0,0,0,1-.68l.54-1.64a1,1,0,0,1,.95-.68h5.12a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,17,8.5h2a1,1,0,0,1,1,1Zm-8-9a4,4,0,1,0,4,4A4,4,0,0,0,12,8.5Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14.5Z' + }) + ) +} + +export default UilCamera \ No newline at end of file diff --git a/src/icons/uil-cancel.ts b/src/icons/uil-cancel.ts new file mode 100644 index 00000000..16fa50cf --- /dev/null +++ b/src/icons/uil-cancel.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCancel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.77,11.36l-5-6A1,1,0,0,0,16,5H5A3,3,0,0,0,2,8v8a3,3,0,0,0,3,3H16a1,1,0,0,0,.77-.36l5-6A1,1,0,0,0,21.77,11.36ZM15.53,17H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7H15.53l4.17,5ZM12.71,9.29a1,1,0,0,0-1.42,0L10,10.59,8.71,9.29a1,1,0,1,0-1.42,1.42L8.59,12l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L10,13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,12l1.3-1.29A1,1,0,0,0,12.71,9.29Z' + }) + ) +} + +export default UilCancel \ No newline at end of file diff --git a/src/icons/uil-capsule.ts b/src/icons/uil-capsule.ts new file mode 100644 index 00000000..3d7b2770 --- /dev/null +++ b/src/icons/uil-capsule.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCapsule = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.5,4.5a5.12,5.12,0,0,0-7.24,0L4.5,12.26a5.12,5.12,0,1,0,7.24,7.24l7.76-7.76A5.12,5.12,0,0,0,19.5,4.5ZM10.32,18.09a3.21,3.21,0,0,1-4.41,0,3.13,3.13,0,0,1,0-4.41L9.09,10.5l4.41,4.41Zm7.77-7.77L14.91,13.5,10.5,9.09l3.18-3.18a3.12,3.12,0,0,1,4.41,4.41Z' + }) + ) +} + +export default UilCapsule \ No newline at end of file diff --git a/src/icons/uil-capture.ts b/src/icons/uil-capture.ts new file mode 100644 index 00000000..f2bd32d5 --- /dev/null +++ b/src/icons/uil-capture.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCapture = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2Zm2,13a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15Z' + }) + ) +} + +export default UilCapture \ No newline at end of file diff --git a/src/icons/uil-car-sideview.ts b/src/icons/uil-car-sideview.ts new file mode 100644 index 00000000..27f90201 --- /dev/null +++ b/src/icons/uil-car-sideview.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCarSideview = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,9.5h-.32L17.43,6.38A3,3,0,0,0,14.65,4.5h-6A3,3,0,0,0,5.7,6.91L5.18,9.5H5a3,3,0,0,0-3,3v3a1,1,0,0,0,1,1H4a3,3,0,0,0,6,0h4a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1v-3A3,3,0,0,0,19,9.5Zm-6-3h1.65a1,1,0,0,1,.92.63l.95,2.37H13Zm-5.34.8a1,1,0,0,1,1-.8H11v3H7.22ZM7,17.5a1,1,0,1,1,1-1A1,1,0,0,1,7,17.5Zm10,0a1,1,0,1,1,1-1A1,1,0,0,1,17,17.5Zm3-3h-.78a3,3,0,0,0-4.44,0H9.22a3,3,0,0,0-4.44,0H4v-2a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCarSideview \ No newline at end of file diff --git a/src/icons/uil-car-slash.ts b/src/icons/uil-car-slash.ts new file mode 100644 index 00000000..31e117e6 --- /dev/null +++ b/src/icons/uil-car-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCarSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,13a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM19.76,9.11,18.41,5.05a3,3,0,0,0-2.85-2H9.66a1,1,0,0,0,0,2h5.9a1,1,0,0,1,1,.69L17.61,9H15.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v3.34a1,1,0,1,0,2,0V12A3,3,0,0,0,19.76,9.11Zm-16-6.82A1,1,0,0,0,2.29,3.71L5.11,6.52,4.24,9.11A3,3,0,0,0,2,12v4a3,3,0,0,0,2,2.82V20a1,1,0,0,0,2,0V19H17.59l.41.41V20a1,1,0,0,0,1,1,.91.91,0,0,0,.46-.13l.83.84a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm3,5.81.9.9H6.39ZM5,17a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H9.59l2,2H11a1,1,0,0,0,0,2h2a.91.91,0,0,0,.46-.13L15.59,17Z' + }) + ) +} + +export default UilCarSlash \ No newline at end of file diff --git a/src/icons/uil-car-wash.ts b/src/icons/uil-car-wash.ts new file mode 100644 index 00000000..2750f920 --- /dev/null +++ b/src/icons/uil-car-wash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCarWash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.5,4a1,1,0,0,0,.71-.29l1-1A1,1,0,0,0,7.79,1.29l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,7.5,4Zm4,0a1,1,0,0,0,.71-.29l1-1a1,1,0,1,0-1.42-1.42l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,11.5,4Zm4,0a1,1,0,0,0,.71-.29l1-1a1,1,0,1,0-1.42-1.42l-1,1a1,1,0,0,0,0,1.42A1,1,0,0,0,15.5,4Zm2.42,11.62a.76.76,0,0,0-.09-.18l-.12-.15-.15-.12a.76.76,0,0,0-.18-.09.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.29.7.91.91,0,0,0,.33.22A1,1,0,0,0,17,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,17.92,15.62Zm1.84-4.51L18.4,7.05a3,3,0,0,0-2.84-2H8.44A3,3,0,0,0,5.6,7.05L4.24,11.11A3,3,0,0,0,2,14v4a3,3,0,0,0,2,2.82V22a1,1,0,0,0,2,0V21H18v1a1,1,0,0,0,2,0V20.82A3,3,0,0,0,22,18V14A3,3,0,0,0,19.76,11.11ZM7.49,7.68A1,1,0,0,1,8.44,7h7.12a1,1,0,0,1,1,.68L17.61,11H6.39ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-7-3H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm-5.08.62a.76.76,0,0,0-.09-.18l-.12-.15a1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18A.64.64,0,0,0,6,15.8,1.36,1.36,0,0,0,6,16a1,1,0,0,0,1.71.7A1,1,0,0,0,8,16a1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,7.92,15.62Z' + }) + ) +} + +export default UilCarWash \ No newline at end of file diff --git a/src/icons/uil-car.ts b/src/icons/uil-car.ts new file mode 100644 index 00000000..9d1df405 --- /dev/null +++ b/src/icons/uil-car.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.62,13.08a.9.9,0,0,0-.54.54,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,8,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,6.62,13.08Zm13.14-4L18.4,5.05a3,3,0,0,0-2.84-2H8.44A3,3,0,0,0,5.6,5.05L4.24,9.11A3,3,0,0,0,2,12v4a3,3,0,0,0,2,2.82V20a1,1,0,0,0,2,0V19H18v1a1,1,0,0,0,2,0V18.82A3,3,0,0,0,22,16V12A3,3,0,0,0,19.76,9.11ZM7.49,5.68A1,1,0,0,1,8.44,5h7.12a1,1,0,0,1,1,.68L17.61,9H6.39ZM20,16a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-3.38-2.92a.9.9,0,0,0-.54.54,1,1,0,0,0,1.3,1.3.9.9,0,0,0,.54-.54A.84.84,0,0,0,18,14a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,16.62,13.08ZM13,13H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCar \ No newline at end of file diff --git a/src/icons/uil-card-atm.ts b/src/icons/uil-card-atm.ts new file mode 100644 index 00000000..ad1e515d --- /dev/null +++ b/src/icons/uil-card-atm.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCardAtm = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4.5H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,4.5Zm1,12a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1v-9a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm-4-6a3,3,0,0,0-1.51.42,3,3,0,1,0,0,5.16A3,3,0,1,0,16,10.5Zm-2.83,4a1,1,0,0,1-.17,0,1,1,0,0,1,0-2,1,1,0,0,1,.17,0,2.8,2.8,0,0,0,0,1.92Zm2.83,0a1,1,0,1,1,1-1A1,1,0,0,1,16,14.5Z' + }) + ) +} + +export default UilCardAtm \ No newline at end of file diff --git a/src/icons/uil-caret-right.ts b/src/icons/uil-caret-right.ts new file mode 100644 index 00000000..30a4c559 --- /dev/null +++ b/src/icons/uil-caret-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCaretRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.5,11.13,5.5,3.05a1,1,0,0,0-1,0,1,1,0,0,0-.5.87V20.08a1,1,0,0,0,.5.87,1,1,0,0,0,1,0l14-8.08a1,1,0,0,0,0-1.74ZM6,18.35V5.65L17,12Z' + }) + ) +} + +export default UilCaretRight \ No newline at end of file diff --git a/src/icons/uil-cell.ts b/src/icons/uil-cell.ts new file mode 100644 index 00000000..8083e165 --- /dev/null +++ b/src/icons/uil-cell.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCell = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.49,4.73,17,2.17a1,1,0,0,0-1,0L12,4.45,8,2.17a1,1,0,0,0-1,0L2.51,4.73A1,1,0,0,0,2,5.6v5.12a1,1,0,0,0,.51.87l4,2.27V18.4a1,1,0,0,0,.51.87l4.5,2.56a1,1,0,0,0,1,0L17,19.27a1,1,0,0,0,.51-.87V13.86l4-2.27a1,1,0,0,0,.51-.87V5.6A1,1,0,0,0,21.49,4.73ZM4,10.14v-4l3.5-2,3.5,2v4l-3.5,2Zm11.5,7.68-3.5,2-3.5-2v-4l3.5-2,3.5,2ZM20,10.14l-3.5,2-3.5-2v-4l3.5-2,3.5,2Z' + }) + ) +} + +export default UilCell \ No newline at end of file diff --git a/src/icons/uil-celsius.ts b/src/icons/uil-celsius.ts new file mode 100644 index 00000000..7c5ae7ba --- /dev/null +++ b/src/icons/uil-celsius.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCelsius = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,19H15a3,3,0,0,1-3-3V8a3,3,0,0,1,3-3h6a1,1,0,0,0,0-2H15a5,5,0,0,0-5,5v8a5,5,0,0,0,5,5h6a1,1,0,0,0,0-2ZM5,3A3,3,0,1,0,8,6,3,3,0,0,0,5,3ZM5,7A1,1,0,1,1,6,6,1,1,0,0,1,5,7Z' + }) + ) +} + +export default UilCelsius \ No newline at end of file diff --git a/src/icons/uil-channel-add.ts b/src/icons/uil-channel-add.ts new file mode 100644 index 00000000..bbbf5642 --- /dev/null +++ b/src/icons/uil-channel-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChannelAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18 7h1v1a1 1 0 0 0 2 0V7h1a1 1 0 0 0 0-2h-1V4a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2Zm2 9a3 3 0 0 0-1.73.56l-2.45-1.45A3.74 3.74 0 0 0 16 14a4 4 0 0 0-3-3.86V7.82a3 3 0 1 0-2 0v2.32A4 4 0 0 0 8 14a3.74 3.74 0 0 0 .18 1.11l-2.45 1.45A3 3 0 0 0 4 16a3 3 0 1 0 3 3 3 3 0 0 0-.12-.8l2.3-1.37a4 4 0 0 0 5.64 0l2.3 1.37A3 3 0 1 0 20 16ZM4 20a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm8-16a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 12a2 2 0 1 1 2-2 2 2 0 0 1-2 2Zm8 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' + }) + ) +} + +export default UilChannelAdd \ No newline at end of file diff --git a/src/icons/uil-channel.ts b/src/icons/uil-channel.ts new file mode 100644 index 00000000..bf649483 --- /dev/null +++ b/src/icons/uil-channel.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChannel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20 16a3 3 0 0 0-1.73.56l-2.45-1.45A3.74 3.74 0 0 0 16 14a4 4 0 0 0-3-3.86V7.82a3 3 0 1 0-2 0v2.32A4 4 0 0 0 8 14a3.74 3.74 0 0 0 .18 1.11l-2.45 1.45A3 3 0 0 0 4 16a3 3 0 1 0 3 3 3 3 0 0 0-.12-.8l2.3-1.37a4 4 0 0 0 5.64 0l2.3 1.37A3 3 0 1 0 20 16ZM4 20a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm8-16a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 12a2 2 0 1 1 2-2 2 2 0 0 1-2 2Zm8 4a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' + }) + ) +} + +export default UilChannel \ No newline at end of file diff --git a/src/icons/uil-chart-bar-alt.ts b/src/icons/uil-chart-bar-alt.ts new file mode 100644 index 00000000..a6c7d9e1 --- /dev/null +++ b/src/icons/uil-chart-bar-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartBarAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H4V18H7a1,1,0,0,0,0-2H4V14H15a1,1,0,0,0,0-2H4V10h7a1,1,0,0,0,0-2H4V6H19a1,1,0,0,0,0-2H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilChartBarAlt \ No newline at end of file diff --git a/src/icons/uil-chart-bar.ts b/src/icons/uil-chart-bar.ts new file mode 100644 index 00000000..922e8234 --- /dev/null +++ b/src/icons/uil-chart-bar.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartBar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H20V5a1,1,0,0,0-2,0V20H16V13a1,1,0,0,0-2,0v7H12V9a1,1,0,0,0-2,0V20H8V17a1,1,0,0,0-2,0v3H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilChartBar \ No newline at end of file diff --git a/src/icons/uil-chart-down.ts b/src/icons/uil-chart-down.ts new file mode 100644 index 00000000..1d747905 --- /dev/null +++ b/src/icons/uil-chart-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11a1,1,0,0,0-1,1v2.59l-6.29-6.3a1,1,0,0,0-1.42,0L9,11.59,3.71,6.29A1,1,0,0,0,2.29,7.71l6,6a1,1,0,0,0,1.42,0L13,10.41,18.59,16H16a1,1,0,0,0,0,2h5a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,17V12A1,1,0,0,0,21,11Z' + }) + ) +} + +export default UilChartDown \ No newline at end of file diff --git a/src/icons/uil-chart-growth-alt.ts b/src/icons/uil-chart-growth-alt.ts new file mode 100644 index 00000000..117c25d3 --- /dev/null +++ b/src/icons/uil-chart-growth-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartGrowthAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H4V18H7a1,1,0,0,0,0-2H4V14h7a1,1,0,0,0,0-2H4V10H15a1,1,0,0,0,0-2H4V6H19a1,1,0,0,0,0-2H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilChartGrowthAlt \ No newline at end of file diff --git a/src/icons/uil-chart-growth.ts b/src/icons/uil-chart-growth.ts new file mode 100644 index 00000000..78ba8c3f --- /dev/null +++ b/src/icons/uil-chart-growth.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartGrowth = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H20V5a1,1,0,0,0-2,0V20H16V9a1,1,0,0,0-2,0V20H12V13a1,1,0,0,0-2,0v7H8V17a1,1,0,0,0-2,0v3H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilChartGrowth \ No newline at end of file diff --git a/src/icons/uil-chart-line.ts b/src/icons/uil-chart-line.ts new file mode 100644 index 00000000..67219c84 --- /dev/null +++ b/src/icons/uil-chart-line.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartLine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,16a1.5,1.5,0,0,0,1.5-1.5.77.77,0,0,0,0-.15l2.79-2.79.23,0,.23,0,1.61,1.61s0,.05,0,.08a1.5,1.5,0,1,0,3,0v-.08L20,9.5h0A1.5,1.5,0,1,0,18.5,8a.77.77,0,0,0,0,.15l-3.61,3.61h-.16L13,10a1.49,1.49,0,0,0-3,0L7,13H7a1.5,1.5,0,0,0,0,3Zm13.5,4H3.5V3a1,1,0,0,0-2,0V21a1,1,0,0,0,1,1h18a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilChartLine \ No newline at end of file diff --git a/src/icons/uil-chart-pie-alt.ts b/src/icons/uil-chart-pie-alt.ts new file mode 100644 index 00000000..34a624c6 --- /dev/null +++ b/src/icons/uil-chart-pie-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartPieAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,12h-7V5c0-0.6-0.4-1-1-1c-5,0-9,4-9,9s4,9,9,9s9-4,9-9C20,12.4,19.6,12,19,12z M12,19.9c-3.8,0.6-7.4-2.1-7.9-5.9C3.5,10.2,6.2,6.6,10,6.1V13c0,0.6,0.4,1,1,1h6.9C17.5,17.1,15.1,19.5,12,19.9z M15,2c-0.6,0-1,0.4-1,1v6c0,0.6,0.4,1,1,1h6c0.6,0,1-0.4,1-1C22,5.1,18.9,2,15,2z M16,8V4.1C18,4.5,19.5,6,19.9,8H16z' + }) + ) +} + +export default UilChartPieAlt \ No newline at end of file diff --git a/src/icons/uil-chart-pie.ts b/src/icons/uil-chart-pie.ts new file mode 100644 index 00000000..c7fd2ca7 --- /dev/null +++ b/src/icons/uil-chart-pie.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChartPie = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2a10,10,0,1,0,4.93,18.69l.07,0,.05,0A10,10,0,0,0,12,2Zm1,2.07A8,8,0,0,1,19.93,11H13ZM12,20A8,8,0,0,1,11,4.07V12a1.09,1.09,0,0,0,.07.35l0,.08,0,.07,4,6.87A7.81,7.81,0,0,1,12,20Zm4.83-1.64L13.73,13h6.2A8,8,0,0,1,16.83,18.36Z' + }) + ) +} + +export default UilChartPie \ No newline at end of file diff --git a/src/icons/uil-chart.ts b/src/icons/uil-chart.ts new file mode 100644 index 00000000..0a412ece --- /dev/null +++ b/src/icons/uil-chart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6a1,1,0,0,0-1,1V17a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6ZM7,12a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V13A1,1,0,0,0,7,12Zm10-2a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V11A1,1,0,0,0,17,10Zm2-8H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilChart \ No newline at end of file diff --git a/src/icons/uil-chat-bubble-user.ts b/src/icons/uil-chat-bubble-user.ts new file mode 100644 index 00000000..fa403e63 --- /dev/null +++ b/src/icons/uil-chat-bubble-user.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChatBubbleUser = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.58,11.3a3.24,3.24,0,0,0,.71-2,3.29,3.29,0,0,0-6.58,0,3.24,3.24,0,0,0,.71,2,5,5,0,0,0-2,2.31,1,1,0,1,0,1.84.78A3,3,0,0,1,12,12.57h0a3,3,0,0,1,2.75,1.82,1,1,0,0,0,.92.61,1.09,1.09,0,0,0,.39-.08,1,1,0,0,0,.53-1.31A5,5,0,0,0,14.58,11.3ZM12,10.57h0a1.29,1.29,0,1,1,1.29-1.28A1.29,1.29,0,0,1,12,10.57ZM18,2H6A3,3,0,0,0,3,5V16a3,3,0,0,0,3,3H8.59l2.7,2.71A1,1,0,0,0,12,22a1,1,0,0,0,.65-.24L15.87,19H18a3,3,0,0,0,3-3V5A3,3,0,0,0,18,2Zm1,14a1,1,0,0,1-1,1H15.5a1,1,0,0,0-.65.24l-2.8,2.4L9.71,17.29A1,1,0,0,0,9,17H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilChatBubbleUser \ No newline at end of file diff --git a/src/icons/uil-chat-info.ts b/src/icons/uil-chat-info.ts new file mode 100644 index 00000000..7c7bb77a --- /dev/null +++ b/src/icons/uil-chat-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChatInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.29,3.71a1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,21,3a1,1,0,0,0-.29-.71l-.15-.12a.76.76,0,0,0-.18-.09,1,1,0,0,0-1.09.21A1,1,0,0,0,19,3a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,19.29,3.71ZM20,5a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V6A1,1,0,0,0,20,5Zm.06,8a1,1,0,0,0-1.11.87A7,7,0,0,1,12,20H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,12,6a6.91,6.91,0,0,1,3.49.94,1,1,0,0,0,1-1.72A8.84,8.84,0,0,0,12,4,9,9,0,0,0,5,18.62L3.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,22h8a9,9,0,0,0,8.93-7.88A1,1,0,0,0,20.06,13Z' + }) + ) +} + +export default UilChatInfo \ No newline at end of file diff --git a/src/icons/uil-chat.ts b/src/icons/uil-chat.ts new file mode 100644 index 00000000..d3f37943 --- /dev/null +++ b/src/icons/uil-chat.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilChat = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,2H6A3,3,0,0,0,3,5V16a3,3,0,0,0,3,3H8.59l2.7,2.71A1,1,0,0,0,12,22a1,1,0,0,0,.65-.24L15.87,19H18a3,3,0,0,0,3-3V5A3,3,0,0,0,18,2Zm1,14a1,1,0,0,1-1,1H15.5a1,1,0,0,0-.65.24l-2.8,2.4L9.71,17.29A1,1,0,0,0,9,17H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilChat \ No newline at end of file diff --git a/src/icons/uil-check-circle.ts b/src/icons/uil-check-circle.ts new file mode 100644 index 00000000..3f5aff8f --- /dev/null +++ b/src/icons/uil-check-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCheckCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.72,8.79l-4.29,4.3L8.78,11.44a1,1,0,1,0-1.41,1.41l2.35,2.36a1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l5-5a1,1,0,0,0,0-1.42A1,1,0,0,0,14.72,8.79ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilCheckCircle \ No newline at end of file diff --git a/src/icons/uil-check-square.ts b/src/icons/uil-check-square.ts new file mode 100644 index 00000000..fbbfc3ee --- /dev/null +++ b/src/icons/uil-check-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCheckSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.21,14.75a1,1,0,0,0,1.42,0l4.08-4.08a1,1,0,0,0-1.42-1.42l-3.37,3.38L9.71,11.41a1,1,0,0,0-1.42,1.42ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilCheckSquare \ No newline at end of file diff --git a/src/icons/uil-check.ts b/src/icons/uil-check.ts new file mode 100644 index 00000000..0c260e8f --- /dev/null +++ b/src/icons/uil-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.71,7.21a1,1,0,0,0-1.42,0L9.84,14.67,6.71,11.53A1,1,0,1,0,5.29,13l3.84,3.84a1,1,0,0,0,1.42,0l8.16-8.16A1,1,0,0,0,18.71,7.21Z' + }) + ) +} + +export default UilCheck \ No newline at end of file diff --git a/src/icons/uil-circle-layer.ts b/src/icons/uil-circle-layer.ts new file mode 100644 index 00000000..187ddb7c --- /dev/null +++ b/src/icons/uil-circle-layer.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCircleLayer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,2A7,7,0,0,0,8.12,7.74,6,6,0,0,0,5,12.41,5,5,0,1,0,11.59,19a6,6,0,0,0,4.67-3.09A7,7,0,0,0,15,2ZM10,17.43c0,.1,0,.2-.07.31h0a3,3,0,1,1-3.64-3.64h0L6.57,14A2.94,2.94,0,0,1,10,17.43Zm5-3.67a1.8,1.8,0,0,1-.05.19,3.74,3.74,0,0,1-.17.54,4,4,0,0,1-2.7,2.4c0-.18,0-.35-.06-.53s0-.27,0-.4-.12-.38-.18-.57-.07-.24-.12-.36a4.21,4.21,0,0,0-.3-.55c0-.09-.09-.19-.15-.28a5.3,5.3,0,0,0-.6-.73l-.2-.17a5.52,5.52,0,0,0-.53-.43,2.9,2.9,0,0,0-.34-.19,4,4,0,0,0-.5-.27,2.34,2.34,0,0,0-.4-.13,3.13,3.13,0,0,0-.52-.16c-.14,0-.29,0-.44-.06L7.13,12A4,4,0,0,1,9.52,9.3a3.27,3.27,0,0,1,.53-.17l.2-.05A3.74,3.74,0,0,1,11,9a4,4,0,0,1,4,4A3.84,3.84,0,0,1,14.92,13.76Zm2-.16q0-.3,0-.6a6,6,0,0,0-6-6q-.3,0-.6,0A5,5,0,1,1,17,13.6Z' + }) + ) +} + +export default UilCircleLayer \ No newline at end of file diff --git a/src/icons/uil-circle.ts b/src/icons/uil-circle.ts new file mode 100644 index 00000000..a0ffc59e --- /dev/null +++ b/src/icons/uil-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilCircle \ No newline at end of file diff --git a/src/icons/uil-circuit.ts b/src/icons/uil-circuit.ts new file mode 100644 index 00000000..92ac15d2 --- /dev/null +++ b/src/icons/uil-circuit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCircuit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,13a1,1,0,1,0,1,1A1,1,0,0,0,10,13Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,10,9Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,14,9Zm7,4a1,1,0,0,0,0-2H19V9h2a1,1,0,0,0,0-2H18.82A3,3,0,0,0,17,5.18V3a1,1,0,0,0-2,0V5H13V3a1,1,0,0,0-2,0V5H9V3A1,1,0,0,0,7,3V5.18A3,3,0,0,0,5.18,7H3A1,1,0,0,0,3,9H5v2H3a1,1,0,0,0,0,2H5v2H3a1,1,0,0,0,0,2H5.18A3,3,0,0,0,7,18.82V21a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V18.82A3,3,0,0,0,18.82,17H21a1,1,0,0,0,0-2H19V13Zm-4,3a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8A1,1,0,0,1,8,7h8a1,1,0,0,1,1,1Zm-3-3a1,1,0,1,0,1,1A1,1,0,0,0,14,13Z' + }) + ) +} + +export default UilCircuit \ No newline at end of file diff --git a/src/icons/uil-clapper-board.ts b/src/icons/uil-clapper-board.ts new file mode 100644 index 00000000..d973f2f0 --- /dev/null +++ b/src/icons/uil-clapper-board.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClapperBoard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM16.09,4l-4,4H7.91l4-4ZM4,5A1,1,0,0,1,5,4H9.09l-4,4H4ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V10H20ZM20,8H14.91l4-4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilClapperBoard \ No newline at end of file diff --git a/src/icons/uil-clinic-medical.ts b/src/icons/uil-clinic-medical.ts new file mode 100644 index 00000000..bc2faff5 --- /dev/null +++ b/src/icons/uil-clinic-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClinicMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11 12v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2h-1v-1a1 1 0 0 0-2 0Zm10.664-1.748-9-8a.999.999 0 0 0-1.328 0l-9 8a1 1 0 0 0 1.328 1.496L4 11.449V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.551l.336.299a1 1 0 0 0 1.328-1.496ZM18 20H6V9.671l6-5.333 6 5.333Z' + }) + ) +} + +export default UilClinicMedical \ No newline at end of file diff --git a/src/icons/uil-clipboard-alt.ts b/src/icons/uil-clipboard-alt.ts new file mode 100644 index 00000000..8dd205ba --- /dev/null +++ b/src/icons/uil-clipboard-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClipboardAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H11a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm2-6H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilClipboardAlt \ No newline at end of file diff --git a/src/icons/uil-clipboard-blank.ts b/src/icons/uil-clipboard-blank.ts new file mode 100644 index 00000000..0473983a --- /dev/null +++ b/src/icons/uil-clipboard-blank.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClipboardBlank = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,4H16a2,2,0,0,0-2-2H10A2,2,0,0,0,8,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,4h4V5h0V6H10V4Zm8,15a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8a2,2,0,0,0,2,2h4a2,2,0,0,0,2-2h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilClipboardBlank \ No newline at end of file diff --git a/src/icons/uil-clipboard-notes.ts b/src/icons/uil-clipboard-notes.ts new file mode 100644 index 00000000..c108c53c --- /dev/null +++ b/src/icons/uil-clipboard-notes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClipboardNotes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,14H9a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2ZM17,4H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Zm-3-9H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilClipboardNotes \ No newline at end of file diff --git a/src/icons/uil-clipboard.ts b/src/icons/uil-clipboard.ts new file mode 100644 index 00000000..0ad12dd8 --- /dev/null +++ b/src/icons/uil-clipboard.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClipboard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,4H15.82A3,3,0,0,0,13,2H11A3,3,0,0,0,8.18,4H7A3,3,0,0,0,4,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V7A3,3,0,0,0,17,4ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm8,14a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7A1,1,0,0,1,7,6H8V7A1,1,0,0,0,9,8h6a1,1,0,0,0,1-1V6h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilClipboard \ No newline at end of file diff --git a/src/icons/uil-clock-eight.ts b/src/icons/uil-clock-eight.ts new file mode 100644 index 00000000..b1779498 --- /dev/null +++ b/src/icons/uil-clock-eight.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockEight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6a.99974.99974,0,0,0-1,1v4.38379L8.56934,12.60693a.99968.99968,0,1,0,.89843,1.78614l2.98145-1.5A.99874.99874,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilClockEight \ No newline at end of file diff --git a/src/icons/uil-clock-five.ts b/src/icons/uil-clock-five.ts new file mode 100644 index 00000000..4919232c --- /dev/null +++ b/src/icons/uil-clock-five.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockFive = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm1-8.251V7a1,1,0,0,0-2,0v5a1.00586,1.00586,0,0,0,.11816.47217l1.5,2.79883a1.00029,1.00029,0,0,0,1.76368-.94434Z' + }) + ) +} + +export default UilClockFive \ No newline at end of file diff --git a/src/icons/uil-clock-nine.ts b/src/icons/uil-clock-nine.ts new file mode 100644 index 00000000..b7fe7513 --- /dev/null +++ b/src/icons/uil-clock-nine.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockNine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6a.99974.99974,0,0,0-1,1v4H9a1,1,0,0,0,0,2h3a.99974.99974,0,0,0,1-1V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilClockNine \ No newline at end of file diff --git a/src/icons/uil-clock-seven.ts b/src/icons/uil-clock-seven.ts new file mode 100644 index 00000000..6dac7c74 --- /dev/null +++ b/src/icons/uil-clock-seven.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockSeven = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20ZM12,6a.99974.99974,0,0,0-1,1v4.749L9.61816,14.32666a1.00029,1.00029,0,0,0,1.76368.94434l1.5-2.79883A1.00586,1.00586,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Z' + }) + ) +} + +export default UilClockSeven \ No newline at end of file diff --git a/src/icons/uil-clock-ten.ts b/src/icons/uil-clock-ten.ts new file mode 100644 index 00000000..b8e9ee11 --- /dev/null +++ b/src/icons/uil-clock-ten.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockTen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6a.99974.99974,0,0,0-1,1v3.26758L9.90234,9.63379a1.00016,1.00016,0,0,0-1,1.73242l2.59766,1.5A1,1,0,0,0,13,12V7A.99974.99974,0,0,0,12,6Zm0-4A10,10,0,1,0,22,12,10.01146,10.01146,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilClockTen \ No newline at end of file diff --git a/src/icons/uil-clock-three.ts b/src/icons/uil-clock-three.ts new file mode 100644 index 00000000..98570935 --- /dev/null +++ b/src/icons/uil-clock-three.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockThree = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,11H13V7a1,1,0,0,0-2,0v5a1,1,0,0,0,1,1h3a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilClockThree \ No newline at end of file diff --git a/src/icons/uil-clock-two.ts b/src/icons/uil-clock-two.ts new file mode 100644 index 00000000..04a0d0eb --- /dev/null +++ b/src/icons/uil-clock-two.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClockTwo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20ZM14.09814,9.63379,13,10.26807V7a1,1,0,0,0-2,0v5a1.00025,1.00025,0,0,0,1.5.86621l2.59814-1.5a1.00016,1.00016,0,1,0-1-1.73242Z' + }) + ) +} + +export default UilClockTwo \ No newline at end of file diff --git a/src/icons/uil-clock.ts b/src/icons/uil-clock.ts new file mode 100644 index 00000000..03ba67cf --- /dev/null +++ b/src/icons/uil-clock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.09814,12.63379,13,11.42285V7a1,1,0,0,0-2,0v5a.99985.99985,0,0,0,.5.86621l2.59814,1.5a1.00016,1.00016,0,1,0,1-1.73242ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilClock \ No newline at end of file diff --git a/src/icons/uil-closed-captioning-slash.ts b/src/icons/uil-closed-captioning-slash.ts new file mode 100644 index 00000000..fe3ac47e --- /dev/null +++ b/src/icons/uil-closed-captioning-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClosedCaptioningSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L7.2,8.61A3,3,0,0,0,6,11v2a3,3,0,0,0,5.59,1.5,1,1,0,1,0-1.72-1,1,1,0,0,1-1.58.19A.93.93,0,0,1,8,13V11a1,1,0,0,1,.67-.92L12,13.46A3,3,0,0,0,14.54,16l2.36,2.36A7.92,7.92,0,0,1,12,20Zm6.31-3.1-1.52-1.52a2.94,2.94,0,0,0,.8-.88,1,1,0,1,0-1.72-1,1,1,0,0,1-.55.41L14,12.59V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,12,10.62l-.35-.35a1,1,0,0,0-.1-.79,3.08,3.08,0,0,0-.46-.59,2.94,2.94,0,0,0-1.67-.84L7.1,5.69A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' + }) + ) +} + +export default UilClosedCaptioningSlash \ No newline at end of file diff --git a/src/icons/uil-closed-captioning.ts b/src/icons/uil-closed-captioning.ts new file mode 100644 index 00000000..4f2b2bdb --- /dev/null +++ b/src/icons/uil-closed-captioning.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClosedCaptioning = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.24,13.14a1,1,0,0,0-1.37.36,1,1,0,0,1-1.58.19A.93.93,0,0,1,8,13V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,9,8a3,3,0,0,0-3,3v2a3,3,0,0,0,5.59,1.5A1,1,0,0,0,11.24,13.14Zm6,0a1,1,0,0,0-1.37.36,1,1,0,0,1-1.58.19A.93.93,0,0,1,14,13V11a1,1,0,0,1,1.88-.48,1,1,0,0,0,1.37.34,1,1,0,0,0,.34-1.38,3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,15,8a3,3,0,0,0-3,3v2a3,3,0,0,0,5.59,1.5A1,1,0,0,0,17.24,13.14ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilClosedCaptioning \ No newline at end of file diff --git a/src/icons/uil-cloud-block.ts b/src/icons/uil-cloud-block.ts new file mode 100644 index 00000000..a3763ab7 --- /dev/null +++ b/src/icons/uil-cloud-block.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudBlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72Zm-9.25,6a4,4,0,1,0,5.66,0A4.1,4.1,0,0,0,9.17,13.67ZM10,16.5a2,2,0,0,1,2-2,2.09,2.09,0,0,1,.51.07L10.07,17A2.09,2.09,0,0,1,10,16.5Zm3.41,1.41a2,2,0,0,1-1.91.5L13.93,16a2.09,2.09,0,0,1,.07.51A2,2,0,0,1,13.41,17.91Z' + }) + ) +} + +export default UilCloudBlock \ No newline at end of file diff --git a/src/icons/uil-cloud-bookmark.ts b/src/icons/uil-cloud-bookmark.ts new file mode 100644 index 00000000..e903322a --- /dev/null +++ b/src/icons/uil-cloud-bookmark.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudBookmark = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,11H10a1,1,0,0,0-1,1v8a1,1,0,0,0,1.56.83l1.94-1.3,1.89,1.26A1,1,0,0,0,15,21a1,1,0,0,0,.44-.1A1,1,0,0,0,16,20V12A1,1,0,0,0,15,11Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.64V13h3Zm4.42-10.9A7,7,0,0,0,5.06,9.11,4,4,0,0,0,6,17a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Z' + }) + ) +} + +export default UilCloudBookmark \ No newline at end of file diff --git a/src/icons/uil-cloud-check.ts b/src/icons/uil-cloud-check.ts new file mode 100644 index 00000000..6d58efcf --- /dev/null +++ b/src/icons/uil-cloud-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.29,14.19,11,17.48,9.71,16.19a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,0-1.41A1,1,0,0,0,14.29,14.19Zm4.13-5.87a7,7,0,0,0-13.36,1.9,4,4,0,0,0-.38,7.65A1,1,0,1,0,5.32,16,2,2,0,0,1,4,14.1a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.6,1,1,0,0,0,.78.66A3,3,0,0,1,17.75,16,1,1,0,0,0,18,18l.25,0a5,5,0,0,0,.17-9.62Z' + }) + ) +} + +export default UilCloudCheck \ No newline at end of file diff --git a/src/icons/uil-cloud-computing.ts b/src/icons/uil-cloud-computing.ts new file mode 100644 index 00000000..871f2cc8 --- /dev/null +++ b/src/icons/uil-cloud-computing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudComputing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H18a1,1,0,0,1-1-1V16a5,5,0,0,0,1.42-9.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16H7v3a1,1,0,0,1-1,1H3a1,1,0,0,0,0,2H6a3,3,0,0,0,3-3V16h2v5a1,1,0,0,0,2,0V16h2v3a3,3,0,0,0,3,3h3a1,1,0,0,0,0-2ZM6,14a2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a3,3,0,0,1-3,3Z' + }) + ) +} + +export default UilCloudComputing \ No newline at end of file diff --git a/src/icons/uil-cloud-data-connection.ts b/src/icons/uil-cloud-data-connection.ts new file mode 100644 index 00000000..62f397e6 --- /dev/null +++ b/src/icons/uil-cloud-data-connection.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudDataConnection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18.5H14.82A3,3,0,0,0,13,16.68V13.5h3.17A4.33,4.33,0,0,0,17.47,5,6,6,0,0,0,6.06,6.63,3.5,3.5,0,0,0,7,13.5h4v3.18A3,3,0,0,0,9.18,18.5H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2Zm-14-7a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.79-1.29,1,1,0,0,0,.78.67A2.31,2.31,0,0,1,18.5,9.17a2.34,2.34,0,0,1-2.33,2.33Zm5,9a1,1,0,1,1,1-1A1,1,0,0,1,12,20.5Z' + }) + ) +} + +export default UilCloudDataConnection \ No newline at end of file diff --git a/src/icons/uil-cloud-database-tree.ts b/src/icons/uil-cloud-database-tree.ts new file mode 100644 index 00000000..96f168ed --- /dev/null +++ b/src/icons/uil-cloud-database-tree.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudDatabaseTree = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.5,14.5a2,2,0,0,0-2-2h-6a2,2,0,0,0-2,2h-3v-3h2.33A3.66,3.66,0,0,0,13,4.37,5,5,0,0,0,3.57,5.65,3,3,0,0,0,4.5,11.5h3v8a1,1,0,0,0,1,1h4a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2v-2a2,2,0,0,0-.28-1,2,2,0,0,0,.28-1Zm-18-5a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.66A1.65,1.65,0,0,1,13.5,7.83,1.67,1.67,0,0,1,11.83,9.5Zm8,9h-3v-2h3a2,2,0,0,0,.28,1A2,2,0,0,0,12.5,18.5Zm2,2v-2h6v2Zm0-4v-2h6v2Z' + }) + ) +} + +export default UilCloudDatabaseTree \ No newline at end of file diff --git a/src/icons/uil-cloud-download.ts b/src/icons/uil-cloud-download.ts new file mode 100644 index 00000000..23d2b7a5 --- /dev/null +++ b/src/icons/uil-cloud-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.29,17.29,13,18.59V13a1,1,0,0,0-2,0v5.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3a1,1,0,0,0-1.42-1.42ZM18.42,6.22A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16a1,1,0,0,0,0-2,2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,1,0,.5,1.94,5,5,0,0,0,.17-9.62Z' + }) + ) +} + +export default UilCloudDownload \ No newline at end of file diff --git a/src/icons/uil-cloud-drizzle.ts b/src/icons/uil-cloud-drizzle.ts new file mode 100644 index 00000000..6eae57ad --- /dev/null +++ b/src/icons/uil-cloud-drizzle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudDrizzle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19ZM8,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V17A1,1,0,0,0,8,16Zm4-2a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,12,14Zm6.42-7.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,16,11Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V17A1,1,0,0,0,16,16ZM12,9a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V10A1,1,0,0,0,12,9Z' + }) + ) +} + +export default UilCloudDrizzle \ No newline at end of file diff --git a/src/icons/uil-cloud-exclamation.ts b/src/icons/uil-cloud-exclamation.ts new file mode 100644 index 00000000..512f3421 --- /dev/null +++ b/src/icons/uil-cloud-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,18.79a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.3-1.3A1,1,0,0,0,12.71,18.79ZM12,12.5a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,12.5Zm6.42-4.79A7,7,0,0,0,5.06,9.61,4,4,0,0,0,6,17.5H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,15.5H16a1,1,0,0,0,0,2h1a5,5,0,0,0,1.42-9.79Z' + }) + ) +} + +export default UilCloudExclamation \ No newline at end of file diff --git a/src/icons/uil-cloud-hail.ts b/src/icons/uil-cloud-hail.ts new file mode 100644 index 00000000..94babb12 --- /dev/null +++ b/src/icons/uil-cloud-hail.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudHail = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,17a1,1,0,1,0,1,1A1,1,0,0,0,12,17ZM8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm4,2a1,1,0,1,0,1,1A1,1,0,0,0,12,13ZM8,19a1,1,0,1,0,1,1A1,1,0,0,0,8,19Zm0-4a1,1,0,1,0,1,1A1,1,0,0,0,8,15Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,16,15ZM12,9a1,1,0,1,0,1,1A1,1,0,0,0,12,9Zm4,2a1,1,0,1,0,1,1A1,1,0,0,0,16,11Zm2.42-4.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,19a1,1,0,1,0,1,1A1,1,0,0,0,16,19Z' + }) + ) +} + +export default UilCloudHail \ No newline at end of file diff --git a/src/icons/uil-cloud-heart.ts b/src/icons/uil-cloud-heart.ts new file mode 100644 index 00000000..d1f42e69 --- /dev/null +++ b/src/icons/uil-cloud-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72ZM12,12.83a2.94,2.94,0,0,0-3.43.53,2.93,2.93,0,0,0,0,4.13l2.72,2.72a1,1,0,0,0,1.42,0l2.72-2.72a2.93,2.93,0,0,0,0-4.13A2.94,2.94,0,0,0,12,12.83Zm2,3.24-2,2-2-2a.88.88,0,0,1-.27-.65.89.89,0,0,1,.27-.65.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0,.94.94,0,0,1,1.3,0,.89.89,0,0,1,.27.65A.88.88,0,0,1,14,16.07Z' + }) + ) +} + +export default UilCloudHeart \ No newline at end of file diff --git a/src/icons/uil-cloud-info.ts b/src/icons/uil-cloud-info.ts new file mode 100644 index 00000000..af6cf9f0 --- /dev/null +++ b/src/icons/uil-cloud-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,12.29A1,1,0,0,0,12,14l.19,0a.6.6,0,0,0,.19-.06.56.56,0,0,0,.17-.09l.15-.12a1,1,0,0,0,0-1.42A1,1,0,0,0,11.29,12.29ZM12,15a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V16A1,1,0,0,0,12,15Zm6.42-6.78A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,13a3,3,0,0,1-3,3H16a1,1,0,0,0,0,2h1a5,5,0,0,0,1.42-9.78Z' + }) + ) +} + +export default UilCloudInfo \ No newline at end of file diff --git a/src/icons/uil-cloud-lock.ts b/src/icons/uil-cloud-lock.ts new file mode 100644 index 00000000..c9ff2a65 --- /dev/null +++ b/src/icons/uil-cloud-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,6.72A7,7,0,0,0,5.06,8.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,12.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,11.5,5,5,0,0,0,18.42,6.72Zm-3.42,9V14.5a3,3,0,0,0-6,0v1.18a3,3,0,0,0,1,5.82h4a3,3,0,0,0,1-5.82ZM11,14.5a1,1,0,0,1,2,0v1H11Zm3,5H10a1,1,0,0,1,0-2h4a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilCloudLock \ No newline at end of file diff --git a/src/icons/uil-cloud-meatball.ts b/src/icons/uil-cloud-meatball.ts new file mode 100644 index 00000000..5b9d3192 --- /dev/null +++ b/src/icons/uil-cloud-meatball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMeatball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.5,15.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H9.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,0,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Zm3.92-7.79A7,7,0,0,0,5.06,10,4,4,0,0,0,2,13.92a4,4,0,0,0,3.34,3.93l.16,0a1,1,0,0,0,.16-2,2,2,0,0,1-1.66-2,2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66,3,3,0,0,1,.62,5.72,1,1,0,1,0,.74,1.85,5,5,0,0,0-.45-9.41Z' + }) + ) +} + +export default UilCloudMeatball \ No newline at end of file diff --git a/src/icons/uil-cloud-moon-hail.ts b/src/icons/uil-cloud-moon-hail.ts new file mode 100644 index 00000000..ec2ab14e --- /dev/null +++ b/src/icons/uil-cloud-moon-hail.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoonHail = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.21,16.29a1,1,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33A.84.84,0,0,0,7.5,17a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,9.21,16.29Zm0,4a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33,1,1,0,1,0,1.84,0A1.15,1.15,0,0,0,9.21,20.29Zm3.85-6.12-.18-.09L12.7,14a1,1,0,0,0-.58.06.93.93,0,0,0-.33.21,1,1,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,13.5,15a1.05,1.05,0,0,0-.29-.71Zm.15,4.12a1,1,0,0,0-1.09-.21.9.9,0,0,0-.54.54,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,13.21,18.29ZM21.7,7.07a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,4.06,4.06,0,0,1,2.19.66h0a4,4,0,0,1,1.58,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89Z' + }) + ) +} + +export default UilCloudMoonHail \ No newline at end of file diff --git a/src/icons/uil-cloud-moon-meatball.ts b/src/icons/uil-cloud-moon-meatball.ts new file mode 100644 index 00000000..a50ace14 --- /dev/null +++ b/src/icons/uil-cloud-moon-meatball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoonMeatball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.7,8a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.05,3.05,0,0,1,.08-.66,1,1,0,0,0-.26-.94A1,1,0,0,0,16,2.94a5,5,0,0,0-3.83,4.22,5.86,5.86,0,0,0-1.67-.24A6,6,0,0,0,4.56,12,3.52,3.52,0,0,0,2,15.42a3.47,3.47,0,0,0,1.41,2.79A1,1,0,1,0,4.59,16.6,1.46,1.46,0,0,1,4,15.42a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,6.17-3.35l0,0a3.9,3.9,0,0,1,1.57,2,1,1,0,0,0,.78.66,2.33,2.33,0,0,1,.54,4.44,1,1,0,0,0-.52,1.32,1,1,0,0,0,.92.6,1,1,0,0,0,.4-.09,4.33,4.33,0,0,0,2.6-4,4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.92,1,1,0,0,0,21.7,8Zm-4.59,2.82a2.72,2.72,0,0,1-.42,0,4.6,4.6,0,0,0-.72-.31,5.91,5.91,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.22A3,3,0,0,1,17.11,10.81ZM12.5,16.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H7.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,1,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCloudMoonMeatball \ No newline at end of file diff --git a/src/icons/uil-cloud-moon-rain.ts b/src/icons/uil-cloud-moon-rain.ts new file mode 100644 index 00000000..2e8841b0 --- /dev/null +++ b/src/icons/uil-cloud-moon-rain.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoonRain = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,14a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,8.5,19ZM21.7,7.07a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.91,3.91,0,0,1,2.17.66l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89ZM12.5,13a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V19A1,1,0,0,0,12.5,18Z' + }) + ) +} + +export default UilCloudMoonRain \ No newline at end of file diff --git a/src/icons/uil-cloud-moon-showers.ts b/src/icons/uil-cloud-moon-showers.ts new file mode 100644 index 00000000..57a11e43 --- /dev/null +++ b/src/icons/uil-cloud-moon-showers.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoonShowers = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm4-1a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Zm9.2-5.93a1,1,0,0,0-.94-.26,3,3,0,0,1-.65.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,2a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.91,3.91,0,0,1,2.17.66l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,13.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8,1,1,0,0,0,21.7,7.07ZM17.11,9.89a2.72,2.72,0,0,1-.42,0A4.6,4.6,0,0,0,16,9.54a6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,9.89Z' + }) + ) +} + +export default UilCloudMoonShowers \ No newline at end of file diff --git a/src/icons/uil-cloud-moon-tear.ts b/src/icons/uil-cloud-moon-tear.ts new file mode 100644 index 00000000..e5d96d56 --- /dev/null +++ b/src/icons/uil-cloud-moon-tear.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoonTear = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.7,7.57a1,1,0,0,0-.93-.26,3.2,3.2,0,0,1-.66.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2.53a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,15a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.92,3.92,0,0,1,2.18.66h0a4,4,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,16.11a1,1,0,0,0,1.1,1.68A4.32,4.32,0,0,0,19,14.17a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.5,1,1,0,0,0,21.7,7.57Zm-4.59,2.82a2.61,2.61,0,0,1-.42,0A4.6,4.6,0,0,0,16,10a6,6,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,10.39Zm-6,3.94a1,1,0,0,0-1.12,0C9.84,14.41,7.5,16,7.5,18.5a3,3,0,0,0,6,0C13.5,16,11.15,14.4,11.06,14.33ZM10.5,19.5a1,1,0,0,1-1-1,3,3,0,0,1,1-2,3,3,0,0,1,1,2A1,1,0,0,1,10.5,19.5Z' + }) + ) +} + +export default UilCloudMoonTear \ No newline at end of file diff --git a/src/icons/uil-cloud-moon.ts b/src/icons/uil-cloud-moon.ts new file mode 100644 index 00000000..e7d1fbe8 --- /dev/null +++ b/src/icons/uil-cloud-moon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudMoon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.7,9.07a1,1,0,0,0-.93-.26,3.13,3.13,0,0,1-.66.08,3,3,0,0,1-3-3,3.13,3.13,0,0,1,.08-.66,1,1,0,0,0-.26-.93A1,1,0,0,0,16,4a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,8a6,6,0,0,0-5.94,5.13A3.5,3.5,0,0,0,5.5,20h9.17A4.33,4.33,0,0,0,19,15.67a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,10,1,1,0,0,0,21.7,9.07Zm-7,8.93H5.5a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,6.18-3.34l0,0a3.94,3.94,0,0,1,1.57,2,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,14.67,18Zm2.44-6.11a2.61,2.61,0,0,1-.42,0,4.6,4.6,0,0,0-.72-.31,6.06,6.06,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,11.89Z' + }) + ) +} + +export default UilCloudMoon \ No newline at end of file diff --git a/src/icons/uil-cloud-question.ts b/src/icons/uil-cloud-question.ts new file mode 100644 index 00000000..bec240a3 --- /dev/null +++ b/src/icons/uil-cloud-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18H8a1,1,0,0,0,0-2H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,13a3,3,0,0,1-3,3,1,1,0,0,0,0,2,5,5,0,0,0,1.42-9.78Zm-5.5,10.4a.56.56,0,0,0-.09-.17l-.12-.16a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21l-.12.16a.56.56,0,0,0-.09.17.64.64,0,0,0-.06.18,1.5,1.5,0,0,0,0,.2,1.23,1.23,0,0,0,0,.19.6.6,0,0,0,.06.19.56.56,0,0,0,.09.17l.12.16A1.05,1.05,0,0,0,12,20a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21l.12-.16a.56.56,0,0,0,.09-.17.6.6,0,0,0,.06-.19A1.23,1.23,0,0,0,13,19a1.5,1.5,0,0,0,0-.2A.64.64,0,0,0,12.92,18.62ZM12,11a3,3,0,0,0-2.6,1.5,1,1,0,0,0,.37,1.37,1,1,0,0,0,1.36-.37A1,1,0,0,1,12,13a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Z' + }) + ) +} + +export default UilCloudQuestion \ No newline at end of file diff --git a/src/icons/uil-cloud-rain-sun.ts b/src/icons/uil-cloud-rain-sun.ts new file mode 100644 index 00000000..ceead784 --- /dev/null +++ b/src/icons/uil-cloud-rain-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudRainSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3ZM8.5,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14Zm4-1a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Z' + }) + ) +} + +export default UilCloudRainSun \ No newline at end of file diff --git a/src/icons/uil-cloud-rain.ts b/src/icons/uil-cloud-rain.ts new file mode 100644 index 00000000..91dfc578 --- /dev/null +++ b/src/icons/uil-cloud-rain.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudRain = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.56,12.67a1,1,0,0,0-1.12,0c-.11.08-2.69,1.86-2.69,4.58a3.25,3.25,0,0,0,6.5,0C15.25,14.5,12.67,12.74,12.56,12.67ZM12,18.5a1.25,1.25,0,0,1-1.25-1.25A3.66,3.66,0,0,1,12,14.8a3.61,3.61,0,0,1,1.25,2.45A1.25,1.25,0,0,1,12,18.5ZM18.42,7.72A7,7,0,0,0,5.06,9.61a4,4,0,0,0,.61,7.87h.08a1,1,0,0,0,1-.92,1,1,0,0,0-.92-1.08A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.43,5.79,1,1,0,0,0,.62,1.9,5,5,0,0,0-.14-9.53Z' + }) + ) +} + +export default UilCloudRain \ No newline at end of file diff --git a/src/icons/uil-cloud-redo.ts b/src/icons/uil-cloud-redo.ts new file mode 100644 index 00000000..618656ca --- /dev/null +++ b/src/icons/uil-cloud-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,12.5a1,1,0,0,0-.91.6,4,4,0,1,0,.55,6.4A1,1,0,1,0,13.32,18a2,2,0,0,1-1.32.5,2,2,0,1,1,1-3.75h-.22a1,1,0,0,0,0,2H15a1,1,0,0,0,1-1V13.5A1,1,0,0,0,15,12.5Zm3.42-4.78A7,7,0,0,0,5.06,9.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12.5,5,5,0,0,0,18.42,7.72Z' + }) + ) +} + +export default UilCloudRedo \ No newline at end of file diff --git a/src/icons/uil-cloud-share.ts b/src/icons/uil-cloud-share.ts new file mode 100644 index 00000000..6f46ce3d --- /dev/null +++ b/src/icons/uil-cloud-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.5,15a2,2,0,1,0-2-2l-1.9.87a2,2,0,0,0-1.1-.33,2,2,0,0,0,0,4,1.88,1.88,0,0,0,.92-.24l2.1,1a2,2,0,1,0,.8-1.84l-1.75-.8,1.91-.88A2,2,0,0,0,14.5,15Zm3.92-7.78A7,7,0,0,0,5.06,9.11a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Z' + }) + ) +} + +export default UilCloudShare \ No newline at end of file diff --git a/src/icons/uil-cloud-shield.ts b/src/icons/uil-cloud-shield.ts new file mode 100644 index 00000000..122cb8ee --- /dev/null +++ b/src/icons/uil-cloud-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,7.22A7,7,0,0,0,5.06,9.11a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,12,5,5,0,0,0,18.42,7.22Zm-3.63,4.44a2.73,2.73,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.72,2.72,0,0,1-2.2.47,1,1,0,0,0-.84.2,1,1,0,0,0-.37.77V16a4.63,4.63,0,0,0,1.84,3.7l1.57,1.15a1,1,0,0,0,1.18,0l1.57-1.16A4.6,4.6,0,0,0,16,16V12.63a1,1,0,0,0-.37-.77A1,1,0,0,0,14.79,11.66ZM14,16A2.62,2.62,0,0,1,13,18l-1,.72L11,18A2.62,2.62,0,0,1,10,16V13.72a4.68,4.68,0,0,0,2-.55,4.68,4.68,0,0,0,2,.55Z' + }) + ) +} + +export default UilCloudShield \ No newline at end of file diff --git a/src/icons/uil-cloud-showers-alt.ts b/src/icons/uil-cloud-showers-alt.ts new file mode 100644 index 00000000..cb423d07 --- /dev/null +++ b/src/icons/uil-cloud-showers-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudShowersAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,13a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V14A1,1,0,0,0,8,13Zm4-2a1,1,0,0,0-1,1v9a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm6.42-4.78A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16,13a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V14A1,1,0,0,0,16,13Z' + }) + ) +} + +export default UilCloudShowersAlt \ No newline at end of file diff --git a/src/icons/uil-cloud-showers-heavy.ts b/src/icons/uil-cloud-showers-heavy.ts new file mode 100644 index 00000000..f74b0216 --- /dev/null +++ b/src/icons/uil-cloud-showers-heavy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudShowersHeavy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.89,18.06a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,12.89,18.06Zm-4,0a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,8.89,18.06Zm0-7a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,7.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,8.89,11.06Zm4,0a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,11.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,12.89,11.06Zm5.53-4.84A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM16.89,18.06a1,1,0,0,0-1.28.6l-.73,2a1,1,0,0,0,.6,1.28,1,1,0,0,0,.34.06,1,1,0,0,0,.94-.66l.73-2A1,1,0,0,0,16.89,18.06Zm0-7a1,1,0,0,0-1.28.6l-1.1,3A1,1,0,0,0,15.45,16a1,1,0,0,0,.94-.66l1.1-3A1,1,0,0,0,16.89,11.06Z' + }) + ) +} + +export default UilCloudShowersHeavy \ No newline at end of file diff --git a/src/icons/uil-cloud-showers.ts b/src/icons/uil-cloud-showers.ts new file mode 100644 index 00000000..6a27c40a --- /dev/null +++ b/src/icons/uil-cloud-showers.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudShowers = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11Zm4,6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,12,17ZM8,17a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,8,17ZM18.42,6.22A7,7,0,0,0,5.06,8.11,4,4,0,0,0,2,12a4,4,0,0,0,1.34,3,1,1,0,1,0,1.32-1.5A2,2,0,0,1,4,12a2,2,0,0,1,2-2A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67A3,3,0,0,1,20,11a2.91,2.91,0,0,1-.74,2,1,1,0,0,0,1.48,1.34,5,5,0,0,0-2.32-8.08ZM12,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm4,0a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,16,11Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V18A1,1,0,0,0,16,17Z' + }) + ) +} + +export default UilCloudShowers \ No newline at end of file diff --git a/src/icons/uil-cloud-slash.ts b/src/icons/uil-cloud-slash.ts new file mode 100644 index 00000000..047a7382 --- /dev/null +++ b/src/icons/uil-cloud-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.71,16.29h0l-13-13A1,1,0,0,0,2.29,4.71L5.65,8.06a7,7,0,0,0-.59,2A4,4,0,0,0,6,18h9.59l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,16a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,.2-1.39L13.59,16ZM18.42,8.22A7,7,0,0,0,12,4a6.74,6.74,0,0,0-2.32.4,1,1,0,0,0,.66,1.88A4.91,4.91,0,0,1,12,6a5,5,0,0,1,4.73,3.39,1,1,0,0,0,.78.67,3,3,0,0,1,1.85,4.79,1,1,0,0,0,.16,1.4,1,1,0,0,0,.62.22,1,1,0,0,0,.78-.38,5,5,0,0,0-2.5-7.87Z' + }) + ) +} + +export default UilCloudSlash \ No newline at end of file diff --git a/src/icons/uil-cloud-sun-hail.ts b/src/icons/uil-cloud-sun-hail.ts new file mode 100644 index 00000000..24d03377 --- /dev/null +++ b/src/icons/uil-cloud-sun-hail.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSunHail = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.21,20.29a1,1,0,0,0-1.09-.21.93.93,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76.9.9,0,0,0,.54.54.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,9.5,21a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,9.21,20.29Zm4-2a.93.93,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,13.21,18.29Zm-4-2a1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,9.5,17a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,9.21,16.29Zm2.91-2.21a1,1,0,0,0-.33.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.84.84,0,0,0,.38.08,1,1,0,0,0,1-1,1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,12.12,14.08ZM21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3Z' + }) + ) +} + +export default UilCloudSunHail \ No newline at end of file diff --git a/src/icons/uil-cloud-sun-meatball.ts b/src/icons/uil-cloud-sun-meatball.ts new file mode 100644 index 00000000..4f48934d --- /dev/null +++ b/src/icons/uil-cloud-sun-meatball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSunMeatball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.5,16.92h-.77l.39-.67a1,1,0,0,0-1.74-1l-.38.67-.38-.67a1,1,0,0,0-1.74,1l.39.67H7.5a1,1,0,0,0,0,2h.77l-.39.66a1,1,0,0,0,1.74,1l.38-.66.38.66a1,1,0,1,0,1.74-1l-.39-.66h.77a1,1,0,0,0,0-2Zm8.5-9h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.72v-.8a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.56c-.09.16-.16.33-.24.49a5.85,5.85,0,0,0-1.58-.22A6,6,0,0,0,4.56,12,3.52,3.52,0,0,0,2,15.42a3.47,3.47,0,0,0,1.41,2.79A1,1,0,1,0,4.59,16.6,1.46,1.46,0,0,1,4,15.42a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.66,2.33,2.33,0,0,1,.54,4.44,1,1,0,0,0-.52,1.32,1,1,0,0,0,.92.6.93.93,0,0,0,.4-.09,4.33,4.33,0,0,0,2.6-4A4.29,4.29,0,0,0,18.7,13l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42l-.56-.56a4.2,4.2,0,0,0,.52-1.26H21a1,1,0,0,0,0-2Zm-3.34,2.64h0a1.89,1.89,0,0,1-.6.41A4.15,4.15,0,0,0,16,10.46,6,6,0,0,0,13.88,8a2.18,2.18,0,0,1,.46-.7h0a2.42,2.42,0,0,1,3.3,0h0a2.34,2.34,0,0,1,0,3.29Z' + }) + ) +} + +export default UilCloudSunMeatball \ No newline at end of file diff --git a/src/icons/uil-cloud-sun-rain-alt.ts b/src/icons/uil-cloud-sun-rain-alt.ts new file mode 100644 index 00000000..2e97895f --- /dev/null +++ b/src/icons/uil-cloud-sun-rain-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSunRainAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,19a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,8.5,19Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,8.5,14ZM21,7h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,3.8V3a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,14.5,1.5,1.5,0,0,1,5.5,13a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,15.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,19,13.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9H21a1,1,0,0,0,0-2ZM17.66,9.65h0a2.09,2.09,0,0,1-.6.42A4.17,4.17,0,0,0,16,9.54a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3ZM12.5,18a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V19A1,1,0,0,0,12.5,18Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,12.5,13Z' + }) + ) +} + +export default UilCloudSunRainAlt \ No newline at end of file diff --git a/src/icons/uil-cloud-sun-rain.ts b/src/icons/uil-cloud-sun-rain.ts new file mode 100644 index 00000000..8a5f3482 --- /dev/null +++ b/src/icons/uil-cloud-sun-rain.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSunRain = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.5,15a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V16A1,1,0,0,0,7.5,15ZM22,7H20.9a5.22,5.22,0,0,0-.73-1.76L21,4.47a1,1,0,1,0-1.42-1.42l-.77.78A5,5,0,0,0,17,3.1V2a1,1,0,0,0-2,0V3.1a5.22,5.22,0,0,0-1.76.73l-.77-.78a1,1,0,0,0-1.42,1.42l.78.77a5.06,5.06,0,0,0-.77,2A5.76,5.76,0,0,0,9.5,7a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,3,15.5,1.5,1.5,0,0,1,4.5,14a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,15,16.61a1,1,0,0,0,1.1,1.68A4.34,4.34,0,0,0,18,14.67a4.41,4.41,0,0,0-.45-1.92,5.17,5.17,0,0,0,1.21-.58l.77.78A1,1,0,0,0,21,13a1,1,0,0,0,0-1.42l-.78-.77A5,5,0,0,0,20.9,9H22a1,1,0,0,0,0-2Zm-3.87,3.12A3,3,0,0,1,16,11h-.06a4.12,4.12,0,0,0-1-.46,5.93,5.93,0,0,0-2-2.38c0-.06,0-.1,0-.16a3,3,0,0,1,.87-2.12,3.1,3.1,0,0,1,4.25,0,3,3,0,0,1,0,4.25ZM7.5,20a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V21A1,1,0,0,0,7.5,20Zm4-1a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,11.5,19Zm0-5a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V15A1,1,0,0,0,11.5,14Z' + }) + ) +} + +export default UilCloudSunRain \ No newline at end of file diff --git a/src/icons/uil-cloud-sun-tear.ts b/src/icons/uil-cloud-sun-tear.ts new file mode 100644 index 00000000..0a7e55e1 --- /dev/null +++ b/src/icons/uil-cloud-sun-tear.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSunTear = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.05,14.33a1,1,0,0,0-1.11,0C9.84,14.41,7.5,16,7.5,18.5a3,3,0,0,0,6,0C13.5,16,11.16,14.4,11.05,14.33ZM10.5,19.5a1,1,0,0,1-1-1,3,3,0,0,1,1-2,3,3,0,0,1,1,2A1,1,0,0,1,10.5,19.5ZM21,7.5h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.3V3.5a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.5,3.5,0,0,0-.46,6.58,1.14,1.14,0,0,0,.4.08,1,1,0,0,0,.4-1.92A1.48,1.48,0,0,1,4,15a1.5,1.5,0,0,1,1.5-1.5,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.32,2.32,0,0,1,16,16.11a1,1,0,0,0,1.1,1.68,4.3,4.3,0,0,0,1.65-5.18l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9.5H21a1,1,0,0,0,0-2Zm-3.34,2.65h0a2.45,2.45,0,0,1-.6.41A4.17,4.17,0,0,0,16,10a6.12,6.12,0,0,0-2.09-2.49,2.25,2.25,0,0,1,.46-.69h0a2.42,2.42,0,0,1,3.29,0h0a2.37,2.37,0,0,1,0,3.3Z' + }) + ) +} + +export default UilCloudSunTear \ No newline at end of file diff --git a/src/icons/uil-cloud-sun.ts b/src/icons/uil-cloud-sun.ts new file mode 100644 index 00000000..3e13515e --- /dev/null +++ b/src/icons/uil-cloud-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,9h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,5.8V5a1,1,0,0,0-2,0v.8a4.1,4.1,0,0,0-1.26.52l-.57-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,8a6,6,0,0,0-5.94,5.13A3.5,3.5,0,0,0,5.5,20h9.17A4.33,4.33,0,0,0,19,15.67a4.19,4.19,0,0,0-.3-1.55l.13.12a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,11H21a1,1,0,0,0,0-2Zm-6.33,9H5.5a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,14.67,18Zm3-6.35h0a2.17,2.17,0,0,1-.6.4A4.49,4.49,0,0,0,16,11.54a6.12,6.12,0,0,0-2.09-2.49,2.25,2.25,0,0,1,.46-.69h0a2.42,2.42,0,0,1,3.29,0h0a2.37,2.37,0,0,1,0,3.3Z' + }) + ) +} + +export default UilCloudSun \ No newline at end of file diff --git a/src/icons/uil-cloud-times.ts b/src/icons/uil-cloud-times.ts new file mode 100644 index 00000000..029a0d0f --- /dev/null +++ b/src/icons/uil-cloud-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,0,0,.5,1.94,5,5,0,0,0,.17-9.62Zm-3.71,6.07a1,1,0,0,0-1.42,0L12,15.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L10.59,17l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,18.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,17l1.3-1.29A1,1,0,0,0,14.71,14.29Z' + }) + ) +} + +export default UilCloudTimes \ No newline at end of file diff --git a/src/icons/uil-cloud-unlock.ts b/src/icons/uil-cloud-unlock.ts new file mode 100644 index 00000000..7005c9a6 --- /dev/null +++ b/src/icons/uil-cloud-unlock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudUnlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,15.5H11v-1A1,1,0,0,1,12.88,14a1,1,0,0,0,1.37.34A1,1,0,0,0,14.59,13a3.08,3.08,0,0,0-.46-.59A3,3,0,0,0,12,11.5a3,3,0,0,0-3,3v1.18a3,3,0,0,0,1,5.82h4a3,3,0,0,0,0-6Zm0,4H10a1,1,0,0,1,0-2h4a1,1,0,0,1,0,2ZM18.42,6.72A7,7,0,0,0,5.06,8.61a4,4,0,0,0-.38,7.66,1.13,1.13,0,0,0,.32.05,1,1,0,0,0,.32-2A2,2,0,0,1,4,12.5a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,1,5.53,1,1,0,1,0,1,1.74A5,5,0,0,0,22,11.5,5,5,0,0,0,18.42,6.72Z' + }) + ) +} + +export default UilCloudUnlock \ No newline at end of file diff --git a/src/icons/uil-cloud-upload.ts b/src/icons/uil-cloud-upload.ts new file mode 100644 index 00000000..e9a0fa8b --- /dev/null +++ b/src/icons/uil-cloud-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,8.22A7,7,0,0,0,5.06,10.11,4,4,0,0,0,6,18a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.67,3,3,0,0,1,.24,5.84,1,1,0,0,0,.5,1.94,5,5,0,0,0,.17-9.62Zm-5.71,2.07a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L11,13.41V19a1,1,0,0,0,2,0V13.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilCloudUpload \ No newline at end of file diff --git a/src/icons/uil-cloud-wifi.ts b/src/icons/uil-cloud-wifi.ts new file mode 100644 index 00000000..68492a63 --- /dev/null +++ b/src/icons/uil-cloud-wifi.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudWifi = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,5.94a7.1,7.1,0,0,1,7,0,1,1,0,0,0,1.37-.37,1,1,0,0,0-.37-1.36,9.14,9.14,0,0,0-9,0,1,1,0,0,0-.37,1.36A1,1,0,0,0,8.5,5.94Zm9.92,5.27a5.91,5.91,0,0,0-.36-.71,1,1,0,0,0-1.38-.33,1,1,0,0,0-.33,1.37,4.58,4.58,0,0,1,.38.84,1,1,0,0,0,.78.67A3,3,0,0,1,20,16a3,3,0,0,1-3,3L5.66,19A2,2,0,0,1,4,17.4,2,2,0,0,1,6,15a1,1,0,0,0,1-1,4.92,4.92,0,0,1,.67-2.49,1,1,0,0,0-.37-1.37,1,1,0,0,0-1.36.37,6.75,6.75,0,0,0-.88,2.6,4,4,0,0,0-2.13,1.33A4,4,0,0,0,5.46,21h.13L17,21a5,5,0,0,0,1.42-9.79ZM14.87,9s0,0,0-.06A.92.92,0,0,0,15,8.74a1,1,0,0,0-.57-1.29,6.36,6.36,0,0,0-1.74-.38c-.1,0-.2,0-.3,0a5.47,5.47,0,0,0-.81,0,3,3,0,0,0-.31,0,6.36,6.36,0,0,0-1.74.38A1,1,0,0,0,9,8.74a1.22,1.22,0,0,0,.12.19.61.61,0,0,0,0,.11,1,1,0,0,0,1.37.36,3.08,3.08,0,0,1,3,0A1,1,0,0,0,14.87,9ZM11,12a1,1,0,1,0,1-1A1,1,0,0,0,11,12Z' + }) + ) +} + +export default UilCloudWifi \ No newline at end of file diff --git a/src/icons/uil-cloud-wind.ts b/src/icons/uil-cloud-wind.ts new file mode 100644 index 00000000..540c5be2 --- /dev/null +++ b/src/icons/uil-cloud-wind.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloudWind = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,18a1,1,0,1,0,1,1A1,1,0,0,0,5,18Zm14-4H12a1,1,0,0,0,0,2h7a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm-5-3a1,1,0,0,0,1,1h4a3,3,0,0,0,3-3,1,1,0,0,0-2,0,1,1,0,0,1-1,1H15A1,1,0,0,0,14,11Zm-4,4a1,1,0,0,0-1-1H6a2,2,0,0,1,0-4A1,1,0,0,0,7,9a5,5,0,0,1,9.73-1.61,1,1,0,1,0,1.9-.64A7,7,0,0,0,5.06,8.11,4,4,0,0,0,6,16H9A1,1,0,0,0,10,15Zm0-4a1,1,0,1,0,1-1A1,1,0,0,0,10,11Zm4,7H9a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0A3,3,0,0,0,14,18Z' + }) + ) +} + +export default UilCloudWind \ No newline at end of file diff --git a/src/icons/uil-cloud.ts b/src/icons/uil-cloud.ts new file mode 100644 index 00000000..7f348dd4 --- /dev/null +++ b/src/icons/uil-cloud.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCloud = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.42,9.21a7,7,0,0,0-13.36,1.9A4,4,0,0,0,6,19H17a5,5,0,0,0,1.42-9.79ZM17,17H6a2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,17Z' + }) + ) +} + +export default UilCloud \ No newline at end of file diff --git a/src/icons/uil-clouds.ts b/src/icons/uil-clouds.ts new file mode 100644 index 00000000..d680293a --- /dev/null +++ b/src/icons/uil-clouds.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClouds = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.47,10.54A6,6,0,0,0,14,7a5.82,5.82,0,0,0-1.39.18,5,5,0,0,0-9,2A3,3,0,0,0,4.5,15h1a4,4,0,0,0,0,.5A3.5,3.5,0,0,0,9,19h9.17a4.33,4.33,0,0,0,1.3-8.46ZM4.5,13a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,3-3,3,3,0,0,1,2.22,1,6,6,0,0,0-2.66,4.13,3.49,3.49,0,0,0-1.5.87Zm13.67,4H9a1.5,1.5,0,0,1,0-3,1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67A2.33,2.33,0,0,1,18.17,17Z' + }) + ) +} + +export default UilClouds \ No newline at end of file diff --git a/src/icons/uil-club.ts b/src/icons/uil-club.ts new file mode 100644 index 00000000..3938f5fe --- /dev/null +++ b/src/icons/uil-club.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilClub = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,12.5a5.52,5.52,0,0,0-3.51-5.12,5.49,5.49,0,0,0-11,0A5.5,5.5,0,0,0,8.5,18l.2,0a6.91,6.91,0,0,1-1.24,2.39A1,1,0,0,0,8.24,22h7.52a1,1,0,0,0,.78-1.63A6.91,6.91,0,0,1,15.3,18l.2,0A5.51,5.51,0,0,0,21,12.5ZM10.06,20a8.89,8.89,0,0,0,.81-2.56,5.47,5.47,0,0,0,1.13-.7,5.47,5.47,0,0,0,1.13.7A8.89,8.89,0,0,0,13.94,20Zm2.72-5.3-.08-.08-.08-.08-.07,0-.18-.09-.18-.06h-.38l-.18.06a.56.56,0,0,0-.17.09l-.08,0-.08.08-.08.08A3.5,3.5,0,1,1,7.75,9.08,1.11,1.11,0,0,0,7.91,9a1.42,1.42,0,0,0,.18-.08.83.83,0,0,0,.14-.13.62.62,0,0,0,.21-.31.61.61,0,0,0,.07-.17.69.69,0,0,0,0-.2,1,1,0,0,0,0-.17,3.4,3.4,0,0,1,0-.45,3.5,3.5,0,0,1,7,0,3.4,3.4,0,0,1,0,.45.81.81,0,0,0,0,.16.74.74,0,0,0,0,.21.61.61,0,0,0,.07.17.62.62,0,0,0,.21.31.83.83,0,0,0,.14.13,1.42,1.42,0,0,0,.18.08,1.11,1.11,0,0,0,.16.07,3.5,3.5,0,1,1-3.47,5.62Z' + }) + ) +} + +export default UilClub \ No newline at end of file diff --git a/src/icons/uil-code-branch.ts b/src/icons/uil-code-branch.ts new file mode 100644 index 00000000..f4ea69c4 --- /dev/null +++ b/src/icons/uil-code-branch.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCodeBranch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17 6.06a3 3 0 0 0-1.15 5.77A2 2 0 0 1 14 13.06h-4a3.91 3.91 0 0 0-2 .56V7.88a3 3 0 1 0-2 0v8.36a3 3 0 1 0 2.16.05A2 2 0 0 1 10 15.06h4a4 4 0 0 0 3.91-3.16A3 3 0 0 0 17 6.06Zm-10-2a1 1 0 1 1-1 1 1 1 0 0 1 1-1Zm0 16a1 1 0 1 1 1-1 1 1 0 0 1-1 1Zm10-10a1 1 0 1 1 1-1 1 1 0 0 1-1 1Z' + }) + ) +} + +export default UilCodeBranch \ No newline at end of file diff --git a/src/icons/uil-coffee.ts b/src/icons/uil-coffee.ts new file mode 100644 index 00000000..53c9c5e6 --- /dev/null +++ b/src/icons/uil-coffee.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCoffee = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,17h4a5,5,0,0,0,5-5V11h1a3,3,0,0,0,0-6H18V4a1,1,0,0,0-1-1H5A1,1,0,0,0,4,4v8A5,5,0,0,0,9,17ZM18,7h1a1,1,0,0,1,0,2H18ZM6,5H16v7a3,3,0,0,1-3,3H9a3,3,0,0,1-3-3ZM21,19H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCoffee \ No newline at end of file diff --git a/src/icons/uil-cog.ts b/src/icons/uil-cog.ts new file mode 100644 index 00000000..19ef7134 --- /dev/null +++ b/src/icons/uil-cog.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCog = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.32,9.55l-1.89-.63.89-1.78A1,1,0,0,0,20.13,6L18,3.87a1,1,0,0,0-1.15-.19l-1.78.89-.63-1.89A1,1,0,0,0,13.5,2h-3a1,1,0,0,0-.95.68L8.92,4.57,7.14,3.68A1,1,0,0,0,6,3.87L3.87,6a1,1,0,0,0-.19,1.15l.89,1.78-1.89.63A1,1,0,0,0,2,10.5v3a1,1,0,0,0,.68.95l1.89.63-.89,1.78A1,1,0,0,0,3.87,18L6,20.13a1,1,0,0,0,1.15.19l1.78-.89.63,1.89a1,1,0,0,0,.95.68h3a1,1,0,0,0,.95-.68l.63-1.89,1.78.89A1,1,0,0,0,18,20.13L20.13,18a1,1,0,0,0,.19-1.15l-.89-1.78,1.89-.63A1,1,0,0,0,22,13.5v-3A1,1,0,0,0,21.32,9.55ZM20,12.78l-1.2.4A2,2,0,0,0,17.64,16l.57,1.14-1.1,1.1L16,17.64a2,2,0,0,0-2.79,1.16l-.4,1.2H11.22l-.4-1.2A2,2,0,0,0,8,17.64l-1.14.57-1.1-1.1L6.36,16A2,2,0,0,0,5.2,13.18L4,12.78V11.22l1.2-.4A2,2,0,0,0,6.36,8L5.79,6.89l1.1-1.1L8,6.36A2,2,0,0,0,10.82,5.2l.4-1.2h1.56l.4,1.2A2,2,0,0,0,16,6.36l1.14-.57,1.1,1.1L17.64,8a2,2,0,0,0,1.16,2.79l1.2.4ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Z' + }) + ) +} + +export default UilCog \ No newline at end of file diff --git a/src/icons/uil-coins.ts b/src/icons/uil-coins.ts new file mode 100644 index 00000000..c6f4e6ce --- /dev/null +++ b/src/icons/uil-coins.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCoins = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.22,12A3,3,0,0,0,22,10a3,3,0,0,0-3-3H13.82A3,3,0,0,0,11,3H5A3,3,0,0,0,2,6a3,3,0,0,0,.78,2,3,3,0,0,0,0,4,3,3,0,0,0,0,4A3,3,0,0,0,2,18a3,3,0,0,0,3,3H19a3,3,0,0,0,2.22-5,3,3,0,0,0,0-4ZM11,19H5a1,1,0,0,1,0-2h6a1,1,0,0,1,0,2Zm0-4H5a1,1,0,0,1,0-2h6a1,1,0,0,1,0,2Zm0-4H5A1,1,0,0,1,5,9h6a1,1,0,0,1,0,2Zm0-4H5A1,1,0,0,1,5,5h6a1,1,0,0,1,0,2Zm8.69,11.71A.93.93,0,0,1,19,19H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,18.71Zm0-4A.93.93,0,0,1,19,15H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,14.71Zm0-4A.93.93,0,0,1,19,11H13.82a2.87,2.87,0,0,0,0-2H19a1,1,0,0,1,1,1A1,1,0,0,1,19.69,10.71Z' + }) + ) +} + +export default UilCoins \ No newline at end of file diff --git a/src/icons/uil-columns.ts b/src/icons/uil-columns.ts new file mode 100644 index 00000000..815cca00 --- /dev/null +++ b/src/icons/uil-columns.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilColumns = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V4h7Zm9,0H13V4h7Z' + }) + ) +} + +export default UilColumns \ No newline at end of file diff --git a/src/icons/uil-comment-add.ts b/src/icons/uil-comment-add.ts new file mode 100644 index 00000000..bdd8a025 --- /dev/null +++ b/src/icons/uil-comment-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5 8a1 1 0 0 0 2 0V7h1a1 1 0 0 0 0-2H7V4a1 1 0 0 0-2 0v1H4a1 1 0 0 0 0 2h1Zm13-3h-6a1 1 0 0 0 0 2h6a1 1 0 0 1 1 1v9.72l-1.57-1.45a1 1 0 0 0-.68-.27H8a1 1 0 0 1-1-1v-3a1 1 0 0 0-2 0v3a3 3 0 0 0 3 3h8.36l3 2.73A1 1 0 0 0 20 21a1.1 1.1 0 0 0 .4-.08A1 1 0 0 0 21 20V8a3 3 0 0 0-3-3Z' + }) + ) +} + +export default UilCommentAdd \ No newline at end of file diff --git a/src/icons/uil-comment-alt-block.ts b/src/icons/uil-comment-alt-block.ts new file mode 100644 index 00000000..18996858 --- /dev/null +++ b/src/icons/uil-comment-alt-block.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltBlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Zm-8.46,4.54A5,5,0,1,0,7,12,5,5,0,0,0,10.54,10.54ZM4,7A3,3,0,0,1,7,4a3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,4,7ZM9.7,5.71A3,3,0,0,1,10,7,3,3,0,0,1,5.72,9.7Z' + }) + ) +} + +export default UilCommentAltBlock \ No newline at end of file diff --git a/src/icons/uil-comment-alt-chart-lines.ts b/src/icons/uil-comment-alt-chart-lines.ts new file mode 100644 index 00000000..e2eb01b9 --- /dev/null +++ b/src/icons/uil-comment-alt-chart-lines.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltChartLines = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8ZM8,11a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V12A1,1,0,0,0,8,11ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM16,6a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V7A1,1,0,0,0,16,6Z' + }) + ) +} + +export default UilCommentAltChartLines \ No newline at end of file diff --git a/src/icons/uil-comment-alt-check.ts b/src/icons/uil-comment-alt-check.ts new file mode 100644 index 00000000..fb0f0bb3 --- /dev/null +++ b/src/icons/uil-comment-alt-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.77,9.15l5.44-5.44a1,1,0,1,0-1.42-1.42L6.06,7,4.21,5.17A1,1,0,0,0,2.79,6.59L5.35,9.15a1,1,0,0,0,1.42,0ZM18.5,6H13a1,1,0,0,0,0,2h5.5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V12.5a1,1,0,0,0-2,0V16a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' + }) + ) +} + +export default UilCommentAltCheck \ No newline at end of file diff --git a/src/icons/uil-comment-alt-dots.ts b/src/icons/uil-comment-alt-dots.ts new file mode 100644 index 00000000..e966091d --- /dev/null +++ b/src/icons/uil-comment-alt-dots.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltDots = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9a1,1,0,1,0,1,1A1,1,0,0,0,12,9Zm7-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM8,9a1,1,0,1,0,1,1A1,1,0,0,0,8,9Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,16,9Z' + }) + ) +} + +export default UilCommentAltDots \ No newline at end of file diff --git a/src/icons/uil-comment-alt-download.ts b/src/icons/uil-comment-alt-download.ts new file mode 100644 index 00000000..3f50a3f0 --- /dev/null +++ b/src/icons/uil-comment-alt-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.12,11.92a.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,1,0,8.79,7.29L7.5,8.59V3a1,1,0,0,0-2,0V8.59L4.21,7.29A1,1,0,1,0,2.79,8.71l3,3A1,1,0,0,0,6.12,11.92ZM18.5,6h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' + }) + ) +} + +export default UilCommentAltDownload \ No newline at end of file diff --git a/src/icons/uil-comment-alt-edit.ts b/src/icons/uil-comment-alt-edit.ts new file mode 100644 index 00000000..a2ba026b --- /dev/null +++ b/src/icons/uil-comment-alt-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.5,5.5h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1v-1a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V8.5A3,3,0,0,0,18.5,5.5Zm-9.42,7H11.5a1,1,0,0,0,1-1V9.08a1,1,0,0,0-.29-.71L6.63,2.79a1,1,0,0,0-1.41,0L2.79,5.22a1,1,0,0,0,0,1.41l5.58,5.58A1,1,0,0,0,9.08,12.5ZM5.92,4.91,10.5,9.49v1h-1L4.91,5.92Z' + }) + ) +} + +export default UilCommentAltEdit \ No newline at end of file diff --git a/src/icons/uil-comment-alt-exclamation.ts b/src/icons/uil-comment-alt-exclamation.ts new file mode 100644 index 00000000..569afad9 --- /dev/null +++ b/src/icons/uil-comment-alt-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,12a1,1,0,1,0,1,1A1,1,0,0,0,12,12Zm0-6a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Z' + }) + ) +} + +export default UilCommentAltExclamation \ No newline at end of file diff --git a/src/icons/uil-comment-alt-heart.ts b/src/icons/uil-comment-alt-heart.ts new file mode 100644 index 00000000..0fdafebe --- /dev/null +++ b/src/icons/uil-comment-alt-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6.35a3.07,3.07,0,0,0-3.54.53,3,3,0,0,0,0,4.24L11.29,14a1,1,0,0,0,1.42,0l2.83-2.83a3,3,0,0,0,0-4.24A3.07,3.07,0,0,0,12,6.35Zm2.12,3.36L12,11.83,9.88,9.71a1,1,0,0,1,0-1.42,1,1,0,0,1,1.41,0,1,1,0,0,0,1.42,0,1,1,0,0,1,1.41,0A1,1,0,0,1,14.12,9.71ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltHeart \ No newline at end of file diff --git a/src/icons/uil-comment-alt-image.ts b/src/icons/uil-comment-alt-image.ts new file mode 100644 index 00000000..27097abf --- /dev/null +++ b/src/icons/uil-comment-alt-image.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltImage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2ZM5.77,16H5a1,1,0,0,1-1-1v-.42l3.3-3.29a1,1,0,0,1,1.41,0l.87.87ZM20,18.59l-2.29-2.3A1,1,0,0,0,17,16H8.59L15.3,9.29a1,1,0,0,1,1.4,0L20,12.58Zm0-8.83L18.12,7.89a3,3,0,0,0-4.24,0L11,10.76l-.88-.87a3.06,3.06,0,0,0-4.24,0L4,11.76V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltImage \ No newline at end of file diff --git a/src/icons/uil-comment-alt-info.ts b/src/icons/uil-comment-alt-info.ts new file mode 100644 index 00000000..ac8994be --- /dev/null +++ b/src/icons/uil-comment-alt-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,11a1,1,0,0,0,1-1V6A1,1,0,0,0,4,6v4A1,1,0,0,0,5,11ZM4.29,3.71a1,1,0,0,0,1.09.21,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,6,3a1,1,0,0,0-.29-.71,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21A1,1,0,0,0,4,3a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,4.29,3.71ZM17,6H9A1,1,0,0,0,9,8h8a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H7a1,1,0,0,1-1-1V14a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,19,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,20,21V9A3,3,0,0,0,17,6Z' + }) + ) +} + +export default UilCommentAltInfo \ No newline at end of file diff --git a/src/icons/uil-comment-alt-lines.ts b/src/icons/uil-comment-alt-lines.ts new file mode 100644 index 00000000..d5b9eef9 --- /dev/null +++ b/src/icons/uil-comment-alt-lines.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltLines = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,11H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4-4H7A1,1,0,0,0,7,9H17a1,1,0,0,0,0-2Zm2-5H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltLines \ No newline at end of file diff --git a/src/icons/uil-comment-alt-lock.ts b/src/icons/uil-comment-alt-lock.ts new file mode 100644 index 00000000..d03f86e9 --- /dev/null +++ b/src/icons/uil-comment-alt-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10V8a3,3,0,0,0-2-2.82V4A3,3,0,0,0,4,4V5.18A3,3,0,0,0,2,8v2a3,3,0,0,0,3,3H9A3,3,0,0,0,12,10ZM6,4A1,1,0,0,1,8,4V5H6ZM4,10V8A1,1,0,0,1,5,7H9a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H5A1,1,0,0,1,4,10ZM19,7H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,23a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,22V10A3,3,0,0,0,19,7Z' + }) + ) +} + +export default UilCommentAltLock \ No newline at end of file diff --git a/src/icons/uil-comment-alt-medical.ts b/src/icons/uil-comment-alt-medical.ts new file mode 100644 index 00000000..befcb541 --- /dev/null +++ b/src/icons/uil-comment-alt-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9H13V8a1,1,0,0,0-2,0V9H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V11h1a1,1,0,0,0,0-2Zm5-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltMedical \ No newline at end of file diff --git a/src/icons/uil-comment-alt-message.ts b/src/icons/uil-comment-alt-message.ts new file mode 100644 index 00000000..0a18fe2f --- /dev/null +++ b/src/icons/uil-comment-alt-message.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltMessage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,7H7A1,1,0,0,0,7,9H17a1,1,0,0,0,0-2Zm0,4H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm2-9H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltMessage \ No newline at end of file diff --git a/src/icons/uil-comment-alt-notes.ts b/src/icons/uil-comment-alt-notes.ts new file mode 100644 index 00000000..ca16920d --- /dev/null +++ b/src/icons/uil-comment-alt-notes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltNotes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,7A1,1,0,1,0,8,8,1,1,0,0,0,7,7Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,7,11Zm10,0H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm2-5H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltNotes \ No newline at end of file diff --git a/src/icons/uil-comment-alt-plus.ts b/src/icons/uil-comment-alt-plus.ts new file mode 100644 index 00000000..e1c4c14b --- /dev/null +++ b/src/icons/uil-comment-alt-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,9H13V7a1,1,0,0,0-2,0V9H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V11h2a1,1,0,0,0,0-2Zm4-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltPlus \ No newline at end of file diff --git a/src/icons/uil-comment-alt-question.ts b/src/icons/uil-comment-alt-question.ts new file mode 100644 index 00000000..b4a0f38e --- /dev/null +++ b/src/icons/uil-comment-alt-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.29,10.3a1,1,0,0,0,1.09,1.63,1.19,1.19,0,0,0,.33-.22,1,1,0,0,0,.21-.32A.85.85,0,0,0,8,11a1,1,0,0,0-.29-.7A1,1,0,0,0,6.29,10.3ZM7,5A1,1,0,0,1,7,7,1,1,0,0,0,7,9,3,3,0,1,0,4.4,4.5a1,1,0,0,0,.37,1.37A1,1,0,0,0,6.13,5.5,1,1,0,0,1,7,5ZM19,6H13a1,1,0,0,0,0,2h6a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Z' + }) + ) +} + +export default UilCommentAltQuestion \ No newline at end of file diff --git a/src/icons/uil-comment-alt-redo.ts b/src/icons/uil-comment-alt-redo.ts new file mode 100644 index 00000000..db6659ed --- /dev/null +++ b/src/icons/uil-comment-alt-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.3,10.75A1,1,0,1,0,9,9.25,3,3,0,1,1,7,4,3,3,0,0,1,9.23,5H8A1,1,0,0,0,8,7h3a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0h0a5,5,0,1,0,.3,7.75ZM19,6H15a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6Z' + }) + ) +} + +export default UilCommentAltRedo \ No newline at end of file diff --git a/src/icons/uil-comment-alt-search.ts b/src/icons/uil-comment-alt-search.ts new file mode 100644 index 00000000..a5c844f3 --- /dev/null +++ b/src/icons/uil-comment-alt-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H14a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9a1,1,0,0,1-1-1V14a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73A1,1,0,0,0,21,22a1.1,1.1,0,0,0,.4-.08A1,1,0,0,0,22,21V9A3,3,0,0,0,19,6ZM8.57,10l1.72,1.73a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L10,8.57a4.37,4.37,0,0,0,.65-2.26A4.32,4.32,0,1,0,2,6.31a4.32,4.32,0,0,0,4.31,4.32A4.35,4.35,0,0,0,8.57,10ZM4,6.31a2.29,2.29,0,0,1,.68-1.63A2.32,2.32,0,0,1,8,4.68,2.31,2.31,0,0,1,8,8,2.32,2.32,0,0,1,4,6.31Z' + }) + ) +} + +export default UilCommentAltSearch \ No newline at end of file diff --git a/src/icons/uil-comment-alt-share.ts b/src/icons/uil-comment-alt-share.ts new file mode 100644 index 00000000..ba66df07 --- /dev/null +++ b/src/icons/uil-comment-alt-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.5,6.5h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H9.5a1,1,0,0,1-1-1v-2a1,1,0,0,0-2,0v2a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9.5A3,3,0,0,0,19.5,6.5Zm-10,5A2,2,0,1,0,8.32,7.89l-1.75-.8,1.91-.88a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,4.5,5a2,2,0,0,0,0,4,2,2,0,0,0,.93-.24l2.09,1A2,2,0,0,0,9.5,11.5Z' + }) + ) +} + +export default UilCommentAltShare \ No newline at end of file diff --git a/src/icons/uil-comment-alt-shield.ts b/src/icons/uil-comment-alt-shield.ts new file mode 100644 index 00000000..0199fc35 --- /dev/null +++ b/src/icons/uil-comment-alt-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.57,12a1,1,0,0,0,.58-.19l1.62-1.16A4.56,4.56,0,0,0,10.68,7V3.63a1,1,0,0,0-.37-.77,1,1,0,0,0-.84-.2,3,3,0,0,1-2.33-.48A1,1,0,0,0,6,2.18a3,3,0,0,1-2.33.48,1,1,0,0,0-1.2,1V7a4.55,4.55,0,0,0,1.9,3.7L6,11.81A.94.94,0,0,0,6.57,12ZM4.46,7V4.72a5.16,5.16,0,0,0,2.11-.55,5.12,5.12,0,0,0,2.11.55V7A2.57,2.57,0,0,1,7.61,9l-1,.74L5.53,9A2.57,2.57,0,0,1,4.46,7ZM18.54,6h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72L18,17.27a.94.94,0,0,0-.68-.27H8.54a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3H16.9l3,2.73a1,1,0,0,0,.67.27,1.15,1.15,0,0,0,.41-.08,1,1,0,0,0,.59-.92V9A3,3,0,0,0,18.54,6Z' + }) + ) +} + +export default UilCommentAltShield \ No newline at end of file diff --git a/src/icons/uil-comment-alt-slash.ts b/src/icons/uil-comment-alt-slash.ts new file mode 100644 index 00000000..34f7c2b2 --- /dev/null +++ b/src/icons/uil-comment-alt-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.66,6H17a1,1,0,0,1,1,1v6.34a1,1,0,1,0,2,0V7a3,3,0,0,0-3-3H10.66a1,1,0,0,0,0,2ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l2,2A3,3,0,0,0,4,7V19a1,1,0,0,0,.62.92A.84.84,0,0,0,5,20a1,1,0,0,0,.71-.29L8.41,17h7.18l4.7,4.71a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM8,15a1,1,0,0,0-.71.29L6,16.59V7.41L13.59,15Z' + }) + ) +} + +export default UilCommentAltSlash \ No newline at end of file diff --git a/src/icons/uil-comment-alt-upload.ts b/src/icons/uil-comment-alt-upload.ts new file mode 100644 index 00000000..614ab1db --- /dev/null +++ b/src/icons/uil-comment-alt-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.5,11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3A1,1,0,0,0,4.21,6.71L5.5,5.41Zm13-5h-5a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v9.72l-1.57-1.45a1,1,0,0,0-.68-.27H8.5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v1a3,3,0,0,0,3,3h8.36l3,2.73a1,1,0,0,0,.68.27,1.1,1.1,0,0,0,.4-.08,1,1,0,0,0,.6-.92V9A3,3,0,0,0,18.5,6Z' + }) + ) +} + +export default UilCommentAltUpload \ No newline at end of file diff --git a/src/icons/uil-comment-alt-verify.ts b/src/icons/uil-comment-alt-verify.ts new file mode 100644 index 00000000..66a3d749 --- /dev/null +++ b/src/icons/uil-comment-alt-verify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAltVerify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.71,6.29l-5.3,5.3L8.29,9.47a1,1,0,1,0-1.41,1.41l2.83,2.83a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29l6-6a1,1,0,0,0,0-1.42A1,1,0,0,0,15.71,6.29ZM19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAltVerify \ No newline at end of file diff --git a/src/icons/uil-comment-alt.ts b/src/icons/uil-comment-alt.ts new file mode 100644 index 00000000..e28cfcad --- /dev/null +++ b/src/icons/uil-comment-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentAlt \ No newline at end of file diff --git a/src/icons/uil-comment-block.ts b/src/icons/uil-comment-block.ts new file mode 100644 index 00000000..a798865f --- /dev/null +++ b/src/icons/uil-comment-block.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentBlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.22a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14ZM20.54,3.46A5,5,0,1,0,22,7,5,5,0,0,0,20.54,3.46ZM14,7a3,3,0,0,1,3-3,3,3,0,0,1,1.29.3l-4,4A3,3,0,0,1,14,7Zm5.12,2.12a3.08,3.08,0,0,1-3.4.57l4-4A3,3,0,0,1,20,7,3,3,0,0,1,19.12,9.12Z' + }) + ) +} + +export default UilCommentBlock \ No newline at end of file diff --git a/src/icons/uil-comment-chart-line.ts b/src/icons/uil-comment-chart-line.ts new file mode 100644 index 00000000..0b9a5a9d --- /dev/null +++ b/src/icons/uil-comment-chart-line.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentChartLine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10ZM8,13a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V14A1,1,0,0,0,8,13ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20ZM16,8a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V9A1,1,0,0,0,16,8Z' + }) + ) +} + +export default UilCommentChartLine \ No newline at end of file diff --git a/src/icons/uil-comment-check.ts b/src/icons/uil-comment-check.ts new file mode 100644 index 00000000..0ebd2237 --- /dev/null +++ b/src/icons/uil-comment-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.29,7.13a1,1,0,0,0,0,1.42l1.92,1.92a1,1,0,0,0,1.42,0l4.08-4.08A1,1,0,1,0,19.29,5L15.92,8.35,14.71,7.13A1,1,0,0,0,13.29,7.13Zm6.62,3.51A1,1,0,0,0,19,11.72,2.62,2.62,0,0,1,19,12a7,7,0,0,1-7,7H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,10.53,5.15a7.14,7.14,0,0,1,2.8,0,1,1,0,1,0,.4-2,9.15,9.15,0,0,0-3.61,0A9.05,9.05,0,0,0,3,12a9,9,0,0,0,2,5.62L3.29,19.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,21h8a9,9,0,0,0,9-9c0-.15,0-.29,0-.44A1,1,0,0,0,19.91,10.64Z' + }) + ) +} + +export default UilCommentCheck \ No newline at end of file diff --git a/src/icons/uil-comment-dots.ts b/src/icons/uil-comment-dots.ts new file mode 100644 index 00000000..0779a253 --- /dev/null +++ b/src/icons/uil-comment-dots.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentDots = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,11a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,16,11ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilCommentDots \ No newline at end of file diff --git a/src/icons/uil-comment-download.ts b/src/icons/uil-comment-download.ts new file mode 100644 index 00000000..003143e1 --- /dev/null +++ b/src/icons/uil-comment-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a8.49,8.49,0,0,1,.88,0,1,1,0,1,0,.24-2A8.32,8.32,0,0,0,11,4,9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14Zm2.71-6.74a1,1,0,0,0-1.42,0L19,8.59V3a1,1,0,0,0-2,0V8.59l-1.29-1.3a1,1,0,1,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,21.71,7.29Z' + }) + ) +} + +export default UilCommentDownload \ No newline at end of file diff --git a/src/icons/uil-comment-edit.ts b/src/icons/uil-comment-edit.ts new file mode 100644 index 00000000..7658e89f --- /dev/null +++ b/src/icons/uil-comment-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,4.72,19.28,2.29a1,1,0,0,0-1.41,0L12.29,7.87a1,1,0,0,0-.29.71V11a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l5.58-5.58A1,1,0,0,0,21.71,4.72ZM15,10H14V9l4.58-4.58,1,1Zm4,2h0a1,1,0,0,0-1,1,7,7,0,0,1-7,7H5.41l.64-.63a1,1,0,0,0,0-1.42A7,7,0,0,1,11,6a1,1,0,0,0,0-2h0A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,9-9A1,1,0,0,0,19,12Z' + }) + ) +} + +export default UilCommentEdit \ No newline at end of file diff --git a/src/icons/uil-comment-exclamation.ts b/src/icons/uil-comment-exclamation.ts new file mode 100644 index 00000000..0c9bdd81 --- /dev/null +++ b/src/icons/uil-comment-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,14a1,1,0,1,0,1,1A1,1,0,0,0,12,14ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20ZM12,8a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8Z' + }) + ) +} + +export default UilCommentExclamation \ No newline at end of file diff --git a/src/icons/uil-comment-heart.ts b/src/icons/uil-comment-heart.ts new file mode 100644 index 00000000..24b7d85f --- /dev/null +++ b/src/icons/uil-comment-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8.35a3.07,3.07,0,0,0-3.54.53,3,3,0,0,0,0,4.24L11.29,16a1,1,0,0,0,1.42,0l2.83-2.83a3,3,0,0,0,0-4.24A3.07,3.07,0,0,0,12,8.35Zm2.12,3.36L12,13.83,9.88,11.71a1,1,0,0,1,0-1.42,1,1,0,0,1,1.41,0,1,1,0,0,0,1.42,0,1,1,0,0,1,1.41,0A1,1,0,0,1,14.12,11.71ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilCommentHeart \ No newline at end of file diff --git a/src/icons/uil-comment-image.ts b/src/icons/uil-comment-image.ts new file mode 100644 index 00000000..fe10c733 --- /dev/null +++ b/src/icons/uil-comment-image.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentImage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,2.44,14.91a.29.29,0,0,0,0,.1,9.83,9.83,0,0,0,1.79,3.32l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9a10,10,0,0,0,9.46-6.78l0-.08A9.89,9.89,0,0,0,22,12,10,10,0,0,0,12,2Zm0,18H5.41l.3-.29,8.41-8.42a1,1,0,0,1,1.4,0l3.62,3.6.23.22A8,8,0,0,1,12,20ZM4.54,14.87l1.58-1.58a1,1,0,0,1,1.41,0l.87.87L5.68,16.9A7.67,7.67,0,0,1,4.54,14.87Zm15.41-2-3-3a3,3,0,0,0-4.24,0L9.82,12.76l-.88-.87a3,3,0,0,0-4.23,0L4,12.56A5.25,5.25,0,0,1,4,12a8,8,0,0,1,16,0A8.27,8.27,0,0,1,20,12.86Z' + }) + ) +} + +export default UilCommentImage \ No newline at end of file diff --git a/src/icons/uil-comment-info-alt.ts b/src/icons/uil-comment-info-alt.ts new file mode 100644 index 00000000..17b9a4fa --- /dev/null +++ b/src/icons/uil-comment-info-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentInfoAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V10A1,1,0,0,0,12,9Zm7-7H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H16.59l3.7,3.71A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V5A3,3,0,0,0,19,2Zm1,16.59-2.29-2.3A1,1,0,0,0,17,16H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,6a1,1,0,1,0,1,1A1,1,0,0,0,12,6Z' + }) + ) +} + +export default UilCommentInfoAlt \ No newline at end of file diff --git a/src/icons/uil-comment-info.ts b/src/icons/uil-comment-info.ts new file mode 100644 index 00000000..69b5e8fc --- /dev/null +++ b/src/icons/uil-comment-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,11a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Zm0-3a1,1,0,1,0,1,1A1,1,0,0,0,12,8Zm0-6A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilCommentInfo \ No newline at end of file diff --git a/src/icons/uil-comment-lines.ts b/src/icons/uil-comment-lines.ts new file mode 100644 index 00000000..9215bb69 --- /dev/null +++ b/src/icons/uil-comment-lines.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentLines = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm-4,4H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilCommentLines \ No newline at end of file diff --git a/src/icons/uil-comment-lock.ts b/src/icons/uil-comment-lock.ts new file mode 100644 index 00000000..b328680b --- /dev/null +++ b/src/icons/uil-comment-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.92,16.13a1,1,0,0,0-1.37.37A7,7,0,0,1,11.5,20H5.91l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,10.62,6.05a1,1,0,1,0-.24-2A9,9,0,0,0,4.47,18.62L2.79,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3.5,22h8a9,9,0,0,0,7.79-4.5A1,1,0,0,0,18.92,16.13Zm.58-9.95V5a3,3,0,0,0-6,0V6.18A3,3,0,0,0,11.5,9v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V9A3,3,0,0,0,19.5,6.18ZM15.5,5a1,1,0,0,1,2,0V6h-2Zm4,6a1,1,0,0,1-1,1h-4a1,1,0,0,1-1-1V9a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentLock \ No newline at end of file diff --git a/src/icons/uil-comment-medical.ts b/src/icons/uil-comment-medical.ts new file mode 100644 index 00000000..2851e786 --- /dev/null +++ b/src/icons/uil-comment-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm2-9H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCommentMedical \ No newline at end of file diff --git a/src/icons/uil-comment-message.ts b/src/icons/uil-comment-message.ts new file mode 100644 index 00000000..b0b5fee1 --- /dev/null +++ b/src/icons/uil-comment-message.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentMessage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm5-9H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Zm-2,4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,9h6a1,1,0,0,0,0-2H9A1,1,0,0,0,9,9Z' + }) + ) +} + +export default UilCommentMessage \ No newline at end of file diff --git a/src/icons/uil-comment-notes.ts b/src/icons/uil-comment-notes.ts new file mode 100644 index 00000000..9b76529a --- /dev/null +++ b/src/icons/uil-comment-notes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentNotes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,11h6a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2ZM7,9a1,1,0,1,0,1,1A1,1,0,0,0,7,9Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,.3-.71,1,1,0,0,0-.3-.7A8,8,0,1,1,12,20Zm5-7H11a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCommentNotes \ No newline at end of file diff --git a/src/icons/uil-comment-plus.ts b/src/icons/uil-comment-plus.ts new file mode 100644 index 00000000..8c1f62f9 --- /dev/null +++ b/src/icons/uil-comment-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Zm3-9H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCommentPlus \ No newline at end of file diff --git a/src/icons/uil-comment-question.ts b/src/icons/uil-comment-question.ts new file mode 100644 index 00000000..efaa8e94 --- /dev/null +++ b/src/icons/uil-comment-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.77,5.87a1,1,0,0,0,1.36-.37A1,1,0,0,1,18,6a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,1,0-2.6-4.5A1,1,0,0,0,14.77,5.87ZM19.07,13a1,1,0,0,0-1.12.86A7,7,0,0,1,11,20H5.41l.65-.65a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a1,1,0,0,0,0-2A9,9,0,0,0,4,18.61L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.93-7.87A1,1,0,0,0,19.07,13Zm-1.69-2.93A1,1,0,0,0,16.8,10l-.18.06-.18.09-.15.13a1,1,0,0,0-.21.32A.84.84,0,0,0,16,11a1,1,0,0,0,.07.39,1,1,0,0,0,.22.32A1,1,0,0,0,17,12a1,1,0,0,0,1-1,.84.84,0,0,0-.08-.38,1.07,1.07,0,0,0-.54-.54Z' + }) + ) +} + +export default UilCommentQuestion \ No newline at end of file diff --git a/src/icons/uil-comment-redo.ts b/src/icons/uil-comment-redo.ts new file mode 100644 index 00000000..4fb5596d --- /dev/null +++ b/src/icons/uil-comment-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.22a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14ZM21,2a1,1,0,0,0-1,1h0a5,5,0,1,0,.3,7.75A1,1,0,1,0,19,9.25,3,3,0,1,1,17,4a3,3,0,0,1,2.23,1H18a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2Z' + }) + ) +} + +export default UilCommentRedo \ No newline at end of file diff --git a/src/icons/uil-comment-search.ts b/src/icons/uil-comment-search.ts new file mode 100644 index 00000000..01db97f3 --- /dev/null +++ b/src/icons/uil-comment-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.21,10.29,19.48,8.57a4.37,4.37,0,0,0,.65-2.26,4.31,4.31,0,1,0-4.32,4.32A4.35,4.35,0,0,0,18.07,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,21.21,10.29ZM17.45,8A2.32,2.32,0,0,1,13.5,6.31a2.29,2.29,0,0,1,.68-1.63,2.32,2.32,0,0,1,3.27,0,2.31,2.31,0,0,1,0,3.27ZM19.5,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11.5,20H5.91l.64-.63a1,1,0,0,0,0-1.41,7,7,0,0,1-2-5A7,7,0,0,1,8.87,6.52a1,1,0,1,0-.74-1.86,9,9,0,0,0-3.66,14L2.79,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3.5,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19.5,14Z' + }) + ) +} + +export default UilCommentSearch \ No newline at end of file diff --git a/src/icons/uil-comment-share.ts b/src/icons/uil-comment-share.ts new file mode 100644 index 00000000..4e5f4884 --- /dev/null +++ b/src/icons/uil-comment-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.06,13.51a1,1,0,0,0-1.11.87A7,7,0,0,1,11,20.5H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,9.25,6.72a1,1,0,0,0-.5-1.94A9,9,0,0,0,4,19.12L2.29,20.79a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22.5h8a9,9,0,0,0,8.93-7.88A1,1,0,0,0,19.06,13.51ZM19,7.5a2,2,0,0,0-1.18.39l-1.75-.8L18,6.21a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,14,5a2,2,0,0,0,0,4,2,2,0,0,0,.93-.24l2.09,1A2,2,0,1,0,19,7.5Z' + }) + ) +} + +export default UilCommentShare \ No newline at end of file diff --git a/src/icons/uil-comment-shield.ts b/src/icons/uil-comment-shield.ts new file mode 100644 index 00000000..434e0fe9 --- /dev/null +++ b/src/icons/uil-comment-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.7,2.86a1,1,0,0,0-.84-.2,3,3,0,0,1-2.33-.48,1,1,0,0,0-1.15,0,3,3,0,0,1-2.33.48,1,1,0,0,0-.84.2,1,1,0,0,0-.37.77V7a4.56,4.56,0,0,0,1.91,3.7l1.62,1.16a1,1,0,0,0,1.17,0l1.62-1.16A4.56,4.56,0,0,0,22.07,7V3.63A1,1,0,0,0,21.7,2.86ZM20.07,7A2.57,2.57,0,0,1,19,9l-1,.74L16.91,9A2.57,2.57,0,0,1,15.84,7V4.72A5.17,5.17,0,0,0,18,4.17a5.12,5.12,0,0,0,2.11.55ZM18.93,14a1,1,0,0,0-1.21.72A7,7,0,0,1,10.93,20H5.35L6,19.37A1,1,0,0,0,6,18,7,7,0,0,1,10.93,6a1,1,0,0,0,0-2,9,9,0,0,0-7,14.62L2.23,20.29A1,1,0,0,0,2.93,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,18.93,14Z' + }) + ) +} + +export default UilCommentShield \ No newline at end of file diff --git a/src/icons/uil-comment-slash.ts b/src/icons/uil-comment-slash.ts new file mode 100644 index 00000000..bf027482 --- /dev/null +++ b/src/icons/uil-comment-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.19,5.23A7.12,7.12,0,0,1,12,5a7,7,0,0,1,7,7,7.12,7.12,0,0,1-.23,1.81,1,1,0,0,0,.7,1.23,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,1-.74A8.91,8.91,0,0,0,21,12a9,9,0,0,0-9-9,8.91,8.91,0,0,0-2.33.3A1,1,0,0,0,9,4.53,1,1,0,0,0,10.19,5.23ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L5,6.38A9,9,0,0,0,5,17.62L3.29,19.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,4,21h8a9,9,0,0,0,5.62-2l2.67,2.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM12,19H6.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,6.4,7.81l9.79,9.79A7,7,0,0,1,12,19Z' + }) + ) +} + +export default UilCommentSlash \ No newline at end of file diff --git a/src/icons/uil-comment-upload.ts b/src/icons/uil-comment-upload.ts new file mode 100644 index 00000000..cff5e080 --- /dev/null +++ b/src/icons/uil-comment-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,14a1,1,0,0,0-1.22.72A7,7,0,0,1,11,20H5.41l.64-.63a1,1,0,0,0,0-1.41A7,7,0,0,1,11,6a1,1,0,0,0,0-2A9,9,0,0,0,4,18.62L2.29,20.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h8a9,9,0,0,0,8.72-6.75A1,1,0,0,0,19,14Zm2.71-8.74-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L17,5.41V11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,5.29Z' + }) + ) +} + +export default UilCommentUpload \ No newline at end of file diff --git a/src/icons/uil-comment-verify.ts b/src/icons/uil-comment-verify.ts new file mode 100644 index 00000000..ebcc5ccf --- /dev/null +++ b/src/icons/uil-comment-verify.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentVerify = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.29,8.85l-4.73,4.74L8.71,11.73a1,1,0,0,0-1.42,1.42l2.56,2.56a1,1,0,0,0,1.42,0l5.44-5.44a1,1,0,1,0-1.42-1.42ZM12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilCommentVerify \ No newline at end of file diff --git a/src/icons/uil-comment.ts b/src/icons/uil-comment.ts new file mode 100644 index 00000000..af8a9702 --- /dev/null +++ b/src/icons/uil-comment.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilComment = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,2,12a9.89,9.89,0,0,0,2.26,6.33l-2,2a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,22h9A10,10,0,0,0,12,2Zm0,18H5.41l.93-.93a1,1,0,0,0,0-1.41A8,8,0,1,1,12,20Z' + }) + ) +} + +export default UilComment \ No newline at end of file diff --git a/src/icons/uil-comments-alt.ts b/src/icons/uil-comments-alt.ts new file mode 100644 index 00000000..d16871bd --- /dev/null +++ b/src/icons/uil-comments-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCommentsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,8H18V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V17a1,1,0,0,0,.62.92A.84.84,0,0,0,3,18a1,1,0,0,0,.71-.29l2.81-2.82H8v1.44a3,3,0,0,0,3,3h6.92l2.37,2.38A1,1,0,0,0,21,22a.84.84,0,0,0,.38-.08A1,1,0,0,0,22,21V11A3,3,0,0,0,19,8ZM8,11v1.89H6.11a1,1,0,0,0-.71.29L4,14.59V5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V8H11A3,3,0,0,0,8,11Zm12,7.59-1-1a1,1,0,0,0-.71-.3H11a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCommentsAlt \ No newline at end of file diff --git a/src/icons/uil-comments.ts b/src/icons/uil-comments.ts new file mode 100644 index 00000000..dae610c7 --- /dev/null +++ b/src/icons/uil-comments.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilComments = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.61,19.19A7,7,0,0,0,17.87,8.62,8,8,0,1,0,3.68,14.91L2.29,16.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,18H8.69A7,7,0,0,0,15,22h6a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09ZM8,15a6.63,6.63,0,0,0,.08,1H5.41l.35-.34a1,1,0,0,0,0-1.42A5.93,5.93,0,0,1,4,10a6,6,0,0,1,6-6,5.94,5.94,0,0,1,5.65,4c-.22,0-.43,0-.65,0A7,7,0,0,0,8,15ZM18.54,20l.05.05H15a5,5,0,1,1,3.54-1.46,1,1,0,0,0-.3.7A1,1,0,0,0,18.54,20Z' + }) + ) +} + +export default UilComments \ No newline at end of file diff --git a/src/icons/uil-compact-disc.ts b/src/icons/uil-compact-disc.ts new file mode 100644 index 00000000..a8d27321 --- /dev/null +++ b/src/icons/uil-compact-disc.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompactDisc = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' + }) + ) +} + +export default UilCompactDisc \ No newline at end of file diff --git a/src/icons/uil-comparison.ts b/src/icons/uil-comparison.ts new file mode 100644 index 00000000..d03308ba --- /dev/null +++ b/src/icons/uil-comparison.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilComparison = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21 20H4v-.54l5-5 3.8 3.8a1 1 0 0 0 1.41 0l7.5-7.5a1 1 0 0 0 0-1.42 1 1 0 0 0-1.41 0l-6.8 6.8-3.79-3.8a1 1 0 0 0-1.41 0L4 16.63v-5.17l5-5 2.8 2.8a1 1 0 0 0 1.41 0L18 4.47l2.19 2.19a1 1 0 0 0 1.41-1.42l-2.91-2.89a1 1 0 0 0-1.41 0l-4.8 4.8-2.79-2.8a1 1 0 0 0-1.41 0L4 8.63V3a1 1 0 0 0-2 0v18a1 1 0 0 0 1 1h18a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilComparison \ No newline at end of file diff --git a/src/icons/uil-compass.ts b/src/icons/uil-compass.ts new file mode 100644 index 00000000..67fb2c5b --- /dev/null +++ b/src/icons/uil-compass.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompass = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm1,17.93V19a1,1,0,0,0-2,0v.93A8,8,0,0,1,4.07,13H5a1,1,0,0,0,0-2H4.07A8,8,0,0,1,11,4.07V5a1,1,0,0,0,2,0V4.07A8,8,0,0,1,19.93,11H19a1,1,0,0,0,0,2h.93A8,8,0,0,1,13,19.93ZM15.14,7.55l-5,2.12a1,1,0,0,0-.52.52l-2.12,5a1,1,0,0,0,.21,1.1,1,1,0,0,0,.7.3.93.93,0,0,0,.4-.09l5-2.12a1,1,0,0,0,.52-.52l2.12-5a1,1,0,0,0-1.31-1.31Zm-2.49,5.1-2.28,1,1-2.28,2.28-1Z' + }) + ) +} + +export default UilCompass \ No newline at end of file diff --git a/src/icons/uil-compress-alt-left.ts b/src/icons/uil-compress-alt-left.ts new file mode 100644 index 00000000..3d79d814 --- /dev/null +++ b/src/icons/uil-compress-alt-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressAltLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,5.5a1,1,0,0,0-1,1V8.09L3.71,2.29A1,1,0,0,0,2.29,3.71L8.09,9.5H6.5a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54,1,1,0,0,0,.08-.38v-4A1,1,0,0,0,10.5,5.5ZM21.71,20.29l-5.8-5.79H17.5a1,1,0,0,0,0-2h-4a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54,1,1,0,0,0-.08.38v4a1,1,0,0,0,2,0V15.91l5.79,5.8a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Z' + }) + ) +} + +export default UilCompressAltLeft \ No newline at end of file diff --git a/src/icons/uil-compress-alt.ts b/src/icons/uil-compress-alt.ts new file mode 100644 index 00000000..85b000ec --- /dev/null +++ b/src/icons/uil-compress-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,2.29a1,1,0,0,0-1.42,0L14.5,8.09V6.5a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54,1,1,0,0,0,.38.08h4a1,1,0,0,0,0-2H15.91l5.8-5.79A1,1,0,0,0,21.71,2.29ZM10.88,12.58a1,1,0,0,0-.38-.08h-4a1,1,0,0,0,0,2H8.09l-5.8,5.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5.79-5.8V17.5a1,1,0,0,0,2,0v-4a1,1,0,0,0-.08-.38A1,1,0,0,0,10.88,12.58Z' + }) + ) +} + +export default UilCompressAlt \ No newline at end of file diff --git a/src/icons/uil-compress-arrows.ts b/src/icons/uil-compress-arrows.ts new file mode 100644 index 00000000..22919953 --- /dev/null +++ b/src/icons/uil-compress-arrows.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressArrows = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.38,13.08A1,1,0,0,0,10,13H6a1,1,0,0,0,0,2H7.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,16.41V18a1,1,0,0,0,2,0V14a1,1,0,0,0-.08-.38A1,1,0,0,0,10.38,13.08ZM10,5A1,1,0,0,0,9,6V7.59L3.71,2.29A1,1,0,0,0,2.29,3.71L7.59,9H6a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,11,10V6A1,1,0,0,0,10,5Zm3.62,5.92A1,1,0,0,0,14,11h4a1,1,0,0,0,0-2H16.41l5.3-5.29a1,1,0,1,0-1.42-1.42L15,7.59V6a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38A1,1,0,0,0,13.62,10.92ZM16.41,15H18a1,1,0,0,0,0-2H14a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,13,14v4a1,1,0,0,0,2,0V16.41l5.29,5.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilCompressArrows \ No newline at end of file diff --git a/src/icons/uil-compress-lines.ts b/src/icons/uil-compress-lines.ts new file mode 100644 index 00000000..55051fc4 --- /dev/null +++ b/src/icons/uil-compress-lines.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressLines = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,20H13V16.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V20H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2ZM7,4h4V7.59l-.79-.8A1,1,0,1,0,8.79,8.21l2.5,2.5a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,1,0-1.42-1.42l-.79.8V4h4a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4Z' + }) + ) +} + +export default UilCompressLines \ No newline at end of file diff --git a/src/icons/uil-compress-point.ts b/src/icons/uil-compress-point.ts new file mode 100644 index 00000000..72e4f2bf --- /dev/null +++ b/src/icons/uil-compress-point.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressPoint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29,15.41,14H17a1,1,0,0,0,0-2H13.41l5.66-5.66a1,1,0,1,0-1.41-1.41L12,10.59V7a1,1,0,0,0-2,0V8.59L3.71,2.29A1,1,0,0,0,2.29,3.71L8.59,10H7a1,1,0,0,0,0,2h3.59L4.93,17.66a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L12,13.41V17a1,1,0,0,0,2,0V15.41l6.29,6.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Z' + }) + ) +} + +export default UilCompressPoint \ No newline at end of file diff --git a/src/icons/uil-compress-v.ts b/src/icons/uil-compress-v.ts new file mode 100644 index 00000000..87a20699 --- /dev/null +++ b/src/icons/uil-compress-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompressV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,13.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42l.79-.8V21a1,1,0,0,0,2,0V16.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-1.42-2.58a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2.5-2.5a1,1,0,1,0-1.42-1.42l-.79.8V3a1,1,0,0,0-2,0V7.59l-.79-.8A1,1,0,1,0,8.79,8.21Z' + }) + ) +} + +export default UilCompressV \ No newline at end of file diff --git a/src/icons/uil-compress.ts b/src/icons/uil-compress.ts new file mode 100644 index 00000000..168d5fd9 --- /dev/null +++ b/src/icons/uil-compress.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCompress = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,9h5a1,1,0,0,0,0-2H17V3a1,1,0,0,0-2,0V8A1,1,0,0,0,16,9ZM8,15H3a1,1,0,0,0,0,2H7v4a1,1,0,0,0,2,0V16A1,1,0,0,0,8,15ZM8,2A1,1,0,0,0,7,3V7H3A1,1,0,0,0,3,9H8A1,1,0,0,0,9,8V3A1,1,0,0,0,8,2ZM21,15H16a1,1,0,0,0-1,1v5a1,1,0,0,0,2,0V17h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCompress \ No newline at end of file diff --git a/src/icons/uil-confused.ts b/src/icons/uil-confused.ts new file mode 100644 index 00000000..27dc3fe7 --- /dev/null +++ b/src/icons/uil-confused.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilConfused = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,9a1,1,0,1,0,1,1A1,1,0,0,0,9,9Zm5.66,4.56-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilConfused \ No newline at end of file diff --git a/src/icons/uil-constructor.ts b/src/icons/uil-constructor.ts new file mode 100644 index 00000000..4a918637 --- /dev/null +++ b/src/icons/uil-constructor.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilConstructor = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,9.67V9.5a7.95,7.95,0,0,0-5.59-7.62l-.06,0a8.32,8.32,0,0,0-2.59-.36A8.21,8.21,0,0,0,4,9.67a3,3,0,0,0,0,5.66,8,8,0,0,0,8,7.17h.23a8.13,8.13,0,0,0,7.68-7.16A3,3,0,0,0,20,9.67ZM12.18,20.5a6,6,0,0,1-6.09-5H17.86A6.09,6.09,0,0,1,12.18,20.5Zm6.82-7H5a1,1,0,0,1,0-2H7a1,1,0,0,0,0-2H6A6.4,6.4,0,0,1,9,4.35V7.5a1,1,0,0,0,2,0V3.59a7.34,7.34,0,0,1,.82-.09H12a6.64,6.64,0,0,1,1,.09V7.5a1,1,0,0,0,2,0V4.32a6.65,6.65,0,0,1,1.18.87A6,6,0,0,1,18,9.5H17a1,1,0,0,0,0,2h2a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilConstructor \ No newline at end of file diff --git a/src/icons/uil-copy-alt.ts b/src/icons/uil-copy-alt.ts new file mode 100644 index 00000000..2f97cca3 --- /dev/null +++ b/src/icons/uil-copy-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCopyAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,20H8a3,3,0,0,1-3-3V7A1,1,0,0,0,3,7V17a5,5,0,0,0,5,5h8a1,1,0,0,0,0-2ZM21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L14.06,2H10A3,3,0,0,0,7,5V15a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM19,15a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilCopyAlt \ No newline at end of file diff --git a/src/icons/uil-copy-landscape.ts b/src/icons/uil-copy-landscape.ts new file mode 100644 index 00000000..0ca992a5 --- /dev/null +++ b/src/icons/uil-copy-landscape.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCopyLandscape = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,19H6a3,3,0,0,1-3-3V8A1,1,0,0,0,1,8v8a5,5,0,0,0,5,5H18a1,1,0,0,0,0-2Zm5-9.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L16.06,3H8A3,3,0,0,0,5,6v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM21,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilCopyLandscape \ No newline at end of file diff --git a/src/icons/uil-copy.ts b/src/icons/uil-copy.ts new file mode 100644 index 00000000..14b6c2ad --- /dev/null +++ b/src/icons/uil-copy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCopy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,14.05,2H10A3,3,0,0,0,7,5V6H6A3,3,0,0,0,3,9V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V18h1a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM15,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8H7v7a3,3,0,0,0,3,3h5Zm4-4a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilCopy \ No newline at end of file diff --git a/src/icons/uil-copyright.ts b/src/icons/uil-copyright.ts new file mode 100644 index 00000000..8b185b8a --- /dev/null +++ b/src/icons/uil-copyright.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCopyright = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,9h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v4a3,3,0,0,0,3,3h2a3,3,0,0,0,3-3,1,1,0,0,0-2,0,1,1,0,0,1-1,1H11a1,1,0,0,1-1-1V10A1,1,0,0,1,11,9Zm1-7A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilCopyright \ No newline at end of file diff --git a/src/icons/uil-corner-down-left.ts b/src/icons/uil-corner-down-left.ts new file mode 100644 index 00000000..97d2c01a --- /dev/null +++ b/src/icons/uil-corner-down-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerDownLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.69,2a1,1,0,0,0-1,1V13.37a2,2,0,0,1-2,2h-8l2.92-2.92A1,1,0,0,0,9.24,11L4.61,15.66a1.19,1.19,0,0,0-.22.33,1,1,0,0,0,0,.76,1,1,0,0,0,.22.33l4.63,4.63a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L7.73,17.37h8a4,4,0,0,0,4-4V3A1,1,0,0,0,18.69,2Z' + }) + ) +} + +export default UilCornerDownLeft \ No newline at end of file diff --git a/src/icons/uil-corner-down-right-alt.ts b/src/icons/uil-corner-down-right-alt.ts new file mode 100644 index 00000000..615fda95 --- /dev/null +++ b/src/icons/uil-corner-down-right-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerDownRightAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.92,12.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L17.59,12H8a1,1,0,0,1-1-1V7A1,1,0,0,0,5,7v4a3,3,0,0,0,3,3h9.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,20.92,12.62Z' + }) + ) +} + +export default UilCornerDownRightAlt \ No newline at end of file diff --git a/src/icons/uil-corner-down-right.ts b/src/icons/uil-corner-down-right.ts new file mode 100644 index 00000000..bd7b9b98 --- /dev/null +++ b/src/icons/uil-corner-down-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerDownRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.61,16a1.19,1.19,0,0,0-.22-.33L14.76,11a1,1,0,0,0-1.41,1.41l2.92,2.92h-7a3,3,0,0,1-3-3V3a1,1,0,1,0-2,0v9.37a5,5,0,0,0,5,5h7l-2.92,2.92a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l4.63-4.63a1,1,0,0,0,.22-.33A1,1,0,0,0,19.61,16Z' + }) + ) +} + +export default UilCornerDownRight \ No newline at end of file diff --git a/src/icons/uil-corner-left-down.ts b/src/icons/uil-corner-left-down.ts new file mode 100644 index 00000000..de842e50 --- /dev/null +++ b/src/icons/uil-corner-left-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerLeftDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,4.31H11.63a5,5,0,0,0-5,5v7L3.71,13.35a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l4.63,4.63a1,1,0,0,0,.33.22.94.94,0,0,0,.76,0,1.19,1.19,0,0,0,.33-.22L13,14.76a1,1,0,0,0-1.41-1.41L8.63,16.27v-7a3,3,0,0,1,3-3H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilCornerLeftDown \ No newline at end of file diff --git a/src/icons/uil-corner-right-down.ts b/src/icons/uil-corner-right-down.ts new file mode 100644 index 00000000..fdae48bd --- /dev/null +++ b/src/icons/uil-corner-right-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerRightDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,13.35a1,1,0,0,0-1.42,0l-2.92,2.92v-8a4,4,0,0,0-4-4H3a1,1,0,1,0,0,2H13.37a2,2,0,0,1,2,2v8l-2.92-2.92A1,1,0,0,0,11,14.76l4.62,4.63a1.19,1.19,0,0,0,.33.22.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.22l4.63-4.63A1,1,0,0,0,21.71,13.35Z' + }) + ) +} + +export default UilCornerRightDown \ No newline at end of file diff --git a/src/icons/uil-corner-up-left.ts b/src/icons/uil-corner-up-left.ts new file mode 100644 index 00000000..43a072f5 --- /dev/null +++ b/src/icons/uil-corner-up-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerUpLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.69,6.63h-7l2.92-2.92a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L4.61,6.92a1,1,0,0,0-.22.33,1,1,0,0,0,0,.76,1.19,1.19,0,0,0,.22.33L9.24,13a1,1,0,0,0,.7.3,1,1,0,0,0,.71-1.71L7.73,8.63h7a3,3,0,0,1,3,3V21a1,1,0,0,0,2,0V11.63A5,5,0,0,0,14.69,6.63Z' + }) + ) +} + +export default UilCornerUpLeft \ No newline at end of file diff --git a/src/icons/uil-corner-up-right-alt.ts b/src/icons/uil-corner-up-right-alt.ts new file mode 100644 index 00000000..fb72893d --- /dev/null +++ b/src/icons/uil-corner-up-right-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerUpRightAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.92,10.12a1,1,0,0,0-.21-.33l-3-3a1,1,0,1,0-1.42,1.42l1.3,1.29H7a3,3,0,0,0-3,3v4a1,1,0,0,0,2,0v-4a1,1,0,0,1,1-1h9.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,19.92,10.12Z' + }) + ) +} + +export default UilCornerUpRightAlt \ No newline at end of file diff --git a/src/icons/uil-corner-up-right.ts b/src/icons/uil-corner-up-right.ts new file mode 100644 index 00000000..f5c362ce --- /dev/null +++ b/src/icons/uil-corner-up-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCornerUpRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.61,7.25a1,1,0,0,0-.22-.33L14.76,2.29a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l2.92,2.92h-8a4,4,0,0,0-4,4V21a1,1,0,0,0,2,0V10.63a2,2,0,0,1,2-2h8l-2.92,2.92a1,1,0,0,0,.71,1.71,1,1,0,0,0,.7-.3l4.63-4.62A1.19,1.19,0,0,0,19.61,8,1,1,0,0,0,19.61,7.25Z' + }) + ) +} + +export default UilCornerUpRight \ No newline at end of file diff --git a/src/icons/uil-coronavirus.ts b/src/icons/uil-coronavirus.ts new file mode 100644 index 00000000..088d9424 --- /dev/null +++ b/src/icons/uil-coronavirus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCoronavirus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.5 9a1.5 1.5 0 1 0 1.5 1.5A1.5 1.5 0 0 0 9.5 9ZM9 14a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm6-6a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm-.5 4a1.5 1.5 0 1 0 1.5 1.5 1.5 1.5 0 0 0-1.5-1.5Zm7.5-1h-1.059a8.952 8.952 0 0 0-1.916-4.61l.753-.754a1 1 0 0 0-1.414-1.414l-.753.753A8.952 8.952 0 0 0 13 3.059V2a1 1 0 0 0-2 0v1.059a8.952 8.952 0 0 0-4.61 1.916l-.754-.753a1 1 0 0 0-1.414 1.414l.753.753A8.952 8.952 0 0 0 3.059 11H2a1 1 0 0 0 0 2h1.059a8.952 8.952 0 0 0 1.916 4.61l-.753.754a1 1 0 1 0 1.414 1.414l.753-.753A8.952 8.952 0 0 0 11 20.941V22a1 1 0 0 0 2 0v-1.059a8.952 8.952 0 0 0 4.61-1.916l.754.753a1 1 0 0 0 1.414-1.414l-.753-.753A8.952 8.952 0 0 0 20.941 13H22a1 1 0 0 0 0-2Zm-4 2h.92A7.004 7.004 0 0 1 13 18.92V17a1 1 0 0 0-2 0v1.92A7.004 7.004 0 0 1 5.08 13H6a1 1 0 0 0 0-2h-.92A7.004 7.004 0 0 1 11 5.08V7a1 1 0 0 0 2 0V5.08A7.004 7.004 0 0 1 18.92 11H18a1 1 0 0 0 0 2Z' + }) + ) +} + +export default UilCoronavirus \ No newline at end of file diff --git a/src/icons/uil-create-dashboard.ts b/src/icons/uil-create-dashboard.ts new file mode 100644 index 00000000..8fb06c00 --- /dev/null +++ b/src/icons/uil-create-dashboard.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCreateDashboard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10 13H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1Zm-1 6H5v-4h4ZM20 3h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1Zm-1 6h-4V5h4Zm1 7h-2v-2a1 1 0 0 0-2 0v2h-2a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0-2ZM10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1ZM9 9H5V5h4Z' + }) + ) +} + +export default UilCreateDashboard \ No newline at end of file diff --git a/src/icons/uil-creative-commons-pd.ts b/src/icons/uil-creative-commons-pd.ts new file mode 100644 index 00000000..b7154cba --- /dev/null +++ b/src/icons/uil-creative-commons-pd.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCreativeCommonsPd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-8-8A7.92,7.92,0,0,1,5.69,7.1L8.05,9.47A3.07,3.07,0,0,0,8,10v4a3,3,0,0,0,3,3h2a3,3,0,0,0,1.89-.69l2,2A7.92,7.92,0,0,1,12,20Zm-2-6V11.41l3.46,3.46A.91.91,0,0,1,13,15H11A1,1,0,0,1,10,14Zm8.31,2.9L16,14.53A3.07,3.07,0,0,0,16,14a1,1,0,0,0-1-1,.91.91,0,0,0-.46.13l-4-4A.91.91,0,0,1,11,9h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11a3,3,0,0,0-1.89.69l-2-2A7.92,7.92,0,0,1,12,4a8,8,0,0,1,8,8A7.92,7.92,0,0,1,18.31,16.9Z' + }) + ) +} + +export default UilCreativeCommonsPd \ No newline at end of file diff --git a/src/icons/uil-credit-card-search.ts b/src/icons/uil-credit-card-search.ts new file mode 100644 index 00000000..c8801c16 --- /dev/null +++ b/src/icons/uil-credit-card-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCreditCardSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20 17.57a4.3 4.3 0 1 0-3.67 2.06 4.37 4.37 0 0 0 2.24-.63l1.72 1.73a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42ZM18 17a2.37 2.37 0 0 1-3.27 0 2.32 2.32 0 0 1 0-3.27 2.31 2.31 0 0 1 3.27 0A2.32 2.32 0 0 1 18 17Zm1-14H5a3 3 0 0 0-3 3v9a3 3 0 0 0 3 3h4a1 1 0 0 0 0-2H5a1 1 0 0 1-1-1V9h16v1a1 1 0 0 0 2 0V6a3 3 0 0 0-3-3Zm1 4H4V6a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1Zm-10 4H7a1 1 0 0 0 0 2h3a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilCreditCardSearch \ No newline at end of file diff --git a/src/icons/uil-credit-card.ts b/src/icons/uil-credit-card.ts new file mode 100644 index 00000000..d06f30cf --- /dev/null +++ b/src/icons/uil-credit-card.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCreditCard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,15h3a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2ZM19,5H5A3,3,0,0,0,2,8v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8A3,3,0,0,0,19,5Zm1,12a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11H20Zm0-8H4V8A1,1,0,0,1,5,7H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilCreditCard \ No newline at end of file diff --git a/src/icons/uil-crockery.ts b/src/icons/uil-crockery.ts new file mode 100644 index 00000000..ffb2b6b5 --- /dev/null +++ b/src/icons/uil-crockery.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCrockery = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,12.15V3a1,1,0,0,0-2,0v9.15a4.16,4.16,0,0,0-3,4c0,2.05,1.52,5.8,4,5.8s4-3.75,4-5.8A4.16,4.16,0,0,0,18,12.15ZM17,20c-.8,0-2-2.27-2-3.8A2.11,2.11,0,0,1,17,14a2.11,2.11,0,0,1,2,2.2C19,17.73,17.8,20,17,20ZM10,2A1,1,0,0,0,9,3V8.46L8,9.13V3A1,1,0,0,0,6,3V9.13L5,8.46V3A1,1,0,0,0,3,3V9a1,1,0,0,0,.45.83L6,11.54V21a1,1,0,0,0,2,0V11.54l2.55-1.71A1,1,0,0,0,11,9V3A1,1,0,0,0,10,2Z' + }) + ) +} + +export default UilCrockery \ No newline at end of file diff --git a/src/icons/uil-crop-alt-rotate-left.ts b/src/icons/uil-crop-alt-rotate-left.ts new file mode 100644 index 00000000..20779967 --- /dev/null +++ b/src/icons/uil-crop-alt-rotate-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCropAltRotateLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.71,16.29a1,1,0,0,0-1.42,1.42l.3.29H8a3,3,0,0,1-3-3V13a1,1,0,0,0-2,0v2a5,5,0,0,0,5,5h.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.42ZM20,12H19V5a1,1,0,0,0-1-1H11V3A1,1,0,0,0,9,3V4H8A1,1,0,0,0,8,6H9v7a1,1,0,0,0,1,1h7v1a1,1,0,0,0,2,0V14h1a1,1,0,0,0,0-2Zm-3,0H11V6h6Z' + }) + ) +} + +export default UilCropAltRotateLeft \ No newline at end of file diff --git a/src/icons/uil-crop-alt-rotate-right.ts b/src/icons/uil-crop-alt-rotate-right.ts new file mode 100644 index 00000000..b31b9e7d --- /dev/null +++ b/src/icons/uil-crop-alt-rotate-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCropAltRotateRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,4h-.59l.3-.29a1,1,0,1,0-1.42-1.42l-2,2a1,1,0,0,0,0,1.42l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L15.41,6H16a3,3,0,0,1,3,3v2a1,1,0,0,0,2,0V9A5,5,0,0,0,16,4Zm0,14H15V11a1,1,0,0,0-1-1H7V9A1,1,0,0,0,5,9v1H4a1,1,0,0,0,0,2H5v7a1,1,0,0,0,1,1h7v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2Zm-3,0H7V12h6Z' + }) + ) +} + +export default UilCropAltRotateRight \ No newline at end of file diff --git a/src/icons/uil-crop-alt.ts b/src/icons/uil-crop-alt.ts new file mode 100644 index 00000000..b4d81012 --- /dev/null +++ b/src/icons/uil-crop-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCropAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,16H18V7a1,1,0,0,0-1-1H8V5A1,1,0,0,0,6,5V6H5A1,1,0,0,0,5,8H6v9a1,1,0,0,0,1,1h9v1a1,1,0,0,0,2,0V18h1a1,1,0,0,0,0-2Zm-3,0H8V8h8Z' + }) + ) +} + +export default UilCropAlt \ No newline at end of file diff --git a/src/icons/uil-crosshair-alt.ts b/src/icons/uil-crosshair-alt.ts new file mode 100644 index 00000000..641c957d --- /dev/null +++ b/src/icons/uil-crosshair-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCrosshairAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11Zm0-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm1,17.93V17a1,1,0,0,0-2,0v2.93A8,8,0,0,1,4.07,13H7a1,1,0,0,0,0-2H4.07A8,8,0,0,1,11,4.07V7a1,1,0,0,0,2,0V4.07A8,8,0,0,1,19.93,11H17a1,1,0,0,0,0,2h2.93A8,8,0,0,1,13,19.93Z' + }) + ) +} + +export default UilCrosshairAlt \ No newline at end of file diff --git a/src/icons/uil-crosshair.ts b/src/icons/uil-crosshair.ts new file mode 100644 index 00000000..321ae464 --- /dev/null +++ b/src/icons/uil-crosshair.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCrosshair = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-4,2h.91A6,6,0,0,1,13,17.91V17a1,1,0,0,0-2,0v.91A6,6,0,0,1,6.09,13H7a1,1,0,0,0,0-2H6.09A6,6,0,0,1,11,6.09V7a1,1,0,0,0,2,0V6.09A6,6,0,0,1,17.91,11H17a1,1,0,0,0,0,2Zm-5-2a1,1,0,1,0,1,1A1,1,0,0,0,12,11Z' + }) + ) +} + +export default UilCrosshair \ No newline at end of file diff --git a/src/icons/uil-crosshairs.ts b/src/icons/uil-crosshairs.ts new file mode 100644 index 00000000..9d00e196 --- /dev/null +++ b/src/icons/uil-crosshairs.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCrosshairs = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-9,7a6,6,0,1,1,6-6A6,6,0,0,1,12,18Zm0-9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' + }) + ) +} + +export default UilCrosshairs \ No newline at end of file diff --git a/src/icons/uil-css3-simple.ts b/src/icons/uil-css3-simple.ts new file mode 100644 index 00000000..f7ebc75b --- /dev/null +++ b/src/icons/uil-css3-simple.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCss3Simple = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.772,3.36426A1.00062,1.00062,0,0,0,20,3H6A1,1,0,0,0,6,5H18.78613l-.78094,4H5a1,1,0,0,0,0,2H17.61475l-1.1626,5.95508-6.32324,1.99658L4.71875,17.25244l.20361-1.06494a1.00015,1.00015,0,0,0-1.96484-.375L2.5874,17.75244A1.00059,1.00059,0,0,0,3.27,18.894L9.83008,20.9541a1.00175,1.00175,0,0,0,.60107-.00049l7.18994-2.27a1.00064,1.00064,0,0,0,.68018-.7622l2.68018-13.73A1.00008,1.00008,0,0,0,20.772,3.36426Z' + }) + ) +} + +export default UilCss3Simple \ No newline at end of file diff --git a/src/icons/uil-cube.ts b/src/icons/uil-cube.ts new file mode 100644 index 00000000..ba7ed1b3 --- /dev/null +++ b/src/icons/uil-cube.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilCube = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.47,7.37s0,0,0-.08l-.06-.15a.71.71,0,0,0-.07-.09.94.94,0,0,0-.09-.12l-.09-.07L20,6.78l-7.5-4.63a1,1,0,0,0-1.06,0L4,6.78l-.09.08-.09.07a.94.94,0,0,0-.09.12.71.71,0,0,0-.07.09l-.06.15s0,0,0,.08a1.15,1.15,0,0,0,0,.26v8.74a1,1,0,0,0,.47.85l7.5,4.63h0a.47.47,0,0,0,.15.06s.05,0,.08,0a.86.86,0,0,0,.52,0s.05,0,.08,0a.47.47,0,0,0,.15-.06h0L20,17.22a1,1,0,0,0,.47-.85V7.63A1.15,1.15,0,0,0,20.47,7.37ZM11,19.21l-5.5-3.4V9.43L11,12.82Zm1-8.12L6.4,7.63,12,4.18l5.6,3.45Zm6.5,4.72L13,19.21V12.82l5.5-3.39Z' + }) + ) +} + +export default UilCube \ No newline at end of file diff --git a/src/icons/uil-dashboard.ts b/src/icons/uil-dashboard.ts new file mode 100644 index 00000000..bffad92a --- /dev/null +++ b/src/icons/uil-dashboard.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDashboard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.088,4.95453c-.00732-.00781-.00952-.01819-.01715-.02582s-.01819-.00995-.02606-.01733a9.97886,9.97886,0,0,0-14.08948,0c-.00787.00738-.01837.00964-.02606.01733s-.00983.018-.01715.02582a10,10,0,1,0,14.1759,0ZM12,20a7.9847,7.9847,0,0,1-6.235-3H9.78027a2.9636,2.9636,0,0,0,4.43946,0h4.01532A7.9847,7.9847,0,0,1,12,20Zm-1-5a1,1,0,1,1,1,1A1.001,1.001,0,0,1,11,15Zm8.41022.00208L19.3999,15H15a2.99507,2.99507,0,0,0-2-2.81573V9a1,1,0,0,0-2,0v3.18427A2.99507,2.99507,0,0,0,9,15H4.6001l-.01032.00208A7.93083,7.93083,0,0,1,4.06946,13H5a1,1,0,0,0,0-2H4.06946A7.95128,7.95128,0,0,1,5.68854,7.10211l.65472.65473A.99989.99989,0,1,0,7.75732,6.34277l-.65466-.65466A7.95231,7.95231,0,0,1,11,4.06946V5a1,1,0,0,0,2,0V4.06946a7.95231,7.95231,0,0,1,3.89734,1.61865l-.65466.65466a.99989.99989,0,1,0,1.41406,1.41407l.65472-.65473A7.95128,7.95128,0,0,1,19.93054,11H19a1,1,0,0,0,0,2h.93054A7.93083,7.93083,0,0,1,19.41022,15.00208Z' + }) + ) +} + +export default UilDashboard \ No newline at end of file diff --git a/src/icons/uil-data-sharing.ts b/src/icons/uil-data-sharing.ts new file mode 100644 index 00000000..d751b68b --- /dev/null +++ b/src/icons/uil-data-sharing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDataSharing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.52,3.87A5,5,0,0,0,11.44,4H7A3,3,0,0,0,4,7v4a1,1,0,0,0,2,0V7A1,1,0,0,1,7,6H9.78A3,3,0,0,0,9,8a3,3,0,0,0,3,3h7.33a3.66,3.66,0,0,0,1.19-7.13ZM19.33,9H12a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.67A1.65,1.65,0,0,1,21,7.33,1.67,1.67,0,0,1,19.33,9ZM19,13a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H14.74a3.66,3.66,0,0,0-2.22-2.13,5,5,0,0,0-9.45,1.28A3,3,0,0,0,4,23h7.33a3.66,3.66,0,0,0,3.6-3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13Zm-7.67,8H4a1,1,0,0,1,0-2,1,1,0,0,0,1-1,3,3,0,0,1,5.84-1,1,1,0,0,0,.78.67A1.65,1.65,0,0,1,13,19.33,1.67,1.67,0,0,1,11.33,21Z' + }) + ) +} + +export default UilDataSharing \ No newline at end of file diff --git a/src/icons/uil-database-alt.ts b/src/icons/uil-database-alt.ts new file mode 100644 index 00000000..7c7f1167 --- /dev/null +++ b/src/icons/uil-database-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDatabaseAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,17a1,1,0,1,0,1,1A1,1,0,0,0,8,17Zm0-6a1,1,0,1,0,1,1A1,1,0,0,0,8,11Zm8-9H8A4,4,0,0,0,4,6V18a4,4,0,0,0,4,4h8a4,4,0,0,0,4-4V6A4,4,0,0,0,16,2Zm2,16a2,2,0,0,1-2,2H8a2,2,0,0,1-2-2V15.44A3.91,3.91,0,0,0,8,16h8a3.91,3.91,0,0,0,2-.56Zm0-6a2,2,0,0,1-2,2H8a2,2,0,0,1-2-2V9.44A3.91,3.91,0,0,0,8,10h8a3.91,3.91,0,0,0,2-.56ZM16,8H8A2,2,0,0,1,8,4h8a2,2,0,0,1,0,4Z' + }) + ) +} + +export default UilDatabaseAlt \ No newline at end of file diff --git a/src/icons/uil-database.ts b/src/icons/uil-database.ts new file mode 100644 index 00000000..3eec201d --- /dev/null +++ b/src/icons/uil-database.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDatabase = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,16.5a1,1,0,1,0,1,1A1,1,0,0,0,8,16.5ZM12,2C8,2,4,3.37,4,6V18c0,2.63,4,4,8,4s8-1.37,8-4V6C20,3.37,16,2,12,2Zm6,16c0,.71-2.28,2-6,2s-6-1.29-6-2V14.73A13.16,13.16,0,0,0,12,16a13.16,13.16,0,0,0,6-1.27Zm0-6c0,.71-2.28,2-6,2s-6-1.29-6-2V8.73A13.16,13.16,0,0,0,12,10a13.16,13.16,0,0,0,6-1.27ZM12,8C8.28,8,6,6.71,6,6s2.28-2,6-2,6,1.29,6,2S15.72,8,12,8ZM8,10.5a1,1,0,1,0,1,1A1,1,0,0,0,8,10.5Z' + }) + ) +} + +export default UilDatabase \ No newline at end of file diff --git a/src/icons/uil-desert.ts b/src/icons/uil-desert.ts new file mode 100644 index 00000000..b7e91b55 --- /dev/null +++ b/src/icons/uil-desert.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesert = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,2a4,4,0,1,0,4,4A4,4,0,0,0,18,2Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,18,8ZM15,20H13V18a1,1,0,0,0-2,0v2H9V16.62l3.45-1.73A1,1,0,0,0,13,14V10a1,1,0,0,0-2,0v3.38l-2,1V8A1,1,0,0,0,7,8v8.38l-2-1V13a1,1,0,0,0-2,0v3a1,1,0,0,0,.55.89L7,18.62V20H3a1,1,0,0,0,0,2H15a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilDesert \ No newline at end of file diff --git a/src/icons/uil-desktop-alt-slash.ts b/src/icons/uil-desktop-alt-slash.ts new file mode 100644 index 00000000..72993c64 --- /dev/null +++ b/src/icons/uil-desktop-alt-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesktopAltSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l1,1A3,3,0,0,0,3,6v8a3,3,0,0,0,3,3H9v2H6a1,1,0,0,0,0,2H18a1,1,0,0,0,.93-.66l1.36,1.37a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,6.41,9.59,11H5ZM13,19H11V17h2ZM6,15a1,1,0,0,1-1-1V13h6.59l2,2Zm9,4V17h.59l2,2ZM9.66,5H18a1,1,0,0,1,1,1v5H17.66a1,1,0,0,0,0,2H19v1a.37.37,0,0,1,0,.11,1,1,0,0,0,.78,1.18l.2,0a1,1,0,0,0,1-.8A2.84,2.84,0,0,0,21,14V6a3,3,0,0,0-3-3H9.66a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilDesktopAltSlash \ No newline at end of file diff --git a/src/icons/uil-desktop-alt.ts b/src/icons/uil-desktop-alt.ts new file mode 100644 index 00000000..12160fc4 --- /dev/null +++ b/src/icons/uil-desktop-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesktopAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H8v2H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2H16V18h3a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,20H10V18h4Zm6-5a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Zm0-3H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilDesktopAlt \ No newline at end of file diff --git a/src/icons/uil-desktop-cloud-alt.ts b/src/icons/uil-desktop-cloud-alt.ts new file mode 100644 index 00000000..2c3e150c --- /dev/null +++ b/src/icons/uil-desktop-cloud-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesktopCloudAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.5,10H10a3,3,0,0,0,1.07-5.8,4,4,0,0,0-7.48,1A2.5,2.5,0,0,0,4.5,10Zm0-3a1,1,0,0,0,1-1,2,2,0,0,1,3.89-.64,1,1,0,0,0,.78.66A1,1,0,0,1,11,7a1,1,0,0,1-1,1H4.5a.5.5,0,0,1,0-1ZM19,2H14a1,1,0,0,0,0,2h5a1,1,0,0,1,1,1v7H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H8v2H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2H16V18h3a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,20H10V18h4Zm6-5a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Z' + }) + ) +} + +export default UilDesktopCloudAlt \ No newline at end of file diff --git a/src/icons/uil-desktop-slash.ts b/src/icons/uil-desktop-slash.ts new file mode 100644 index 00000000..39958a74 --- /dev/null +++ b/src/icons/uil-desktop-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesktopSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.66,6H18a1,1,0,0,1,1,1v6a.94.94,0,0,1-.14.5,1,1,0,0,0,.31,1.38.94.94,0,0,0,.53.16,1,1,0,0,0,.84-.46A2.94,2.94,0,0,0,21,13V7a3,3,0,0,0-3-3H10.66a1,1,0,0,0,0,2ZM21.71,20.29,5.86,4.45h0L3.71,2.29A1,1,0,0,0,2.29,3.71L3.69,5.1A3,3,0,0,0,3,7v6a3,3,0,0,0,3,3h5v2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,.93-.66l2.36,2.37a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,14a1,1,0,0,1-1-1V7a1,1,0,0,1,.12-.46L12.59,14Zm7,4V16h1.59l2,2Z' + }) + ) +} + +export default UilDesktopSlash \ No newline at end of file diff --git a/src/icons/uil-desktop.ts b/src/icons/uil-desktop.ts new file mode 100644 index 00000000..47f1ee9c --- /dev/null +++ b/src/icons/uil-desktop.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDesktop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,3H5A3,3,0,0,0,2,6v8a3,3,0,0,0,3,3h6v2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2H13V17h6a3,3,0,0,0,3-3V6A3,3,0,0,0,19,3Zm1,11a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V6A1,1,0,0,1,5,5H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilDesktop \ No newline at end of file diff --git a/src/icons/uil-dialpad-alt.ts b/src/icons/uil-dialpad-alt.ts new file mode 100644 index 00000000..cba17e2a --- /dev/null +++ b/src/icons/uil-dialpad-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDialpadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,9.25A2.75,2.75,0,1,0,7.75,12,2.75,2.75,0,0,0,5,9.25Zm0,4A1.25,1.25,0,1,1,6.25,12,1.25,1.25,0,0,1,5,13.25Zm7-4A2.75,2.75,0,1,0,14.75,12,2.75,2.75,0,0,0,12,9.25Zm0,4A1.25,1.25,0,1,1,13.25,12,1.25,1.25,0,0,1,12,13.25Zm7-5.5A2.75,2.75,0,1,0,16.25,5,2.75,2.75,0,0,0,19,7.75Zm0-4A1.25,1.25,0,1,1,17.75,5,1.25,1.25,0,0,1,19,3.75Zm0,5.5A2.75,2.75,0,1,0,21.75,12,2.75,2.75,0,0,0,19,9.25Zm0,4A1.25,1.25,0,1,1,20.25,12,1.25,1.25,0,0,1,19,13.25ZM5,2.25A2.75,2.75,0,1,0,7.75,5,2.75,2.75,0,0,0,5,2.25Zm0,4A1.25,1.25,0,1,1,6.25,5,1.25,1.25,0,0,1,5,6.25Zm7,10A2.75,2.75,0,1,0,14.75,19,2.75,2.75,0,0,0,12,16.25Zm0,4A1.25,1.25,0,1,1,13.25,19,1.25,1.25,0,0,1,12,20.25Zm0-18A2.75,2.75,0,1,0,14.75,5,2.75,2.75,0,0,0,12,2.25Zm0,4A1.25,1.25,0,1,1,13.25,5,1.25,1.25,0,0,1,12,6.25Z' + }) + ) +} + +export default UilDialpadAlt \ No newline at end of file diff --git a/src/icons/uil-dialpad.ts b/src/icons/uil-dialpad.ts new file mode 100644 index 00000000..cb575c61 --- /dev/null +++ b/src/icons/uil-dialpad.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDialpad = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,2.25H3A.76.76,0,0,0,2.25,3V7A.76.76,0,0,0,3,7.75H7A.76.76,0,0,0,7.75,7V3A.76.76,0,0,0,7,2.25Zm-.75,4H3.75V3.75h2.5ZM21,2.25H17a.76.76,0,0,0-.75.75V7a.76.76,0,0,0,.75.75h4A.76.76,0,0,0,21.75,7V3A.76.76,0,0,0,21,2.25Zm-.75,4h-2.5V3.75h2.5ZM14,2.25H10A.76.76,0,0,0,9.25,3V7a.76.76,0,0,0,.75.75h4A.76.76,0,0,0,14.75,7V3A.76.76,0,0,0,14,2.25Zm-.75,4h-2.5V3.75h2.5ZM7,9.25H3a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75H7A.76.76,0,0,0,7.75,14V10A.76.76,0,0,0,7,9.25Zm-.75,4H3.75v-2.5h2.5Zm7.75-4H10a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V10A.76.76,0,0,0,14,9.25Zm-.75,4h-2.5v-2.5h2.5Zm7.75-4H17a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V10A.76.76,0,0,0,21,9.25Zm-.75,4h-2.5v-2.5h2.5Zm-6.25,3H10a.76.76,0,0,0-.75.75v4a.76.76,0,0,0,.75.75h4a.76.76,0,0,0,.75-.75V17A.76.76,0,0,0,14,16.25Zm-.75,4h-2.5v-2.5h2.5Z' + }) + ) +} + +export default UilDialpad \ No newline at end of file diff --git a/src/icons/uil-diamond.ts b/src/icons/uil-diamond.ts new file mode 100644 index 00000000..5475604d --- /dev/null +++ b/src/icons/uil-diamond.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiamond = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,10.35,14.22,2.94A3.06,3.06,0,0,0,9.75,3L4,10.35A3.05,3.05,0,0,0,3.51,12,3.09,3.09,0,0,0,4,13.58l.06.07,5.74,7.41A3,3,0,0,0,12,22a3.06,3.06,0,0,0,2.26-1L20,13.65a3,3,0,0,0-.06-3.3Zm-1.57,2.14-5.67,7.22a1.11,1.11,0,0,1-1.42.07L5.65,12.47A1,1,0,0,1,5.51,12a1.11,1.11,0,0,1,.1-.45l5.67-7.22a1.11,1.11,0,0,1,1.42-.07l5.63,7.28a1,1,0,0,1,.16.54A1.11,1.11,0,0,1,18.39,12.49Z' + }) + ) +} + +export default UilDiamond \ No newline at end of file diff --git a/src/icons/uil-diary-alt.ts b/src/icons/uil-diary-alt.ts new file mode 100644 index 00000000..0af4b6f2 --- /dev/null +++ b/src/icons/uil-diary-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiaryAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H5A1,1,0,0,0,4,3V21a1,1,0,0,0,1,1H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2ZM8,20H6V4H8Zm10-1a1,1,0,0,1-1,1H10V4h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilDiaryAlt \ No newline at end of file diff --git a/src/icons/uil-diary.ts b/src/icons/uil-diary.ts new file mode 100644 index 00000000..302ec5c0 --- /dev/null +++ b/src/icons/uil-diary.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiary = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H5A1,1,0,0,0,4,3V19a1,1,0,0,0,1,1H6v1a1,1,0,0,0,1,1H7a1,1,0,0,0,1-1V20h9a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2ZM14,18H6V4h8Zm4-1a1,1,0,0,1-1,1H16V4h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilDiary \ No newline at end of file diff --git a/src/icons/uil-dice-five.ts b/src/icons/uil-dice-five.ts new file mode 100644 index 00000000..e66aea50 --- /dev/null +++ b/src/icons/uil-dice-five.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceFive = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3ZM8,15a1,1,0,1,0,1,1A1,1,0,0,0,8,15Zm4-4a1,1,0,1,0,1,1A1,1,0,0,0,12,11ZM8,7A1,1,0,1,0,9,8,1,1,0,0,0,8,7Zm8,8a1,1,0,1,0,1,1A1,1,0,0,0,16,15Zm0-8a1,1,0,1,0,1,1A1,1,0,0,0,16,7Z' + }) + ) +} + +export default UilDiceFive \ No newline at end of file diff --git a/src/icons/uil-dice-four.ts b/src/icons/uil-dice-four.ts new file mode 100644 index 00000000..1b7a6035 --- /dev/null +++ b/src/icons/uil-dice-four.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceFour = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,14a1,1,0,1,0,1,1A1,1,0,0,0,15,14ZM9,8a1,1,0,1,0,1,1A1,1,0,0,0,9,8Zm0,6a1,1,0,1,0,1,1A1,1,0,0,0,9,14Zm6-6a1,1,0,1,0,1,1A1,1,0,0,0,15,8Zm2-6H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Z' + }) + ) +} + +export default UilDiceFour \ No newline at end of file diff --git a/src/icons/uil-dice-one.ts b/src/icons/uil-dice-one.ts new file mode 100644 index 00000000..71a05478 --- /dev/null +++ b/src/icons/uil-dice-one.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceOne = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-8-6a1,1,0,1,0,1,1A1,1,0,0,0,12,11Z' + }) + ) +} + +export default UilDiceOne \ No newline at end of file diff --git a/src/icons/uil-dice-six.ts b/src/icons/uil-dice-six.ts new file mode 100644 index 00000000..0e24fa8e --- /dev/null +++ b/src/icons/uil-dice-six.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceSix = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0,1,1A1,1,0,0,0,9,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,9,15ZM9,7a1,1,0,1,0,1,1A1,1,0,0,0,9,7Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,15,7Zm2-5H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-5-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,15,15Z' + }) + ) +} + +export default UilDiceSix \ No newline at end of file diff --git a/src/icons/uil-dice-three.ts b/src/icons/uil-dice-three.ts new file mode 100644 index 00000000..4e567581 --- /dev/null +++ b/src/icons/uil-dice-three.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceThree = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,11a1,1,0,1,0,1,1A1,1,0,0,0,12,11ZM8,7A1,1,0,1,0,9,8,1,1,0,0,0,8,7Zm9-5H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-4-2a1,1,0,1,0,1,1A1,1,0,0,0,16,15Z' + }) + ) +} + +export default UilDiceThree \ No newline at end of file diff --git a/src/icons/uil-dice-two.ts b/src/icons/uil-dice-two.ts new file mode 100644 index 00000000..eab12d9b --- /dev/null +++ b/src/icons/uil-dice-two.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiceTwo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0,1,1A1,1,0,0,0,9,11Zm8-9H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Zm-5-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11Z' + }) + ) +} + +export default UilDiceTwo \ No newline at end of file diff --git a/src/icons/uil-direction.ts b/src/icons/uil-direction.ts new file mode 100644 index 00000000..c18ce9a3 --- /dev/null +++ b/src/icons/uil-direction.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDirection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.71,10.21,12,7.91l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42Zm4.58,4.58L12,17.09l-2.29-2.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilDirection \ No newline at end of file diff --git a/src/icons/uil-directions.ts b/src/icons/uil-directions.ts new file mode 100644 index 00000000..07f786da --- /dev/null +++ b/src/icons/uil-directions.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDirections = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.12,9.88l-7-7a3.08,3.08,0,0,0-4.24,0l-7,7a3,3,0,0,0,0,4.24l7,7a3,3,0,0,0,4.24,0l7-7A3,3,0,0,0,21.12,9.88Zm-1.41,2.83-7,7a1,1,0,0,1-1.42,0h0l-7-7a1,1,0,0,1,0-1.42l7-7a1,1,0,0,1,1.42,0l7,7A1,1,0,0,1,19.71,12.71Zm-5.5-3.42a1,1,0,0,0-1.42,1.42l.3.29H9.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V13h2.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilDirections \ No newline at end of file diff --git a/src/icons/uil-discord.ts b/src/icons/uil-discord.ts new file mode 100644 index 00000000..bc350c69 --- /dev/null +++ b/src/icons/uil-discord.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDiscord = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.13831,10.62982h-.00013a1.05288,1.05288,0,1,0,.00013,0Zm3.75427,0a1.14582,1.14582,0,1,0,1.04907,1.14166A1.09586,1.09586,0,0,0,13.89258,10.62982Zm4.99878-8.6297H5.10864A2.11364,2.11364,0,0,0,3,4.119V18.02527A2.11368,2.11368,0,0,0,5.10864,20.1441H16.77258l-.54516-1.90289,1.31653,1.224,1.24462,1.152L21,22.57153V4.119A2.11364,2.11364,0,0,0,18.89136,2.00012ZM14.92114,15.43323v.00006s-.37036-.44232-.67895-.83319a3.2459,3.2459,0,0,0,1.86181-1.224,5.87837,5.87837,0,0,1-1.18286.60681,6.76974,6.76974,0,0,1-1.49145.44232,7.206,7.206,0,0,1-2.66394-.01025,8.64456,8.64456,0,0,1-1.51209-.44226,6.03735,6.03735,0,0,1-.75085-.34973c-.03089-.02063-.06165-.03089-.09253-.05146a.14171.14171,0,0,1-.04114-.03082c-.18506-.10284-.28809-.17487-.28809-.17487A3.19975,3.19975,0,0,0,9.8811,14.57953c-.30847.39093-.68908.8537-.68908.8537a3.72892,3.72892,0,0,1-3.13709-1.56342A13.775,13.775,0,0,1,7.536,7.87323a5.08641,5.08641,0,0,1,2.89026-1.08l.10278.12348A6.93762,6.93762,0,0,0,7.824,8.2641s.22632-.12341.60682-.29828a7.722,7.722,0,0,1,2.335-.64795,1.00465,1.00465,0,0,1,.17492-.02063,8.702,8.702,0,0,1,2.07764-.02051,8.384,8.384,0,0,1,3.096.98737,6.84576,6.84576,0,0,0-2.561-1.30628l.14392-.16449a5.08575,5.08575,0,0,1,2.89026,1.08,13.77368,13.77368,0,0,1,1.4812,5.99652A3.75972,3.75972,0,0,1,14.92114,15.43323Z' + }) + ) +} + +export default UilDiscord \ No newline at end of file diff --git a/src/icons/uil-dizzy-meh.ts b/src/icons/uil-dizzy-meh.ts new file mode 100644 index 00000000..3eded787 --- /dev/null +++ b/src/icons/uil-dizzy-meh.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDizzyMeh = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' + }) + ) +} + +export default UilDizzyMeh \ No newline at end of file diff --git a/src/icons/uil-dna.ts b/src/icons/uil-dna.ts new file mode 100644 index 00000000..7c2c1419 --- /dev/null +++ b/src/icons/uil-dna.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDna = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.2,13.73a1,1,0,0,0-1.41-.05A11.18,11.18,0,0,0,4,22a1,1,0,0,0,2,0,9.15,9.15,0,0,1,3.15-6.86A1,1,0,0,0,9.2,13.73Zm10.17,4.64a10.86,10.86,0,0,0-1.6-3A14.31,14.31,0,0,0,14.06,12C16.3,10.57,20,7.4,20,2a1,1,0,0,0-2,0c0,5.4-4.59,8.17-6,8.89A13.42,13.42,0,0,1,9.31,9H12a1,1,0,0,0,0-2H7.55a9.39,9.39,0,0,1-1-2H15a1,1,0,0,0,0-2H6.06A8.14,8.14,0,0,1,6,2,1,1,0,0,0,4,2c0,7.57,7.3,10.79,7.61,10.92h0A12.93,12.93,0,0,1,14.7,15H12a1,1,0,0,0,0,2h4.43a9.07,9.07,0,0,1,1,2H9a1,1,0,0,0,0,2h8.94A8.26,8.26,0,0,1,18,22a1,1,0,0,0,2,0,10.5,10.5,0,0,0-.22-2.19A9.23,9.23,0,0,0,19.37,18.37Z' + }) + ) +} + +export default UilDna \ No newline at end of file diff --git a/src/icons/uil-docker.ts b/src/icons/uil-docker.ts new file mode 100644 index 00000000..a3d85ae4 --- /dev/null +++ b/src/icons/uil-docker.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDocker = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.8 8.8h1.8c.1 0 .2-.1.2-.2V7.1c0-.1-.1-.2-.2-.2H8.8c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.4 2.3H13c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm0-2.3H13c.1 0 .2-.1.2-.2V7.1l-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.5 2.3h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm-2.5-4.6H13c.1 0 .2-.1.2-.2V4.8c0-.1-.1-.2-.2-.2h-1.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.1.2.1zm-7.4 4.6h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H3.8c-.1 0-.2.1-.2.2v1.6l.2.2zm18-1c-.5-.3-1.1-.5-1.6-.4-.3 0-.6 0-.8.1-.2-.9-.7-1.7-1.4-2.1l-.3-.2-.2.3c-.3.2-.5.6-.6 1.1-.2.8-.1 1.6.3 2.2-.5.2-1 .3-1.5.4H2.6c-.3 0-.6.3-.6.6 0 1.2.2 2.3.6 3.4.4 1.1 1.1 2 2 2.6 1.4.7 2.9 1 4.4.9.8 0 1.6-.1 2.4-.2 1.1-.2 2.2-.6 3.2-1.2.8-.5 1.5-1.1 2.2-1.8.9-1.1 1.6-2.3 2.1-3.7h.2c.8 0 1.6-.3 2.2-.8.3-.2.5-.5.6-.9l.1-.2-.2-.1zm-15.5 1H8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H6.3c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2zm0-2.3H8c.1 0 .2-.1.2-.2V7.1c0-.1-.1-.2-.2-.2H6.3c-.1 0-.2.1-.2.2v1.6s.1.1.2.1zm2.5 2.3h1.8c.1 0 .2-.1.2-.2V9.3c0-.1-.1-.2-.2-.2H8.8c-.1 0-.2.1-.2.2v1.6c0 .1.1.2.2.2z' + }) + ) +} + +export default UilDocker \ No newline at end of file diff --git a/src/icons/uil-document-info.ts b/src/icons/uil-document-info.ts new file mode 100644 index 00000000..dcd18b67 --- /dev/null +++ b/src/icons/uil-document-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDocumentInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,14a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,12,14Zm.38-2.92A1,1,0,0,0,11.8,11l-.18.06-.18.09-.15.12A1,1,0,0,0,11,12a1,1,0,0,0,.29.71,1,1,0,0,0,.33.21A.84.84,0,0,0,12,13a1,1,0,0,0,.71-.29A1,1,0,0,0,13,12a1,1,0,0,0-.29-.71A1.15,1.15,0,0,0,12.38,11.08ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilDocumentInfo \ No newline at end of file diff --git a/src/icons/uil-document-layout-center.ts b/src/icons/uil-document-layout-center.ts new file mode 100644 index 00000000..41e74d7f --- /dev/null +++ b/src/icons/uil-document-layout-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDocumentLayoutCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,12h6a1,1,0,0,0,1-1V5a1,1,0,0,0-1-1H9A1,1,0,0,0,8,5v6A1,1,0,0,0,9,12Zm1-6h4v4H10Zm11,4H19a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2ZM19,8h2a1,1,0,0,0,0-2H19a1,1,0,0,0,0,2ZM3,8H5A1,1,0,0,0,5,6H3A1,1,0,0,0,3,8Zm0,4H5a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-8,4H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilDocumentLayoutCenter \ No newline at end of file diff --git a/src/icons/uil-document-layout-left.ts b/src/icons/uil-document-layout-left.ts new file mode 100644 index 00000000..f0bfa0d4 --- /dev/null +++ b/src/icons/uil-document-layout-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDocumentLayoutLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,12H9a1,1,0,0,0,1-1V5A1,1,0,0,0,9,4H3A1,1,0,0,0,2,5v6A1,1,0,0,0,3,12ZM4,6H8v4H4Zm9,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2Zm0,10H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Zm8-4H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilDocumentLayoutLeft \ No newline at end of file diff --git a/src/icons/uil-document-layout-right.ts b/src/icons/uil-document-layout-right.ts new file mode 100644 index 00000000..334ea89d --- /dev/null +++ b/src/icons/uil-document-layout-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDocumentLayoutRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,18H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2ZM3,8h8a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm0,4h8a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM21,4H15a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V5A1,1,0,0,0,21,4Zm-1,6H16V6h4Z' + }) + ) +} + +export default UilDocumentLayoutRight \ No newline at end of file diff --git a/src/icons/uil-dollar-alt.ts b/src/icons/uil-dollar-alt.ts new file mode 100644 index 00000000..1f1e0f32 --- /dev/null +++ b/src/icons/uil-dollar-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDollarAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H13V7h2a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h1v4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Zm-3,0H10a2,2,0,0,1,0-4h1Zm3,6H13V13h1a2,2,0,0,1,0,4Z' + }) + ) +} + +export default UilDollarAlt \ No newline at end of file diff --git a/src/icons/uil-dollar-sign-alt.ts b/src/icons/uil-dollar-sign-alt.ts new file mode 100644 index 00000000..3fd40158 --- /dev/null +++ b/src/icons/uil-dollar-sign-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDollarSignAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H10a2,2,0,0,1,0-4h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h4a2,2,0,0,1,0,4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Z' + }) + ) +} + +export default UilDollarSignAlt \ No newline at end of file diff --git a/src/icons/uil-dollar-sign.ts b/src/icons/uil-dollar-sign.ts new file mode 100644 index 00000000..9ca82ca7 --- /dev/null +++ b/src/icons/uil-dollar-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDollarSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H10a2,2,0,0,1,0-4h5a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H13V3a1,1,0,0,0-2,0V5H10a4,4,0,0,0,0,8h4a2,2,0,0,1,0,4H9a1,1,0,0,1-1-1,1,1,0,0,0-2,0,3,3,0,0,0,3,3h2v2a1,1,0,0,0,2,0V19h1a4,4,0,0,0,0-8Z' + }) + ) +} + +export default UilDollarSign \ No newline at end of file diff --git a/src/icons/uil-download-alt.ts b/src/icons/uil-download-alt.ts new file mode 100644 index 00000000..e71f2d5a --- /dev/null +++ b/src/icons/uil-download-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDownloadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.29,13.29a1,1,0,0,0,0,1.42l3,3a1,1,0,0,0,1.42,0l3-3a1,1,0,0,0-1.42-1.42L13,14.59V3a1,1,0,0,0-2,0V14.59l-1.29-1.3A1,1,0,0,0,8.29,13.29ZM18,9H16a1,1,0,0,0,0,2h2a1,1,0,0,1,1,1v7a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H8A1,1,0,0,0,8,9H6a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A3,3,0,0,0,18,9Z' + }) + ) +} + +export default UilDownloadAlt \ No newline at end of file diff --git a/src/icons/uil-draggabledots.ts b/src/icons/uil-draggabledots.ts new file mode 100644 index 00000000..8b284e7d --- /dev/null +++ b/src/icons/uil-draggabledots.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDraggabledots = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,10a2,2,0,1,0,2,2A2,2,0,0,0,8.5,10Zm0,7a2,2,0,1,0,2,2A2,2,0,0,0,8.5,17Zm7-10a2,2,0,1,0-2-2A2,2,0,0,0,15.5,7Zm-7-4a2,2,0,1,0,2,2A2,2,0,0,0,8.5,3Zm7,14a2,2,0,1,0,2,2A2,2,0,0,0,15.5,17Zm0-7a2,2,0,1,0,2,2A2,2,0,0,0,15.5,10Z' + }) + ) +} + +export default UilDraggabledots \ No newline at end of file diff --git a/src/icons/uil-dribbble.ts b/src/icons/uil-dribbble.ts new file mode 100644 index 00000000..f619b3e3 --- /dev/null +++ b/src/icons/uil-dribbble.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDribbble = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,2a7.94,7.94,0,0,1,5.51,2.22A24.93,24.93,0,0,1,12.68,8.4,29.07,29.07,0,0,0,9.81,4.31,7.94,7.94,0,0,1,12,4ZM7.89,5.15A27.16,27.16,0,0,1,10.7,9a25.11,25.11,0,0,1-6,.74H4.34A8,8,0,0,1,7.89,5.15ZM6,17.31A7.9,7.9,0,0,1,4,12c0-.1,0-.2,0-.29h.68a26.67,26.67,0,0,0,7-1c.32.61.62,1.24.91,1.89a14.3,14.3,0,0,0-4.29,2.41l-.3.24A21,21,0,0,0,6,17.31ZM12,20a7.92,7.92,0,0,1-4.47-1.37,17.92,17.92,0,0,1,1.56-1.58l.32-.27a12.63,12.63,0,0,1,4-2.27,32,32,0,0,1,1.4,5A8.08,8.08,0,0,1,12,20Zm4.63-1.49a34.87,34.87,0,0,0-1.28-4.46l.34,0a.25.25,0,0,1,.12,0h.11l.1,0,.48,0a9.43,9.43,0,0,1,3.09.53A7.94,7.94,0,0,1,16.63,18.51ZM16.5,12c-.21,0-.42,0-.62,0a1.56,1.56,0,0,0-.39,0,6.64,6.64,0,0,0-.81.1h-.1c-.29-.67-.59-1.32-.92-2a26.57,26.57,0,0,0,5.13-2.4A8,8,0,0,1,20,12c0,.17,0,.34,0,.51A11.48,11.48,0,0,0,16.5,12Z' + }) + ) +} + +export default UilDribbble \ No newline at end of file diff --git a/src/icons/uil-drill.ts b/src/icons/uil-drill.ts new file mode 100644 index 00000000..167e8eb5 --- /dev/null +++ b/src/icons/uil-drill.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDrill = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H9A1,1,0,0,0,8,5V7H3A1,1,0,0,0,3,9H8v4a1,1,0,0,0,2,0V12h4v7a1,1,0,0,0,1,1h2a3,3,0,0,0,3-3V11.82A3,3,0,0,0,22,9V7A3,3,0,0,0,19,4ZM18,17a1,1,0,0,1-1,1H16V12h2Zm2-8a1,1,0,0,1-1,1H10V6h6V7a1,1,0,0,0,2,0V6h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilDrill \ No newline at end of file diff --git a/src/icons/uil-dropbox.ts b/src/icons/uil-dropbox.ts new file mode 100644 index 00000000..a6cf7a9a --- /dev/null +++ b/src/icons/uil-dropbox.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDropbox = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.61,11.81,18.36,9.28l3.26-2.56A1,1,0,0,0,22,5.86a1.06,1.06,0,0,0-.5-.8L16.36,2.13a1,1,0,0,0-1.15.12L12,5.05,8.79,2.25a1,1,0,0,0-1.15-.12L2.5,5.06a1.06,1.06,0,0,0-.5.8,1,1,0,0,0,.38.86L5.64,9.28,2.39,11.77a1,1,0,0,0-.39.86,1,1,0,0,0,.5.8l3.41,2v2.47a1,1,0,0,0,.48.85l5.09,3.13a1,1,0,0,0,1,0l5.09-3.13a1,1,0,0,0,.48-.85V15.42l3.41-1.95a1,1,0,0,0,.5-.8A1,1,0,0,0,21.61,11.81ZM16,4.22l3.23,1.84-2.55,2-3-1.84ZM14.91,9.34l-2.91,2-2.91-2L12,7.55ZM4.79,6.06,8,4.22l2.31,2-3,1.84Zm0,6.39,2.5-1.92,3,2.08L8.07,14.34Zm11.29,4.86L12,19.83,7.91,17.31v-.8a1,1,0,0,0,.85-.18L12,13.83l3.24,2.5a1,1,0,0,0,.61.21,1,1,0,0,0,.24,0Zm-.15-3L13.7,12.61l3-2.08,2.51,1.94Z' + }) + ) +} + +export default UilDropbox \ No newline at end of file diff --git a/src/icons/uil-dumbbell.ts b/src/icons/uil-dumbbell.ts new file mode 100644 index 00000000..a4c582c2 --- /dev/null +++ b/src/icons/uil-dumbbell.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilDumbbell = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.48,6.55v0h0L14.64,3.71a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l2.12,2.12-8.1,8.1L5.12,13.22a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l2.81,2.81v0h0l2.81,2.81a1,1,0,0,0,.71.3,1,1,0,0,0,.71-1.71L8.66,16.76l8.1-8.1,2.12,2.12a1,1,0,1,0,1.41-1.42ZM3.71,17.46a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42Zm18-12.34L18.88,2.29a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,5.12Z' + }) + ) +} + +export default UilDumbbell \ No newline at end of file diff --git a/src/icons/uil-ear.ts b/src/icons/uil-ear.ts new file mode 100644 index 00000000..3cba4507 --- /dev/null +++ b/src/icons/uil-ear.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8a1.00067,1.00067,0,0,1,1,1,1,1,0,0,0,2,0,2.9995,2.9995,0,1,0-5.01758,2.2207c.01.0091.16113.16992.19336.21485a.9875.9875,0,0,1,0,1.11914.99952.99952,0,1,0,1.64844,1.13086,2.98332,2.98332,0,0,0-.00488-3.38867,7.12392,7.12392,0,0,0-.49122-.55665,1.05523,1.05523,0,0,1-.1582-.18164A1.00072,1.00072,0,0,1,12,8Zm0-6a7.0006,7.0006,0,0,0-6.76172,8.81152A.99989.99989,0,0,0,7.16992,10.294,5.00018,5.00018,0,1,1,17,9a5.11412,5.11412,0,0,1-.70508,2.56738L12.73145,19A2.00462,2.00462,0,0,1,11,20a2.027,2.027,0,0,1-2-2,1.99224,1.99224,0,0,1,.26855-.999,1.00065,1.00065,0,0,0-1.73242-1.002,3.9988,3.9988,0,1,0,6.96289,3.9336L18.0625,12.5A7.00044,7.00044,0,0,0,12,2Z' + }) + ) +} + +export default UilEar \ No newline at end of file diff --git a/src/icons/uil-edit-alt.ts b/src/icons/uil-edit-alt.ts new file mode 100644 index 00000000..bf5f8029 --- /dev/null +++ b/src/icons/uil-edit-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEditAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,18H9.24a1,1,0,0,0,.71-.29l6.92-6.93h0L19.71,8a1,1,0,0,0,0-1.42L15.47,2.29a1,1,0,0,0-1.42,0L11.23,5.12h0L4.29,12.05a1,1,0,0,0-.29.71V17A1,1,0,0,0,5,18ZM14.76,4.41l2.83,2.83L16.17,8.66,13.34,5.83ZM6,13.17l5.93-5.93,2.83,2.83L8.83,16H6ZM21,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilEditAlt \ No newline at end of file diff --git a/src/icons/uil-edit.ts b/src/icons/uil-edit.ts new file mode 100644 index 00000000..51ca3106 --- /dev/null +++ b/src/icons/uil-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,12a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h6a1,1,0,0,0,0-2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM6,12.76V17a1,1,0,0,0,1,1h4.24a1,1,0,0,0,.71-.29l6.92-6.93h0L21.71,8a1,1,0,0,0,0-1.42L17.47,2.29a1,1,0,0,0-1.42,0L13.23,5.12h0L6.29,12.05A1,1,0,0,0,6,12.76ZM16.76,4.41l2.83,2.83L18.17,8.66,15.34,5.83ZM8,13.17l5.93-5.93,2.83,2.83L10.83,16H8Z' + }) + ) +} + +export default UilEdit \ No newline at end of file diff --git a/src/icons/uil-elipsis-double-v-alt.ts b/src/icons/uil-elipsis-double-v-alt.ts new file mode 100644 index 00000000..9cb17803 --- /dev/null +++ b/src/icons/uil-elipsis-double-v-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilElipsisDoubleVAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5 17c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-10c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-7 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-7-14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z' + }) + ) +} + +export default UilElipsisDoubleVAlt \ No newline at end of file diff --git a/src/icons/uil-ellipsis-h.ts b/src/icons/uil-ellipsis-h.ts new file mode 100644 index 00000000..d9e646a6 --- /dev/null +++ b/src/icons/uil-ellipsis-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEllipsisH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10a2,2,0,1,0,2,2A2,2,0,0,0,12,10ZM5,10a2,2,0,1,0,2,2A2,2,0,0,0,5,10Zm14,0a2,2,0,1,0,2,2A2,2,0,0,0,19,10Z' + }) + ) +} + +export default UilEllipsisH \ No newline at end of file diff --git a/src/icons/uil-ellipsis-v.ts b/src/icons/uil-ellipsis-v.ts new file mode 100644 index 00000000..349b6372 --- /dev/null +++ b/src/icons/uil-ellipsis-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEllipsisV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,7a2,2,0,1,0-2-2A2,2,0,0,0,12,7Zm0,10a2,2,0,1,0,2,2A2,2,0,0,0,12,17Zm0-7a2,2,0,1,0,2,2A2,2,0,0,0,12,10Z' + }) + ) +} + +export default UilEllipsisV \ No newline at end of file diff --git a/src/icons/uil-emoji.ts b/src/icons/uil-emoji.ts new file mode 100644 index 00000000..cb68db1e --- /dev/null +++ b/src/icons/uil-emoji.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEmoji = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,11a1,1,0,1,0-1-1A1,1,0,0,0,15,11ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4.28-7.12a1,1,0,0,0-1.4-.16A2.78,2.78,0,0,0,14,14H10.35a2.81,2.81,0,0,0-.88-1.31,1,1,0,0,0-1.36.2,1,1,0,0,0,.14,1.39A1,1,0,0,1,8.5,15a1.09,1.09,0,0,1-.25.72A1,1,0,1,0,9.5,17.28,2.89,2.89,0,0,0,10.34,16H14a2.72,2.72,0,0,0,.89,1.31,1,1,0,0,0,.57.18,1,1,0,0,0,.78-.38,1,1,0,0,0-.14-1.39,1,1,0,0,1-.25-.72,1.09,1.09,0,0,1,.25-.72A1,1,0,0,0,16.28,12.88Z' + }) + ) +} + +export default UilEmoji \ No newline at end of file diff --git a/src/icons/uil-english-to-chinese.ts b/src/icons/uil-english-to-chinese.ts new file mode 100644 index 00000000..1544e042 --- /dev/null +++ b/src/icons/uil-english-to-chinese.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnglishToChinese = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.022,7h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15ZM9.05176,11.24268a1.00011,1.00011,0,0,0,1.94043-.48536L9.23486,3.72754a2.28107,2.28107,0,0,0-4.42578,0L3.05176,10.75732a1.00011,1.00011,0,0,0,1.94043.48536L5.5528,9H8.49115ZM6.0528,7l.69671-2.78711a.2913.2913,0,0,1,.54492,0L7.99115,7Z' + }) + ) +} + +export default UilEnglishToChinese \ No newline at end of file diff --git a/src/icons/uil-enter.ts b/src/icons/uil-enter.ts new file mode 100644 index 00000000..0721dea3 --- /dev/null +++ b/src/icons/uil-enter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H7.41l1.3-1.29A1,1,0,0,0,7.29,9.29l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L7.41,14H17a3,3,0,0,0,3-3V7A1,1,0,0,0,19,6Z' + }) + ) +} + +export default UilEnter \ No newline at end of file diff --git a/src/icons/uil-envelope-add.ts b/src/icons/uil-envelope-add.ts new file mode 100644 index 00000000..645e78d6 --- /dev/null +++ b/src/icons/uil-envelope-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,7h1V8a1,1,0,0,0,2,0V7h1a1,1,0,0,0,0-2H20V4a1,1,0,0,0-2,0V5H17a1,1,0,0,0,0,2Zm4,4a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,4.24,0l2.47-2.47a1,1,0,0,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V12A1,1,0,0,0,21,11Z' + }) + ) +} + +export default UilEnvelopeAdd \ No newline at end of file diff --git a/src/icons/uil-envelope-alt.ts b/src/icons/uil-envelope-alt.ts new file mode 100644 index 00000000..6a1168ee --- /dev/null +++ b/src/icons/uil-envelope-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM5,6H19a1,1,0,0,1,1,1l-8,4.88L4,7A1,1,0,0,1,5,6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.28l7.48,4.57a1,1,0,0,0,1,0L20,9.28Z' + }) + ) +} + +export default UilEnvelopeAlt \ No newline at end of file diff --git a/src/icons/uil-envelope-block.ts b/src/icons/uil-envelope-block.ts new file mode 100644 index 00000000..f42aceda --- /dev/null +++ b/src/icons/uil-envelope-block.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeBlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.5,13.26A5,5,0,1,0,14,11.79,5,5,0,0,0,17.5,13.26Zm2.12-2.88a3,3,0,0,1-3.4.58l4-4A3,3,0,0,1,19.62,10.38ZM15.38,6.14a3,3,0,0,1,2.12-.88,3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,15.38,6.14Zm5.12,8.12a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.16-.91,1,1,0,0,0,0-1.39,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L4.91,8.26H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-4A1,1,0,0,0,20.5,14.26Z' + }) + ) +} + +export default UilEnvelopeBlock \ No newline at end of file diff --git a/src/icons/uil-envelope-bookmark.ts b/src/icons/uil-envelope-bookmark.ts new file mode 100644 index 00000000..2fc467ad --- /dev/null +++ b/src/icons/uil-envelope-bookmark.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeBookmark = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,15.26a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.89a3,3,0,0,0,2.1.87,3,3,0,0,0,1.43-.36,1,1,0,0,0,.4-1.36,1,1,0,0,0-1.36-.4,1,1,0,0,1-1.15-.17L5.41,8.26H12a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Zm0-12H16a1,1,0,0,0-1,1v8a1,1,0,0,0,1.57.82l1.93-1.29,1.91,1.28a1.06,1.06,0,0,0,.59.19,1,1,0,0,0,.41-.09,1,1,0,0,0,.59-.91v-8A1,1,0,0,0,21,3.26Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.63V5.26h3Z' + }) + ) +} + +export default UilEnvelopeBookmark \ No newline at end of file diff --git a/src/icons/uil-envelope-check.ts b/src/icons/uil-envelope-check.ts new file mode 100644 index 00000000..befcec84 --- /dev/null +++ b/src/icons/uil-envelope-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.29,8.71a1,1,0,0,0,1.42,0l4-4a1,1,0,1,0-1.42-1.42L17,6.59l-1.29-1.3a1,1,0,0,0-1.42,1.42ZM21,8a1,1,0,0,0-1,1v9a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H11a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A1,1,0,0,0,21,8Z' + }) + ) +} + +export default UilEnvelopeCheck \ No newline at end of file diff --git a/src/icons/uil-envelope-download-alt.ts b/src/icons/uil-envelope-download-alt.ts new file mode 100644 index 00000000..15c1c5e7 --- /dev/null +++ b/src/icons/uil-envelope-download-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeDownloadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,8.79a1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L13,5.67V2.92a1,1,0,0,0-2,0V5.67l-.29-.29a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41ZM16,11.08H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,11.08Zm-.42,2L12.7,16a1,1,0,0,1-1.4,0L8.42,13.08Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V14.49l2.88,2.88a3,3,0,0,0,4.24,0L17,14.49Z' + }) + ) +} + +export default UilEnvelopeDownloadAlt \ No newline at end of file diff --git a/src/icons/uil-envelope-download.ts b/src/icons/uil-envelope-download.ts new file mode 100644 index 00000000..81f110ad --- /dev/null +++ b/src/icons/uil-envelope-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H11.5a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Zm1.71-6.71a1,1,0,0,0-1.42,0L19.5,8.59V3a1,1,0,0,0-2,0V8.59l-1.29-1.3a1,1,0,1,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,22.21,7.29Z' + }) + ) +} + +export default UilEnvelopeDownload \ No newline at end of file diff --git a/src/icons/uil-envelope-edit.ts b/src/icons/uil-envelope-edit.ts new file mode 100644 index 00000000..89df4128 --- /dev/null +++ b/src/icons/uil-envelope-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11.51h2.42a1,1,0,0,0,.71-.29l4.58-4.58a1,1,0,0,0,0-1.42L19.29,2.8a1,1,0,0,0-1.42,0L13.29,7.38a1.05,1.05,0,0,0-.29.71v2.42A1,1,0,0,0,14,11.51Zm1-3,3.58-3.58,1,1L16,9.51H15Zm6,2a1,1,0,0,0-1,1v7a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.9l5.88,5.89a3,3,0,0,0,4.27,0,1,1,0,0,0,0-1.4,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L5.41,7.49H10a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-7A1,1,0,0,0,21,10.49Z' + }) + ) +} + +export default UilEnvelopeEdit \ No newline at end of file diff --git a/src/icons/uil-envelope-exclamation.ts b/src/icons/uil-envelope-exclamation.ts new file mode 100644 index 00000000..bc270557 --- /dev/null +++ b/src/icons/uil-envelope-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,7.5H17a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5Zm0-11a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A1,1,0,0,0,21,2.5Zm-.2,7a.64.64,0,0,0-.18.06.76.76,0,0,0-.18.09l-.15.12a1.05,1.05,0,0,0-.29.71,1.23,1.23,0,0,0,0,.19.6.6,0,0,0,.06.19.76.76,0,0,0,.09.18,1.58,1.58,0,0,0,.12.15,1,1,0,0,0,1.42,0l.12-.15a.76.76,0,0,0,.09-.18.6.6,0,0,0,.06-.19,1.23,1.23,0,0,0,0-.19,1,1,0,0,0-1.2-1Z' + }) + ) +} + +export default UilEnvelopeExclamation \ No newline at end of file diff --git a/src/icons/uil-envelope-heart.ts b/src/icons/uil-envelope-heart.ts new file mode 100644 index 00000000..a2ade8a0 --- /dev/null +++ b/src/icons/uil-envelope-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,13a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V8.41L9.38,14.3a3,3,0,0,0,2.11.87,3,3,0,0,0,2.15-.9l.89-.88A1,1,0,0,0,13.13,12l-.93.91a1,1,0,0,1-1.4,0L4.91,7H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3V18a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V14A1,1,0,0,0,20.5,13Zm1.05-9a3.33,3.33,0,0,0-3.88-.54,3.25,3.25,0,0,0-3.88,5.13L17,11.71a1.05,1.05,0,0,0,.71.29,1,1,0,0,0,.71-.29l3.17-3.17A3.26,3.26,0,0,0,21.55,4ZM20.14,7.12,17.67,9.59,15.21,7.12A1.24,1.24,0,0,1,17,5.36a1,1,0,0,0,1.42,0,1.28,1.28,0,0,1,1.76,0A1.26,1.26,0,0,1,20.14,7.12Z' + }) + ) +} + +export default UilEnvelopeHeart \ No newline at end of file diff --git a/src/icons/uil-envelope-info.ts b/src/icons/uil-envelope-info.ts new file mode 100644 index 00000000..fd7f4b7f --- /dev/null +++ b/src/icons/uil-envelope-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,7.5H17a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5Zm0-9a1.05,1.05,0,0,0,.71-.29l.12-.16a.56.56,0,0,0,.09-.17A.64.64,0,0,0,22,3.7a1.36,1.36,0,0,0,0-.2,1.05,1.05,0,0,0-.29-.71,1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.42A1.05,1.05,0,0,0,21,4.5Zm0,1a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0v-4A1,1,0,0,0,21,5.5Z' + }) + ) +} + +export default UilEnvelopeInfo \ No newline at end of file diff --git a/src/icons/uil-envelope-lock.ts b/src/icons/uil-envelope-lock.ts new file mode 100644 index 00000000..3e7e2335 --- /dev/null +++ b/src/icons/uil-envelope-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,7.44V6.26a3,3,0,1,0-6,0V7.44a3,3,0,0,0-2,2.82v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3v-2A3,3,0,0,0,20.5,7.44Zm-4-1.18a1,1,0,1,1,2,0v1h-2Zm4,6a1,1,0,0,1-1,1h-4a1,1,0,0,1-1-1v-2a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Zm0,5a1,1,0,0,0-1,1v1a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a1,1,0,0,0,1.42-1.41L4.91,8.26H10.5a1,1,0,0,0,0-2h-6a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-1A1,1,0,0,0,20.5,17.26Z' + }) + ) +} + +export default UilEnvelopeLock \ No newline at end of file diff --git a/src/icons/uil-envelope-minus.ts b/src/icons/uil-envelope-minus.ts new file mode 100644 index 00000000..c135af13 --- /dev/null +++ b/src/icons/uil-envelope-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,8a1,1,0,0,0-1,1v8a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7.41l5.88,5.88a3,3,0,0,0,4.24,0l3.59-3.58a1,1,0,0,0-1.42-1.42l-3.58,3.59a1,1,0,0,1-1.42,0L5.41,6H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A1,1,0,0,0,21,8ZM17,6h4a1,1,0,0,0,0-2H17a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilEnvelopeMinus \ No newline at end of file diff --git a/src/icons/uil-envelope-open.ts b/src/icons/uil-envelope-open.ts new file mode 100644 index 00000000..179a9aaa --- /dev/null +++ b/src/icons/uil-envelope-open.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeOpen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.21,8.82h0l0,0h0L14,2.78a2.83,2.83,0,0,0-3.9,0l-6.21,6h0v0A2.6,2.6,0,0,0,3,10.71v8.58A2.75,2.75,0,0,0,5.78,22H18.22A2.75,2.75,0,0,0,21,19.29V10.71A2.67,2.67,0,0,0,20.21,8.82Zm-8.77-4.6a.83.83,0,0,1,1.12,0L18,9.5l-5.47,5.28a.83.83,0,0,1-1.12,0L6,9.5ZM19,19.29a.76.76,0,0,1-.78.71H5.78A.76.76,0,0,1,5,19.29V11.35l4.05,3.9-1.66,1.6a1,1,0,0,0,0,1.41,1,1,0,0,0,.72.31,1,1,0,0,0,.69-.28l1.77-1.7a2.8,2.8,0,0,0,2.92,0l1.77,1.7a1,1,0,0,0,.69.28,1,1,0,0,0,.72-.31,1,1,0,0,0,0-1.41L15,15.25l4-3.9Z' + }) + ) +} + +export default UilEnvelopeOpen \ No newline at end of file diff --git a/src/icons/uil-envelope-question.ts b/src/icons/uil-envelope-question.ts new file mode 100644 index 00000000..d30108af --- /dev/null +++ b/src/icons/uil-envelope-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.77,5.37A1,1,0,0,0,18.13,5,1,1,0,0,1,19,4.5a1,1,0,0,1,0,2,1,1,0,0,0,0,2A3,3,0,1,0,16.4,4,1,1,0,0,0,16.77,5.37ZM21,13.5a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.91L9.88,14.8a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.7,13.38a1,1,0,0,1-1.4,0L5.41,7.5H13a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-4A1,1,0,0,0,21,13.5ZM18.29,9.79a1,1,0,0,0,0,1.42l.15.12a.76.76,0,0,0,.18.09.64.64,0,0,0,.18.06l.2,0a1,1,0,0,0,.71-1.71A1,1,0,0,0,18.29,9.79Z' + }) + ) +} + +export default UilEnvelopeQuestion \ No newline at end of file diff --git a/src/icons/uil-envelope-receive.ts b/src/icons/uil-envelope-receive.ts new file mode 100644 index 00000000..b4572b93 --- /dev/null +++ b/src/icons/uil-envelope-receive.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeReceive = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.29,6.21l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29H15a1,1,0,0,0,0-2H11.41l.3-.29a1,1,0,1,0-1.42-1.42l-2,2a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,8.29,6.21ZM16,10.5H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,10.5Zm-.42,2L12.7,15.38a1,1,0,0,1-1.4,0L8.42,12.5Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V13.91l2.88,2.87a2.94,2.94,0,0,0,2.12.89,3,3,0,0,0,2.12-.88L17,13.91Z' + }) + ) +} + +export default UilEnvelopeReceive \ No newline at end of file diff --git a/src/icons/uil-envelope-redo.ts b/src/icons/uil-envelope-redo.ts new file mode 100644 index 00000000..66a9c417 --- /dev/null +++ b/src/icons/uil-envelope-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,14.26a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.16-.91,1,1,0,0,0,0-1.39,1,1,0,0,0-1.43,0,1,1,0,0,1-1.4,0L4.91,8.26H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3v-4A1,1,0,0,0,20.5,14.26Zm1-11a1,1,0,0,0-1,1h0a5,5,0,1,0-3,9A5,5,0,0,0,20.8,12a1,1,0,0,0-1.32-1.51,3,3,0,1,1,.25-4.24H18.5a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1v-3A1,1,0,0,0,21.5,3.26Z' + }) + ) +} + +export default UilEnvelopeRedo \ No newline at end of file diff --git a/src/icons/uil-envelope-search.ts b/src/icons/uil-envelope-search.ts new file mode 100644 index 00000000..422ccc22 --- /dev/null +++ b/src/icons/uil-envelope-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.21,10.29,20.48,8.57a4.37,4.37,0,0,0,.65-2.26,4.31,4.31,0,1,0-4.32,4.32A4.37,4.37,0,0,0,19.07,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,22.21,10.29ZM18.45,8a2.37,2.37,0,0,1-3.27,0,2.3,2.3,0,0,1-.68-1.64A2.32,2.32,0,0,1,16.81,4a2.3,2.3,0,0,1,1.64.68,2.28,2.28,0,0,1,.68,1.63A2.3,2.3,0,0,1,18.45,8ZM20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0L15,13.88a1,1,0,0,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H9.5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Z' + }) + ) +} + +export default UilEnvelopeSearch \ No newline at end of file diff --git a/src/icons/uil-envelope-send.ts b/src/icons/uil-envelope-send.ts new file mode 100644 index 00000000..0ccfcb29 --- /dev/null +++ b/src/icons/uil-envelope-send.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeSend = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,10.5H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,10.5Zm-.42,2L12.7,15.38a1,1,0,0,1-1.4,0L8.42,12.5Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V13.91l2.88,2.87a2.94,2.94,0,0,0,2.12.89,3,3,0,0,0,2.12-.88L17,13.91ZM9,6.5h3.59l-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-2-2a1,1,0,0,0-1.42,1.42l.3.29H9a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilEnvelopeSend \ No newline at end of file diff --git a/src/icons/uil-envelope-share.ts b/src/icons/uil-envelope-share.ts new file mode 100644 index 00000000..d009046b --- /dev/null +++ b/src/icons/uil-envelope-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V9.41L8.88,15.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L11.7,13.88a1,1,0,0,1-1.4,0L4.41,8H10a1,1,0,0,0,0-2H4A3,3,0,0,0,1,9V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V15A1,1,0,0,0,20,14Zm0-6a2,2,0,0,0-1.18.39l-1.75-.8L19,6.71A2,2,0,0,0,20,7a2,2,0,1,0-2-2l-1.9.87A2,2,0,0,0,15,5.5a2,2,0,0,0,0,4,1.88,1.88,0,0,0,.92-.24l2.1,1A2,2,0,1,0,20,8Z' + }) + ) +} + +export default UilEnvelopeShare \ No newline at end of file diff --git a/src/icons/uil-envelope-shield.ts b/src/icons/uil-envelope-shield.ts new file mode 100644 index 00000000..2d59b529 --- /dev/null +++ b/src/icons/uil-envelope-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.63,5.12a1,1,0,0,0-.84-.2,2.74,2.74,0,0,1-2.2-.46,1,1,0,0,0-1.18,0,2.74,2.74,0,0,1-2.2.46A1,1,0,0,0,14,5.9V9.21a4.62,4.62,0,0,0,1.84,3.7l1.57,1.16a1,1,0,0,0,1.18,0l1.57-1.16A4.62,4.62,0,0,0,22,9.21V5.9A1,1,0,0,0,21.63,5.12ZM20,9.21a2.61,2.61,0,0,1-1,2.09L18,12l-1-.72a2.61,2.61,0,0,1-1-2.09V7a4.67,4.67,0,0,0,2-.54A4.67,4.67,0,0,0,20,7Zm1,6a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.88a3,3,0,0,0,2.11.88,3,3,0,0,0,2.15-.9l-.7-.71-.74-.68a1,1,0,0,1-1.4,0L5.41,8.26H11a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Z' + }) + ) +} + +export default UilEnvelopeShield \ No newline at end of file diff --git a/src/icons/uil-envelope-star.ts b/src/icons/uil-envelope-star.ts new file mode 100644 index 00000000..67cbdfbd --- /dev/null +++ b/src/icons/uil-envelope-star.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeStar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.64,9.74l-.29,1.73A1.55,1.55,0,0,0,14,13a1.46,1.46,0,0,0,1.58.09L17,12.28l1.44.79A1.46,1.46,0,0,0,20,13a1.55,1.55,0,0,0,.63-1.51l-.29-1.73,1.2-1.22a1.54,1.54,0,0,0-.85-2.6l-1.62-.24-.73-1.55a1.5,1.5,0,0,0-2.72,0l-.73,1.55-1.62.24a1.54,1.54,0,0,0-.85,2.6Zm1.83-2.13a1.51,1.51,0,0,0,1.14-.85L17,5.93l.39.83a1.55,1.55,0,0,0,1.14.86l1,.14-.73.74a1.57,1.57,0,0,0-.42,1.34l.16,1-.79-.43a1.48,1.48,0,0,0-1.44,0l-.79.43.16-1a1.54,1.54,0,0,0-.42-1.33l-.73-.75ZM21,15.26a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9.67l5.88,5.88a2.94,2.94,0,0,0,2.1.88l.27,0a1,1,0,0,0,.91-1.08,1,1,0,0,0-1.09-.91.94.94,0,0,1-.77-.28L5.41,8.26H9a1,1,0,0,0,0-2H5a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-3A1,1,0,0,0,21,15.26Z' + }) + ) +} + +export default UilEnvelopeStar \ No newline at end of file diff --git a/src/icons/uil-envelope-times.ts b/src/icons/uil-envelope-times.ts new file mode 100644 index 00000000..078e3979 --- /dev/null +++ b/src/icons/uil-envelope-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.41L9.88,14.3a3,3,0,0,0,2.11.87,3.08,3.08,0,0,0,2.16-.9l1.72-1.72a1,1,0,1,0-1.42-1.42L12.7,12.88a1,1,0,0,1-1.4,0L5.41,7H13a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V12A1,1,0,0,0,21,11Zm-.59-5,1.3-1.29a1,1,0,1,0-1.42-1.42L19,4.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L17.59,6l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L19,7.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilEnvelopeTimes \ No newline at end of file diff --git a/src/icons/uil-envelope-upload-alt.ts b/src/icons/uil-envelope-upload-alt.ts new file mode 100644 index 00000000..878e3e0c --- /dev/null +++ b/src/icons/uil-envelope-upload-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeUploadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,11.08H8a3,3,0,0,0-3,3v5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3v-5A3,3,0,0,0,16,11.08Zm-.42,2L12.7,16a1,1,0,0,1-1.4,0L8.42,13.08Zm1.42,6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V14.49l2.88,2.88a3,3,0,0,0,4.24,0L17,14.49ZM10.71,5.62,11,5.33V8.08a1,1,0,0,0,2,0V5.33l.29.29a1,1,0,1,0,1.42-1.41l-2-2a1,1,0,0,0-1.42,0l-2,2a1,1,0,0,0,0,1.41A1,1,0,0,0,10.71,5.62Z' + }) + ) +} + +export default UilEnvelopeUploadAlt \ No newline at end of file diff --git a/src/icons/uil-envelope-upload.ts b/src/icons/uil-envelope-upload.ts new file mode 100644 index 00000000..abc38829 --- /dev/null +++ b/src/icons/uil-envelope-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopeUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H4.5a1,1,0,0,1-1-1V9.41L9.38,15.3a3,3,0,0,0,4.24,0l1.64-1.64a1,1,0,1,0-1.42-1.42L12.2,13.88a1,1,0,0,1-1.4,0L4.91,8H11.5a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h14a3,3,0,0,0,3-3V15A1,1,0,0,0,20.5,14Zm1.71-8.71-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42l1.29-1.3V11a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,22.21,5.29Z' + }) + ) +} + +export default UilEnvelopeUpload \ No newline at end of file diff --git a/src/icons/uil-envelope.ts b/src/icons/uil-envelope.ts new file mode 100644 index 00000000..7d373d4e --- /dev/null +++ b/src/icons/uil-envelope.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelope = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm-.41,2-5.88,5.88a1,1,0,0,1-1.42,0L5.41,6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7.41l5.88,5.88a3,3,0,0,0,4.24,0L20,7.41Z' + }) + ) +} + +export default UilEnvelope \ No newline at end of file diff --git a/src/icons/uil-envelopes.ts b/src/icons/uil-envelopes.ts new file mode 100644 index 00000000..e1df6197 --- /dev/null +++ b/src/icons/uil-envelopes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEnvelopes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,21.63H5a3,3,0,0,1-3-3v-8a1,1,0,0,0-2,0v8a5,5,0,0,0,5,5H17a1,1,0,0,0,0-2Zm4-18H7a3,3,0,0,0-3,3v10a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3v-10A3,3,0,0,0,21,3.63Zm-.41,2-5.88,5.88a1,1,0,0,1-1.42,0L7.41,5.63Zm1.41,11a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V7l5.88,5.88a3,3,0,0,0,4.24,0L22,7Z' + }) + ) +} + +export default UilEnvelopes \ No newline at end of file diff --git a/src/icons/uil-equal-circle.ts b/src/icons/uil-equal-circle.ts new file mode 100644 index 00000000..7c9e389f --- /dev/null +++ b/src/icons/uil-equal-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEqualCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,13H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilEqualCircle \ No newline at end of file diff --git a/src/icons/uil-estate.ts b/src/icons/uil-estate.ts new file mode 100644 index 00000000..582a66e6 --- /dev/null +++ b/src/icons/uil-estate.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEstate = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8h0L14,2.74a3,3,0,0,0-4,0L4,8a3,3,0,0,0-1,2.26V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V10.25A3,3,0,0,0,20,8ZM14,20H10V15a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1Zm5-1a1,1,0,0,1-1,1H16V15a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v5H6a1,1,0,0,1-1-1V10.25a1,1,0,0,1,.34-.75l6-5.25a1,1,0,0,1,1.32,0l6,5.25a1,1,0,0,1,.34.75Z' + }) + ) +} + +export default UilEstate \ No newline at end of file diff --git a/src/icons/uil-euro-circle.ts b/src/icons/uil-euro-circle.ts new file mode 100644 index 00000000..cdb8c4f2 --- /dev/null +++ b/src/icons/uil-euro-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEuroCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Zm.59-13.33a3.34,3.34,0,0,1,2.62,1.38,1,1,0,0,0,1.4.19,1,1,0,0,0,.18-1.41,5.32,5.32,0,0,0-4.2-2.16A5.57,5.57,0,0,0,7.46,9.5H6a1,1,0,0,0,0,2H7c0,.17,0,.33,0,.5s0,.33,0,.5H6a1,1,0,0,0,0,2H7.46a5.57,5.57,0,0,0,5.13,3.83,5.32,5.32,0,0,0,4.2-2.16A1,1,0,1,0,15.21,15a3.34,3.34,0,0,1-2.62,1.38A3.42,3.42,0,0,1,9.67,14.5H12a1,1,0,0,0,0-2H9.05A4.23,4.23,0,0,1,9,12a4.23,4.23,0,0,1,.05-.5H12a1,1,0,0,0,0-2H9.67A3.42,3.42,0,0,1,12.59,7.67Z' + }) + ) +} + +export default UilEuroCircle \ No newline at end of file diff --git a/src/icons/uil-euro.ts b/src/icons/uil-euro.ts new file mode 100644 index 00000000..6ba31a30 --- /dev/null +++ b/src/icons/uil-euro.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEuro = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.2,17.41A6,6,0,0,1,14.46,20c-2.68,0-5-2-6-5H14a1,1,0,0,0,0-2H8.05c0-.33-.05-.67-.05-1s0-.67.05-1H14a1,1,0,0,0,0-2H8.47c1-3,3.31-5,6-5A6,6,0,0,1,19.2,6.59a1,1,0,1,0,1.6-1.18A7.92,7.92,0,0,0,14.46,2c-3.76,0-7,2.84-8.07,7H4a1,1,0,0,0,0,2H6.05c0,.33,0,.67,0,1s0,.67,0,1H4a1,1,0,0,0,0,2H6.39c1.09,4.16,4.31,7,8.07,7a7.92,7.92,0,0,0,6.34-3.41,1,1,0,0,0-1.6-1.18Z' + }) + ) +} + +export default UilEuro \ No newline at end of file diff --git a/src/icons/uil-exchange-alt.ts b/src/icons/uil-exchange-alt.ts new file mode 100644 index 00000000..7f32e6e2 --- /dev/null +++ b/src/icons/uil-exchange-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExchangeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,9.29l-4-4a1,1,0,0,0-1.42,1.42L18.59,9H7a1,1,0,0,0,0,2H21a1,1,0,0,0,.92-.62A1,1,0,0,0,21.71,9.29ZM17,13H3a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,15H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilExchangeAlt \ No newline at end of file diff --git a/src/icons/uil-exchange.ts b/src/icons/uil-exchange.ts new file mode 100644 index 00000000..207b9560 --- /dev/null +++ b/src/icons/uil-exchange.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExchange = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,10a1,1,0,0,0-1-1H5.41l2.3-2.29A1,1,0,0,0,6.29,5.29l-4,4a1,1,0,0,0-.21,1.09A1,1,0,0,0,3,11H17A1,1,0,0,0,18,10Zm3.92,3.62A1,1,0,0,0,21,13H7a1,1,0,0,0,0,2H18.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4A1,1,0,0,0,21.92,13.62Z' + }) + ) +} + +export default UilExchange \ No newline at end of file diff --git a/src/icons/uil-exclamation-circle.ts b/src/icons/uil-exclamation-circle.ts new file mode 100644 index 00000000..c1db7349 --- /dev/null +++ b/src/icons/uil-exclamation-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExclamationCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,14a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,14Zm0-1.5a1,1,0,0,0,1-1v-3a1,1,0,0,0-2,0v3A1,1,0,0,0,12,12.5ZM12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Z' + }) + ) +} + +export default UilExclamationCircle \ No newline at end of file diff --git a/src/icons/uil-exclamation-octagon.ts b/src/icons/uil-exclamation-octagon.ts new file mode 100644 index 00000000..61e7d2e4 --- /dev/null +++ b/src/icons/uil-exclamation-octagon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExclamationOctagon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,7a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V8A1,1,0,0,0,12,7Zm0,8a1,1,0,1,0,1,1A1,1,0,0,0,12,15Zm9.71-7.44L16.44,2.29A1.05,1.05,0,0,0,15.73,2H8.27a1.05,1.05,0,0,0-.71.29L2.29,7.56A1.05,1.05,0,0,0,2,8.27v7.46a1.05,1.05,0,0,0,.29.71l5.27,5.27a1.05,1.05,0,0,0,.71.29h7.46a1.05,1.05,0,0,0,.71-.29l5.27-5.27a1.05,1.05,0,0,0,.29-.71V8.27A1.05,1.05,0,0,0,21.71,7.56ZM20,15.31,15.31,20H8.69L4,15.31V8.69L8.69,4h6.62L20,8.69Z' + }) + ) +} + +export default UilExclamationOctagon \ No newline at end of file diff --git a/src/icons/uil-exclamation-triangle.ts b/src/icons/uil-exclamation-triangle.ts new file mode 100644 index 00000000..39378d3e --- /dev/null +++ b/src/icons/uil-exclamation-triangle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExclamationTriangle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,16a1,1,0,1,0,1,1A1,1,0,0,0,12,16Zm10.67,1.47-8.05-14a3,3,0,0,0-5.24,0l-8,14A3,3,0,0,0,3.94,22H20.06a3,3,0,0,0,2.61-4.53Zm-1.73,2a1,1,0,0,1-.88.51H3.94a1,1,0,0,1-.88-.51,1,1,0,0,1,0-1l8-14a1,1,0,0,1,1.78,0l8.05,14A1,1,0,0,1,20.94,19.49ZM12,8a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V9A1,1,0,0,0,12,8Z' + }) + ) +} + +export default UilExclamationTriangle \ No newline at end of file diff --git a/src/icons/uil-exclamation.ts b/src/icons/uil-exclamation.ts new file mode 100644 index 00000000..d00b6b5b --- /dev/null +++ b/src/icons/uil-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,14a1,1,0,0,0,1-1V7a1,1,0,0,0-2,0v6A1,1,0,0,0,12,14Zm0,4a1.25,1.25,0,1,0-1.25-1.25A1.25,1.25,0,0,0,12,18Z' + }) + ) +} + +export default UilExclamation \ No newline at end of file diff --git a/src/icons/uil-exclude.ts b/src/icons/uil-exclude.ts new file mode 100644 index 00000000..814a8b9e --- /dev/null +++ b/src/icons/uil-exclude.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExclude = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.54,7.54h-1a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0,1,1,0,1,0,0-2Zm5.92,5.92a1,1,0,0,0-1,1,1,1,0,0,0,0,2h1a1,1,0,0,0,1-1v-1A1,1,0,0,0,15.46,13.46ZM21,7.54H16.46V3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V15.46a1,1,0,0,0,1,1H7.54V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V16.46a1,1,0,0,0,0-2,1,1,0,0,0-2,0H4V4H14.46V7.54a1,1,0,0,0,0,2,1,1,0,0,0,2,0H20Z' + }) + ) +} + +export default UilExclude \ No newline at end of file diff --git a/src/icons/uil-expand-alt.ts b/src/icons/uil-expand-alt.ts new file mode 100644 index 00000000..2a10b82f --- /dev/null +++ b/src/icons/uil-expand-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.79,12.79,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41l5.8-5.79a1,1,0,0,0-1.42-1.42ZM21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59l-5.8,5.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilExpandAlt \ No newline at end of file diff --git a/src/icons/uil-expand-arrows-alt.ts b/src/icons/uil-expand-arrows-alt.ts new file mode 100644 index 00000000..1fbb187a --- /dev/null +++ b/src/icons/uil-expand-arrows-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandArrowsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.29,13.29,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41l5.3-5.29a1,1,0,0,0-1.42-1.42ZM5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41l5.29,5.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,16a1,1,0,0,0-1,1v1.59l-5.29-5.3a1,1,0,0,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Zm.92-13.38a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilExpandArrowsAlt \ No newline at end of file diff --git a/src/icons/uil-expand-arrows.ts b/src/icons/uil-expand-arrows.ts new file mode 100644 index 00000000..c8309ec1 --- /dev/null +++ b/src/icons/uil-expand-arrows.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandArrows = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,8a1,1,0,0,0,1-1V3a1,1,0,0,0-.08-.38,1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59L12,10.59,5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L10.59,12,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41L12,13.41,18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17a1,1,0,0,0-2,0v1.59L13.41,12,20,5.41V7A1,1,0,0,0,21,8Z' + }) + ) +} + +export default UilExpandArrows \ No newline at end of file diff --git a/src/icons/uil-expand-from-corner.ts b/src/icons/uil-expand-from-corner.ts new file mode 100644 index 00000000..e29a245e --- /dev/null +++ b/src/icons/uil-expand-from-corner.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandFromCorner = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,12H3a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V13A1,1,0,0,0,11,12Zm-1,8H4V14h6ZM21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59l-5.3,5.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilExpandFromCorner \ No newline at end of file diff --git a/src/icons/uil-expand-left.ts b/src/icons/uil-expand-left.ts new file mode 100644 index 00000000..2c67b206 --- /dev/null +++ b/src/icons/uil-expand-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.17,10.17a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L8.46,9.88A1,1,0,0,0,9.17,10.17Zm6.37-1.71a1,1,0,0,0-1.42,0L8.46,14.12a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l5.66-5.66A1,1,0,0,0,15.54,8.46ZM21,16a1,1,0,0,0-1,1v1.59l-4.46-4.47a1,1,0,1,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' + }) + ) +} + +export default UilExpandLeft \ No newline at end of file diff --git a/src/icons/uil-expand-right.ts b/src/icons/uil-expand-right.ts new file mode 100644 index 00000000..b98a5467 --- /dev/null +++ b/src/icons/uil-expand-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExpandRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,14.1L4,18.6V17c0-0.6-0.4-1-1-1s-1,0.4-1,1v4c0,0.1,0,0.3,0.1,0.4c0.1,0.2,0.3,0.4,0.5,0.5C2.7,22,2.9,22,3,22h4c0.6,0,1-0.4,1-1s-0.4-1-1-1H5.4l4.5-4.5c0.4-0.4,0.4-1,0-1.4C9.5,13.7,8.9,13.7,8.5,14.1z M21.7,2.3C21.7,2.3,21.7,2.3,21.7,2.3C21.5,2.1,21.2,2,21,2h-4c-0.6,0-1,0.4-1,1s0.4,1,1,1h1.6l-4.5,4.5c-0.4,0.4-0.4,1,0,1.4l0,0c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3L20,5.4V7c0,0.6,0.4,1,1,1s1-0.4,1-1V3C22,2.8,21.9,2.5,21.7,2.3z M15.5,14.1L9.9,8.5c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4l5.7,5.7c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3C15.9,15.2,15.9,14.5,15.5,14.1C15.5,14.1,15.5,14.1,15.5,14.1z' + }) + ) +} + +export default UilExpandRight \ No newline at end of file diff --git a/src/icons/uil-export.ts b/src/icons/uil-export.ts new file mode 100644 index 00000000..c93e846f --- /dev/null +++ b/src/icons/uil-export.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExport = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.71,7.71,11,5.41V15a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71ZM21,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14Z' + }) + ) +} + +export default UilExport \ No newline at end of file diff --git a/src/icons/uil-exposure-alt.ts b/src/icons/uil-exposure-alt.ts new file mode 100644 index 00000000..89c69e2d --- /dev/null +++ b/src/icons/uil-exposure-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExposureAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,6H7A1,1,0,0,0,7,8h4a1,1,0,0,0,0-2Zm8-4H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM4,18.59V5A1,1,0,0,1,5,4H18.59ZM20,19a1,1,0,0,1-1,1H5.41L20,5.41Zm-7-2h1v1a1,1,0,0,0,2,0V17h1a1,1,0,0,0,0-2H16V14a1,1,0,0,0-2,0v1H13a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilExposureAlt \ No newline at end of file diff --git a/src/icons/uil-exposure-increase.ts b/src/icons/uil-exposure-increase.ts new file mode 100644 index 00000000..35dc61b7 --- /dev/null +++ b/src/icons/uil-exposure-increase.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExposureIncrease = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,7H10V6A1,1,0,0,0,8,6V7H7A1,1,0,0,0,7,9H8v1a1,1,0,0,0,2,0V9h1a1,1,0,0,0,0-2Zm2,11h4a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM4,18.59V5A1,1,0,0,1,5,4H18.59ZM20,19a1,1,0,0,1-1,1H5.41L20,5.41Z' + }) + ) +} + +export default UilExposureIncrease \ No newline at end of file diff --git a/src/icons/uil-external-link-alt.ts b/src/icons/uil-external-link-alt.ts new file mode 100644 index 00000000..43b10b65 --- /dev/null +++ b/src/icons/uil-external-link-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilExternalLinkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,10.82a1,1,0,0,0-1,1V19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8A1,1,0,0,1,5,7h7.18a1,1,0,0,0,0-2H5A3,3,0,0,0,2,8V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V11.82A1,1,0,0,0,18,10.82Zm3.92-8.2a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H15a1,1,0,0,0,0,2h3.59L8.29,14.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L20,5.41V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilExternalLinkAlt \ No newline at end of file diff --git a/src/icons/uil-eye-slash.ts b/src/icons/uil-eye-slash.ts new file mode 100644 index 00000000..a7d4ebdd --- /dev/null +++ b/src/icons/uil-eye-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEyeSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.94,6.08A6.93,6.93,0,0,1,12,6c3.18,0,6.17,2.29,7.91,6a15.23,15.23,0,0,1-.9,1.64,1,1,0,0,0-.16.55,1,1,0,0,0,1.86.5,15.77,15.77,0,0,0,1.21-2.3,1,1,0,0,0,0-.79C19.9,6.91,16.1,4,12,4a7.77,7.77,0,0,0-1.4.12,1,1,0,1,0,.34,2ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.39,6.8a14.62,14.62,0,0,0-3.31,4.8,1,1,0,0,0,0,.8C4.1,17.09,7.9,20,12,20a9.26,9.26,0,0,0,5.05-1.54l3.24,3.25a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6.36,9.19,2.45,2.45A1.81,1.81,0,0,1,12,14a2,2,0,0,1-2-2A1.81,1.81,0,0,1,10.07,11.48ZM12,18c-3.18,0-6.17-2.29-7.9-6A12.09,12.09,0,0,1,6.8,8.21L8.57,10A4,4,0,0,0,14,15.43L15.59,17A7.24,7.24,0,0,1,12,18Z' + }) + ) +} + +export default UilEyeSlash \ No newline at end of file diff --git a/src/icons/uil-eye.ts b/src/icons/uil-eye.ts new file mode 100644 index 00000000..b3f7bfcf --- /dev/null +++ b/src/icons/uil-eye.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilEye = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,11.6C19.9,6.91,16.1,4,12,4S4.1,6.91,2.08,11.6a1,1,0,0,0,0,.8C4.1,17.09,7.9,20,12,20s7.9-2.91,9.92-7.6A1,1,0,0,0,21.92,11.6ZM12,18c-3.17,0-6.17-2.29-7.9-6C5.83,8.29,8.83,6,12,6s6.17,2.29,7.9,6C18.17,15.71,15.17,18,12,18ZM12,8a4,4,0,1,0,4,4A4,4,0,0,0,12,8Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,14Z' + }) + ) +} + +export default UilEye \ No newline at end of file diff --git a/src/icons/uil-facebook-f.ts b/src/icons/uil-facebook-f.ts new file mode 100644 index 00000000..f7fe4245 --- /dev/null +++ b/src/icons/uil-facebook-f.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFacebookF = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.12,5.32H17V2.14A26.11,26.11,0,0,0,14.26,2C11.54,2,9.68,3.66,9.68,6.7V9.32H6.61v3.56H9.68V22h3.68V12.88h3.06l.46-3.56H13.36V7.05C13.36,6,13.64,5.32,15.12,5.32Z' + }) + ) +} + +export default UilFacebookF \ No newline at end of file diff --git a/src/icons/uil-facebook-messenger-alt.ts b/src/icons/uil-facebook-messenger-alt.ts new file mode 100644 index 00000000..766dc7d2 --- /dev/null +++ b/src/icons/uil-facebook-messenger-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFacebookMessengerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.99121,1.00044a10.61443,10.61443,0,0,0-11,10.70019,10.46132,10.46132,0,0,0,3.41406,7.86524L4.457,21.2563a1.79959,1.79959,0,0,0,1.79883,1.74316,1.81992,1.81992,0,0,0,.72656-.15234l1.9209-.84668a11.89548,11.89548,0,0,0,3.08789.40039,10.61525,10.61525,0,0,0,11.001-10.7002A10.61525,10.61525,0,0,0,11.99121,1.00044Zm0,19.40039a9.86205,9.86205,0,0,1-2.63476-.35059,1.79856,1.79856,0,0,0-1.19629.0918l-1.71387.75586-.04492-1.49316a1.80968,1.80968,0,0,0-.60157-1.27442,8.4876,8.4876,0,0,1-2.80859-6.42969,8.65949,8.65949,0,0,1,9-8.70019,8.70522,8.70522,0,1,1,0,17.40039ZM15.72559,8.5854l-2.3125,2.75488L10.06641,9.28364a.99809.99809,0,0,0-1.28907.21L5.72559,13.13032a.99955.99955,0,1,0,1.53125,1.28516l2.498-2.97559,3.34668,2.05567a.99823.99823,0,0,0,1.28906-.209l2.86622-3.416A.99955.99955,0,1,0,15.72559,8.5854Z' + }) + ) +} + +export default UilFacebookMessengerAlt \ No newline at end of file diff --git a/src/icons/uil-facebook-messenger.ts b/src/icons/uil-facebook-messenger.ts new file mode 100644 index 00000000..d327b975 --- /dev/null +++ b/src/icons/uil-facebook-messenger.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFacebookMessenger = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A9.65,9.65,0,0,0,2,11.7a9.51,9.51,0,0,0,3.14,7.18.81.81,0,0,1,.27.56l0,1.78a.81.81,0,0,0,1.13.71l2-.87a.75.75,0,0,1,.53,0,11,11,0,0,0,2.9.38A9.7,9.7,0,1,0,12,2Zm6,7.46-2.93,4.66a1.5,1.5,0,0,1-2.17.4l-2.34-1.75a.6.6,0,0,0-.72,0l-3.16,2.4A.47.47,0,0,1,6,14.54L8.93,9.88a1.5,1.5,0,0,1,2.17-.4l2.34,1.75a.6.6,0,0,0,.72,0l3.16-2.4A.47.47,0,0,1,18,9.46Z' + }) + ) +} + +export default UilFacebookMessenger \ No newline at end of file diff --git a/src/icons/uil-facebook.ts b/src/icons/uil-facebook.ts new file mode 100644 index 00000000..2a3163e7 --- /dev/null +++ b/src/icons/uil-facebook.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFacebook = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.9,2H3.1A1.1,1.1,0,0,0,2,3.1V20.9A1.1,1.1,0,0,0,3.1,22h9.58V14.25h-2.6v-3h2.6V9a3.64,3.64,0,0,1,3.88-4,20.26,20.26,0,0,1,2.33.12v2.7H17.3c-1.26,0-1.5.6-1.5,1.47v1.93h3l-.39,3H15.8V22h5.1A1.1,1.1,0,0,0,22,20.9V3.1A1.1,1.1,0,0,0,20.9,2Z' + }) + ) +} + +export default UilFacebook \ No newline at end of file diff --git a/src/icons/uil-fahrenheit.ts b/src/icons/uil-fahrenheit.ts new file mode 100644 index 00000000..a1ef564a --- /dev/null +++ b/src/icons/uil-fahrenheit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFahrenheit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,3h-7a3,3,0,0,0-3,3V20a1,1,0,0,0,2,0V13h6a1,1,0,0,0,0-2h-6V6a1,1,0,0,1,1-1h7a1,1,0,0,0,0-2ZM5.5,3a3,3,0,1,0,3,3A3,3,0,0,0,5.5,3Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,5.5,7Z' + }) + ) +} + +export default UilFahrenheit \ No newline at end of file diff --git a/src/icons/uil-fast-mail-alt.ts b/src/icons/uil-fast-mail-alt.ts new file mode 100644 index 00000000..fb93ae25 --- /dev/null +++ b/src/icons/uil-fast-mail-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFastMailAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.69,9a2.93,2.93,0,0,0-1-1.71v0h0a3,3,0,0,0-2-.74H4.8A3,3,0,0,0,2.5,7.57h0l0,0,0,.06A3,3,0,0,0,1.84,10l.88,5a3,3,0,0,0,3,2.48h7.94a3,3,0,0,0,2.29-1.07A3,3,0,0,0,16.57,14ZM12.28,8.5,9.94,11.14a1,1,0,0,1-1.38.11L5.17,8.5Zm2.1,6.64a1,1,0,0,1-.76.36H5.68a1,1,0,0,1-1-.83L3.87,10,7.3,12.8a3,3,0,0,0,4.14-.34L13.8,9.8l.8,4.53A1,1,0,0,1,14.38,15.14Zm6.83-4.64h-2a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm0-2a1,1,0,0,0,0-2h-3a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFastMailAlt \ No newline at end of file diff --git a/src/icons/uil-fast-mail.ts b/src/icons/uil-fast-mail.ts new file mode 100644 index 00000000..ca205c0b --- /dev/null +++ b/src/icons/uil-fast-mail.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFastMail = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.79,10.5h-2a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2ZM21.57,7.66l0-.06,0,0h0A3,3,0,0,0,19.2,6.5H11.27a3,3,0,0,0-2,.74h0v0A2.93,2.93,0,0,0,8.31,9l-.88,5a3,3,0,0,0,.66,2.45,3,3,0,0,0,2.29,1.07h7.94a3,3,0,0,0,3-2.48l.88-5A3,3,0,0,0,21.57,7.66Zm-2.74.84-3.4,2.76a1,1,0,0,1-1.38-.12L11.72,8.5Zm.48,6.17a1,1,0,0,1-1,.83H10.38a1,1,0,0,1-.76-.36,1,1,0,0,1-.22-.81l.8-4.53,2.35,2.66a3,3,0,0,0,4.14.35L20.13,10ZM5.79,6.5h-3a1,1,0,1,0,0,2h3a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFastMail \ No newline at end of file diff --git a/src/icons/uil-favorite.ts b/src/icons/uil-favorite.ts new file mode 100644 index 00000000..f1e8740f --- /dev/null +++ b/src/icons/uil-favorite.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFavorite = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68A1,1,0,0,0,6.9,21.44L12,18.77l5.1,2.67a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67Zm-6.15,4a1,1,0,0,0-.29.88l.72,4.2-3.76-2a1.06,1.06,0,0,0-.94,0l-3.76,2,.72-4.2a1,1,0,0,0-.29-.88l-3-3,4.21-.61a1,1,0,0,0,.76-.55L12,5.7l1.88,3.82a1,1,0,0,0,.76.55l4.21.61Z' + }) + ) +} + +export default UilFavorite \ No newline at end of file diff --git a/src/icons/uil-feedback.ts b/src/icons/uil-feedback.ts new file mode 100644 index 00000000..f64aa204 --- /dev/null +++ b/src/icons/uil-feedback.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFeedback = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,1H15a2.44,2.44,0,0,0-2.41,2l-.92,5.05a2.44,2.44,0,0,0,.53,2,2.47,2.47,0,0,0,1.88.88H17l-.25.66A3.26,3.26,0,0,0,19.75,16a1,1,0,0,0,.92-.59l2.24-5.06A1,1,0,0,0,23,10V2A1,1,0,0,0,22,1ZM21,9.73l-1.83,4.13a1.33,1.33,0,0,1-.45-.4,1.23,1.23,0,0,1-.14-1.16l.38-1a1.68,1.68,0,0,0-.2-1.58A1.7,1.7,0,0,0,17.35,9H14.06a.46.46,0,0,1-.35-.16.5.5,0,0,1-.09-.37l.92-5A.44.44,0,0,1,15,3h6ZM9.94,13.05H7.05l.25-.66A3.26,3.26,0,0,0,4.25,8a1,1,0,0,0-.92.59L1.09,13.65a1,1,0,0,0-.09.4v8a1,1,0,0,0,1,1H9a2.44,2.44,0,0,0,2.41-2l.92-5a2.44,2.44,0,0,0-.53-2A2.47,2.47,0,0,0,9.94,13.05Zm-.48,7.58A.44.44,0,0,1,9,21H3V14.27l1.83-4.13a1.33,1.33,0,0,1,.45.4,1.23,1.23,0,0,1,.14,1.16l-.38,1a1.68,1.68,0,0,0,.2,1.58,1.7,1.7,0,0,0,1.41.74H9.94a.46.46,0,0,1,.35.16.5.5,0,0,1,.09.37Z' + }) + ) +} + +export default UilFeedback \ No newline at end of file diff --git a/src/icons/uil-fidget-spinner.ts b/src/icons/uil-fidget-spinner.ts new file mode 100644 index 00000000..dabaca37 --- /dev/null +++ b/src/icons/uil-fidget-spinner.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFidgetSpinner = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12 7a1 1 0 1 0 1 1 1 1 0 0 0-1-1Zm-5.696 9.134a1 1 0 1 0 1.366.366 1 1 0 0 0-1.366-.366Zm11.392 0a1 1 0 1 0 .366 1.366 1 1 0 0 0-.366-1.366Zm2.914-2.791a4.918 4.918 0 0 0-4.526-1.197l-.419-.763a4.989 4.989 0 0 0-2.503-8.251 5.035 5.035 0 0 0-4.279.958A4.978 4.978 0 0 0 7 8a4.929 4.929 0 0 0 1.352 3.392l-.419.75a4.989 4.989 0 0 0-5.926 6.286 5.03 5.03 0 0 0 2.97 3.226 4.97 4.97 0 0 0 6.588-3.19l.867.014a4.981 4.981 0 0 0 4.76 3.524 5.017 5.017 0 0 0 4.8-3.573 4.95 4.95 0 0 0-1.382-5.086Zm-.528 4.495a3.006 3.006 0 0 1-4.386 1.76 2.965 2.965 0 0 1-1.352-1.705 1.994 1.994 0 0 0-1.91-1.43h-.869a1.995 1.995 0 0 0-1.91 1.43 2.98 2.98 0 0 1-3.948 1.899 2.993 2.993 0 0 1 1.767-5.704 1.967 1.967 0 0 0 2.173-.942l.436-.754a1.995 1.995 0 0 0-.281-2.369 2.98 2.98 0 0 1 .329-4.37 2.993 2.993 0 0 1 4.069 4.369 2 2 0 0 0-.283 2.37l.435.753a1.974 1.974 0 0 0 2.174.943 2.988 2.988 0 0 1 3.556 3.75Z' + }) + ) +} + +export default UilFidgetSpinner \ No newline at end of file diff --git a/src/icons/uil-file-alt.ts b/src/icons/uil-file-alt.ts new file mode 100644 index 00000000..02d3d86d --- /dev/null +++ b/src/icons/uil-file-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm0,2a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-3-3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileAlt \ No newline at end of file diff --git a/src/icons/uil-file-blank.ts b/src/icons/uil-file-blank.ts new file mode 100644 index 00000000..812a2a84 --- /dev/null +++ b/src/icons/uil-file-blank.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileBlank = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileBlank \ No newline at end of file diff --git a/src/icons/uil-file-block-alt.ts b/src/icons/uil-file-block-alt.ts new file mode 100644 index 00000000..c0a83ca6 --- /dev/null +++ b/src/icons/uil-file-block-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileBlockAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,8a1,1,0,0,0,0,2H8A1,1,0,0,0,8,8Zm5,12H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.06,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1Zm8.83,9.76a4.1,4.1,0,0,0-5.66,0,4,4,0,1,0,5.66,0ZM16,18a2,2,0,0,1,2-2,2.09,2.09,0,0,1,.51.07l-2.44,2.44A2.09,2.09,0,0,1,16,18Zm3.41,1.41a2,2,0,0,1-1.91.5l2.43-2.42A2.09,2.09,0,0,1,20,18,2,2,0,0,1,19.41,19.41ZM11,18a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm2-6H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileBlockAlt \ No newline at end of file diff --git a/src/icons/uil-file-bookmark-alt.ts b/src/icons/uil-file-bookmark-alt.ts new file mode 100644 index 00000000..93cda325 --- /dev/null +++ b/src/icons/uil-file-bookmark-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileBookmarkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.5,10h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm4,6h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm0-4h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6.92-2.62a1,1,0,0,0-.21-1.09l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2h-6a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h4A1,1,0,0,0,18.42,9.38ZM13.5,8a1,1,0,0,1-1-1V5.41L15.09,8Zm7,4h-5a1,1,0,0,0-1,1v8a1,1,0,0,0,.53.88,1,1,0,0,0,1-.05L18,20.53,20,21.83A1,1,0,0,0,21.5,21V13A1,1,0,0,0,20.5,12Zm-1,7.12-.94-.63a1,1,0,0,0-1.12,0l-.94.63V14h3Z' + }) + ) +} + +export default UilFileBookmarkAlt \ No newline at end of file diff --git a/src/icons/uil-file-check-alt.ts b/src/icons/uil-file-check-alt.ts new file mode 100644 index 00000000..65a7cc2b --- /dev/null +++ b/src/icons/uil-file-check-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileCheckAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.5,20h-6a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3v5a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2Zm1-14.59L15.09,8H13.5a1,1,0,0,1-1-1ZM7.5,14h6a1,1,0,0,0,0-2h-6a1,1,0,0,0,0,2Zm4,2h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-4-6h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm13.71,6.29a1,1,0,0,0-1.42,0l-3.29,3.3-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4A1,1,0,0,0,21.21,16.29Z' + }) + ) +} + +export default UilFileCheckAlt \ No newline at end of file diff --git a/src/icons/uil-file-check.ts b/src/icons/uil-file-check.ts new file mode 100644 index 00000000..92c223e6 --- /dev/null +++ b/src/icons/uil-file-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-3.71-6.71L11,15.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilFileCheck \ No newline at end of file diff --git a/src/icons/uil-file-contract-dollar.ts b/src/icons/uil-file-contract-dollar.ts new file mode 100644 index 00000000..e39a5110 --- /dev/null +++ b/src/icons/uil-file-contract-dollar.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileContractDollar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29,20,18.56c0-.11,0-.21,0-.31a2.75,2.75,0,0,0-2.75-2.75h-.34l-1.44-1.44a.67.67,0,0,1,.28-.06H19a1,1,0,0,0,0-2H17.5V11a1,1,0,0,0-2,0v1a2.74,2.74,0,0,0-1.47.59l-1.32-1.33a1,1,0,0,0-1.42,1.42L13,14.44c0,.11,0,.21,0,.31a2.75,2.75,0,0,0,2.75,2.75h.34l1.44,1.44a.67.67,0,0,1-.28.06H14a1,1,0,0,0,0,2h1.5v1a1,1,0,0,0,2,0V21A2.74,2.74,0,0,0,19,20.38l1.32,1.33a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM10,19H5a1,1,0,0,1-1-1V4A1,1,0,0,1,5,3h6V7a1,1,0,0,0,1,1h5a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-5-5h0a1.07,1.07,0,0,0-.28-.19l-.09,0A1.31,1.31,0,0,0,12.06,1H5A3,3,0,0,0,2,4V18a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM13,4.41,14.59,6H13Z' + }) + ) +} + +export default UilFileContractDollar \ No newline at end of file diff --git a/src/icons/uil-file-contract.ts b/src/icons/uil-file-contract.ts new file mode 100644 index 00000000..b068923b --- /dev/null +++ b/src/icons/uil-file-contract.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileContract = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.2 15c-.2.1-.4.1-.6.2-.1-.2-.2-.4-.3-.5-.8-.7-2-.8-3-.2C8.5 15 8 16 8 17c0 .5.5 1 1 .9.5 0 1-.5 1-1 0-.3.1-.5.3-.7.1 0 .2-.1.3-.1-.3.6-.1 1.3.5 1.7.2.1.3.1.5.1.4 0 .8-.2 1.1-.5.1-.1.3-.2.5-.3.1.4.5.8 1 .8h.8c.6 0 1-.4 1-1 0-.5-.4-.9-.9-1-.1-.2-.1-.3-.3-.5-.3-.3-1-.5-1.6-.4zM20 8.9c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.2-.2-.3l-6-6c-.1-.1-.2-.1-.3-.2h-.1c-.1 0-.2 0-.3-.1H7C5.3 2 4 3.3 4 5v14c0 1.7 1.3 3 3 3h10c1.7 0 3-1.3 3-3V8.9c0 .1 0 .1 0 0zm-6-3.5L16.6 8H15c-.6 0-1-.4-1-1V5.4zM18 19c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h5v3c0 1.7 1.3 3 3 3h3v9zm-9-9h1c.6 0 1-.4 1-1s-.4-1-1-1H9c-.6 0-1 .4-1 1s.4 1 1 1z' + }) + ) +} + +export default UilFileContract \ No newline at end of file diff --git a/src/icons/uil-file-copy-alt.ts b/src/icons/uil-file-copy-alt.ts new file mode 100644 index 00000000..fd0cdead --- /dev/null +++ b/src/icons/uil-file-copy-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileCopyAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,20H8a3,3,0,0,1-3-3V7A1,1,0,0,0,3,7V17a5,5,0,0,0,5,5h8a1,1,0,0,0,0-2Zm-6-7a1,1,0,0,0,1,1h5a1,1,0,0,0,0-2H11A1,1,0,0,0,10,13ZM21,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,14.05,2H10A3,3,0,0,0,7,5V15a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V9S21,9,21,8.94ZM15,5.41,17.59,8H16a1,1,0,0,1-1-1ZM19,15a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h3V7a3,3,0,0,0,.18,1H11a1,1,0,0,0,0,2h8Z' + }) + ) +} + +export default UilFileCopyAlt \ No newline at end of file diff --git a/src/icons/uil-file-download-alt.ts b/src/icons/uil-file-download-alt.ts new file mode 100644 index 00000000..577e9c8f --- /dev/null +++ b/src/icons/uil-file-download-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileDownloadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,12H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM14,12H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm6.71,6.29a1,1,0,0,0-1.42,0l-.29.3V16a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2A1,1,0,0,0,20.71,18.29ZM12,18a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFileDownloadAlt \ No newline at end of file diff --git a/src/icons/uil-file-download.ts b/src/icons/uil-file-download.ts new file mode 100644 index 00000000..9200e725 --- /dev/null +++ b/src/icons/uil-file-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-4.71-4.71-.29.3V12a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilFileDownload \ No newline at end of file diff --git a/src/icons/uil-file-edit-alt.ts b/src/icons/uil-file-edit-alt.ts new file mode 100644 index 00000000..5fb4f61a --- /dev/null +++ b/src/icons/uil-file-edit-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileEditAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.71,16.71l-2.42-2.42a1,1,0,0,0-1.42,0l-3.58,3.58a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58A1,1,0,0,0,20.71,16.71ZM16,20H15V19l2.58-2.58,1,1Zm-6,0H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h4a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,14h6a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0-4H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm2,6H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileEditAlt \ No newline at end of file diff --git a/src/icons/uil-file-exclamation-alt.ts b/src/icons/uil-file-exclamation-alt.ts new file mode 100644 index 00000000..aa5f9eb9 --- /dev/null +++ b/src/icons/uil-file-exclamation-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileExclamationAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,2H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0,4H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4.71,4.29a1.58,1.58,0,0,0-.15-.12.76.76,0,0,0-.18-.09L19.2,20a1,1,0,0,0-.58.06.9.9,0,0,0-.54.54A.84.84,0,0,0,18,21a1,1,0,1,0,1.92-.38A1.15,1.15,0,0,0,19.71,20.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9S20,9,20,8.94ZM15,8a1,1,0,0,1-1-1V5.41L16.59,8Zm4,7a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V16A1,1,0,0,0,19,15Z' + }) + ) +} + +export default UilFileExclamationAlt \ No newline at end of file diff --git a/src/icons/uil-file-exclamation.ts b/src/icons/uil-file-exclamation.ts new file mode 100644 index 00000000..109bb935 --- /dev/null +++ b/src/icons/uil-file-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.92,16.62a.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.5,1.5,0,0,0,0,.2.84.84,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,12,18a.84.84,0,0,0,.38-.08.9.9,0,0,0,.54-.54A.84.84,0,0,0,13,17a1.5,1.5,0,0,0,0-.2A.64.64,0,0,0,12.92,16.62ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6-8a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V12A1,1,0,0,0,12,11Z' + }) + ) +} + +export default UilFileExclamation \ No newline at end of file diff --git a/src/icons/uil-file-export.ts b/src/icons/uil-file-export.ts new file mode 100644 index 00000000..ffe6b8b2 --- /dev/null +++ b/src/icons/uil-file-export.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileExport = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.92 15.62a1.15 1.15 0 0 0-.21-.33l-3-3a1 1 0 0 0-1.42 1.42l1.3 1.29H12a1 1 0 0 0 0 2h5.59l-1.3 1.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l3-3a.93.93 0 0 0 .21-.33 1 1 0 0 0 0-.76ZM14 20H6a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5v3a3 3 0 0 0 3 3h4a1 1 0 0 0 .92-.62 1 1 0 0 0-.21-1.09l-6-6a1.07 1.07 0 0 0-.28-.19h-.09l-.28-.1H6a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h8a1 1 0 0 0 0-2ZM13 5.41 15.59 8H14a1 1 0 0 1-1-1Z' + }) + ) +} + +export default UilFileExport \ No newline at end of file diff --git a/src/icons/uil-file-graph.ts b/src/icons/uil-file-graph.ts new file mode 100644 index 00000000..fb13f569 --- /dev/null +++ b/src/icons/uil-file-graph.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileGraph = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm5.21045,2.38623-1.67334,2.15186-.86816-.78125a.9997.9997,0,0,0-1.44971.11865l-2,2.5a.9998.9998,0,1,0,1.56152,1.249l1.33789-1.67236.87891.791a.99989.99989,0,0,0,1.45849-.12939l2.3335-3a1.00005,1.00005,0,0,0-1.5791-1.22754Zm5.7771-3.44794a1.0088,1.0088,0,0,0-.27936-.64373l-.00146-.0019L13.70734,2.29327l-.00183-.00146a.99022.99022,0,0,0-.28608-.19281c-.0299-.014-.061-.02191-.09246-.033a.98253.98253,0,0,0-.26667-.05383C13.03925,2.01086,13.02136,2,13,2H7A3.00328,3.00328,0,0,0,4,5V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V9C20,8.97809,19.989,8.95984,19.98755,8.93829ZM14,5.41406,16.58594,8H15a1.0013,1.0013,0,0,1-1-1ZM18,19a1.0013,1.0013,0,0,1-1,1H7a1.0013,1.0013,0,0,1-1-1V5A1.0013,1.0013,0,0,1,7,4h5V7a3.00328,3.00328,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileGraph \ No newline at end of file diff --git a/src/icons/uil-file-heart.ts b/src/icons/uil-file-heart.ts new file mode 100644 index 00000000..f4320417 --- /dev/null +++ b/src/icons/uil-file-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6-7.66A2.92,2.92,0,0,0,8.57,16l2.72,2.72a1,1,0,0,0,1.42,0L15.43,16A2.92,2.92,0,0,0,12,11.34Zm2,1.93a.92.92,0,0,1,0,1.3l-2,2-2-2a.92.92,0,0,1,0-1.3.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0A.92.92,0,0,1,14,13.27Z' + }) + ) +} + +export default UilFileHeart \ No newline at end of file diff --git a/src/icons/uil-file-import.ts b/src/icons/uil-file-import.ts new file mode 100644 index 00000000..1c7e35f0 --- /dev/null +++ b/src/icons/uil-file-import.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileImport = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11 20H6a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h5v3a3 3 0 0 0 3 3h3v2a1 1 0 0 0 2 0V8.94a1.31 1.31 0 0 0-.06-.27v-.09a1.32 1.32 0 0 0-.19-.29l-6-6a1.32 1.32 0 0 0-.29-.19.32.32 0 0 0-.09 0l-.31-.1H6a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h5a1 1 0 0 0 0-2Zm2-14.59L15.59 8H14a1 1 0 0 1-1-1ZM19 15h-5.59l1.3-1.29a1 1 0 0 0-1.42-1.42l-3 3a1.15 1.15 0 0 0-.21.33 1 1 0 0 0 0 .76.93.93 0 0 0 .21.33l3 3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42L13.41 17H19a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilFileImport \ No newline at end of file diff --git a/src/icons/uil-file-info-alt.ts b/src/icons/uil-file-info-alt.ts new file mode 100644 index 00000000..4f0748cd --- /dev/null +++ b/src/icons/uil-file-info-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileInfoAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,16H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,10h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,2H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4.71,3.29a1,1,0,0,0-.33-.21.92.92,0,0,0-.76,0,1,1,0,0,0-.33.21,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,.21,1.09A1,1,0,0,0,19,17a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1.15,1.15,0,0,0,19.71,15.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9S20,9,20,8.94ZM15,8a1,1,0,0,1-1-1V5.41L16.59,8Zm4,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,19,18Z' + }) + ) +} + +export default UilFileInfoAlt \ No newline at end of file diff --git a/src/icons/uil-file-landscape-alt.ts b/src/icons/uil-file-landscape-alt.ts new file mode 100644 index 00000000..0cfb4f0a --- /dev/null +++ b/src/icons/uil-file-landscape-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileLandscapeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,15.06,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V11S22,11,22,10.94ZM16,7.41,18.59,10H17a1,1,0,0,1-1-1ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6h9V9a3,3,0,0,0,3,3h3ZM7,12h4a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm0,2a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileLandscapeAlt \ No newline at end of file diff --git a/src/icons/uil-file-landscape.ts b/src/icons/uil-file-landscape.ts new file mode 100644 index 00000000..e25a6120 --- /dev/null +++ b/src/icons/uil-file-landscape.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileLandscape = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,15.06,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V11S22,11,22,10.94ZM16,7.41,18.59,10H17a1,1,0,0,1-1-1ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6h9V9a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileLandscape \ No newline at end of file diff --git a/src/icons/uil-file-lanscape-slash.ts b/src/icons/uil-file-lanscape-slash.ts new file mode 100644 index 00000000..bd6ce70c --- /dev/null +++ b/src/icons/uil-file-lanscape-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileLanscapeSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,10.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,15.05,4H10.66a1,1,0,0,0,0,2H14V9a3,3,0,0,0,3,3h3v3.34a1,1,0,1,0,2,0V11S22,11,22,10.94ZM17,10a1,1,0,0,1-1-1V7.41L18.59,10ZM3.71,2.29A1,1,0,0,0,2.29,3.71l.91.9A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H18.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM5,18a1,1,0,0,1-1-1V7a1,1,0,0,1,.66-.93L16.59,18Z' + }) + ) +} + +export default UilFileLanscapeSlash \ No newline at end of file diff --git a/src/icons/uil-file-lock-alt.ts b/src/icons/uil-file-lock-alt.ts new file mode 100644 index 00000000..70e7798b --- /dev/null +++ b/src/icons/uil-file-lock-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileLockAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,20H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h4a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.06,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1ZM13,13a1,1,0,0,0-1-1H7a1,1,0,0,0,0,2h5A1,1,0,0,0,13,13ZM7,10H8A1,1,0,0,0,8,8H7a1,1,0,0,0,0,2Zm0,6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm13-.82V15a3,3,0,0,0-6,0v.18A3,3,0,0,0,12,18v1a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V18A3,3,0,0,0,20,15.18ZM17,14a1,1,0,0,1,1,1H16A1,1,0,0,1,17,14Zm3,5a1,1,0,0,1-1,1H15a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFileLockAlt \ No newline at end of file diff --git a/src/icons/uil-file-medical-alt.ts b/src/icons/uil-file-medical-alt.ts new file mode 100644 index 00000000..7872ff7a --- /dev/null +++ b/src/icons/uil-file-medical-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileMedicalAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,18a1,1,0,0,0-1,1,1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27.32.32,0,0,0,0-.09,1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.14,1.14,0,0,0,12.07,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3A1,1,0,0,0,18,18ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,14H17.5a1,1,0,0,0-.71.29l-1.24,1.25-2.8-3.2a1,1,0,0,0-1.46-.05L9.59,14H8a1,1,0,0,0,0,2h2a1,1,0,0,0,.71-.29L12,14.46l2.8,3.2a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29L17.91,16H20a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileMedicalAlt \ No newline at end of file diff --git a/src/icons/uil-file-medical.ts b/src/icons/uil-file-medical.ts new file mode 100644 index 00000000..1d91358e --- /dev/null +++ b/src/icons/uil-file-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,14H13V13a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V16h1a1,1,0,0,0,0-2Zm6-5.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileMedical \ No newline at end of file diff --git a/src/icons/uil-file-minus-alt.ts b/src/icons/uil-file-minus-alt.ts new file mode 100644 index 00000000..e421c940 --- /dev/null +++ b/src/icons/uil-file-minus-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileMinusAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,12H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v5a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,18H16a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-7-2H8a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1-4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileMinusAlt \ No newline at end of file diff --git a/src/icons/uil-file-minus.ts b/src/icons/uil-file-minus.ts new file mode 100644 index 00000000..832ab680 --- /dev/null +++ b/src/icons/uil-file-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,14H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-5.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileMinus \ No newline at end of file diff --git a/src/icons/uil-file-network.ts b/src/icons/uil-file-network.ts new file mode 100644 index 00000000..04ebaad2 --- /dev/null +++ b/src/icons/uil-file-network.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileNetwork = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,19H14.82A3,3,0,0,0,13,17.18V15h3a3,3,0,0,0,3-3V8s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,12.05,1H8A3,3,0,0,0,5,4v8a3,3,0,0,0,3,3h3v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM13,4.41,15.59,7H14a1,1,0,0,1-1-1ZM8,13a1,1,0,0,1-1-1V4A1,1,0,0,1,8,3h3V6a3,3,0,0,0,3,3h3v3a1,1,0,0,1-1,1Zm4,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21Z' + }) + ) +} + +export default UilFileNetwork \ No newline at end of file diff --git a/src/icons/uil-file-plus-alt.ts b/src/icons/uil-file-plus-alt.ts new file mode 100644 index 00000000..649d3da6 --- /dev/null +++ b/src/icons/uil-file-plus-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilePlusAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,18H19V17a1,1,0,0,0-2,0v1H16a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2Zm-7,2H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm5,8H8a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1-4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFilePlusAlt \ No newline at end of file diff --git a/src/icons/uil-file-plus.ts b/src/icons/uil-file-plus.ts new file mode 100644 index 00000000..ba5ee0c3 --- /dev/null +++ b/src/icons/uil-file-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilePlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-4-5H13V13a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V16h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFilePlus \ No newline at end of file diff --git a/src/icons/uil-file-question-alt.ts b/src/icons/uil-file-question-alt.ts new file mode 100644 index 00000000..9276cf0c --- /dev/null +++ b/src/icons/uil-file-question-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileQuestionAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.07,12h-5a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm1,8h-8a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9a.14.14,0,0,0,0-.06A.86.86,0,0,0,19,8.67l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1,1,0,0,0-.29-.19s-.05,0-.08,0A.88.88,0,0,0,12.12,2h-6a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h8a1,1,0,0,0,0-2Zm-1-14.59L15.65,8H14.07a1,1,0,0,1-1-1Zm5.57,14.88a1.58,1.58,0,0,0-.15-.12,1.08,1.08,0,0,0-.36-.15,1,1,0,0,0-.9.27,1,1,0,0,0,0,1.42,1,1,0,0,0,.7.29,1,1,0,0,0,.93-1.38A1.19,1.19,0,0,0,18.64,20.29ZM13.07,16h-5a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2Zm4.86-3a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.74,1,1,1,0,1,1,.86,1.5,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM8.07,10h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFileQuestionAlt \ No newline at end of file diff --git a/src/icons/uil-file-question.ts b/src/icons/uil-file-question.ts new file mode 100644 index 00000000..27a6f407 --- /dev/null +++ b/src/icons/uil-file-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.57,17.29a1,1,0,0,0-1.41,0,1.06,1.06,0,0,0-.22.33,1.07,1.07,0,0,0,0,.76,1.19,1.19,0,0,0,.22.33,1,1,0,0,0,.32.21,1,1,0,0,0,.39.08,1,1,0,0,0,.92-1.38A.91.91,0,0,0,12.57,17.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,13.05,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Zm-6.13-9a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.73,1,1,1,0,0,1,.87-.5,1,1,0,0,1,0,2,1,1,0,1,0,0,2,3,3,0,0,0,0-6Z' + }) + ) +} + +export default UilFileQuestion \ No newline at end of file diff --git a/src/icons/uil-file-redo-alt.ts b/src/icons/uil-file-redo-alt.ts new file mode 100644 index 00000000..1954dcc2 --- /dev/null +++ b/src/icons/uil-file-redo-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileRedoAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,13a1,1,0,0,0-1-1H8a1,1,0,0,0,0,2h5A1,1,0,0,0,14,13Zm-3,7H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.18,1.18,0,0,0-.06-.27l0-.09a.92.92,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.86.86,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM20,14a1,1,0,0,0-.91.6A4.07,4.07,0,0,0,17,14a4,4,0,1,0,2.64,7,1,1,0,0,0-1.32-1.51A2,2,0,0,1,17,20a2,2,0,1,1,1-3.75h-.22a1,1,0,0,0,0,2H20a1,1,0,0,0,1-1V15A1,1,0,0,0,20,14ZM8,10H9A1,1,0,0,0,9,8H8a1,1,0,0,0,0,2Zm0,6a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileRedoAlt \ No newline at end of file diff --git a/src/icons/uil-file-search-alt.ts b/src/icons/uil-file-search-alt.ts new file mode 100644 index 00000000..7cfeab31 --- /dev/null +++ b/src/icons/uil-file-search-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileSearchAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,20H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4h5V7a3,3,0,0,0,3,3h3v1a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,11.05,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM12,5.41,14.59,8H13a1,1,0,0,1-1-1ZM7,8a1,1,0,0,0,0,2H8A1,1,0,0,0,8,8ZM21.71,20.29l-1.17-1.16A3.44,3.44,0,0,0,20,15h0A3.49,3.49,0,0,0,14,17.49a3.46,3.46,0,0,0,5.13,3.05l1.16,1.17a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Zm-3.17-1.75a1.54,1.54,0,0,1-2.11,0A1.5,1.5,0,0,1,16,17.49a1.46,1.46,0,0,1,.44-1.06,1.48,1.48,0,0,1,1-.43A1.47,1.47,0,0,1,19,17.49,1.5,1.5,0,0,1,18.54,18.54ZM13,12H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm-2,6a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFileSearchAlt \ No newline at end of file diff --git a/src/icons/uil-file-share-alt.ts b/src/icons/uil-file-share-alt.ts new file mode 100644 index 00000000..a19bc663 --- /dev/null +++ b/src/icons/uil-file-share-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileShareAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.5,12.5a1,1,0,0,0-1-1h-5a1,1,0,0,0,0,2h5A1,1,0,0,0,13.5,12.5Zm5,5a2,2,0,0,0-1.18.39l-1.75-.8,1.91-.88a2,2,0,0,0,1,.29,2,2,0,1,0-2-2l-1.89.87A2,2,0,1,0,13.5,19a1.88,1.88,0,0,0,.92-.24l2.1,1a2,2,0,1,0,2-2.23Zm-8,2h-5a1,1,0,0,1-1-1V4.5a1,1,0,0,1,1-1h5v3a3,3,0,0,0,3,3h3a1,1,0,0,0,2,0v-1s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0,1.1,1.1,0,0,0-.26-.06H5.5a3,3,0,0,0-3,3v14a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2Zm2-14.59L15.09,7.5H13.5a1,1,0,0,1-1-1ZM7.5,15.5a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm0-6h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFileShareAlt \ No newline at end of file diff --git a/src/icons/uil-file-shield-alt.ts b/src/icons/uil-file-shield-alt.ts new file mode 100644 index 00000000..2e96c723 --- /dev/null +++ b/src/icons/uil-file-shield-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileShieldAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,20h-5a1,1,0,0,1-1-1V5a1,1,0,0,1,1-1h5V7a3,3,0,0,0,3,3h3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0L11.56,2H5.5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3h5a1,1,0,0,0,0-2Zm2-14.59L15.09,8H13.5a1,1,0,0,1-1-1ZM7.5,8a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm13.63,5.86a1,1,0,0,0-.84-.2,2.77,2.77,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.78,2.78,0,0,1-2.2.47,1,1,0,0,0-1.21,1V17a4.6,4.6,0,0,0,1.84,3.69L16.9,21.8a1,1,0,0,0,1.2,0l1.56-1.16A4.6,4.6,0,0,0,21.5,17V14.63A1,1,0,0,0,21.13,13.86ZM19.5,17a2.62,2.62,0,0,1-1,2.09l-1,.72-1-.72a2.62,2.62,0,0,1-1-2.09V15.72a4.68,4.68,0,0,0,2-.55,4.68,4.68,0,0,0,2,.55Zm-9-.95h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm1-4h-4a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileShieldAlt \ No newline at end of file diff --git a/src/icons/uil-file-slash.ts b/src/icons/uil-file-slash.ts new file mode 100644 index 00000000..9f05cc9e --- /dev/null +++ b/src/icons/uil-file-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L4,5.41V19a3,3,0,0,0,3,3H17a3,3,0,0,0,2.39-1.2l.9.91a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM17,20H7a1,1,0,0,1-1-1V7.41L17.93,19.34A1,1,0,0,1,17,20ZM8.66,4H12V7a3,3,0,0,0,3,3h3v3.34a1,1,0,1,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L13.06,2H8.66a1,1,0,0,0,0,2ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1Z' + }) + ) +} + +export default UilFileSlash \ No newline at end of file diff --git a/src/icons/uil-file-times-alt.ts b/src/icons/uil-file-times-alt.ts new file mode 100644 index 00000000..7385740d --- /dev/null +++ b/src/icons/uil-file-times-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileTimesAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,12H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm5.41,7,1.3-1.29a1,1,0,0,0-1.42-1.42L18,17.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L16.59,19l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L18,20.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,20H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v3a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.29.29,0,0,0-.1,0A1.1,1.1,0,0,0,12.06,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm4,8H8a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilFileTimesAlt \ No newline at end of file diff --git a/src/icons/uil-file-times.ts b/src/icons/uil-file-times.ts new file mode 100644 index 00000000..354f5f23 --- /dev/null +++ b/src/icons/uil-file-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.71,12.29a1,1,0,0,0-1.42,0L12,13.59l-1.29-1.3a1,1,0,0,0-1.42,1.42L10.59,15l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,16.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,15l1.3-1.29A1,1,0,0,0,14.71,12.29ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileTimes \ No newline at end of file diff --git a/src/icons/uil-file-upload-alt.ts b/src/icons/uil-file-upload-alt.ts new file mode 100644 index 00000000..313c5192 --- /dev/null +++ b/src/icons/uil-file-upload-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileUploadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,20H6a1,1,0,0,1-1-1V5A1,1,0,0,1,6,4h5V7a3,3,0,0,0,3,3h3v2a1,1,0,0,0,2,0V9s0,0,0-.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19.32.32,0,0,0-.09,0A.88.88,0,0,0,12.05,2H6A3,3,0,0,0,3,5V19a3,3,0,0,0,3,3h7a1,1,0,0,0,0-2ZM13,5.41,15.59,8H14a1,1,0,0,1-1-1ZM8,8a1,1,0,0,0,0,2H9A1,1,0,0,0,9,8Zm6,4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm6.71,5.29-2-2a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V21a1,1,0,0,0,2,0V18.41l.29.3a1,1,0,0,0,1.42,0A1,1,0,0,0,20.71,17.29ZM12,18a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFileUploadAlt \ No newline at end of file diff --git a/src/icons/uil-file-upload.ts b/src/icons/uil-file-upload.ts new file mode 100644 index 00000000..16d9eb81 --- /dev/null +++ b/src/icons/uil-file-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFileUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,11.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V17a1,1,0,0,0,2,0V14.41l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.1,0A1.1,1.1,0,0,0,13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H15a1,1,0,0,1-1-1ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V7a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFileUpload \ No newline at end of file diff --git a/src/icons/uil-file.ts b/src/icons/uil-file.ts new file mode 100644 index 00000000..9f815730 --- /dev/null +++ b/src/icons/uil-file.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFile = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0L13.06,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V9S20,9,20,8.94ZM14,5.41,16.59,8H14ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4h5V9a1,1,0,0,0,1,1h5Z' + }) + ) +} + +export default UilFile \ No newline at end of file diff --git a/src/icons/uil-files-landscapes-alt.ts b/src/icons/uil-files-landscapes-alt.ts new file mode 100644 index 00000000..73b6afc1 --- /dev/null +++ b/src/icons/uil-files-landscapes-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilesLandscapesAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,19H6a3,3,0,0,1-3-3V8A1,1,0,0,0,1,8v8a5,5,0,0,0,5,5H18a1,1,0,0,0,0-2Zm-4-8H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm9-1.06a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,16.05,3H8A3,3,0,0,0,5,6v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM21,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3ZM10,9h2a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilFilesLandscapesAlt \ No newline at end of file diff --git a/src/icons/uil-files-landscapes.ts b/src/icons/uil-files-landscapes.ts new file mode 100644 index 00000000..2ec220e0 --- /dev/null +++ b/src/icons/uil-files-landscapes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilesLandscapes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M23,9.94a1.31,1.31,0,0,0-.06-.27l0-.09a1.07,1.07,0,0,0-.19-.28h0l-6-6h0a1.07,1.07,0,0,0-.28-.19l-.09,0A.88.88,0,0,0,16.05,3H8A3,3,0,0,0,5,6V7H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H16a3,3,0,0,0,3-3V17h1a3,3,0,0,0,3-3V10S23,10,23,9.94ZM17,6.41,19.59,9H18a1,1,0,0,1-1-1ZM17,18a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V10A1,1,0,0,1,4,9H5v5a3,3,0,0,0,3,3h9Zm4-4a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V6A1,1,0,0,1,8,5h7V8a3,3,0,0,0,3,3h3Z' + }) + ) +} + +export default UilFilesLandscapes \ No newline at end of file diff --git a/src/icons/uil-film.ts b/src/icons/uil-film.ts new file mode 100644 index 00000000..5630067e --- /dev/null +++ b/src/icons/uil-film.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilm = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2a1,1,0,0,0-1,1V5H18V3a1,1,0,0,0-2,0V4H8V3A1,1,0,0,0,6,3V5H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,2,0V19H6v2a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2ZM6,17H4V15H6Zm0-4H4V11H6ZM6,9H4V7H6Zm10,9H8V13h8Zm0-7H8V6h8Zm4,6H18V15h2Zm0-4H18V11h2Zm0-4H18V7h2Z' + }) + ) +} + +export default UilFilm \ No newline at end of file diff --git a/src/icons/uil-filter-slash.ts b/src/icons/uil-filter-slash.ts new file mode 100644 index 00000000..dc783581 --- /dev/null +++ b/src/icons/uil-filter-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilterSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.22,6H12.66a1,1,0,0,0,0,2h6.56a.78.78,0,0,1,.78.78v.78H16.22a1,1,0,1,0,0,2h2.37l-.7.69a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l1.88-1.88a2.51,2.51,0,0,0,.54-.8h0l0-.1A2.59,2.59,0,0,0,22,9.82v-1A2.79,2.79,0,0,0,19.22,6ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.14,6.55A2.73,2.73,0,0,0,4,8.78v1a2.65,2.65,0,0,0,.24,1.1l0,.06a2.61,2.61,0,0,0,.54.81l5.41,5.4V21a1,1,0,0,0,.47.85,1,1,0,0,0,.53.15,1,1,0,0,0,.45-.11l3.56-1.78a1,1,0,0,0,.55-.89v-2h0l4.51,4.52a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,8.78a.76.76,0,0,1,.5-.72L6.59,8,8.15,9.56H6Zm8.07,7.29a1,1,0,0,0-.29.71V18.6l-1.56.78v-2.6a1,1,0,0,0-.29-.71L7.41,11.56h2.74l4.22,4.22Z' + }) + ) +} + +export default UilFilterSlash \ No newline at end of file diff --git a/src/icons/uil-filter.ts b/src/icons/uil-filter.ts new file mode 100644 index 00000000..6cbf788f --- /dev/null +++ b/src/icons/uil-filter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFilter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V6.17a3,3,0,0,0,.25,1.2l0,.06a2.81,2.81,0,0,0,.59.86L9,14.41V21a1,1,0,0,0,.47.85A1,1,0,0,0,10,22a1,1,0,0,0,.45-.11l4-2A1,1,0,0,0,15,19V14.41l6.12-6.12a2.81,2.81,0,0,0,.59-.86l0-.06A3,3,0,0,0,22,6.17V5A3,3,0,0,0,19,2ZM13.29,13.29A1,1,0,0,0,13,14v4.38l-2,1V14a1,1,0,0,0-.29-.71L5.41,8H18.59ZM20,6H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFilter \ No newline at end of file diff --git a/src/icons/uil-fire.ts b/src/icons/uil-fire.ts new file mode 100644 index 00000000..30b3b41f --- /dev/null +++ b/src/icons/uil-fire.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFire = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm8.468 8.395-.002.001-.003.002Zm9.954-.187a1.237 1.237 0 0 0-.23-.175 1 1 0 0 0-1.4.411 5.782 5.782 0 0 1-1.398 1.778 8.664 8.664 0 0 0 .134-1.51 8.714 8.714 0 0 0-4.4-7.582 1 1 0 0 0-1.492.806 7.017 7.017 0 0 1-2.471 4.942l-.23.187a8.513 8.513 0 0 0-1.988 1.863 8.983 8.983 0 0 0 3.656 13.908 1 1 0 0 0 1.377-.926 1.05 1.05 0 0 0-.05-.312 6.977 6.977 0 0 1-.19-2.581 9.004 9.004 0 0 0 4.313 4.016.997.997 0 0 0 .715.038 8.995 8.995 0 0 0 3.654-14.863Zm-3.905 12.831a6.964 6.964 0 0 1-3.577-4.402 8.908 8.908 0 0 1-.18-.964 1 1 0 0 0-.799-.845.982.982 0 0 0-.191-.018 1 1 0 0 0-.867.5 8.959 8.959 0 0 0-1.205 4.718 6.985 6.985 0 0 1-1.176-9.868 6.555 6.555 0 0 1 1.562-1.458.745.745 0 0 0 .075-.055s.296-.245.306-.25a8.968 8.968 0 0 0 2.9-4.633 6.736 6.736 0 0 1 1.385 8.088 1 1 0 0 0 1.184 1.418 7.856 7.856 0 0 0 3.862-2.688 7 7 0 0 1-3.279 10.457Z' + }) + ) +} + +export default UilFire \ No newline at end of file diff --git a/src/icons/uil-flask-potion.ts b/src/icons/uil-flask-potion.ts new file mode 100644 index 00000000..58faba4b --- /dev/null +++ b/src/icons/uil-flask-potion.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlaskPotion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.93,11.67a.42.42,0,0,0,0-.1A7.4,7.4,0,0,0,15,7.62V4h1a1,1,0,0,0,0-2H8A1,1,0,0,0,8,4H9V7.62a7.4,7.4,0,0,0-3.89,4,.42.42,0,0,0,0,.1,7.5,7.5,0,1,0,13.86,0ZM10.31,9.26A1,1,0,0,0,11,8.31V4h2V8.31a1,1,0,0,0,.69.95A5.43,5.43,0,0,1,16.23,11H7.77A5.43,5.43,0,0,1,10.31,9.26ZM12,20a5.51,5.51,0,0,1-5.5-5.5A5.34,5.34,0,0,1,6.72,13H17.28a5.34,5.34,0,0,1,.22,1.5A5.51,5.51,0,0,1,12,20Zm2-4a1,1,0,1,0,1,1A1,1,0,0,0,14,16Zm-4-1a1,1,0,1,0,1,1A1,1,0,0,0,10,15Z' + }) + ) +} + +export default UilFlaskPotion \ No newline at end of file diff --git a/src/icons/uil-flask.ts b/src/icons/uil-flask.ts new file mode 100644 index 00000000..3d154f1f --- /dev/null +++ b/src/icons/uil-flask.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlask = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.11,17.49,15,8.73V4h1a1,1,0,0,0,0-2H8A1,1,0,0,0,8,4H9V8.73L3.89,17.49A3,3,0,0,0,6.48,22h11a3,3,0,0,0,2.59-4.51Zm-9.25-8A1,1,0,0,0,11,9V4h2V9a1,1,0,0,0,.14.5L14,11H10Zm7.52,10a1,1,0,0,1-.86.5h-11a1,1,0,0,1-.86-.5,1,1,0,0,1,0-1L8.83,13h6.35l3.2,5.5A1,1,0,0,1,18.38,19.5ZM10,15a1,1,0,1,0,1,1A1,1,0,0,0,10,15Zm4,1a1,1,0,1,0,1,1A1,1,0,0,0,14,16Z' + }) + ) +} + +export default UilFlask \ No newline at end of file diff --git a/src/icons/uil-flip-h-alt.ts b/src/icons/uil-flip-h-alt.ts new file mode 100644 index 00000000..a56edbcc --- /dev/null +++ b/src/icons/uil-flip-h-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlipHAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.21,5.7a1,1,0,0,0,.24,0l1.94-.49A1,1,0,0,0,16.12,4a1,1,0,0,0-1.21-.73L13,3.73a1,1,0,0,0,.24,2ZM9.51,9h-2a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2Zm4,0a1,1,0,1,0,0,2h2a1,1,0,0,0,0-2ZM7.39,7.15l.24,0,1.94-.48A1,1,0,0,0,9.09,4.7l-1.94.48a1,1,0,0,0,.24,2ZM4,10.51a1,1,0,0,0,1-1v-2a1,1,0,0,0-2,0v2A1,1,0,0,0,4,10.51Zm16.62-8.3A1,1,0,0,0,19.76,2l-1,.24a1,1,0,0,0-.73,1.21,1,1,0,0,0,1,.76A1,1,0,0,0,21,4V3A1,1,0,0,0,20.62,2.21ZM20,7a1,1,0,0,0-1,1V9.14A1,1,0,0,0,19.51,11H20a1,1,0,0,0,1-1V8A1,1,0,0,0,20,7Zm0,6H4a1,1,0,0,0-1,1v3a1,1,0,0,0,.76,1l16,4A1,1,0,0,0,20,22a1,1,0,0,0,1-1V14A1,1,0,0,0,20,13Zm-1,6.72L5,16.22V15H19Z' + }) + ) +} + +export default UilFlipHAlt \ No newline at end of file diff --git a/src/icons/uil-flip-h.ts b/src/icons/uil-flip-h.ts new file mode 100644 index 00000000..abda7576 --- /dev/null +++ b/src/icons/uil-flip-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlipH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM10.93,9h1.5a1,1,0,0,0,0-2h-1.5a1,1,0,0,0,0,2Zm4.5-1a1,1,0,0,0,1,1H17a1,1,0,0,0,.92-.62,1,1,0,0,0-.21-1.09l-.66-.65a1,1,0,0,0-1.41,0,1,1,0,0,0-.19,1.15A1.49,1.49,0,0,0,15.43,8ZM11.65,4.77,12,4.41l.81.81a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41L13.16,2.75a.91.91,0,0,0-.26-.19,1,1,0,0,0-1.61-.27L10.23,3.35a1,1,0,0,0,1.42,1.42ZM17,15H7a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09l5,5a1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,.21-1.09A1,1,0,0,0,17,15Zm-5,4.59L9.41,17h5.18ZM7.05,9a1,1,0,0,0,.71-.29L8.82,7.6A1,1,0,0,0,7.4,6.18L6.34,7.24a1,1,0,0,0,0,1.42A1,1,0,0,0,7.05,9Z' + }) + ) +} + +export default UilFlipH \ No newline at end of file diff --git a/src/icons/uil-flip-v-alt.ts b/src/icons/uil-flip-v-alt.ts new file mode 100644 index 00000000..a46e7f66 --- /dev/null +++ b/src/icons/uil-flip-v-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlipVAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.94,12.24A1,1,0,0,0,3.73,13l-.49,1.94A1,1,0,0,0,4,16.12a1,1,0,0,0,1.21-.73l.49-1.94A1,1,0,0,0,4.94,12.24Zm17,7.52-4-16A1,1,0,0,0,17,3H14a1,1,0,0,0-1,1V20a1,1,0,0,0,1,1h7a1,1,0,0,0,.79-.38A1,1,0,0,0,22,19.76ZM15,19V5h1.22l3.5,14ZM6.4,6.42a1,1,0,0,0-1.22.73L4.7,9.09a1,1,0,0,0,.73,1.21l.24,0a1,1,0,0,0,1-.76l.48-1.94A1,1,0,0,0,6.4,6.42ZM7.51,5h2a1,1,0,0,0,0-2h-2a1,1,0,0,0,0,2ZM4.24,19a1,1,0,0,0-2-.24l-.24,1a1,1,0,0,0,.18.86A1,1,0,0,0,3,21H4a1,1,0,0,0,.24-2ZM10,6.51a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,10,6.51Zm0,6a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,10,12.51Zm0,6a1,1,0,0,0-.86.49H8a1,1,0,0,0,0,2h2a1,1,0,0,0,1-1v-.49A1,1,0,0,0,10,18.51Z' + }) + ) +} + +export default UilFlipVAlt \ No newline at end of file diff --git a/src/icons/uil-flip-v.ts b/src/icons/uil-flip-v.ts new file mode 100644 index 00000000..3e28b618 --- /dev/null +++ b/src/icons/uil-flip-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlipV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.6,15.18A1,1,0,0,0,6.18,16.6l1.06,1.06a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM3.81,9.78,2.75,10.84a.91.91,0,0,0-.19.26,1,1,0,0,0-.27,1.61l1.06,1.06a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L4.41,12l.81-.81A1,1,0,0,0,3.81,9.78ZM8,10.57a1,1,0,0,0-1,1v1.5a1,1,0,0,0,2,0v-1.5A1,1,0,0,0,8,10.57Zm13.71.72-5-5a1,1,0,0,0-1.09-.21A1,1,0,0,0,15,7V17a1,1,0,0,0,.62.92A.84.84,0,0,0,16,18a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM17,14.59V9.41L19.59,12ZM12,2a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V3A1,1,0,0,0,12,2ZM8.38,6.08a1,1,0,0,0-1.09.21L6.64,7a1,1,0,0,0,0,1.41,1,1,0,0,0,.7.3,1,1,0,0,0,.45-.11A1,1,0,0,0,9,7.57V7A1,1,0,0,0,8.38,6.08Z' + }) + ) +} + +export default UilFlipV \ No newline at end of file diff --git a/src/icons/uil-flower.ts b/src/icons/uil-flower.ts new file mode 100644 index 00000000..8842cbdd --- /dev/null +++ b/src/icons/uil-flower.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFlower = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.68,6.88a4.4,4.4,0,0,0-3.31-.32,4.37,4.37,0,0,0-8.73,0,4.48,4.48,0,0,0-3.31.29,4.37,4.37,0,0,0,.61,8,4.4,4.4,0,0,0-.8,2.5,5,5,0,0,0,.07.75A4.34,4.34,0,0,0,8.5,21.73a4.68,4.68,0,0,0,.64,0A4.42,4.42,0,0,0,12,20a4.42,4.42,0,0,0,2.86,1.69,4.68,4.68,0,0,0,.64,0,4.36,4.36,0,0,0,3.56-6.87,4.36,4.36,0,0,0,.62-8ZM10.34,4.94a2.4,2.4,0,0,1,3.32,0,2.43,2.43,0,0,1,.52,2.66l-.26.59-.66.58A4.07,4.07,0,0,0,12,8.55a4,4,0,0,0-1.61.34L9.83,7.6A2.39,2.39,0,0,1,10.34,4.94Zm-6.1,6.84A2.37,2.37,0,0,1,7.94,9l.49.43.35.8A3.92,3.92,0,0,0,8,12.55,2.85,2.85,0,0,0,8,13l-.55,0h0l-.84.08A2.37,2.37,0,0,1,4.24,11.78Zm6.6,6.08a2.38,2.38,0,0,1-4.66-.08,3.07,3.07,0,0,1,0-.42,2.33,2.33,0,0,1,1.17-2L7.86,15l.91-.1a4,4,0,0,0,2.38,1.57ZM12,14.55a2,2,0,1,1,2-2A2,2,0,0,1,12,14.55Zm5.82,3.22a2.36,2.36,0,0,1-2.68,1.94,2.39,2.39,0,0,1-2-1.85l-.14-.6.21-.92a4,4,0,0,0,2.2-1.76l.5.3.09,0,.66.39A2.38,2.38,0,0,1,17.82,17.77Zm1.94-6a2.39,2.39,0,0,1-2.13,1.33h-.24L16.75,13,16,12.59v0a4,4,0,0,0-1-2.64l.43-.37,0,0L16.06,9a2.37,2.37,0,0,1,3.7,2.82Z' + }) + ) +} + +export default UilFlower \ No newline at end of file diff --git a/src/icons/uil-focus-add.ts b/src/icons/uil-focus-add.ts new file mode 100644 index 00000000..1ee943c4 --- /dev/null +++ b/src/icons/uil-focus-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFocusAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2ZM3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2ZM16,12a1,1,0,0,0-1-1H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V13h2A1,1,0,0,0,16,12Zm5,3a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15Z' + }) + ) +} + +export default UilFocusAdd \ No newline at end of file diff --git a/src/icons/uil-focus-target.ts b/src/icons/uil-focus-target.ts new file mode 100644 index 00000000..bb48c79e --- /dev/null +++ b/src/icons/uil-focus-target.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFocusTarget = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,9A1,1,0,0,0,4,8V5A1,1,0,0,1,5,4H8A1,1,0,0,0,8,2H5A3,3,0,0,0,2,5V8A1,1,0,0,0,3,9ZM8,20H5a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H8a1,1,0,0,0,0-2Zm9-7a1,1,0,0,0,0-2H15.86A4,4,0,0,0,13,8.14V7a1,1,0,0,0-2,0V8.14A4,4,0,0,0,8.14,11H7a1,1,0,0,0,0,2H8.14A4,4,0,0,0,11,15.86V17a1,1,0,0,0,2,0V15.86A4,4,0,0,0,15.86,13Zm-5,1a2,2,0,1,1,2-2A2,2,0,0,1,12,14Zm9,1a1,1,0,0,0-1,1v3a1,1,0,0,1-1,1H16a1,1,0,0,0,0,2h3a3,3,0,0,0,3-3V16A1,1,0,0,0,21,15ZM19,2H16a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,19,2Z' + }) + ) +} + +export default UilFocusTarget \ No newline at end of file diff --git a/src/icons/uil-focus.ts b/src/icons/uil-focus.ts new file mode 100644 index 00000000..c9615398 --- /dev/null +++ b/src/icons/uil-focus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFocus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,2H3A1,1,0,0,0,2,3V8A1,1,0,0,0,4,8V4H8A1,1,0,0,0,8,2ZM8,20H4V16a1,1,0,0,0-2,0v5a1,1,0,0,0,1,1H8a1,1,0,0,0,0-2ZM21,2H16a1,1,0,0,0,0,2h4V8a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2Zm0,13a1,1,0,0,0-1,1v4H16a1,1,0,0,0,0,2h5a1,1,0,0,0,1-1V16A1,1,0,0,0,21,15Z' + }) + ) +} + +export default UilFocus \ No newline at end of file diff --git a/src/icons/uil-folder-check.ts b/src/icons/uil-folder-check.ts new file mode 100644 index 00000000..e7a28d21 --- /dev/null +++ b/src/icons/uil-folder-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.29,10.79,11,14.09l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l4-4a1,1,0,0,0-1.42-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderCheck \ No newline at end of file diff --git a/src/icons/uil-folder-download.ts b/src/icons/uil-folder-download.ts new file mode 100644 index 00000000..fbe1d1bb --- /dev/null +++ b/src/icons/uil-folder-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.29,13.79l-.29.3V11.5a1,1,0,0,0-2,0v2.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderDownload \ No newline at end of file diff --git a/src/icons/uil-folder-exclamation.ts b/src/icons/uil-folder-exclamation.ts new file mode 100644 index 00000000..2280fbaf --- /dev/null +++ b/src/icons/uil-folder-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.92,16.12a.76.76,0,0,0-.09-.18,1.58,1.58,0,0,0-.12-.15l-.15-.12-.18-.09a.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33,1,1,0,0,0,1.09.22,1.46,1.46,0,0,0,.33-.22,1.46,1.46,0,0,0,.22-.33A1,1,0,0,0,13,16.5a1.36,1.36,0,0,0,0-.2A.64.64,0,0,0,12.92,16.12ZM12,10.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,12,10.5Zm7-5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderExclamation \ No newline at end of file diff --git a/src/icons/uil-folder-heart.ts b/src/icons/uil-folder-heart.ts new file mode 100644 index 00000000..4a81e84b --- /dev/null +++ b/src/icons/uil-folder-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9.84a2.92,2.92,0,0,0-3.43,4.65l2.72,2.72a1,1,0,0,0,1.42,0l2.72-2.72A2.92,2.92,0,0,0,12,9.84Zm2,3.23-2,2-2-2a.92.92,0,0,1,0-1.3.92.92,0,0,1,1.3,0,1,1,0,0,0,1.42,0,.92.92,0,0,1,1.3,1.3ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderHeart \ No newline at end of file diff --git a/src/icons/uil-folder-info.ts b/src/icons/uil-folder-info.ts new file mode 100644 index 00000000..76708fad --- /dev/null +++ b/src/icons/uil-folder-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13.5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,12,13.5Zm7-8H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Zm-7.29-7.71a1,1,0,0,0-1.09-.21.93.93,0,0,0-.33.21,1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.7,1,1,0,0,0,1.42,0,1,1,0,0,0,.29-.7,1,1,0,0,0-.08-.38A.93.93,0,0,0,12.71,10.79Z' + }) + ) +} + +export default UilFolderInfo \ No newline at end of file diff --git a/src/icons/uil-folder-lock.ts b/src/icons/uil-folder-lock.ts new file mode 100644 index 00000000..9315ec03 --- /dev/null +++ b/src/icons/uil-folder-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4,4H8.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,11,7h7a1,1,0,0,1,1,1,1,1,0,0,0,2,0,3,3,0,0,0-3-3H11.72l-.32-1A3,3,0,0,0,8.56,2H4A3,3,0,0,0,1,5V18a3,3,0,0,0,3,3h6a1,1,0,0,0,0-2H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4ZM21,15.18V14a3,3,0,0,0-6,0v1.18A3,3,0,0,0,13,18v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V18A3,3,0,0,0,21,15.18ZM17,14a1,1,0,0,1,2,0v1H17Zm4,6a1,1,0,0,1-1,1H16a1,1,0,0,1-1-1V18a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderLock \ No newline at end of file diff --git a/src/icons/uil-folder-medical.ts b/src/icons/uil-folder-medical.ts new file mode 100644 index 00000000..a97fb8b1 --- /dev/null +++ b/src/icons/uil-folder-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,12.5H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderMedical \ No newline at end of file diff --git a/src/icons/uil-folder-minus.ts b/src/icons/uil-folder-minus.ts new file mode 100644 index 00000000..f0a6ce17 --- /dev/null +++ b/src/icons/uil-folder-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,12.5H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderMinus \ No newline at end of file diff --git a/src/icons/uil-folder-network.ts b/src/icons/uil-folder-network.ts new file mode 100644 index 00000000..088acb0c --- /dev/null +++ b/src/icons/uil-folder-network.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderNetwork = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18H14.82A3,3,0,0,0,13,16.18V14h3.67A2.34,2.34,0,0,0,19,11.67V6.33A2.34,2.34,0,0,0,16.67,4h-4l-.13-.41A2.34,2.34,0,0,0,10.37,2h-3A2.34,2.34,0,0,0,5,4.33v7.34A2.34,2.34,0,0,0,7.33,14H11v2.18A3,3,0,0,0,9.18,18H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM7.33,12A.33.33,0,0,1,7,11.67V4.33A.33.33,0,0,1,7.33,4h3a.33.33,0,0,1,.32.23l.36,1.09A1,1,0,0,0,12,6h4.67a.33.33,0,0,1,.33.33v5.34a.33.33,0,0,1-.33.33ZM12,20a1,1,0,1,1,1-1A1,1,0,0,1,12,20Z' + }) + ) +} + +export default UilFolderNetwork \ No newline at end of file diff --git a/src/icons/uil-folder-open.ts b/src/icons/uil-folder-open.ts new file mode 100644 index 00000000..bdaf1613 --- /dev/null +++ b/src/icons/uil-folder-open.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderOpen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.78 10.37A1 1 0 0 0 22 10h-2V9a3 3 0 0 0-3-3h-6.28l-.32-1a3 3 0 0 0-2.84-2H4a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14.4a3 3 0 0 0 2.92-2.35L23 11.22a1 1 0 0 0-.22-.85ZM5.37 18.22a1 1 0 0 1-1 .78H4a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h3.56a1 1 0 0 1 1 .68l.54 1.64A1 1 0 0 0 10 8h7a1 1 0 0 1 1 1v1H8a1 1 0 0 0-1 .78Zm14 0a1 1 0 0 1-1 .78H7.21a1.42 1.42 0 0 0 .11-.35L8.8 12h12Z' + }) + ) +} + +export default UilFolderOpen \ No newline at end of file diff --git a/src/icons/uil-folder-plus.ts b/src/icons/uil-folder-plus.ts new file mode 100644 index 00000000..ffa9e924 --- /dev/null +++ b/src/icons/uil-folder-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,12.5H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm5-7H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderPlus \ No newline at end of file diff --git a/src/icons/uil-folder-question.ts b/src/icons/uil-folder-question.ts new file mode 100644 index 00000000..9fd96cba --- /dev/null +++ b/src/icons/uil-folder-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.57,16.3a.64.64,0,0,0-.15-.13l-.17-.09L12.06,16a1,1,0,0,0-.9.28,1,1,0,0,0-.22.32,1,1,0,0,0-.07.39,1,1,0,0,0,.29.7,1,1,0,0,0,.32.22,1,1,0,0,0,.39.07,1,1,0,0,0,.38-.07,1,1,0,0,0,.32-.22,1,1,0,0,0,.3-.7,1,1,0,0,0-.08-.39A.87.87,0,0,0,12.57,16.3ZM11.87,9a3,3,0,0,0-2.6,1.5,1,1,0,1,0,1.73,1,1,1,0,0,1,1.87.5,1,1,0,0,1-1,1,1,1,0,1,0,0,2,3,3,0,0,0,0-6ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderQuestion \ No newline at end of file diff --git a/src/icons/uil-folder-slash.ts b/src/icons/uil-folder-slash.ts new file mode 100644 index 00000000..d265af34 --- /dev/null +++ b/src/icons/uil-folder-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-1.6-1.6h0L3.71,2.29A1,1,0,0,0,2.29,3.71L3.69,5.1A3,3,0,0,0,3,7V18a3,3,0,0,0,3,3H18a3,3,0,0,0,1.29-.3l1,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,19a1,1,0,0,1-1-1V7a1,1,0,0,1,.12-.46L17.59,19ZM10.62,6a1,1,0,0,1,.89.67l.54,1.64A1,1,0,0,0,13,9h5a1,1,0,0,1,1,1v4.34a1,1,0,1,0,2,0V10a3,3,0,0,0-3-3H13.72L13.4,6a3,3,0,0,0-2.68-2,1,1,0,0,0-.1,2Z' + }) + ) +} + +export default UilFolderSlash \ No newline at end of file diff --git a/src/icons/uil-folder-times.ts b/src/icons/uil-folder-times.ts new file mode 100644 index 00000000..c7783f16 --- /dev/null +++ b/src/icons/uil-folder-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.71,10.79a1,1,0,0,0-1.42,0L12,12.09l-1.29-1.3a1,1,0,0,0-1.42,1.42l1.3,1.29-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,14.91l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-1.3-1.29,1.3-1.29A1,1,0,0,0,14.71,10.79ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderTimes \ No newline at end of file diff --git a/src/icons/uil-folder-upload.ts b/src/icons/uil-folder-upload.ts new file mode 100644 index 00000000..0887bc26 --- /dev/null +++ b/src/icons/uil-folder-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolderUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,10.79a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2a1,1,0,0,0,1.42,1.42l.29-.3V16.5a1,1,0,0,0,2,0V13.91l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolderUpload \ No newline at end of file diff --git a/src/icons/uil-folder.ts b/src/icons/uil-folder.ts new file mode 100644 index 00000000..68c73c7e --- /dev/null +++ b/src/icons/uil-folder.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFolder = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,5.5H12.72l-.32-1a3,3,0,0,0-2.84-2H5a3,3,0,0,0-3,3v13a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V8.5A3,3,0,0,0,19,5.5Zm1,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5.5a1,1,0,0,1,1-1H9.56a1,1,0,0,1,.95.68l.54,1.64A1,1,0,0,0,12,7.5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilFolder \ No newline at end of file diff --git a/src/icons/uil-font.ts b/src/icons/uil-font.ts new file mode 100644 index 00000000..b79d468e --- /dev/null +++ b/src/icons/uil-font.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFont = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H20V3a1,1,0,0,0-1-1H15.5a1,1,0,0,0-.86.5L4.43,20H3a1,1,0,0,0,0,2H7a1,1,0,0,0,0-2H6.74l3.5-6H18v6H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-3-8H11.41l4.66-8H18Z' + }) + ) +} + +export default UilFont \ No newline at end of file diff --git a/src/icons/uil-football-american.ts b/src/icons/uil-football-american.ts new file mode 100644 index 00000000..2212661e --- /dev/null +++ b/src/icons/uil-football-american.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFootballAmerican = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.84,5.56A4.08,4.08,0,0,0,20.7,3.31h0a4.08,4.08,0,0,0-2.25-1.14,13.65,13.65,0,0,0-5.29.24,1.17,1.17,0,0,0-.2.06,14.44,14.44,0,0,0-6.69,3.8A14.59,14.59,0,0,0,2.45,13c0,.06,0,.12-.05.19a13.7,13.7,0,0,0-.24,5.3A4.08,4.08,0,0,0,3.3,20.69h0a4.08,4.08,0,0,0,2.25,1.14A13.12,13.12,0,0,0,7.63,22a13.8,13.8,0,0,0,3.26-.41l.14,0a14.54,14.54,0,0,0,10.52-10.5c0-.06,0-.12.05-.19A13.7,13.7,0,0,0,21.84,5.56ZM16.37,4a10.44,10.44,0,0,1,1.76.14,1.68,1.68,0,0,1,.24.07L17,5.59,15.46,4.05C15.76,4,16.07,4,16.37,4ZM7.67,7.67a12.72,12.72,0,0,1,5.4-3.19L15.59,7,13.44,9.15l-.73-.73a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l.73.73L10.56,12l-.73-.73a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.73.73L7,15.59,4.49,13.08A12.67,12.67,0,0,1,7.67,7.67ZM4.21,18.37a1.68,1.68,0,0,1-.07-.24A11.38,11.38,0,0,1,4,15.46L5.59,17Zm1.66,1.49a1.68,1.68,0,0,1-.24-.07L7,18.41,8.54,20A11.38,11.38,0,0,1,5.87,19.86Zm10.46-3.53a12.67,12.67,0,0,1-5.41,3.18L8.41,17l2.15-2.15.73.73a1,1,0,1,0,1.42-1.41L12,13.44,13.44,12l.73.73a1,1,0,0,0,.71.29,1,1,0,0,0,.7-1.71l-.73-.73L17,8.41l2.51,2.51A12.67,12.67,0,0,1,16.33,16.33ZM20,8.54,18.41,7l1.38-1.37a1.68,1.68,0,0,1,.07.24A11.38,11.38,0,0,1,20,8.54Z' + }) + ) +} + +export default UilFootballAmerican \ No newline at end of file diff --git a/src/icons/uil-football-ball.ts b/src/icons/uil-football-ball.ts new file mode 100644 index 00000000..73d72871 --- /dev/null +++ b/src/icons/uil-football-ball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFootballBall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.84,5.56A4.08,4.08,0,0,0,20.7,3.31h0a4.08,4.08,0,0,0-2.25-1.14A14.45,14.45,0,0,0,2.16,18.44,4.08,4.08,0,0,0,3.3,20.69h0a4.08,4.08,0,0,0,2.25,1.14A13.12,13.12,0,0,0,7.63,22a14.37,14.37,0,0,0,10.11-4.26A14.23,14.23,0,0,0,21.84,5.56ZM4.21,18.37a1.68,1.68,0,0,1-.07-.24A12.21,12.21,0,0,1,7.67,7.67,12.39,12.39,0,0,1,16.37,4a10.44,10.44,0,0,1,1.76.14,1.68,1.68,0,0,1,.24.07L13.44,9.15l-.73-.73a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l.73.73L10.56,12l-.73-.73a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.73.73Zm12.12-2A12.24,12.24,0,0,1,5.87,19.86a1.68,1.68,0,0,1-.24-.07l4.93-4.94.73.73a1,1,0,1,0,1.42-1.41L12,13.44,13.44,12l.73.73a1,1,0,0,0,.71.29,1,1,0,0,0,.7-1.71l-.73-.73,4.94-4.93a1.68,1.68,0,0,1,.07.24A12.21,12.21,0,0,1,16.33,16.33Z' + }) + ) +} + +export default UilFootballBall \ No newline at end of file diff --git a/src/icons/uil-football.ts b/src/icons/uil-football.ts new file mode 100644 index 00000000..1586e1dc --- /dev/null +++ b/src/icons/uil-football.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFootball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.07,6.11a9.85,9.85,0,0,0-4.3-3.36A10,10,0,0,0,2,12c0,.19,0,.38,0,.56A9.94,9.94,0,0,0,3.33,17a10,10,0,0,0,5.89,4.65h0A10.11,10.11,0,0,0,12,22a9.45,9.45,0,0,0,1.88-.18,10,10,0,0,0,8-8.41A9.46,9.46,0,0,0,22,12,9.83,9.83,0,0,0,20.07,6.11Zm-2,.77L17,9.74l-1.62.44L13,8.49V6.64l2.49-1.81A7.81,7.81,0,0,1,18.11,6.88ZM14,11.67,13.22,14H10.77L10,11.67l2-1.43ZM12,4a8,8,0,0,1,1.11.09L12,4.89l-1.11-.8A8,8,0,0,1,12,4ZM4.88,8.37l.4,1.32-1.13.79A7.88,7.88,0,0,1,4.88,8.37Zm1.37,9.17,1.38.05L8,18.92A8.32,8.32,0,0,1,6.25,17.54ZM8,15.6l-3.15-.11A7.83,7.83,0,0,1,4.07,13l2.49-1.74L8,11.88l.89,2.76Zm.86-5.53-1.56-.7-.91-3A7.93,7.93,0,0,1,8.5,4.83L11,6.64V8.49ZM13,19.93a8.08,8.08,0,0,1-2.63-.12l-.83-2.92.83-.89h3.07l.67,1Zm2.41-.7L15.87,18l1.36.07A7.83,7.83,0,0,1,15.38,19.23Zm3.46-3.12L15.76,16l-.71-1.1.89-2.76,1.51-.41,2.36,2A7.84,7.84,0,0,1,18.84,16.11Zm.05-5.83L19.4,9a7.4,7.4,0,0,1,.53,2.13Z' + }) + ) +} + +export default UilFootball \ No newline at end of file diff --git a/src/icons/uil-forwaded-call.ts b/src/icons/uil-forwaded-call.ts new file mode 100644 index 00000000..1d59192b --- /dev/null +++ b/src/icons/uil-forwaded-call.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilForwadedCall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.94,6.56h3.58l-.79.8a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l2.5-2.5a1,1,0,0,0,0-1.41l-2.5-2.5a1,1,0,0,0-1.41,1.41l.79.79H14.94a1,1,0,0,0,0,2ZM19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' + }) + ) +} + +export default UilForwadedCall \ No newline at end of file diff --git a/src/icons/uil-forward.ts b/src/icons/uil-forward.ts new file mode 100644 index 00000000..678dcc37 --- /dev/null +++ b/src/icons/uil-forward.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilForward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.67,9.69,14,5.84a2.67,2.67,0,0,0-4,2.31h0L6,5.84A2.67,2.67,0,0,0,2,8.15v7.7a2.63,2.63,0,0,0,1.33,2.3,2.61,2.61,0,0,0,1.34.37A2.69,2.69,0,0,0,6,18.16l4-2.31h0a2.65,2.65,0,0,0,1.33,2.31,2.66,2.66,0,0,0,2.67,0l6.67-3.85a2.67,2.67,0,0,0,0-4.62ZM10,13.54,5,16.42a.67.67,0,0,1-1-.57V8.15a.67.67,0,0,1,1-.57l5,2.88Zm9.67-1L13,16.43a.69.69,0,0,1-.67,0,.66.66,0,0,1-.33-.58V8.15a.66.66,0,0,1,.33-.58.78.78,0,0,1,.34-.09.63.63,0,0,1,.33.09l6.67,3.85a.67.67,0,0,1,0,1.16Z' + }) + ) +} + +export default UilForward \ No newline at end of file diff --git a/src/icons/uil-frown.ts b/src/icons/uil-frown.ts new file mode 100644 index 00000000..c418fc1a --- /dev/null +++ b/src/icons/uil-frown.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilFrown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9Z' + }) + ) +} + +export default UilFrown \ No newline at end of file diff --git a/src/icons/uil-game-structure.ts b/src/icons/uil-game-structure.ts new file mode 100644 index 00000000..6257ff2a --- /dev/null +++ b/src/icons/uil-game-structure.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGameStructure = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18H19V15a1,1,0,0,0-1-1H13V11.29l1.13.59a1,1,0,0,0,1.45-1.05l-.4-2.37L16.9,6.77a1,1,0,0,0,.26-1,1,1,0,0,0-.81-.68L14,4.72,12.9,2.56a1,1,0,0,0-1.8,0L10,4.72l-2.39.35a1,1,0,0,0-.81.68,1,1,0,0,0,.26,1L8.82,8.46l-.4,2.37a1,1,0,0,0,1.45,1.05L11,11.29V14H6a1,1,0,0,0-1,1v3H3a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V20H8v1a1,1,0,0,0,2,0V19a1,1,0,0,0-1-1H7V16H17v2H15a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V20h4v1a1,1,0,0,0,2,0V19A1,1,0,0,0,21,18ZM12,8.63a1,1,0,0,0-.47.12l-.8.42.15-.9a1,1,0,0,0-.29-.88l-.65-.64.9-.13a1,1,0,0,0,.76-.54l.4-.82.4.82a1,1,0,0,0,.76.54l.9.13-.65.64a1,1,0,0,0-.29.88l.15.9-.8-.42A1,1,0,0,0,12,8.63Z' + }) + ) +} + +export default UilGameStructure \ No newline at end of file diff --git a/src/icons/uil-gift.ts b/src/icons/uil-gift.ts new file mode 100644 index 00000000..d7e15e82 --- /dev/null +++ b/src/icons/uil-gift.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGift = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,7h-.35A3.45,3.45,0,0,0,18,5.5a3.49,3.49,0,0,0-6-2.44A3.49,3.49,0,0,0,6,5.5,3.45,3.45,0,0,0,6.35,7H6a3,3,0,0,0-3,3v2a1,1,0,0,0,1,1H5v6a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V13h1a1,1,0,0,0,1-1V10A3,3,0,0,0,18,7ZM11,20H8a1,1,0,0,1-1-1V13h4Zm0-9H5V10A1,1,0,0,1,6,9h5Zm0-4H9.5A1.5,1.5,0,1,1,11,5.5Zm2-1.5A1.5,1.5,0,1,1,14.5,7H13ZM17,19a1,1,0,0,1-1,1H13V13h4Zm2-8H13V9h5a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilGift \ No newline at end of file diff --git a/src/icons/uil-github-alt.ts b/src/icons/uil-github-alt.ts new file mode 100644 index 00000000..1c2f25a0 --- /dev/null +++ b/src/icons/uil-github-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGithubAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.07031,20.50291a1.00008,1.00008,0,0,0-1.18115-.9834c-1.30908.24024-2.96191.27637-3.40137-.958a5.70754,5.70754,0,0,0-1.83691-2.415,1.20073,1.20073,0,0,1-.1665-.10938,1,1,0,0,0-.93067-.64551H2.54883a.99965.99965,0,0,0-1,.99512c-.00391.81543.811,1.33789,1.1416,1.51465a4.4408,4.4408,0,0,1,.92383,1.35937c.36426,1.02344,1.42285,2.57617,4.46582,2.376.001.03516.00195.06836.00244.09863l.00439.26758a1,1,0,0,0,2,0l-.00488-.31836C10.07715,21.4951,10.07031,21.22068,10.07031,20.50291Zm10.667-15.126c.03174-.125.063-.26367.09034-.41992a6.27792,6.27792,0,0,0-.40821-3.293,1.002,1.002,0,0,0-.61572-.58007c-.356-.12012-1.67041-.35645-4.18408,1.25a13.86918,13.86918,0,0,0-6.354,0C6.76221.751,5.45459.9658,5.10205,1.07908a.99744.99744,0,0,0-.63135.584,6.3003,6.3003,0,0,0-.40332,3.35644c.02442.12793.05078.2461.07813.35449A6.26928,6.26928,0,0,0,2.89014,9.20311a8.42168,8.42168,0,0,0,.04248.92187c.334,4.60254,3.334,5.98438,5.42431,6.459-.04345.125-.083.25878-.11816.40039a1.00023,1.00023,0,0,0,1.94238.47851,1.6784,1.6784,0,0,1,.46778-.87793.99947.99947,0,0,0-.5459-1.74512c-3.4541-.39453-4.95362-1.80175-5.1792-4.89843a6.61076,6.61076,0,0,1-.03369-.73828,4.25769,4.25769,0,0,1,.91943-2.71289,3.022,3.022,0,0,1,.1958-.23145.99988.99988,0,0,0,.188-1.02441,3.3876,3.3876,0,0,1-.15527-.55567A4.09356,4.09356,0,0,1,6.1167,3.06346a7.54263,7.54263,0,0,1,2.415,1.17968,1.00877,1.00877,0,0,0,.82764.13282,11.77716,11.77716,0,0,1,6.17285.001,1.00549,1.00549,0,0,0,.83056-.13769,7.572,7.572,0,0,1,2.40528-1.19043,4.03977,4.03977,0,0,1,.0874,1.57812,3.205,3.205,0,0,1-.16895.60743.9999.9999,0,0,0,.188,1.02441c.07715.08691.1543.18066.22363.26855A4.12186,4.12186,0,0,1,20,9.20311a7.03888,7.03888,0,0,1-.0376.77734c-.22021,3.05566-1.72558,4.46387-5.1958,4.85937a1,1,0,0,0-.54541,1.7461,1.63079,1.63079,0,0,1,.46631.9082,3.06079,3.06079,0,0,1,.09229.81934v2.334C14.77,21.2949,14.77,21.78025,14.77,22.00291a1,1,0,1,0,2,0c0-.2168,0-.69238.00977-1.33984V18.31346a4.8815,4.8815,0,0,0-.15479-1.31153,4.25638,4.25638,0,0,0-.11621-.416,6.51258,6.51258,0,0,0,5.44531-6.42383A8.69677,8.69677,0,0,0,22,9.20311,6.13062,6.13062,0,0,0,20.7373,5.37693Z' + }) + ) +} + +export default UilGithubAlt \ No newline at end of file diff --git a/src/icons/uil-github.ts b/src/icons/uil-github.ts new file mode 100644 index 00000000..9253967a --- /dev/null +++ b/src/icons/uil-github.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGithub = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2.2467A10.00042,10.00042,0,0,0,8.83752,21.73419c.5.08752.6875-.21247.6875-.475,0-.23749-.01251-1.025-.01251-1.86249C7,19.85919,6.35,18.78423,6.15,18.22173A3.636,3.636,0,0,0,5.125,16.8092c-.35-.1875-.85-.65-.01251-.66248A2.00117,2.00117,0,0,1,6.65,17.17169a2.13742,2.13742,0,0,0,2.91248.825A2.10376,2.10376,0,0,1,10.2,16.65923c-2.225-.25-4.55-1.11254-4.55-4.9375a3.89187,3.89187,0,0,1,1.025-2.6875,3.59373,3.59373,0,0,1,.1-2.65s.83747-.26251,2.75,1.025a9.42747,9.42747,0,0,1,5,0c1.91248-1.3,2.75-1.025,2.75-1.025a3.59323,3.59323,0,0,1,.1,2.65,3.869,3.869,0,0,1,1.025,2.6875c0,3.83747-2.33752,4.6875-4.5625,4.9375a2.36814,2.36814,0,0,1,.675,1.85c0,1.33752-.01251,2.41248-.01251,2.75,0,.26251.1875.575.6875.475A10.0053,10.0053,0,0,0,12,2.2467Z' + }) + ) +} + +export default UilGithub \ No newline at end of file diff --git a/src/icons/uil-gitlab.ts b/src/icons/uil-gitlab.ts new file mode 100644 index 00000000..d81abb7c --- /dev/null +++ b/src/icons/uil-gitlab.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGitlab = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm21.94 12.865-1.066-3.28.001.005v-.005l-2.115-6.51a.833.833 0 0 0-.799-.57.822.822 0 0 0-.788.576l-2.007 6.178H8.834L6.824 3.08a.822.822 0 0 0-.788-.575H6.03a.839.839 0 0 0-.796.575L3.127 9.584l-.002.006.001-.005-1.069 3.28a1.195 1.195 0 0 0 .435 1.34l9.229 6.705.004.003.012.008-.011-.008.002.001.001.001a.466.466 0 0 0 .045.028l.006.004.004.002.003.001h.002l.005.003.025.01.023.01h.001l.004.002.005.002h.002l.006.002h.003c.011.004.022.006.034.009l.013.003h.002l.005.002.007.001h.007a.467.467 0 0 0 .066.006h.001a.469.469 0 0 0 .067-.005h.007l.007-.002.004-.001h.002l.014-.004.034-.008h.002l.006-.003h.002l.005-.002.004-.001h.001l.025-.011.023-.01.005-.002h.002l.003-.002.004-.002.007-.004a.468.468 0 0 0 .044-.027l.004-.003.005-.003 9.23-6.706a1.195 1.195 0 0 0 .434-1.339Zm-3.973-9.18 1.81 5.574h-3.62Zm-11.937 0L7.843 9.26h-3.62Zm-2.984 9.757a.255.255 0 0 1-.092-.285l.794-2.438 5.822 7.464Zm1.494-3.24h3.61l2.573 7.927Zm7.165 10.696-.006-.005-.011-.01-.02-.018.002.001.002.002a.473.473 0 0 0 .043.037l.002.002Zm.293-1.894-1.514-4.665-1.344-4.138h5.72Zm.31 1.88-.01.008-.002.001-.005.005-.012.009.002-.002a.455.455 0 0 0 .043-.036l.001-.002.002-.002ZM15.851 10.2h3.61l-.74.947-5.447 6.98Zm5.1 3.241-6.523 4.74 5.824-7.463.791 2.437a.255.255 0 0 1-.092.286Z' + }) + ) +} + +export default UilGitlab \ No newline at end of file diff --git a/src/icons/uil-glass-martini-alt-slash.ts b/src/icons/uil-glass-martini-alt-slash.ts new file mode 100644 index 00000000..25774e1b --- /dev/null +++ b/src/icons/uil-glass-martini-alt-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlassMartiniAltSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.71,16.29l-14-14A1,1,0,0,0,4.29,3.71L6.59,6H5a1,1,0,0,0-.9.57,1,1,0,0,0,.12,1L11,16.1V20H6.75a1,1,0,0,0,0,2h10.5a1,1,0,0,0,0-2H13V16.1l1.64-2,3.65,3.65a1,1,0,0,0,1.42,0A1,1,0,0,0,19.71,16.29ZM7.08,8H8.59l1.89,1.89H8.59ZM12,14.15l-1.81-2.26h2.29l.74.74ZM14.66,8h2.26l-.63.79a1,1,0,0,0,.15,1.4,1,1,0,0,0,.63.22,1,1,0,0,0,.78-.37l1.93-2.42a1,1,0,0,0,.12-1A1,1,0,0,0,19,6H14.66a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilGlassMartiniAltSlash \ No newline at end of file diff --git a/src/icons/uil-glass-martini-alt.ts b/src/icons/uil-glass-martini-alt.ts new file mode 100644 index 00000000..9e953f3d --- /dev/null +++ b/src/icons/uil-glass-martini-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlassMartiniAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.78,3.62a1,1,0,0,0,.12-1.05A1,1,0,0,0,21,2H3a1,1,0,0,0-.9.57,1,1,0,0,0,.12,1.05L11,14.6V20H5.25a1,1,0,0,0,0,2h13.5a1,1,0,0,0,0-2H13V14.6ZM5.08,4H18.92l-2.4,3h-9ZM12,12.65,9.08,9h5.84Z' + }) + ) +} + +export default UilGlassMartiniAlt \ No newline at end of file diff --git a/src/icons/uil-glass-martini.ts b/src/icons/uil-glass-martini.ts new file mode 100644 index 00000000..8707e545 --- /dev/null +++ b/src/icons/uil-glass-martini.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlassMartini = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,20H13V14.94A9,9,0,0,0,21,6a8.72,8.72,0,0,0-.67-3.39,1,1,0,0,0-.22-.32L20,2.21a.92.92,0,0,0-.21-.13A.94.94,0,0,0,19.51,2l-.1,0H4.59L4.5,2a.94.94,0,0,0-.29.06A2.12,2.12,0,0,0,4,2.2l-.12.09a1,1,0,0,0-.22.32A8.72,8.72,0,0,0,3,6a9,9,0,0,0,8,8.94V20H6a1,1,0,0,0,0,2H18a1,1,0,0,0,0-2ZM5,6a6.91,6.91,0,0,1,.29-2H18.71A6.91,6.91,0,0,1,19,6,7,7,0,0,1,5,6Z' + }) + ) +} + +export default UilGlassMartini \ No newline at end of file diff --git a/src/icons/uil-glass-tea.ts b/src/icons/uil-glass-tea.ts new file mode 100644 index 00000000..09f467ed --- /dev/null +++ b/src/icons/uil-glass-tea.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlassTea = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,3a3,3,0,0,0-2.23-1H7.23a3,3,0,0,0-3,3.33l1.56,14a3,3,0,0,0,3,2.67h6.42a3,3,0,0,0,3-2.67l1.56-14A3,3,0,0,0,19,3ZM16.2,19.11a1,1,0,0,1-1,.89H8.79a1,1,0,0,1-1-.89L6.78,10H17.22ZM17.44,8H6.56L6.24,5.11a1,1,0,0,1,.25-.78A1,1,0,0,1,7.23,4h9.54a1,1,0,0,1,.74.33,1,1,0,0,1,.25.78ZM14,18a1,1,0,0,0,1-1V13a1,1,0,0,0-2,0v4A1,1,0,0,0,14,18Zm-4,0a1,1,0,0,0,1-1V13a1,1,0,0,0-2,0v4A1,1,0,0,0,10,18Z' + }) + ) +} + +export default UilGlassTea \ No newline at end of file diff --git a/src/icons/uil-glass.ts b/src/icons/uil-glass.ts new file mode 100644 index 00000000..e9409419 --- /dev/null +++ b/src/icons/uil-glass.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlass = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.75,2.33A1,1,0,0,0,19,2H5a1,1,0,0,0-.75.33A1,1,0,0,0,4,3.11l1.8,16.22a3,3,0,0,0,3,2.67h6.42a3,3,0,0,0,3-2.67L20,3.11A1,1,0,0,0,19.75,2.33ZM16.2,19.11a1,1,0,0,1-1,.89H8.79a1,1,0,0,1-1-.89L6.78,10H17.22ZM17.44,8H6.56L6.12,4H17.88Z' + }) + ) +} + +export default UilGlass \ No newline at end of file diff --git a/src/icons/uil-globe.ts b/src/icons/uil-globe.ts new file mode 100644 index 00000000..f134eaa7 --- /dev/null +++ b/src/icons/uil-globe.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGlobe = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.41,8.64s0,0,0-.05a10,10,0,0,0-18.78,0s0,0,0,.05a9.86,9.86,0,0,0,0,6.72s0,0,0,.05a10,10,0,0,0,18.78,0s0,0,0-.05a9.86,9.86,0,0,0,0-6.72ZM4.26,14a7.82,7.82,0,0,1,0-4H6.12a16.73,16.73,0,0,0,0,4Zm.82,2h1.4a12.15,12.15,0,0,0,1,2.57A8,8,0,0,1,5.08,16Zm1.4-8H5.08A8,8,0,0,1,7.45,5.43,12.15,12.15,0,0,0,6.48,8ZM11,19.7A6.34,6.34,0,0,1,8.57,16H11ZM11,14H8.14a14.36,14.36,0,0,1,0-4H11Zm0-6H8.57A6.34,6.34,0,0,1,11,4.3Zm7.92,0h-1.4a12.15,12.15,0,0,0-1-2.57A8,8,0,0,1,18.92,8ZM13,4.3A6.34,6.34,0,0,1,15.43,8H13Zm0,15.4V16h2.43A6.34,6.34,0,0,1,13,19.7ZM15.86,14H13V10h2.86a14.36,14.36,0,0,1,0,4Zm.69,4.57a12.15,12.15,0,0,0,1-2.57h1.4A8,8,0,0,1,16.55,18.57ZM19.74,14H17.88A16.16,16.16,0,0,0,18,12a16.28,16.28,0,0,0-.12-2h1.86a7.82,7.82,0,0,1,0,4Z' + }) + ) +} + +export default UilGlobe \ No newline at end of file diff --git a/src/icons/uil-gold.ts b/src/icons/uil-gold.ts new file mode 100644 index 00000000..5956f688 --- /dev/null +++ b/src/icons/uil-gold.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGold = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,11h8a1,1,0,0,0,.77-.37A1,1,0,0,0,17,9.8l-1-5A1,1,0,0,0,15,4H9a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,8,11ZM9.82,6h4.36l.6,3H9.22ZM22,13.8a1,1,0,0,0-1-.8H15a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,14,20h8a1,1,0,0,0,.77-.37A1,1,0,0,0,23,18.8ZM15.22,18l.6-3h4.36l.6,3ZM9,13H3a1,1,0,0,0-1,.8l-1,5a1,1,0,0,0,.21.83A1,1,0,0,0,2,20h8a1,1,0,0,0,.77-.37A1,1,0,0,0,11,18.8l-1-5A1,1,0,0,0,9,13ZM3.22,18l.6-3H8.18l.6,3Z' + }) + ) +} + +export default UilGold \ No newline at end of file diff --git a/src/icons/uil-golf-ball.ts b/src/icons/uil-golf-ball.ts new file mode 100644 index 00000000..53fa27d6 --- /dev/null +++ b/src/icons/uil-golf-ball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGolfBall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9a1,1,0,1,0,1,1A1,1,0,0,0,14,9Zm0-3a1,1,0,1,0,1,1A1,1,0,0,0,14,6ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8a1,1,0,1,0,1,1A1,1,0,0,0,17,8Z' + }) + ) +} + +export default UilGolfBall \ No newline at end of file diff --git a/src/icons/uil-google-drive-alt.ts b/src/icons/uil-google-drive-alt.ts new file mode 100644 index 00000000..0ffaff7d --- /dev/null +++ b/src/icons/uil-google-drive-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGoogleDriveAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,14.44a.62.62,0,0,0,0-.13.61.61,0,0,1,0-.12l-.05-.12h0l-6-10.29A1,1,0,0,0,15,3.29H9a1,1,0,0,0-.5.13l-.11.08a.73.73,0,0,0-.09.08.58.58,0,0,0-.1.12s0,0-.06.08h0l-6,10.33a1,1,0,0,0,0,1l3,5.08h0a.83.83,0,0,0,.11.15l0,.06a1.1,1.1,0,0,0,.44.26h0a.83.83,0,0,0,.22,0H18a1,1,0,0,0,.86-.49l3-5.14h0l.05-.12a.61.61,0,0,1,0-.12.53.53,0,0,0,0-.13.51.51,0,0,0,0-.13A.59.59,0,0,0,22,14.44ZM6,17.73l-1.79-3.1L9,6.27l.87,1.5,1,1.66L7,15.91ZM12,11.41l1.26,2.16H10.72Zm5.43,7.3H7.7l1.84-3.14h9.72Zm-1.86-5.14L10.74,5.29h3.69l4.83,8.28Z' + }) + ) +} + +export default UilGoogleDriveAlt \ No newline at end of file diff --git a/src/icons/uil-google-drive.ts b/src/icons/uil-google-drive.ts new file mode 100644 index 00000000..9c83b84d --- /dev/null +++ b/src/icons/uil-google-drive.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGoogleDrive = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.4231,13.88785,15.33356,3.33792H8.66663l6.09,10.54993ZM8.08917,4.33835,2,14.88736l3.33356,5.77472,6.08911-10.54926Zm1.73273,10.549L6.48877,20.66208H18.66663L22,14.88736Z' + }) + ) +} + +export default UilGoogleDrive \ No newline at end of file diff --git a/src/icons/uil-google-hangouts-alt.ts b/src/icons/uil-google-hangouts-alt.ts new file mode 100644 index 00000000..97164f0e --- /dev/null +++ b/src/icons/uil-google-hangouts-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGoogleHangoutsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.9917,7.69049a2,2,0,0,0,0,4l.01514-.00153v.50147a.501.501,0,0,1-.5.5,1,1,0,0,0,0,2,2.50232,2.50232,0,0,0,2.5-2.5v-2.5A.94144.94144,0,0,0,10.9765,9.54,1.99365,1.99365,0,0,0,8.9917,7.69049Zm2.99951-6.68854a9.78734,9.78734,0,0,0-1,19.52344V22.002a.99911.99911,0,0,0,1.23926.97071A12.53481,12.53481,0,0,0,21.69727,11.998a9.73409,9.73409,0,0,0-9.70606-10.9961ZM19.709,11.78223a10.54778,10.54778,0,0,1-6.71777,8.86035V19.57617a.99942.99942,0,0,0-1-1,7.78711,7.78711,0,1,1,7.78809-7.78711A7.94524,7.94524,0,0,1,19.709,11.78223ZM14.9917,7.69049a2,2,0,1,0,0,4l.01514-.00153v.50147a.501.501,0,0,1-.5.5,1,1,0,0,0,0,2,2.50232,2.50232,0,0,0,2.5-2.5v-2.5A.94144.94144,0,0,0,16.9765,9.54,1.99365,1.99365,0,0,0,14.9917,7.69049Z' + }) + ) +} + +export default UilGoogleHangoutsAlt \ No newline at end of file diff --git a/src/icons/uil-google-hangouts.ts b/src/icons/uil-google-hangouts.ts new file mode 100644 index 00000000..66dc8956 --- /dev/null +++ b/src/icons/uil-google-hangouts.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGoogleHangouts = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.44411,9.05505a8.50456,8.50456,0,0,0-2.17292-4.334,8.40344,8.40344,0,0,0-1.62213-1.35748,8.48891,8.48891,0,0,0-3.6405-1.30927A4.15272,4.15272,0,0,1,12.52766,2H11.3932c-.01226.02863-.03857.01819-.05944.02014-.29212.02576-.58283.059-.87116.11365A8.45336,8.45336,0,0,0,5.28615,5.2384a8.35853,8.35853,0,0,0-1.8393,4.7085,8.58926,8.58926,0,0,0,.18476,2.52869,8.1479,8.1479,0,0,0,.62426,1.79c.02448.04871.04859.09742.07349.14606A8.601,8.601,0,0,0,6.1125,16.80835a8.5306,8.5306,0,0,0,5.76313,2.33246c.10015.0014.12744.02606.12683.12848-.00458.87353-.00263,1.74719-.00238,2.62085.00006.03393.00268.06775.00464.10986.02825-.01147.04595-.018.063-.02606A17.98894,17.98894,0,0,0,16.558,19.008q.40055-.36466.76892-.76246c.10529-.11334.20972-.22869.31525-.34191.163-.17432.30407-.36908.45776-.55262.17749-.21173.33679-.43676.494-.66327a11.03342,11.03342,0,0,0,.91852-1.5744c.13195-.27887.25756-.55993.36877-.84759a.09617.09617,0,0,0,.01105-.01612,10.277,10.277,0,0,0,.60058-2.439c.03607-.29126.05945-.58435.07422-.87726A8.14067,8.14067,0,0,0,20.44411,9.05505Zm-9.18994,2.81934a2.5047,2.5047,0,0,1-.84,1.87732c-.02844.02637-.056.05389-.08374.08087a2.68427,2.68427,0,0,1-.93378.48065,3.80048,3.80048,0,0,1-.44757.0849.2109.2109,0,0,1-.23492-.15216l.00116-.96814c.00567-.095-.0326-.19678.04352-.28058A.26578.26578,0,0,1,8.897,12.9129a1.77446,1.77446,0,0,0,.49414-.16845,1.13159,1.13159,0,0,0,.53808-.73169c.01215-.05011.02381-.10053.0354-.15088Q8.9438,11.86,7.92323,11.85852a.65268.65268,0,0,1-.17431-.018.413.413,0,0,1-.30652-.38532q-.00192-1.54339.00152-3.087a.46722.46722,0,0,1,.13837-.436.387.387,0,0,1,.25629-.10205q1.50083-.00027,3.00177-.00055a.41616.41616,0,0,1,.39929.52765.38789.38789,0,0,1,.0166.153C11.25649,9.63147,11.26277,10.75317,11.25417,11.87439Zm5.3031.005a2.55694,2.55694,0,0,1-1.55652,2.32789c-.02338.01-.04566.02294-.06848.03442l-.03815.01068-.02161.01227a4.5917,4.5917,0,0,1-.5888.12933.2158.2158,0,0,1-.26941-.21692c-.00153-.10736-.00232-.215-.00318-.32245l.00556-.57727c-.00086-.04254-.00238-.08471-.00226-.127.00018-.14783.057-.2102.24078-.25214a1.31856,1.31856,0,0,0,.63361-.29693,1.26351,1.26351,0,0,0,.37756-.73963l-1.8858-.0036c-.06836-.00012-.13678.00086-.20526-.0003a.419.419,0,0,1-.43244-.43982q.00047-1.52445.00238-3.04877l-.0017-.02936a.43441.43441,0,0,1,.20385-.45166A.38972.38972,0,0,1,13.16,7.83q1.49094-.00082,2.98187-.00086a.41625.41625,0,0,1,.39917.52771.39178.39178,0,0,1,.01654.15289Q16.55757,10.19455,16.55727,11.87939Z' + }) + ) +} + +export default UilGoogleHangouts \ No newline at end of file diff --git a/src/icons/uil-google-play.ts b/src/icons/uil-google-play.ts new file mode 100644 index 00000000..37b4847f --- /dev/null +++ b/src/icons/uil-google-play.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGooglePlay = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.91887,10.653c-.31445-.16992-3.01074-1.73438-4.02246-2.32324l-.00293-.002L4.6386,1.25262a1.679,1.679,0,0,0-1.40711-.1593c-.02618.0094-.05078.01886-.07623.03051a1.41835,1.41835,0,0,0-.17291.06922,1.51864,1.51864,0,0,0-.73828,1.36426V21.54266a1.43542,1.43542,0,0,0,.69238,1.2705,1.30761,1.30761,0,0,0,.15479.06373c.02893.01336.05651.025.08636.03552a1.37893,1.37893,0,0,0,.44635.0824,1.67263,1.67263,0,0,0,.83106-.23145c.38867-.22559,12.43847-7.18262,12.43847-7.18262L20.914,13.25945a1.52522,1.52522,0,0,0,.8418-1.334A1.49078,1.49078,0,0,0,20.91887,10.653ZM4.24407,19.839V4.10186l7.94012,7.85907Zm5.018-2.16168,4.34351-4.30957,1.14954,1.13782C13.49047,15.23583,11.35381,16.4696,9.26207,17.67736Zm4.3418-7.125L9.206,6.19933l5.55365,3.2063ZM16.55065,13.469l-1.52539-1.50977L16.553,10.44341c.72027.41828,1.84283,1.06934,2.6159,1.51429Z' + }) + ) +} + +export default UilGooglePlay \ No newline at end of file diff --git a/src/icons/uil-google.ts b/src/icons/uil-google.ts new file mode 100644 index 00000000..0b50df93 --- /dev/null +++ b/src/icons/uil-google.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGoogle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.60229,10.00391a1.00005,1.00005,0,0,0-.98388-.82227H12.2a.99974.99974,0,0,0-1,1V14.0498a.99974.99974,0,0,0,1,1h3.9624a3.65162,3.65162,0,0,1-1.13183,1.1875A5.0604,5.0604,0,0,1,12.2,17.02246a4.93525,4.93525,0,0,1-4.64624-3.4378L7.55347,13.583a4.90382,4.90382,0,0,1,0-3.167l.00024-.00165A4.9356,4.9356,0,0,1,12.2,6.97754,4.37756,4.37756,0,0,1,15.3313,8.19531a1.00053,1.00053,0,0,0,1.39844-.01562L19.5979,5.31152a.99918.99918,0,0,0-.02539-1.43847A10.62342,10.62342,0,0,0,12.2,1,10.949,10.949,0,0,0,2.37134,7.05878l-.00147.00177A10.92175,10.92175,0,0,0,1.2,12a11.07862,11.07862,0,0,0,1.16992,4.93945l.00147.00177A10.949,10.949,0,0,0,12.2,23a10.5255,10.5255,0,0,0,7.29468-2.687l.00073-.00049.00079-.00085.00019-.00013.00006-.00012a10.78575,10.78575,0,0,0,3.30365-8.08386A12.51533,12.51533,0,0,0,22.60229,10.00391ZM12.2,3a8.68219,8.68219,0,0,1,5.2085,1.67285L15.95483,6.126A6.46322,6.46322,0,0,0,12.2,4.97754,6.88648,6.88648,0,0,0,6.21069,8.52832L5.14148,7.69958l-.585-.45367A8.95257,8.95257,0,0,1,12.2,3ZM3.67944,14.90332a9.02957,9.02957,0,0,1,0-5.80664l1.78223,1.38184a6.85381,6.85381,0,0,0,0,3.042ZM12.2,21A8.9528,8.9528,0,0,1,4.5564,16.75391l.37841-.29352,1.27588-.98969A6.88482,6.88482,0,0,0,12.2,19.02246a7.27662,7.27662,0,0,0,3.30573-.75079L17.19739,19.585A8.88989,8.88989,0,0,1,12.2,21Zm6.52588-2.76074-.183-.142L17.16553,17.028a5.60626,5.60626,0,0,0,1.39966-2.79553.9998.9998,0,0,0-.9834-1.18262H13.2V11.18164h7.54883c.03418.3457.05127.69531.05127,1.0459A9.05156,9.05156,0,0,1,18.72583,18.23926Z' + }) + ) +} + +export default UilGoogle \ No newline at end of file diff --git a/src/icons/uil-graduation-cap.ts b/src/icons/uil-graduation-cap.ts new file mode 100644 index 00000000..cc2a49a4 --- /dev/null +++ b/src/icons/uil-graduation-cap.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGraduationCap = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.49,10.19l-1-.55h0l-9-5-.11,0a1.06,1.06,0,0,0-.19-.06l-.19,0-.18,0a1.17,1.17,0,0,0-.2.06l-.11,0-9,5a1,1,0,0,0,0,1.74L4,12.76V17.5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V12.76l2-1.12V14.5a1,1,0,0,0,2,0V11.06A1,1,0,0,0,21.49,10.19ZM16,17.5a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V13.87l4.51,2.5.15.06.09,0a1,1,0,0,0,.25,0h0a1,1,0,0,0,.25,0l.09,0a.47.47,0,0,0,.15-.06L16,13.87Zm-5-3.14L4.06,10.5,11,6.64l6.94,3.86Z' + }) + ) +} + +export default UilGraduationCap \ No newline at end of file diff --git a/src/icons/uil-graph-bar.ts b/src/icons/uil-graph-bar.ts new file mode 100644 index 00000000..a318b521 --- /dev/null +++ b/src/icons/uil-graph-bar.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGraphBar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6,13H2a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1H6a1,1,0,0,0,1-1V14A1,1,0,0,0,6,13ZM5,21H3V15H5ZM22,9H18a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,22,9ZM21,21H19V11h2ZM14,1H10A1,1,0,0,0,9,2V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V2A1,1,0,0,0,14,1ZM13,21H11V3h2Z' + }) + ) +} + +export default UilGraphBar \ No newline at end of file diff --git a/src/icons/uil-grid.ts b/src/icons/uil-grid.ts new file mode 100644 index 00000000..71ea422f --- /dev/null +++ b/src/icons/uil-grid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGrid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V16h7Zm0-6H4V10h7Zm9,6H13V16h7Zm0-6H13V10h7Zm0-6H4V4H20Z' + }) + ) +} + +export default UilGrid \ No newline at end of file diff --git a/src/icons/uil-grids.ts b/src/icons/uil-grids.ts new file mode 100644 index 00000000..c4374939 --- /dev/null +++ b/src/icons/uil-grids.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGrids = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm6,0H10V4h4Zm6,0H16V4h4Z' + }) + ) +} + +export default UilGrids \ No newline at end of file diff --git a/src/icons/uil-grin-tongue-wink-alt.ts b/src/icons/uil-grin-tongue-wink-alt.ts new file mode 100644 index 00000000..3c883f3d --- /dev/null +++ b/src/icons/uil-grin-tongue-wink-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGrinTongueWinkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9Zm0,4H9a1,1,0,0,0,0,2,3,3,0,0,0,6,0,1,1,0,0,0,0-2Zm-3,3a1,1,0,0,1-1-1h2A1,1,0,0,1,12,16Z' + }) + ) +} + +export default UilGrinTongueWinkAlt \ No newline at end of file diff --git a/src/icons/uil-grin-tongue-wink.ts b/src/icons/uil-grin-tongue-wink.ts new file mode 100644 index 00000000..f6721c4f --- /dev/null +++ b/src/icons/uil-grin-tongue-wink.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGrinTongueWink = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,2H9a1,1,0,0,0,0,2,3,3,0,0,0,6,0,1,1,0,0,0,0-2Zm-3,3a1,1,0,0,1-1-1h2A1,1,0,0,1,12,16Z' + }) + ) +} + +export default UilGrinTongueWink \ No newline at end of file diff --git a/src/icons/uil-grin.ts b/src/icons/uil-grin.ts new file mode 100644 index 00000000..eefaeb3d --- /dev/null +++ b/src/icons/uil-grin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGrin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm3-9A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm3-7H9a1,1,0,0,0-1,1,4,4,0,0,0,8,0A1,1,0,0,0,15,13Zm-3,3a2,2,0,0,1-1.73-1h3.46A2,2,0,0,1,12,16Zm3-7a1,1,0,1,0,1,1A1,1,0,0,0,15,9Z' + }) + ) +} + +export default UilGrin \ No newline at end of file diff --git a/src/icons/uil-grip-horizontal-line.ts b/src/icons/uil-grip-horizontal-line.ts new file mode 100644 index 00000000..f6581fae --- /dev/null +++ b/src/icons/uil-grip-horizontal-line.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilGripHorizontalLine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,11H21a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Zm18,2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilGripHorizontalLine \ No newline at end of file diff --git a/src/icons/uil-hard-hat.ts b/src/icons/uil-hard-hat.ts new file mode 100644 index 00000000..cb3abe33 --- /dev/null +++ b/src/icons/uil-hard-hat.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHardHat = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,13.17V13a8,8,0,0,0-2.42-5.74A7.84,7.84,0,0,0,14.4,5.38l-.05,0A8.24,8.24,0,0,0,11.76,5,8.21,8.21,0,0,0,4,13.17,3,3,0,0,0,5,19H19a3,3,0,0,0,1-5.83ZM19,17H5a1,1,0,0,1,0-2H7a1,1,0,0,0,0-2H6A6.41,6.41,0,0,1,9,7.85V11a1,1,0,0,0,2,0V7.09A7.34,7.34,0,0,1,11.82,7H12a5.56,5.56,0,0,1,1,.1V11a1,1,0,0,0,2,0V7.82a6.65,6.65,0,0,1,1.18.87A6,6,0,0,1,18,13H17a1,1,0,0,0,0,2h2a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilHardHat \ No newline at end of file diff --git a/src/icons/uil-hdd.ts b/src/icons/uil-hdd.ts new file mode 100644 index 00000000..36502a7b --- /dev/null +++ b/src/icons/uil-hdd.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,14.86a0,0,0,0,1,0,0v-.05a2.61,2.61,0,0,0-.1-.57L20.26,4.51a3,3,0,0,0-3-2.51H6.69A3,3,0,0,0,3.74,4.51L2.12,14.22a2.61,2.61,0,0,0-.1.57v.05a0,0,0,0,1,0,0C2,14.91,2,15,2,15v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15C22,15,22,14.91,22,14.86ZM5.71,4.83a1,1,0,0,1,1-.83H17.31a1,1,0,0,1,1,.83l1.2,7.22A2.63,2.63,0,0,0,19,12H5a2.63,2.63,0,0,0-.49.05ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15.08l.08-.46A1,1,0,0,1,5,14H19a1,1,0,0,1,.92.62l.08.46Zm-3-3a1,1,0,1,0,1,1A1,1,0,0,0,17,16Z' + }) + ) +} + +export default UilHdd \ No newline at end of file diff --git a/src/icons/uil-head-side-cough.ts b/src/icons/uil-head-side-cough.ts new file mode 100644 index 00000000..04aa067a --- /dev/null +++ b/src/icons/uil-head-side-cough.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadSideCough = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.293 20.293a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0Zm-3-3a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0Zm4-1a1 1 0 1 0 1.414 0 1 1 0 0 0-1.414 0ZM16.15 2.002a7.067 7.067 0 0 0-7.284 7.063v.016l-1.77 3.758A1 1 0 0 0 8 14.267h.866v1.8A1.935 1.935 0 0 0 10.8 18h.867v1.8a1 1 0 0 0 2 0v-1.814A.994.994 0 0 0 13.6 16l-.833.02a.94.94 0 0 0-.1-.02.94.94 0 0 0-.128.026l-1.673.04v-2.8a1 1 0 0 0-1-1h-.289l1.205-2.558a.99.99 0 0 0 .095-.468l-.01-.174a5.025 5.025 0 0 1 1.537-3.635 5.092 5.092 0 0 1 3.686-1.429A5.239 5.239 0 0 1 21 9.322l-1.833 6.987a1.008 1.008 0 0 0 .006.533l.932 3.235a1 1 0 0 0 .961.723 1.017 1.017 0 0 0 .278-.04 1 1 0 0 0 .683-1.237l-.856-2.97 1.796-6.763A1.031 1.031 0 0 0 23 9.533v-.212a7.252 7.252 0 0 0-6.85-7.318Z' + }) + ) +} + +export default UilHeadSideCough \ No newline at end of file diff --git a/src/icons/uil-head-side-mask.ts b/src/icons/uil-head-side-mask.ts new file mode 100644 index 00000000..ba0b725c --- /dev/null +++ b/src/icons/uil-head-side-mask.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadSideMask = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.23 2.003a7.367 7.367 0 0 0-5.453 2.114A7.441 7.441 0 0 0 5.5 9.465l-1.844 2.998a.995.995 0 0 0-.156.52v.04a1 1 0 0 0 .07.347l1.44 3.873c.012.034.027.067.043.099A2.984 2.984 0 0 0 7.736 19H8.5v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 .321-.053l3.7-1.256a.999.999 0 0 0 .018.12l1 3.466A1.001 1.001 0 0 0 18.5 22a1.018 1.018 0 0 0 .277-.04 1 1 0 0 0 .684-1.237l-.924-3.2 1.93-7.267A1.031 1.031 0 0 0 20.5 10v-.228a7.698 7.698 0 0 0-7.27-7.769ZM11.5 17H7.736a.995.995 0 0 1-.874-.513L5.938 14H11.5Zm5.523-1.591L13.5 16.605V13.72l4.345-1.448Zm1.412-5.389a.973.973 0 0 0-.251.031L12.337 12H6.29l1.074-1.747a1 1 0 0 0 .148-.562L7.5 9.5a5.455 5.455 0 0 1 1.67-3.947 5.522 5.522 0 0 1 4-1.55 5.685 5.685 0 0 1 5.33 5.77Z' + }) + ) +} + +export default UilHeadSideMask \ No newline at end of file diff --git a/src/icons/uil-head-side.ts b/src/icons/uil-head-side.ts new file mode 100644 index 00000000..ecaa3472 --- /dev/null +++ b/src/icons/uil-head-side.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadSide = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.23 2.003a7.372 7.372 0 0 0-5.453 2.114A7.44 7.44 0 0 0 5.5 9.5v.03l-1.904 4.044A1 1 0 0 0 4.5 15h1v2a2.002 2.002 0 0 0 2 2h1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0 0-2h-3v-3a1 1 0 0 0-1-1h-.424l1.34-2.844a.99.99 0 0 0 .095-.465L7.5 9.5a5.455 5.455 0 0 1 1.67-3.947 5.527 5.527 0 0 1 4-1.55 5.685 5.685 0 0 1 5.33 5.77l-1.967 7.504a1.01 1.01 0 0 0 .006.534l1 3.466A1.001 1.001 0 0 0 18.5 22a1.018 1.018 0 0 0 .277-.04 1 1 0 0 0 .684-1.237l-.924-3.2 1.93-7.267A1.031 1.031 0 0 0 20.5 10v-.228a7.698 7.698 0 0 0-7.27-7.769Z' + }) + ) +} + +export default UilHeadSide \ No newline at end of file diff --git a/src/icons/uil-headphone-slash.ts b/src/icons/uil-headphone-slash.ts new file mode 100644 index 00000000..811f429d --- /dev/null +++ b/src/icons/uil-headphone-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadphoneSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.06934,5.93555a9.94468,9.94468,0,0,0-9.38868-2.6709.99992.99992,0,0,0,.43848,1.95117A8.0193,8.0193,0,0,1,20,13h-.33984a1,1,0,0,0,0,2H20v.33984a1,1,0,1,0,2,0V13A9.88842,9.88842,0,0,0,19.06934,5.93555ZM3.707,2.293A.99989.99989,0,0,0,2.293,3.707L4.72833,6.1424A9.96176,9.96176,0,0,0,2,13v7a1,1,0,0,0,1,1H6a3.00328,3.00328,0,0,0,3-3V16a3.00328,3.00328,0,0,0-3-3H4A7.96344,7.96344,0,0,1,6.14453,7.55859L15,16.41406V18a3.00328,3.00328,0,0,0,3,3h1.58594l.707.707A.99989.99989,0,0,0,21.707,20.293ZM6,15a1.0013,1.0013,0,0,1,1,1v2a1.0013,1.0013,0,0,1-1,1H4V15Z' + }) + ) +} + +export default UilHeadphoneSlash \ No newline at end of file diff --git a/src/icons/uil-headphones-alt.ts b/src/icons/uil-headphones-alt.ts new file mode 100644 index 00000000..c213b45d --- /dev/null +++ b/src/icons/uil-headphones-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadphonesAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,13.18V11A8,8,0,0,0,4,11v2.18A3,3,0,0,0,2,16v2a3,3,0,0,0,3,3H8a1,1,0,0,0,1-1V14a1,1,0,0,0-1-1H6V11a6,6,0,0,1,12,0v2H16a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h3a3,3,0,0,0,3-3V16A3,3,0,0,0,20,13.18ZM7,15v4H5a1,1,0,0,1-1-1V16a1,1,0,0,1,1-1Zm13,3a1,1,0,0,1-1,1H17V15h2a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilHeadphonesAlt \ No newline at end of file diff --git a/src/icons/uil-headphones.ts b/src/icons/uil-headphones.ts new file mode 100644 index 00000000..8abfaee3 --- /dev/null +++ b/src/icons/uil-headphones.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeadphones = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,3A10,10,0,0,0,2,13v7a1,1,0,0,0,1,1H6a3,3,0,0,0,3-3V16a3,3,0,0,0-3-3H4a8,8,0,0,1,16,0H18a3,3,0,0,0-3,3v2a3,3,0,0,0,3,3h3a1,1,0,0,0,1-1V13A10,10,0,0,0,12,3ZM6,15a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1H4V15Zm14,4H18a1,1,0,0,1-1-1V16a1,1,0,0,1,1-1h2Z' + }) + ) +} + +export default UilHeadphones \ No newline at end of file diff --git a/src/icons/uil-heart-alt.ts b/src/icons/uil-heart-alt.ts new file mode 100644 index 00000000..af64bfc4 --- /dev/null +++ b/src/icons/uil-heart-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.16,4.61A6.27,6.27,0,0,0,12,4a6.27,6.27,0,0,0-8.16,9.48l7.45,7.45a1,1,0,0,0,1.42,0l7.45-7.45A6.27,6.27,0,0,0,20.16,4.61Zm-1.41,7.46L12,18.81,5.25,12.07a4.28,4.28,0,0,1,3-7.3,4.25,4.25,0,0,1,3,1.25,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,6.05Z' + }) + ) +} + +export default UilHeartAlt \ No newline at end of file diff --git a/src/icons/uil-heart-break.ts b/src/icons/uil-heart-break.ts new file mode 100644 index 00000000..54be1382 --- /dev/null +++ b/src/icons/uil-heart-break.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartBreak = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.16 4.61A6.27 6.27 0 0 0 12 4a6.27 6.27 0 0 0-8.16 9.48l7.45 7.46a1 1 0 0 0 1.42 0l7.45-7.46a6.27 6.27 0 0 0 0-8.87Zm-1.41 7.45L12 18.81l-6.75-6.75a4.26 4.26 0 0 1 5.54-6.45l-1.71 4a1 1 0 0 0 0 .83 1 1 0 0 0 .65.53l2.77.7-1.4 2.89a1 1 0 0 0 .46 1.34 1 1 0 0 0 .44.1 1 1 0 0 0 .9-.56l2-4a1 1 0 0 0 0-.86 1.05 1.05 0 0 0-.67-.55l-2.83-.71 1.45-3.39a4.26 4.26 0 0 1 5.92 6.13Z' + }) + ) +} + +export default UilHeartBreak \ No newline at end of file diff --git a/src/icons/uil-heart-medical.ts b/src/icons/uil-heart-medical.ts new file mode 100644 index 00000000..a80a5aef --- /dev/null +++ b/src/icons/uil-heart-medical.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartMedical = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,11H13V10a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V13h1a1,1,0,0,0,0-2Zm6.16-6A6.29,6.29,0,0,0,12,4.41a6.27,6.27,0,0,0-8.16,9.48l6,6.05a3,3,0,0,0,4.24,0l6-6.05A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6,6a1,1,0,0,1-1.42,0l-6-6a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,0A4.29,4.29,0,0,1,18.75,12.48Z' + }) + ) +} + +export default UilHeartMedical \ No newline at end of file diff --git a/src/icons/uil-heart-rate.ts b/src/icons/uil-heart-rate.ts new file mode 100644 index 00000000..3f50faa4 --- /dev/null +++ b/src/icons/uil-heart-rate.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartRate = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H17.06a.78.78,0,0,0-.21,0l-.17,0a1.3,1.3,0,0,0-.15.1,1.67,1.67,0,0,0-.16.12,1,1,0,0,0-.09.13,1.32,1.32,0,0,0-.12.2v0l-1.6,4.41L10.39,4.66a1,1,0,0,0-1.88,0L6.2,11H3a1,1,0,0,0,0,2H6.92L7.15,13l.15,0a.86.86,0,0,0,.16-.1,1.67,1.67,0,0,0,.16-.12l.09-.13a1,1,0,0,0,.12-.2v0L9.45,7.92l4.16,11.42a1,1,0,0,0,.94.66h0a1,1,0,0,0,.94-.66L17.79,13H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilHeartRate \ No newline at end of file diff --git a/src/icons/uil-heart-sign.ts b/src/icons/uil-heart-sign.ts new file mode 100644 index 00000000..36b655e6 --- /dev/null +++ b/src/icons/uil-heart-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.16,5A6.29,6.29,0,0,0,12,4.41a6.27,6.27,0,0,0-8.16,9.48l6,6.05a3,3,0,0,0,4.24,0l6-6.05A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6,6a1,1,0,0,1-1.42,0l-6-6a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,6Z' + }) + ) +} + +export default UilHeartSign \ No newline at end of file diff --git a/src/icons/uil-heart.ts b/src/icons/uil-heart.ts new file mode 100644 index 00000000..66d31e62 --- /dev/null +++ b/src/icons/uil-heart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.16,5A6.29,6.29,0,0,0,12,4.36a6.27,6.27,0,0,0-8.16,9.48l6.21,6.22a2.78,2.78,0,0,0,3.9,0l6.21-6.22A6.27,6.27,0,0,0,20.16,5Zm-1.41,7.46-6.21,6.21a.76.76,0,0,1-1.08,0L5.25,12.43a4.29,4.29,0,0,1,0-6,4.27,4.27,0,0,1,6,0,1,1,0,0,0,1.42,0,4.27,4.27,0,0,1,6,0A4.29,4.29,0,0,1,18.75,12.43Z' + }) + ) +} + +export default UilHeart \ No newline at end of file diff --git a/src/icons/uil-heartbeat.ts b/src/icons/uil-heartbeat.ts new file mode 100644 index 00000000..b2cd5d24 --- /dev/null +++ b/src/icons/uil-heartbeat.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHeartbeat = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10.41H18.5a1,1,0,0,0-.71.3L16.55,12l-2.8-3.19a1,1,0,0,0-1.46,0l-1.7,1.7H9a1,1,0,0,0,0,2h2a1,1,0,0,0,.71-.29L13,10.88l2.8,3.19a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29l1.7-1.71H21a1,1,0,0,0,0-2Zm-7.39,5.3-1.9,1.9a1,1,0,0,1-1.42,0L5.08,12.4a3.69,3.69,0,0,1,0-5.22,3.69,3.69,0,0,1,5.21,0,1,1,0,0,0,1.42,0,3.78,3.78,0,0,1,5.21,0,3.94,3.94,0,0,1,.58.75,1,1,0,0,0,1.72-1,6,6,0,0,0-.88-1.13A5.68,5.68,0,0,0,11,5.17,5.68,5.68,0,0,0,2,9.79a5.62,5.62,0,0,0,1.67,4L8.88,19a3,3,0,0,0,4.24,0L15,17.12a1,1,0,0,0,0-1.41A1,1,0,0,0,13.61,15.71Z' + }) + ) +} + +export default UilHeartbeat \ No newline at end of file diff --git a/src/icons/uil-hindi-to-chinese.ts b/src/icons/uil-hindi-to-chinese.ts new file mode 100644 index 00000000..62247347 --- /dev/null +++ b/src/icons/uil-hindi-to-chinese.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHindiToChinese = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.022,2h-2a1,1,0,0,0,0,2V6H7.83771A2.96481,2.96481,0,0,0,8.022,5,3,3,0,0,0,2.42383,3.5a1.00016,1.00016,0,1,0,1.73242,1A1.00171,1.00171,0,0,1,5.022,4a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,0,1,0,2,1.00171,1.00171,0,0,1-.86572-.5,1.00016,1.00016,0,1,0-1.73242,1A3,3,0,0,0,8.022,9a2.96481,2.96481,0,0,0-.18426-1H9.022v3a1,1,0,0,0,2,0V4a1,1,0,0,0,0-2Zm3,5h1a1.0013,1.0013,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.0013,1.0013,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Zm11-1a1,1,0,0,0,0-2h-3v-.5a1,1,0,0,0-2,0V13h-3a1,1,0,0,0,0,2h5.18427a6.72756,6.72756,0,0,1-1.22553,2.52667,6.66828,6.66828,0,0,1-.62915-.98272.99972.99972,0,1,0-1.77929.9121,8.67791,8.67791,0,0,0,.9591,1.468A6.6182,6.6182,0,0,1,13.10645,20.023a1.00008,1.00008,0,0,0,.42675,1.9541,8.63506,8.63506,0,0,0,3.445-1.62164,8.72368,8.72368,0,0,0,3.46857,1.62115,1,1,0,1,0,.43066-1.95312,6.72477,6.72477,0,0,1-2.4461-1.09009A8.73637,8.73637,0,0,0,20.24371,15Z' + }) + ) +} + +export default UilHindiToChinese \ No newline at end of file diff --git a/src/icons/uil-hipchat.ts b/src/icons/uil-hipchat.ts new file mode 100644 index 00000000..322f75c6 --- /dev/null +++ b/src/icons/uil-hipchat.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHipchat = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.5 13.9c0-.2-.2-.4-.4-.4-.1 0-.2 0-.3.1-1.3 1.1-3 1.7-4.8 1.7-1.7 0-3.4-.6-4.8-1.7-.1-.1-.2-.1-.3-.1-.2 0-.4.2-.4.4s.1.3.2.5C8 16 10 16.9 12 16.8c2 .1 3.9-.8 5.2-2.4.2-.2.2-.3.3-.5zm2.7 6.9c-.8-.4-1.4-1.2-1.7-2-.1-.2 0-.3.1-.4 2.1-1.5 3.3-3.9 3.3-6.4 0-4.8-4.5-8.6-10-8.6s-10 3.9-10 8.6c0 4.8 4.5 8.6 10 8.6.7 0 1.4-.1 2.1-.2.1 0 .3 0 .4.1 1.6.9 3.4 1.5 5.2 1.5.4.1.7-.2.8-.6v-.1c.1-.2 0-.4-.2-.5zm-2.7-.8v.1c0 .1-.1.1-.1.1-1.1-.3-2-.8-2.9-1.5-.1-.1-.3-.1-.5-.1-.7.2-1.4.2-2.1.2-4.6 0-8.3-3.1-8.3-6.9C3.6 8.1 7.3 5 11.9 5c4.6 0 8.3 3.1 8.3 6.9-.1 2.3-1.4 4.4-3.4 5.5-.2.1-.3.3-.3.4.3.9.6 1.6 1 2.2z' + }) + ) +} + +export default UilHipchat \ No newline at end of file diff --git a/src/icons/uil-history-alt.ts b/src/icons/uil-history-alt.ts new file mode 100644 index 00000000..70a31cfa --- /dev/null +++ b/src/icons/uil-history-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHistoryAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.44,2A10,10,0,0,0,4.56,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.06a1,1,0,0,0,0-2H5.66A8,8,0,1,1,11.44,20a1,1,0,1,0,0,2,10,10,0,1,0,0-20Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2h-1V9A1,1,0,0,0,11.44,8Z' + }) + ) +} + +export default UilHistoryAlt \ No newline at end of file diff --git a/src/icons/uil-history.ts b/src/icons/uil-history.ts new file mode 100644 index 00000000..2dc07828 --- /dev/null +++ b/src/icons/uil-history.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHistory = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.62a1,1,0,0,0,0-2H6.22A8,8,0,1,1,4,12a1,1,0,0,0-2,0A10,10,0,1,0,12,2Zm0,6a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2H13V9A1,1,0,0,0,12,8Z' + }) + ) +} + +export default UilHistory \ No newline at end of file diff --git a/src/icons/uil-home.ts b/src/icons/uil-home.ts new file mode 100644 index 00000000..27f39e21 --- /dev/null +++ b/src/icons/uil-home.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHome = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.66,10.25l-9-8a1,1,0,0,0-1.32,0l-9,8a1,1,0,0,0-.27,1.11A1,1,0,0,0,3,12H4v9a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V12h1a1,1,0,0,0,.93-.64A1,1,0,0,0,21.66,10.25ZM13,20H11V17a1,1,0,0,1,2,0Zm5,0H15V17a3,3,0,0,0-6,0v3H6V12H18ZM5.63,10,12,4.34,18.37,10Z' + }) + ) +} + +export default UilHome \ No newline at end of file diff --git a/src/icons/uil-horizontal-align-center.ts b/src/icons/uil-horizontal-align-center.ts new file mode 100644 index 00000000..86de70f2 --- /dev/null +++ b/src/icons/uil-horizontal-align-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalAlignCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10H19V7a1,1,0,0,0-1-1H13V3a1,1,0,0,0-2,0V6H6A1,1,0,0,0,5,7v3H3a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h8v3a1,1,0,0,0,2,0V18h8a1,1,0,0,0,1-1V11A1,1,0,0,0,21,10ZM7,8H17v2H7Zm13,8H4V12H20Z' + }) + ) +} + +export default UilHorizontalAlignCenter \ No newline at end of file diff --git a/src/icons/uil-horizontal-align-left.ts b/src/icons/uil-horizontal-align-left.ts new file mode 100644 index 00000000..357df089 --- /dev/null +++ b/src/icons/uil-horizontal-align-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalAlignLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10H16V7a1,1,0,0,0-1-1H4V3A1,1,0,0,0,2,3V21a1,1,0,0,0,2,0V18H21a1,1,0,0,0,1-1V11A1,1,0,0,0,21,10ZM4,8H14v2H4Zm16,8H4V12H20Z' + }) + ) +} + +export default UilHorizontalAlignLeft \ No newline at end of file diff --git a/src/icons/uil-horizontal-align-right.ts b/src/icons/uil-horizontal-align-right.ts new file mode 100644 index 00000000..2c8d3008 --- /dev/null +++ b/src/icons/uil-horizontal-align-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalAlignRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2a1,1,0,0,0-1,1V6H9A1,1,0,0,0,8,7v3H3a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H20v3a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2ZM20,16H4V12H20Zm0-6H10V8H20Z' + }) + ) +} + +export default UilHorizontalAlignRight \ No newline at end of file diff --git a/src/icons/uil-horizontal-distribution-center.ts b/src/icons/uil-horizontal-distribution-center.ts new file mode 100644 index 00000000..7b6acbac --- /dev/null +++ b/src/icons/uil-horizontal-distribution-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalDistributionCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,5H18V3a1,1,0,0,0-2,0V5H15a1,1,0,0,0-1,1V18a1,1,0,0,0,1,1h1v2a1,1,0,0,0,2,0V19h1a1,1,0,0,0,1-1V6A1,1,0,0,0,19,5ZM18,17H16V7h2ZM11,4H9V3A1,1,0,0,0,7,3V4H5A1,1,0,0,0,4,5V19a1,1,0,0,0,1,1H7v1a1,1,0,0,0,2,0V20h2a1,1,0,0,0,1-1V5A1,1,0,0,0,11,4ZM10,18H6V6h4Z' + }) + ) +} + +export default UilHorizontalDistributionCenter \ No newline at end of file diff --git a/src/icons/uil-horizontal-distribution-left.ts b/src/icons/uil-horizontal-distribution-left.ts new file mode 100644 index 00000000..a15b3faa --- /dev/null +++ b/src/icons/uil-horizontal-distribution-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalDistributionLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,4H6V3A1,1,0,0,0,4,3V21a1,1,0,0,0,2,0V20h5a1,1,0,0,0,1-1V5A1,1,0,0,0,11,4ZM10,18H6V6h4ZM19,5H16V3a1,1,0,0,0-2,0V21a1,1,0,0,0,2,0V19h3a1,1,0,0,0,1-1V6A1,1,0,0,0,19,5ZM18,17H16V7h2Z' + }) + ) +} + +export default UilHorizontalDistributionLeft \ No newline at end of file diff --git a/src/icons/uil-horizontal-distribution-right.ts b/src/icons/uil-horizontal-distribution-right.ts new file mode 100644 index 00000000..2ecac418 --- /dev/null +++ b/src/icons/uil-horizontal-distribution-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHorizontalDistributionRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2a1,1,0,0,0-1,1V4H13a1,1,0,0,0-1,1V19a1,1,0,0,0,1,1h5v1a1,1,0,0,0,2,0V3A1,1,0,0,0,19,2ZM18,18H14V6h4ZM9,2A1,1,0,0,0,8,3V5H5A1,1,0,0,0,4,6V18a1,1,0,0,0,1,1H8v2a1,1,0,0,0,2,0V3A1,1,0,0,0,9,2ZM8,17H6V7H8Z' + }) + ) +} + +export default UilHorizontalDistributionRight \ No newline at end of file diff --git a/src/icons/uil-hospital-square-sign.ts b/src/icons/uil-hospital-square-sign.ts new file mode 100644 index 00000000..431d5c0f --- /dev/null +++ b/src/icons/uil-hospital-square-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHospitalSquareSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15 6a1 1 0 0 0-1 1v4h-4V7a1 1 0 0 0-2 0v10a1 1 0 0 0 2 0v-4h4v4a1 1 0 0 0 2 0V7a1 1 0 0 0-1-1Zm4-4H5a3.003 3.003 0 0 0-3 3v14a3.003 3.003 0 0 0 3 3h14a3.003 3.003 0 0 0 3-3V5a3.003 3.003 0 0 0-3-3Zm1 17a1.001 1.001 0 0 1-1 1H5a1.001 1.001 0 0 1-1-1V5a1.001 1.001 0 0 1 1-1h14a1.001 1.001 0 0 1 1 1Z' + }) + ) +} + +export default UilHospitalSquareSign \ No newline at end of file diff --git a/src/icons/uil-hospital-symbol.ts b/src/icons/uil-hospital-symbol.ts new file mode 100644 index 00000000..9b73c455 --- /dev/null +++ b/src/icons/uil-hospital-symbol.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHospitalSymbol = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15 7a1 1 0 0 0-1 1v3h-4V8a1 1 0 0 0-2 0v8a1 1 0 0 0 2 0v-3h4v3a1 1 0 0 0 2 0V8a1 1 0 0 0-1-1Zm-3-5a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2Zm0 18a8 8 0 1 1 8-8 8.01 8.01 0 0 1-8 8Z' + }) + ) +} + +export default UilHospitalSymbol \ No newline at end of file diff --git a/src/icons/uil-hospital.ts b/src/icons/uil-hospital.ts new file mode 100644 index 00000000..8d4de80a --- /dev/null +++ b/src/icons/uil-hospital.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHospital = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.5 16.5h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm0-4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-5 4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm0-4h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm14-6h-3v-4a1 1 0 0 0-1-1h-11a1 1 0 0 0-1 1v4h-3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h19a1 1 0 0 0 1-1v-14a1 1 0 0 0-1-1Zm-1 14h-17v-12h3a1 1 0 0 0 1-1v-4h9v4a1 1 0 0 0 1 1h3Zm-4-8a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Zm-3-5.5H13v-.5a1 1 0 0 0-2 0V7h-.5a1 1 0 0 0 0 2h.5v.5a1 1 0 0 0 2 0V9h.5a1 1 0 0 0 0-2Zm4 9.5h-1a1 1 0 0 0 0 2h1a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilHospital \ No newline at end of file diff --git a/src/icons/uil-hourglass.ts b/src/icons/uil-hourglass.ts new file mode 100644 index 00000000..6839021f --- /dev/null +++ b/src/icons/uil-hourglass.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHourglass = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.9917,21.002h-1V19.335a5.00057,5.00057,0,0,0-.29956-1.67773c-.01093-.02936-.0224-.05658-.03589-.08454a4.97694,4.97694,0,0,0-.66455-1.23675l-1.3999-1.86719a3.01933,3.01933,0,0,1-.6001-1.80078V11.6582a3.02108,3.02108,0,0,1,.87842-2.12109l.65722-.65723A4.94566,4.94566,0,0,0,17.92365,6.0415c.00054-.01391.008-.02551.008-.03955l-.00281-.01373a5.01836,5.01836,0,0,0,.06287-.64349V3.002h1a1,1,0,0,0,0-2h-14a1,1,0,0,0,0,2h1V5.34473a5.01836,5.01836,0,0,0,.06287.64349L6.05176,6.002c0,.014.00744.02564.008.03955a4.94571,4.94571,0,0,0,1.3963,2.83838l.65723.65723A3.02108,3.02108,0,0,1,8.9917,11.6582V12.668a3.02212,3.02212,0,0,1-.59961,1.80078L6.99121,16.33594a4.98221,4.98221,0,0,0-.66437,1.23718c-.0133.02771-.02472.05463-.03552.08368A5.00309,5.00309,0,0,0,5.9917,19.335v1.667h-1a1,1,0,0,0,0,2h14a1,1,0,0,0,0-2Zm-11-16v-2h8v2Zm.87842,2.46387A2.97036,2.97036,0,0,1,8.49323,7.002h6.99694a2.97094,2.97094,0,0,1-.37689.46387l-.65723.65723a4.9603,4.9603,0,0,0-1.42187,2.8789h-2.085A4.96025,4.96025,0,0,0,9.52734,8.123ZM9.99219,15.668a5.03688,5.03688,0,0,0,.98828-2.666h2.02246a5.03332,5.03332,0,0,0,.98877,2.666l1.00012,1.334H8.99133Zm5.99951,5.334h-8V19.335a2.954,2.954,0,0,1,.02722-.333h7.94556a2.954,2.954,0,0,1,.02722.333Z' + }) + ) +} + +export default UilHourglass \ No newline at end of file diff --git a/src/icons/uil-house-user.ts b/src/icons/uil-house-user.ts new file mode 100644 index 00000000..5d1f6d12 --- /dev/null +++ b/src/icons/uil-house-user.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHouseUser = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm21.664 10.252-9-8a.999.999 0 0 0-1.328 0l-9 8a1 1 0 0 0 1.328 1.496L4 11.449V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9.551l.336.299a1 1 0 0 0 1.328-1.496ZM9.184 20a2.982 2.982 0 0 1 5.632 0Zm1.316-5.5A1.5 1.5 0 1 1 12 16a1.502 1.502 0 0 1-1.5-1.5ZM18 20h-1.101a5 5 0 0 0-2.259-3.228 3.468 3.468 0 0 0 .86-2.272 3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A5 5 0 0 0 7.1 20H6V9.671l6-5.333 6 5.333Z' + }) + ) +} + +export default UilHouseUser \ No newline at end of file diff --git a/src/icons/uil-html3-alt.ts b/src/icons/uil-html3-alt.ts new file mode 100644 index 00000000..98ffe8e2 --- /dev/null +++ b/src/icons/uil-html3-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHtml3Alt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.95215,8.00044h6.98633l-.17719,2H9.99121a1,1,0,0,0,0,2h4.59284L14.32031,14.977l-2.3291.52832L9.66309,14.976l-.09571-1.06445a1,1,0,1,0-1.99218.17774l.16015,1.79a1.00142,1.00142,0,0,0,.77442.88672l3.25976.74024a1.0188,1.0188,0,0,0,.44336,0l3.26074-.74024a1.00139,1.00139,0,0,0,.77442-.88769l.43158-4.86792.002-.01-.00079-.00391.34649-3.9082a1.001,1.001,0,0,0-.99609-1.08789H7.95215a1,1,0,0,0,0,2ZM20.6543,2.32563a1.002,1.002,0,0,0-.73828-.32519H4.06641a.99963.99963,0,0,0-.9961,1.08887L4.51367,19.28364a.999.999,0,0,0,.72754.874l6.47266,1.80566a.99028.99028,0,0,0,.53711,0l6.49023-1.8125a.999.999,0,0,0,.72754-.874l1.44336-16.1875A1.00166,1.00166,0,0,0,20.6543,2.32563Zm-3.11621,16.085-5.55567,1.55176L6.44434,18.41743,5.15918,4.00044H18.82324Z' + }) + ) +} + +export default UilHtml3Alt \ No newline at end of file diff --git a/src/icons/uil-html3.ts b/src/icons/uil-html3.ts new file mode 100644 index 00000000..99a8135f --- /dev/null +++ b/src/icons/uil-html3.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHtml3 = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.19467,2,4.79734,19.99433,11.98947,22l7.2119-2.01315L20.80533,2ZM17.476,6.12274l-.53371,5.99468.00193.03234-.00255.07415v-.00068l-.37922,4.19135-.04178.37236L12,18.03717v.00063l-.00366.00317L7.48367,16.78309l-.30574-3.46518h2.213l.15692,1.76226,2.45276.6644L12,15.74569l2.46141-.6743.26028-2.86933H9.57589L9.53173,11.717l-.10093-1.1364-.05224-.61022h5.53877l.20163-2.2317H6.68232L6.638,7.2542l-.10026-1.137L6.48482,5.507H17.52887Zm0,0' + }) + ) +} + +export default UilHtml3 \ No newline at end of file diff --git a/src/icons/uil-html5-alt.ts b/src/icons/uil-html5-alt.ts new file mode 100644 index 00000000..f8b83253 --- /dev/null +++ b/src/icons/uil-html5-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHtml5Alt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.46777,2.3252A1.00007,1.00007,0,0,0,20.73,2H3.27a1.00039,1.00039,0,0,0-.99609,1.08887l1.52,17a.99944.99944,0,0,0,.72851.87451l7.2002,2A.99628.99628,0,0,0,11.99023,23a1.01206,1.01206,0,0,0,.26709-.03613l7.21973-2a1.00055,1.00055,0,0,0,.729-.875l1.52-17A1,1,0,0,0,21.46777,2.3252Zm-3.19238,16.896L11.99072,20.9624,5.72461,19.22168,4.36328,4H19.63672ZM7.81982,13h6.895l-.32714,3.271-2.56788.917L8.65625,16.05811a1.00017,1.00017,0,1,0-.67285,1.88378l3.5,1.25a1.00291,1.00291,0,0,0,.67285,0l3.5-1.25a1.00044,1.00044,0,0,0,.65869-.84228l.5-5A1.00064,1.00064,0,0,0,15.81982,11H8.72461L8.4248,8h7.895a1,1,0,0,0,0-2h-9a1.00064,1.00064,0,0,0-.99511,1.09961l.5,5A1.00012,1.00012,0,0,0,7.81982,13Z' + }) + ) +} + +export default UilHtml5Alt \ No newline at end of file diff --git a/src/icons/uil-html5.ts b/src/icons/uil-html5.ts new file mode 100644 index 00000000..9b9b432e --- /dev/null +++ b/src/icons/uil-html5.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHtml5 = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.1825,2.00012,4.78735,20.00079l7.20191,1.99933,7.22168-2.00207L20.8175,2.00012ZM17.32507,7.88739H8.87683l.20178,2.26074h8.04554l-.60584,6.778L12,18.17834v.00043l-.01013.00275L7.46753,16.92615,7.1582,13.45972H9.37439l.1571,1.76074,2.45874.66388.00208-.00049v-.00018l2.46228-.66461.25635-2.86323H7.05957L6.46411,5.67969h11.0586Z' + }) + ) +} + +export default UilHtml5 \ No newline at end of file diff --git a/src/icons/uil-hunting.ts b/src/icons/uil-hunting.ts new file mode 100644 index 00000000..98290bf9 --- /dev/null +++ b/src/icons/uil-hunting.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilHunting = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Zm9-2H19.93A8,8,0,0,0,13,4.07V3a1,1,0,0,0-2,0V4.07A8,8,0,0,0,4.07,11H3a1,1,0,0,0,0,2H4.07A8,8,0,0,0,11,19.93V21a1,1,0,0,0,2,0V19.93A8,8,0,0,0,19.93,13H21a1,1,0,0,0,0-2Zm-9,7a6,6,0,1,1,6-6A6,6,0,0,1,12,18Z' + }) + ) +} + +export default UilHunting \ No newline at end of file diff --git a/src/icons/uil-icons.ts b/src/icons/uil-icons.ts new file mode 100644 index 00000000..594037b2 --- /dev/null +++ b/src/icons/uil-icons.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilIcons = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.6 10.9c.1.1.2.1.4.1h7c.6 0 1-.4 1-1 0-.2 0-.3-.1-.4l-3.5-7c-.3-.5-.9-.7-1.4-.4-.1.1-.3.2-.4.4l-3.5 7c-.2.4 0 1 .5 1.3zm3.9-5.7L19.4 9h-3.8l1.9-3.8zM6.5 2C4 2 2 4 2 6.5S4 11 6.5 11 11 9 11 6.5 9 2 6.5 2zm0 7C5.1 9 4 7.9 4 6.5S5.1 4 6.5 4 9 5.1 9 6.5 7.9 9 6.5 9zm4.2 4.3c-.4-.4-1-.4-1.4 0l-2.8 2.8-2.8-2.8c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l2.8 2.8-2.8 2.8c-.4.4-.4 1 0 1.4s1 .4 1.4 0l2.8-2.8 2.8 2.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4l-2.8-2.8 2.8-2.8c.4-.4.4-1 0-1.4zM21 13h-7c-.6 0-1 .4-1 1v7c0 .6.4 1 1 1h7c.6 0 1-.4 1-1v-7c0-.6-.4-1-1-1zm-1 7h-5v-5h5v5z' + }) + ) +} + +export default UilIcons \ No newline at end of file diff --git a/src/icons/uil-illustration.ts b/src/icons/uil-illustration.ts new file mode 100644 index 00000000..f2061075 --- /dev/null +++ b/src/icons/uil-illustration.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilIllustration = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.9 9.6c-.2-.5-.8-.7-1.3-.5l-2.9 1.4-2.1-2.1-2.1-2.1 1.4-2.9c.2-.5 0-1.1-.5-1.3-.5-.2-1.1 0-1.3.5l-1.5 3.1-6.4 1c-.4.1-.7.4-.8.8L2 19.1c-.1.3 0 .7.3.9L4 21.7c.2.2.5.3.7.3h.2l11.6-2.4c.4-.1.7-.4.8-.8l1-6.4 3.1-1.5c.5-.2.7-.8.5-1.3zm-6.5 8.2-9.8 2 3.7-3.7c1.5.7 3.3.1 4-1.4s.1-3.3-1.4-4c-1.1-.5-2.5-.3-3.4.6-.9.9-1.1 2.3-.6 3.4l-3.7 3.7 2-9.8 5.8-1 2.2 2.2 2.2 2.2-1 5.8zm-5.8-4.4c0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4-.4.4-1 .4-1.4 0-.2-.2-.3-.5-.3-.7z' + }) + ) +} + +export default UilIllustration \ No newline at end of file diff --git a/src/icons/uil-image-alt-slash.ts b/src/icons/uil-image-alt-slash.ts new file mode 100644 index 00000000..4ee9c556 --- /dev/null +++ b/src/icons/uil-image-alt-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageAltSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-.93-.93-.09-.1-.06-.07-.5-.5L20,18.62l-5.18-5.2-.09-.08-3.2-3.21L11.43,10,3.71,2.29A1,1,0,0,0,2.29,3.71l1,1A3,3,0,0,0,3,6V18a3,3,0,0,0,3,3H18a2.9,2.9,0,0,0,1.27-.31l0,0h0s0,0,.05,0l.95,1a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM5,6.41,8.24,9.65a2.84,2.84,0,0,0-.67.48L5,12.71ZM6,19a1,1,0,0,1-1-1V15.54l4-4a.81.81,0,0,1,1.1,0L17.59,19ZM9.66,5H18a1,1,0,0,1,1,1v5.94l0,0a1,1,0,1,0-1.42,1.42l1.74,1.74a1,1,0,0,0,1.42,0,1,1,0,0,0,.29-.72h0V6a3,3,0,0,0-3-3H9.66a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilImageAltSlash \ No newline at end of file diff --git a/src/icons/uil-image-block.ts b/src/icons/uil-image-block.ts new file mode 100644 index 00000000..1b3219c8 --- /dev/null +++ b/src/icons/uil-image-block.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageBlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.54,2.46A5,5,0,1,0,22,6,5,5,0,0,0,20.54,2.46ZM14,6a3,3,0,0,1,3-3,3,3,0,0,1,1.29.3l-4,4A3,3,0,0,1,14,6Zm5.12,2.12a3.08,3.08,0,0,1-3.4.57l4-4A3,3,0,0,1,20,6,3,3,0,0,1,19.12,8.12ZM19,13a1,1,0,0,0-1,1v.39L16.52,12.9a2.87,2.87,0,0,0-3.93,0l-.7.71L9.41,11.12a2.87,2.87,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6H9A1,1,0,0,0,9,4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,.95-.17l.09,0A3,3,0,0,0,20,19.44a1.43,1.43,0,0,0,0-.22V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.89a.79.79,0,0,1,1.09,0l3.19,3.18h0L15.46,20Zm13-1a1,1,0,0,1-.18.54L13.3,15l.71-.7a.79.79,0,0,1,1.09,0L18,17.21Z' + }) + ) +} + +export default UilImageBlock \ No newline at end of file diff --git a/src/icons/uil-image-broken.ts b/src/icons/uil-image-broken.ts new file mode 100644 index 00000000..bdb4d4ec --- /dev/null +++ b/src/icons/uil-image-broken.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageBroken = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,14.54,19.21,12a1,1,0,0,0-1.42,0L15,14.84,12.21,12a1,1,0,0,0-1.42,0L8.5,14.34,6.21,12a1,1,0,0,0-1.42,0l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0-.08.38V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15.25a1,1,0,0,0-.08-.38A1,1,0,0,0,21.71,14.54ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15.66l1.5-1.5,2.29,2.3a1,1,0,0,0,1.42,0l2.29-2.3L14.29,17a1,1,0,0,0,1.42,0l2.79-2.8,1.5,1.5ZM19,2H5A3,3,0,0,0,2,5v5.26a1.17,1.17,0,0,0,0,.27s0,.07,0,.1a1,1,0,0,0,1.66.31L5.5,9.16l2.29,2.3a1,1,0,0,0,1.42,0l2.29-2.3L14.29,12a1,1,0,0,0,1.42,0l2.79-2.8,1.77,1.78a1,1,0,0,0,1.66-.31.28.28,0,0,0,0-.09.88.88,0,0,0,.06-.28V5A3,3,0,0,0,19,2Zm1,5.84L19.21,7a1,1,0,0,0-1.42,0L15,9.84,12.21,7a1,1,0,0,0-1.42,0L8.5,9.34,6.21,7A1,1,0,0,0,4.79,7L4,7.84V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilImageBroken \ No newline at end of file diff --git a/src/icons/uil-image-check.ts b/src/icons/uil-image-check.ts new file mode 100644 index 00000000..23e803c8 --- /dev/null +++ b/src/icons/uil-image-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,2.3a1,1,0,0,0-1.41,0L16.92,5.6,15.7,4.4a1,1,0,0,0-1.4,1.43l1.92,1.88a1,1,0,0,0,1.4,0l4.08-4A1,1,0,0,0,21.71,2.3ZM19,9a1,1,0,0,0-1,1v4.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h6a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10A1,1,0,0,0,19,9ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22Z' + }) + ) +} + +export default UilImageCheck \ No newline at end of file diff --git a/src/icons/uil-image-download.ts b/src/icons/uil-image-download.ts new file mode 100644 index 00000000..ed9673a1 --- /dev/null +++ b/src/icons/uil-image-download.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageDownload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.71,6.29a1,1,0,0,0-1.42,0L20,7.59V2a1,1,0,0,0-2,0V7.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l3,3a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l3-3A1,1,0,0,0,22.71,6.29ZM19,13a1,1,0,0,0-1,1v.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.85,2.85,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.46,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.77.77,0,0,1,1.1,0L18,17.21Z' + }) + ) +} + +export default UilImageDownload \ No newline at end of file diff --git a/src/icons/uil-image-edit.ts b/src/icons/uil-image-edit.ts new file mode 100644 index 00000000..946965c3 --- /dev/null +++ b/src/icons/uil-image-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.73682,3.751,19.31689,1.33105a.99964.99964,0,0,0-1.41406,0L13.32275,5.91113a1.00013,1.00013,0,0,0-.293.707V9.03809a1.00005,1.00005,0,0,0,1,1H16.4502a1.00014,1.00014,0,0,0,.707-.293L21.73682,5.165A.99964.99964,0,0,0,21.73682,3.751ZM16.03613,8.03809H15.02979V7.03223l3.58007-3.58008L19.61572,4.458ZM19,11a1,1,0,0,0-1,1v2.3916l-1.48047-1.48047a2.78039,2.78039,0,0,0-3.92822,0l-.698.698L9.40723,11.123a2.777,2.777,0,0,0-3.92432,0L4,12.606V7A1.0013,1.0013,0,0,1,5,6h6a1,1,0,0,0,0-2H5A3.00328,3.00328,0,0,0,2,7V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V12A1,1,0,0,0,19,11ZM5,20a1.0013,1.0013,0,0,1-1-1V15.43408l2.897-2.897a.79926.79926,0,0,1,1.09619,0l3.168,3.16711c.00849.00916.0116.02179.02045.03064L15.44714,20Zm13-1a.97137.97137,0,0,1-.17877.53705l-4.51386-4.51386.698-.698a.77979.77979,0,0,1,1.1001,0L18,17.21973Z' + }) + ) +} + +export default UilImageEdit \ No newline at end of file diff --git a/src/icons/uil-image-lock.ts b/src/icons/uil-image-lock.ts new file mode 100644 index 00000000..aaa8838f --- /dev/null +++ b/src/icons/uil-image-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,5.18V4a3,3,0,0,0-6,0V5.18A3,3,0,0,0,12,8v2a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5.18ZM16,4a1,1,0,0,1,2,0V5H16Zm4,6a1,1,0,0,1-1,1H15a1,1,0,0,1-1-1V8a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1Zm-1,5a1,1,0,0,0-1,1v3a.89.89,0,0,1-.18.53L9.41,11.12a2.86,2.86,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h5a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V16A1,1,0,0,0,19,15ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0L15.46,20Z' + }) + ) +} + +export default UilImageLock \ No newline at end of file diff --git a/src/icons/uil-image-minus.ts b/src/icons/uil-image-minus.ts new file mode 100644 index 00000000..5604c984 --- /dev/null +++ b/src/icons/uil-image-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,4.00781H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2ZM19,8a1,1,0,0,0-1,1v5.3916l-1.48047-1.48047a2.78039,2.78039,0,0,0-3.92822,0l-.698.698L9.40723,11.123a2.777,2.777,0,0,0-3.92432,0L4,12.606V7A1.0013,1.0013,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3.00328,3.00328,0,0,0,2,7V19a3.00328,3.00328,0,0,0,3,3H17a3.00328,3.00328,0,0,0,3-3V9A1,1,0,0,0,19,8ZM5,20a1.0013,1.0013,0,0,1-1-1V15.43408l2.897-2.897a.79926.79926,0,0,1,1.09619,0l3.168,3.16711c.00849.00916.0116.02179.02045.03064L15.44714,20Zm13-1a.97137.97137,0,0,1-.17877.53705l-4.51386-4.51386.698-.698a.77979.77979,0,0,1,1.1001,0L18,17.21973Z' + }) + ) +} + +export default UilImageMinus \ No newline at end of file diff --git a/src/icons/uil-image-plus.ts b/src/icons/uil-image-plus.ts new file mode 100644 index 00000000..e8444e58 --- /dev/null +++ b/src/icons/uil-image-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImagePlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,10a1,1,0,0,0-1,1v3.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.71L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19.22A2.79,2.79,0,0,0,4.78,22H17.22a2.88,2.88,0,0,0,.8-.12h0a2.74,2.74,0,0,0,2-2.65V11A1,1,0,0,0,19,10ZM5,20a1,1,0,0,1-1-1V15.43l2.89-2.89a.78.78,0,0,1,1.1,0L15.46,20Zm13-1a1,1,0,0,1-.18.54L13.3,15l.71-.7a.77.77,0,0,1,1.1,0L18,17.21ZM21,4H20V3a1,1,0,0,0-2,0V4H17a1,1,0,0,0,0,2h1V7a1,1,0,0,0,2,0V6h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilImagePlus \ No newline at end of file diff --git a/src/icons/uil-image-question.ts b/src/icons/uil-image-question.ts new file mode 100644 index 00000000..976e1074 --- /dev/null +++ b/src/icons/uil-image-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,13a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.86,2.86,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a1,1,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22ZM19,2a3,3,0,0,0-2.6,1.5,1,1,0,0,0,.37,1.37,1,1,0,0,0,1.36-.37A1,1,0,0,1,20,5a1,1,0,0,1-1,1,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm.38,7.08A1,1,0,0,0,18.8,9l-.18.06-.18.09-.15.13A1,1,0,0,0,18,10a1,1,0,0,0,.29.71,1,1,0,0,0,1.42,0A1,1,0,0,0,20,10a1,1,0,0,0-.62-.92Z' + }) + ) +} + +export default UilImageQuestion \ No newline at end of file diff --git a/src/icons/uil-image-redo.ts b/src/icons/uil-image-redo.ts new file mode 100644 index 00000000..a8c19d24 --- /dev/null +++ b/src/icons/uil-image-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.5,1.5a1,1,0,0,0-1,1h0a5,5,0,1,0,.3,7.75,1,1,0,0,0-1.32-1.51,3,3,0,1,1,.25-4.25H18.5a1,1,0,0,0,0,2h3a1,1,0,0,0,1-1v-3A1,1,0,0,0,21.5,1.5Zm-3,12a1,1,0,0,0-1,1v.39L16,13.41a2.77,2.77,0,0,0-3.93,0l-.7.7L8.91,11.62a2.79,2.79,0,0,0-3.93,0L3.5,13.1V7.5a1,1,0,0,1,1-1h5a1,1,0,0,0,0-2h-5a3,3,0,0,0-3,3v12a3,3,0,0,0,3,3h12a3,3,0,0,0,3-3v-5A1,1,0,0,0,18.5,13.5Zm-14,7a1,1,0,0,1-1-1V15.93L6.4,13a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15,20.5Zm13-1a1,1,0,0,1-.18.53l-4.51-4.51.7-.7a.78.78,0,0,1,1.1,0l2.89,2.9Z' + }) + ) +} + +export default UilImageRedo \ No newline at end of file diff --git a/src/icons/uil-image-resize-landscape.ts b/src/icons/uil-image-resize-landscape.ts new file mode 100644 index 00000000..0fa79831 --- /dev/null +++ b/src/icons/uil-image-resize-landscape.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageResizeLandscape = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,11H2a1,1,0,0,0-1,1v9a1,1,0,0,0,1,1H12.86c.05,0,.09,0,.14,0a1,1,0,0,0,1-1V12A1,1,0,0,0,13,11ZM7.44,20l1.93-1.93a.3.3,0,0,1,.5,0L11.79,20ZM12,17.38l-.72-.71a2.41,2.41,0,0,0-3.33,0L4.61,20H3V13h9ZM2,4.11a1,1,0,0,0,.86-.49A1.05,1.05,0,0,0,3.05,3,1,1,0,0,0,2,2,1,1,0,0,0,1,3v.1A1,1,0,0,0,2,4.11ZM9.91,4h.19a1,1,0,0,0,0-2H9.91a1,1,0,0,0,0,2ZM2,8.78a1,1,0,0,0,1-1V7.56a1,1,0,1,0-2,0v.22A1,1,0,0,0,2,8.78ZM14.09,2H13.9a1,1,0,0,0,0,2h.19a1,1,0,0,0,0-2ZM5.91,4H6.1a1,1,0,0,0,0-2H5.91a1,1,0,0,0,0,2ZM22,6.4a1,1,0,0,0-1,1v.21a1,1,0,0,0,2,0V7.4A1,1,0,0,0,22,6.4ZM17.12,20h-.24a1,1,0,1,0,0,2h.24a1,1,0,0,0,0-2ZM21.9,2A1,1,0,0,0,21,3a1,1,0,0,0,.1.42A1,1,0,0,0,23,3.11V3A1.09,1.09,0,0,0,21.9,2ZM22,10.9a1,1,0,0,0-1,1v.22a1,1,0,0,0,2,0V11.9A1,1,0,0,0,22,10.9ZM18.09,2H17.9a1,1,0,0,0,0,2h.19a1,1,0,0,0,0-2ZM22,20a.93.93,0,0,0-.44.11A1,1,0,0,0,21,21,1,1,0,0,0,22,22a1.09,1.09,0,0,0,1-1.1A1,1,0,0,0,22,20Zm0-4.56a1,1,0,0,0-1,1v.22a1,1,0,1,0,2,0V16.4A1,1,0,0,0,22,15.4Z' + }) + ) +} + +export default UilImageResizeLandscape \ No newline at end of file diff --git a/src/icons/uil-image-resize-square.ts b/src/icons/uil-image-resize-square.ts new file mode 100644 index 00000000..00022900 --- /dev/null +++ b/src/icons/uil-image-resize-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageResizeSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,8.1a1,1,0,0,0,1-1V6.91a1,1,0,0,0-2,0V7.1A1,1,0,0,0,3,8.1Zm0-4A1,1,0,0,0,3.42,4,1,1,0,0,0,3.1,2H3A1.09,1.09,0,0,0,2,3.1,1,1,0,0,0,3,4.05Zm17.39-.19A1,1,0,0,0,22,3a1,1,0,0,0-1-1h-.1a1,1,0,0,0-.51,1.86ZM11.89,4h.22a1,1,0,0,0,0-2h-.22a1,1,0,0,0,0,2ZM7.39,4H7.6a1,1,0,0,0,0-2H7.39a1,1,0,0,0,0,2ZM21,20a1,1,0,0,0-.42.1A1,1,0,0,0,20.9,22H21a1.09,1.09,0,0,0,1-1.1A1,1,0,0,0,21,20ZM14,11a1,1,0,0,0-1-1H3.27A1.08,1.08,0,0,0,3,10,1,1,0,0,0,2,11V21a1,1,0,0,0,1,1H13.1a1,1,0,0,0,.9-1.42Zm-2,9H5.52l3.91-3.9a.33.33,0,0,1,.47,0L12,18.19Zm0-4.63-.68-.69a2.35,2.35,0,0,0-3.31,0l-4,4V12h8Zm9,0a1,1,0,0,0-1,1v.21a1,1,0,0,0,2,0V16.4A1,1,0,0,0,21,15.4Zm0-9a1,1,0,0,0-1,1V7.6a1,1,0,1,0,2,0V7.39A1,1,0,0,0,21,6.39Zm0,4.5a1,1,0,0,0-1,1v.22a1,1,0,0,0,2,0v-.22A1,1,0,0,0,21,10.89ZM17.1,20h-.2a1,1,0,1,0,0,2h.2a1,1,0,0,0,0-2ZM16.61,4a1,1,0,0,0,0-2H16.4a1,1,0,1,0,0,2Z' + }) + ) +} + +export default UilImageResizeSquare \ No newline at end of file diff --git a/src/icons/uil-image-search.ts b/src/icons/uil-image-search.ts new file mode 100644 index 00000000..3db74647 --- /dev/null +++ b/src/icons/uil-image-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,13a1,1,0,0,0-1,1v.39l-1.48-1.48a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.87,2.87,0,0,0-3.93,0L4,12.61V7A1,1,0,0,1,5,6H9A1,1,0,0,0,9,4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.89a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a1,1,0,0,1-.18.54L13.31,15l.7-.69a.77.77,0,0,1,1.1,0L18,17.22Zm3.71-8.71L20,8.57a4.31,4.31,0,1,0-6.72.79,4.27,4.27,0,0,0,3,1.26A4.34,4.34,0,0,0,18.57,10l1.72,1.73a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,10.29ZM18,8a2.32,2.32,0,1,1,0-3.27A2.32,2.32,0,0,1,18,8Z' + }) + ) +} + +export default UilImageSearch \ No newline at end of file diff --git a/src/icons/uil-image-share.ts b/src/icons/uil-image-share.ts new file mode 100644 index 00000000..7b7cd366 --- /dev/null +++ b/src/icons/uil-image-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,7a2,2,0,0,0-1.18.39l-1.75-.8L19,5.71A2,2,0,0,0,20,6a2,2,0,1,0-2-2l-1.89.87A2,2,0,1,0,15,8.5a1.88,1.88,0,0,0,.92-.24l2.1,1A2,2,0,1,0,20,7Zm-1,6a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h5a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22Z' + }) + ) +} + +export default UilImageShare \ No newline at end of file diff --git a/src/icons/uil-image-shield.ts b/src/icons/uil-image-shield.ts new file mode 100644 index 00000000..12b2e4cf --- /dev/null +++ b/src/icons/uil-image-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.13,2.36a1,1,0,0,0-.84-.2,2.7,2.7,0,0,1-2.2-.47,1,1,0,0,0-1.18,0,2.7,2.7,0,0,1-2.2.47,1,1,0,0,0-.84.2,1,1,0,0,0-.37.78V6.45a4.63,4.63,0,0,0,1.84,3.7l1.57,1.16a1,1,0,0,0,1.18,0l1.57-1.16a4.63,4.63,0,0,0,1.84-3.7V3.14A1,1,0,0,0,22.13,2.36ZM20.5,6.45a2.62,2.62,0,0,1-1,2.09l-1,.72-1-.72a2.62,2.62,0,0,1-1-2.09V4.22a4.81,4.81,0,0,0,2-.54,4.81,4.81,0,0,0,2,.54Zm-2,7.05a1,1,0,0,0-1,1v.39L16,13.41a2.77,2.77,0,0,0-3.93,0l-.7.7L8.91,11.62a2.85,2.85,0,0,0-3.93,0L3.5,13.1V7.5a1,1,0,0,1,1-1h7a1,1,0,0,0,0-2h-7a3,3,0,0,0-3,3v12a3,3,0,0,0,3,3h12a3,3,0,0,0,3-3v-5A1,1,0,0,0,18.5,13.5Zm-14,7a1,1,0,0,1-1-1V15.93L6.4,13a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15,20.5Zm13-1a1,1,0,0,1-.18.53l-4.51-4.51.7-.7a.78.78,0,0,1,1.1,0l2.89,2.9Z' + }) + ) +} + +export default UilImageShield \ No newline at end of file diff --git a/src/icons/uil-image-slash.ts b/src/icons/uil-image-slash.ts new file mode 100644 index 00000000..5552f090 --- /dev/null +++ b/src/icons/uil-image-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.5,4H10a1,1,0,0,0,0,2H19.5a1,1,0,0,1,1,1v6.76l-1.88-1.88a3,3,0,0,0-1.14-.71,1,1,0,1,0-.64,1.9.82.82,0,0,1,.36.23l3.31,3.29a.66.66,0,0,0,0,.15.83.83,0,0,0,0,.15,1.18,1.18,0,0,0,.13.18.48.48,0,0,0,.09.11.9.9,0,0,0,.2.14.6.6,0,0,0,.11.06.91.91,0,0,0,.37.08,1,1,0,0,0,1-1V7A3,3,0,0,0,19.5,4ZM3.21,2.29A1,1,0,0,0,1.79,3.71L3.18,5.1A3,3,0,0,0,2.5,7V17a3,3,0,0,0,3,3H18.09l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM4.5,7a1,1,0,0,1,.12-.46L7.34,9.25a3,3,0,0,0-1,.63L4.5,11.76Zm1,11a1,1,0,0,1-1-1V14.58l3.3-3.29a1,1,0,0,1,1.4,0L15.91,18Z' + }) + ) +} + +export default UilImageSlash \ No newline at end of file diff --git a/src/icons/uil-image-times.ts b/src/icons/uil-image-times.ts new file mode 100644 index 00000000..4cab2a1a --- /dev/null +++ b/src/icons/uil-image-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,10a1,1,0,0,0-1,1v3.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7L9.41,11.12a2.79,2.79,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h8a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V11A1,1,0,0,0,19,10ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.45,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.78.78,0,0,1,1.1,0L18,17.22ZM20.41,5l1.3-1.29a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L19,3.59,17.71,2.3a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L17.59,5l-1.3,1.3a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0L19,6.42l1.29,1.29a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41Z' + }) + ) +} + +export default UilImageTimes \ No newline at end of file diff --git a/src/icons/uil-image-upload.ts b/src/icons/uil-image-upload.ts new file mode 100644 index 00000000..83a06c4c --- /dev/null +++ b/src/icons/uil-image-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,13a1,1,0,0,0-1,1v.38L16.52,12.9a2.79,2.79,0,0,0-3.93,0l-.7.7L9.41,11.12a2.85,2.85,0,0,0-3.93,0L4,12.6V7A1,1,0,0,1,5,6h7a1,1,0,0,0,0-2H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V14A1,1,0,0,0,19,13ZM5,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L15.46,20Zm13-1a.89.89,0,0,1-.18.53L13.31,15l.7-.7a.77.77,0,0,1,1.1,0L18,17.21ZM22.71,4.29l-3-3a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-3,3a1,1,0,0,0,1.42,1.42L18,4.41V10a1,1,0,0,0,2,0V4.41l1.29,1.3a1,1,0,0,0,1.42,0A1,1,0,0,0,22.71,4.29Z' + }) + ) +} + +export default UilImageUpload \ No newline at end of file diff --git a/src/icons/uil-image-v.ts b/src/icons/uil-image-v.ts new file mode 100644 index 00000000..c0b43a52 --- /dev/null +++ b/src/icons/uil-image-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImageV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a2.81,2.81,0,0,0,.49-.05l.3-.07.07,0h0l.05,0,.37-.14.13-.07c.1-.06.21-.11.31-.18a3.79,3.79,0,0,0,.38-.32l.07-.09a2.69,2.69,0,0,0,.27-.32l.09-.13a2.31,2.31,0,0,0,.18-.35,1,1,0,0,0,.07-.15c.05-.12.08-.25.12-.38l0-.15A2.6,2.6,0,0,0,22,19V5A3,3,0,0,0,19,2ZM5,20a1,1,0,0,1-1-1V14.69l3.29-3.3h0a1,1,0,0,1,1.42,0L17.31,20Zm15-1a1,1,0,0,1-.07.36,1,1,0,0,1-.08.14.94.94,0,0,1-.09.12l-5.35-5.35.88-.88a1,1,0,0,1,1.42,0h0L20,16.69Zm0-5.14L18.12,12a3.08,3.08,0,0,0-4.24,0l-.88.88L10.12,10a3.08,3.08,0,0,0-4.24,0L4,11.86V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilImageV \ No newline at end of file diff --git a/src/icons/uil-image.ts b/src/icons/uil-image.ts new file mode 100644 index 00000000..b230a402 --- /dev/null +++ b/src/icons/uil-image.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H5A3,3,0,0,0,2,7V17a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM5,18a1,1,0,0,1-1-1V14.58l3.3-3.29a1,1,0,0,1,1.4,0L15.41,18Zm15-1a1,1,0,0,1-1,1h-.77l-3.81-3.83.88-.88a1,1,0,0,1,1.4,0L20,16.58Zm0-3.24-1.88-1.87a3.06,3.06,0,0,0-4.24,0l-.88.88L10.12,9.89a3.06,3.06,0,0,0-4.24,0L4,11.76V7A1,1,0,0,1,5,6H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilImage \ No newline at end of file diff --git a/src/icons/uil-images.ts b/src/icons/uil-images.ts new file mode 100644 index 00000000..2353aef5 --- /dev/null +++ b/src/icons/uil-images.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImages = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,15V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM4,5A1,1,0,0,1,5,4H15a1,1,0,0,1,1,1V9.36L14.92,8.27a2.56,2.56,0,0,0-1.81-.75h0a2.58,2.58,0,0,0-1.81.75l-.91.91-.81-.81a2.93,2.93,0,0,0-4.11,0L4,9.85Zm.12,10.45A.94.94,0,0,1,4,15V12.67L6.88,9.79a.91.91,0,0,1,1.29,0L9,10.6Zm8.6-5.76a.52.52,0,0,1,.39-.17h0a.52.52,0,0,1,.39.17L16,12.18V15a1,1,0,0,1-1,1H6.4ZM21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Z' + }) + ) +} + +export default UilImages \ No newline at end of file diff --git a/src/icons/uil-import.ts b/src/icons/uil-import.ts new file mode 100644 index 00000000..0dce0e49 --- /dev/null +++ b/src/icons/uil-import.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilImport = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14a1,1,0,0,0-1,1v4a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V15a1,1,0,0,0-2,0v4a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14Zm-9.71,1.71a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l4-4a1,1,0,0,0-1.42-1.42L13,12.59V3a1,1,0,0,0-2,0v9.59l-2.29-2.3a1,1,0,1,0-1.42,1.42Z' + }) + ) +} + +export default UilImport \ No newline at end of file diff --git a/src/icons/uil-inbox.ts b/src/icons/uil-inbox.ts new file mode 100644 index 00000000..50d0511b --- /dev/null +++ b/src/icons/uil-inbox.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInbox = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.05566,2h-14a3.00328,3.00328,0,0,0-3,3V19a3.00328,3.00328,0,0,0,3,3h14a3.00328,3.00328,0,0,0,3-3V5A3.00328,3.00328,0,0,0,19.05566,2Zm-14,2h14a1.001,1.001,0,0,1,1,1v8H17.59082a1.99687,1.99687,0,0,0-1.66406.89062L14.52051,16H9.59082L8.18457,13.89062A1.99687,1.99687,0,0,0,6.52051,13H4.05566V5A1.001,1.001,0,0,1,5.05566,4Zm14,16h-14a1.001,1.001,0,0,1-1-1V15H6.52051l1.40625,2.10938A1.99687,1.99687,0,0,0,9.59082,18h4.92969a1.99687,1.99687,0,0,0,1.66406-.89062L17.59082,15h2.46484v4A1.001,1.001,0,0,1,19.05566,20Z' + }) + ) +} + +export default UilInbox \ No newline at end of file diff --git a/src/icons/uil-incoming-call.ts b/src/icons/uil-incoming-call.ts new file mode 100644 index 00000000..977ec0fa --- /dev/null +++ b/src/icons/uil-incoming-call.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilIncomingCall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.55,9a1.07,1.07,0,0,0,.39.07h4a1,1,0,0,0,0-2H18.35l3.29-3.29a1,1,0,1,0-1.41-1.41L16.94,5.65V4.06a1,1,0,1,0-2,0v4a1.07,1.07,0,0,0,.07.39A1,1,0,0,0,15.55,9Zm3.89,4c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' + }) + ) +} + +export default UilIncomingCall \ No newline at end of file diff --git a/src/icons/uil-info-circle.ts b/src/icons/uil-info-circle.ts new file mode 100644 index 00000000..8bd3ae62 --- /dev/null +++ b/src/icons/uil-info-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInfoCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10.01114,10.01114,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8.00917,8.00917,0,0,1,12,20Zm0-8.5a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,11.5Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,7.5Z' + }) + ) +} + +export default UilInfoCircle \ No newline at end of file diff --git a/src/icons/uil-info.ts b/src/icons/uil-info.ts new file mode 100644 index 00000000..1660e3cd --- /dev/null +++ b/src/icons/uil-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm0-4a1.25,1.25,0,1,0,1.25,1.25A1.25,1.25,0,0,0,12,6Z' + }) + ) +} + +export default UilInfo \ No newline at end of file diff --git a/src/icons/uil-instagram-alt.ts b/src/icons/uil-instagram-alt.ts new file mode 100644 index 00000000..e027118b --- /dev/null +++ b/src/icons/uil-instagram-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInstagramAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,9.52A2.48,2.48,0,1,0,14.48,12,2.48,2.48,0,0,0,12,9.52Zm9.93-2.45a6.53,6.53,0,0,0-.42-2.26,4,4,0,0,0-2.32-2.32,6.53,6.53,0,0,0-2.26-.42C15.64,2,15.26,2,12,2s-3.64,0-4.93.07a6.53,6.53,0,0,0-2.26.42A4,4,0,0,0,2.49,4.81a6.53,6.53,0,0,0-.42,2.26C2,8.36,2,8.74,2,12s0,3.64.07,4.93a6.86,6.86,0,0,0,.42,2.27,3.94,3.94,0,0,0,.91,1.4,3.89,3.89,0,0,0,1.41.91,6.53,6.53,0,0,0,2.26.42C8.36,22,8.74,22,12,22s3.64,0,4.93-.07a6.53,6.53,0,0,0,2.26-.42,3.89,3.89,0,0,0,1.41-.91,3.94,3.94,0,0,0,.91-1.4,6.6,6.6,0,0,0,.42-2.27C22,15.64,22,15.26,22,12S22,8.36,21.93,7.07Zm-2.54,8A5.73,5.73,0,0,1,19,16.87,3.86,3.86,0,0,1,16.87,19a5.73,5.73,0,0,1-1.81.35c-.79,0-1,0-3.06,0s-2.27,0-3.06,0A5.73,5.73,0,0,1,7.13,19a3.51,3.51,0,0,1-1.31-.86A3.51,3.51,0,0,1,5,16.87a5.49,5.49,0,0,1-.34-1.81c0-.79,0-1,0-3.06s0-2.27,0-3.06A5.49,5.49,0,0,1,5,7.13a3.51,3.51,0,0,1,.86-1.31A3.59,3.59,0,0,1,7.13,5a5.73,5.73,0,0,1,1.81-.35h0c.79,0,1,0,3.06,0s2.27,0,3.06,0A5.73,5.73,0,0,1,16.87,5a3.51,3.51,0,0,1,1.31.86A3.51,3.51,0,0,1,19,7.13a5.73,5.73,0,0,1,.35,1.81c0,.79,0,1,0,3.06S19.42,14.27,19.39,15.06Zm-1.6-7.44a2.38,2.38,0,0,0-1.41-1.41A4,4,0,0,0,15,6c-.78,0-1,0-3,0s-2.22,0-3,0a4,4,0,0,0-1.38.26A2.38,2.38,0,0,0,6.21,7.62,4.27,4.27,0,0,0,6,9c0,.78,0,1,0,3s0,2.22,0,3a4.27,4.27,0,0,0,.26,1.38,2.38,2.38,0,0,0,1.41,1.41A4.27,4.27,0,0,0,9,18.05H9c.78,0,1,0,3,0s2.22,0,3,0a4,4,0,0,0,1.38-.26,2.38,2.38,0,0,0,1.41-1.41A4,4,0,0,0,18.05,15c0-.78,0-1,0-3s0-2.22,0-3A3.78,3.78,0,0,0,17.79,7.62ZM12,15.82A3.81,3.81,0,0,1,8.19,12h0A3.82,3.82,0,1,1,12,15.82Zm4-6.89a.9.9,0,0,1,0-1.79h0a.9.9,0,0,1,0,1.79Z' + }) + ) +} + +export default UilInstagramAlt \ No newline at end of file diff --git a/src/icons/uil-instagram.ts b/src/icons/uil-instagram.ts new file mode 100644 index 00000000..1d582442 --- /dev/null +++ b/src/icons/uil-instagram.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInstagram = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.34,5.46h0a1.2,1.2,0,1,0,1.2,1.2A1.2,1.2,0,0,0,17.34,5.46Zm4.6,2.42a7.59,7.59,0,0,0-.46-2.43,4.94,4.94,0,0,0-1.16-1.77,4.7,4.7,0,0,0-1.77-1.15,7.3,7.3,0,0,0-2.43-.47C15.06,2,14.72,2,12,2s-3.06,0-4.12.06a7.3,7.3,0,0,0-2.43.47A4.78,4.78,0,0,0,3.68,3.68,4.7,4.7,0,0,0,2.53,5.45a7.3,7.3,0,0,0-.47,2.43C2,8.94,2,9.28,2,12s0,3.06.06,4.12a7.3,7.3,0,0,0,.47,2.43,4.7,4.7,0,0,0,1.15,1.77,4.78,4.78,0,0,0,1.77,1.15,7.3,7.3,0,0,0,2.43.47C8.94,22,9.28,22,12,22s3.06,0,4.12-.06a7.3,7.3,0,0,0,2.43-.47,4.7,4.7,0,0,0,1.77-1.15,4.85,4.85,0,0,0,1.16-1.77,7.59,7.59,0,0,0,.46-2.43c0-1.06.06-1.4.06-4.12S22,8.94,21.94,7.88ZM20.14,16a5.61,5.61,0,0,1-.34,1.86,3.06,3.06,0,0,1-.75,1.15,3.19,3.19,0,0,1-1.15.75,5.61,5.61,0,0,1-1.86.34c-1,.05-1.37.06-4,.06s-3,0-4-.06A5.73,5.73,0,0,1,6.1,19.8,3.27,3.27,0,0,1,5,19.05a3,3,0,0,1-.74-1.15A5.54,5.54,0,0,1,3.86,16c0-1-.06-1.37-.06-4s0-3,.06-4A5.54,5.54,0,0,1,4.21,6.1,3,3,0,0,1,5,5,3.14,3.14,0,0,1,6.1,4.2,5.73,5.73,0,0,1,8,3.86c1,0,1.37-.06,4-.06s3,0,4,.06a5.61,5.61,0,0,1,1.86.34A3.06,3.06,0,0,1,19.05,5,3.06,3.06,0,0,1,19.8,6.1,5.61,5.61,0,0,1,20.14,8c.05,1,.06,1.37.06,4S20.19,15,20.14,16ZM12,6.87A5.13,5.13,0,1,0,17.14,12,5.12,5.12,0,0,0,12,6.87Zm0,8.46A3.33,3.33,0,1,1,15.33,12,3.33,3.33,0,0,1,12,15.33Z' + }) + ) +} + +export default UilInstagram \ No newline at end of file diff --git a/src/icons/uil-intercom-alt.ts b/src/icons/uil-intercom-alt.ts new file mode 100644 index 00000000..d608209c --- /dev/null +++ b/src/icons/uil-intercom-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilIntercomAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.99121,15.00044a.99942.99942,0,0,0,1-1v-8a1,1,0,1,0-2,0v8A.99943.99943,0,0,0,9.99121,15.00044Zm4,0a.99942.99942,0,0,0,1-1v-8a1,1,0,1,0-2,0v8A.99943.99943,0,0,0,13.99121,15.00044Zm-8-2a.99942.99942,0,0,0,1-1v-4a1,1,0,0,0-2,0v4A.99943.99943,0,0,0,5.99121,13.00044Zm14-12h-16a3.00328,3.00328,0,0,0-3,3v16a3.00328,3.00328,0,0,0,3,3h16a3.00328,3.00328,0,0,0,3-3v-16A3.00328,3.00328,0,0,0,19.99121,1.00044Zm1,19a1.00067,1.00067,0,0,1-1,1h-16a1.00067,1.00067,0,0,1-1-1v-16a1.00067,1.00067,0,0,1,1-1h16a1.00067,1.00067,0,0,1,1,1Zm-3.64355-4.5918a8.82089,8.82089,0,0,1-5.35645,1.5918,8.98692,8.98692,0,0,1-5.35644-1.5918,1.00017,1.00017,0,1,0-1.28711,1.53125,10.79981,10.79981,0,0,0,6.64355,2.06055,10.79989,10.79989,0,0,0,6.64356-2.06055,1.00017,1.00017,0,0,0-1.28711-1.53125Zm.64355-8.4082a.99942.99942,0,0,0-1,1v4a1,1,0,1,0,2,0v-4A.99942.99942,0,0,0,17.99121,7.00044Z' + }) + ) +} + +export default UilIntercomAlt \ No newline at end of file diff --git a/src/icons/uil-intercom.ts b/src/icons/uil-intercom.ts new file mode 100644 index 00000000..7922fd55 --- /dev/null +++ b/src/icons/uil-intercom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilIntercom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.5,2H4.5A2.5,2.5,0,0,0,2,4.5v15A2.5,2.5,0,0,0,4.5,22h15A2.5,2.5,0,0,0,22,19.5V4.5A2.5,2.5,0,0,0,19.5,2ZM14.67,5.67A.66.66,0,0,1,15.34,5a.68.68,0,0,1,.66.66v8.9a.67.67,0,0,1-1.33,0Zm-3.34-.34A.67.67,0,0,1,12,4.66h0a.67.67,0,0,1,.67.67V15a.67.67,0,0,1-1.34,0ZM8,5.67a.67.67,0,0,1,1.33,0v8.9a.66.66,0,0,1-.67.66A.68.68,0,0,1,8,14.57ZM4.67,7A.67.67,0,0,1,6,7v6a.67.67,0,0,1-.67.66A.67.67,0,0,1,4.67,13ZM19.1,17.17A11.3,11.3,0,0,1,12,19.33a11.3,11.3,0,0,1-7.1-2.16.67.67,0,0,1,.87-1A10.2,10.2,0,0,0,12,18a10.15,10.15,0,0,0,6.23-1.84.67.67,0,0,1,.87,1ZM19.33,13A.67.67,0,0,1,18,13V7a.67.67,0,0,1,.67-.66.66.66,0,0,1,.66.66Z' + }) + ) +} + +export default UilIntercom \ No newline at end of file diff --git a/src/icons/uil-invoice.ts b/src/icons/uil-invoice.ts new file mode 100644 index 00000000..85b532fe --- /dev/null +++ b/src/icons/uil-invoice.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilInvoice = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,16H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9,10h2a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm12,2H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Zm-7-7H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilInvoice \ No newline at end of file diff --git a/src/icons/uil-italic.ts b/src/icons/uil-italic.ts new file mode 100644 index 00000000..46662fe7 --- /dev/null +++ b/src/icons/uil-italic.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilItalic = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,6H11a1,1,0,0,0,0,2h1.52l-3.2,8H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H11.48l3.2-8H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilItalic \ No newline at end of file diff --git a/src/icons/uil-jackhammer.ts b/src/icons/uil-jackhammer.ts new file mode 100644 index 00000000..14fb6226 --- /dev/null +++ b/src/icons/uil-jackhammer.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilJackhammer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.85,15.69a1,1,0,0,0-1.41,0l-2.06,2.06a1,1,0,0,0,.45,1.67l.26.07-.8.8a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.26-1,1,1,0,0,0-.71-.71L18,17.94l.83-.84A1,1,0,0,0,18.85,15.69ZM7.91,19.49l.26-.07a1,1,0,0,0,.45-1.67L6.56,15.69A1,1,0,0,0,5.15,17.1l.83.84L5.72,18a1,1,0,0,0-.71.71,1,1,0,0,0,.26,1l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,4a1,1,0,0,0-1,1H17a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5H4A1,1,0,0,0,2,5V7A1,1,0,0,0,4,7H7V9a3,3,0,0,0,2,2.83V13a2,2,0,0,0,2,2v6a1,1,0,0,0,2,0V15a2,2,0,0,0,2-2V11.83A3,3,0,0,0,17,9V7h3a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4ZM15,9a1,1,0,0,1-1,1,1,1,0,0,0-1,1v2H11V11a1,1,0,0,0-1-1A1,1,0,0,1,9,9V5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1ZM12,6a1,1,0,0,0-1,1V8a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Z' + }) + ) +} + +export default UilJackhammer \ No newline at end of file diff --git a/src/icons/uil-java-script.ts b/src/icons/uil-java-script.ts new file mode 100644 index 00000000..1eadf578 --- /dev/null +++ b/src/icons/uil-java-script.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilJavaScript = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.478,14.8829a4.06111,4.06111,0,0,1-2.18725-.39825,1.4389,1.4389,0,0,1-.53547-1.01019.22184.22184,0,0,0-.22662-.21942c-.31659-.00385-.63312-.003-.94965-.00043a.2113.2113,0,0,0-.23138.18628,2.33854,2.33854,0,0,0,.75305,1.84454,3.99135,3.99135,0,0,0,2.22827.8382,8.06151,8.06151,0,0,0,2.53308-.10755,3.12591,3.12591,0,0,0,1.67823-.90442,2.33824,2.33824,0,0,0,.396-2.23077,1.869,1.869,0,0,0-1.2304-1.09454c-1.28077-.4494-2.66431-.41541-3.97-.7569-.22668-.07135-.50366-.1488-.60467-.38879a.85461.85461,0,0,1,.28418-.95478,2.5576,2.5576,0,0,1,1.34875-.33581,4.07051,4.07051,0,0,1,1.88416.26959,1.43564,1.43564,0,0,1,.68677.99219.243.243,0,0,0,.2276.23565c.31433.00641.62878.00171.94311.00214a.22791.22791,0,0,0,.24732-.16772,2.43369,2.43369,0,0,0-1.18665-2.106,5.8791,5.8791,0,0,0-3.2182-.49243V8.08341a3.50546,3.50546,0,0,0-2.17615.87438,2.1746,2.1746,0,0,0-.43438,2.26264,1.92964,1.92964,0,0,0,1.21838,1.06177c1.27649.46106,2.67554.31311,3.96442.72082.25116.08521.54364.21552.6206.49506a.9907.9907,0,0,1-.26965.94616A2.97065,2.97065,0,0,1,14.478,14.8829Zm5.81891-8.44537q-3.73837-2.114-7.47845-4.22418a1.67742,1.67742,0,0,0-1.63733,0Q7.4556,4.31715,3.72968,6.42075a1.54242,1.54242,0,0,0-.8042,1.34271V16.2377a1.55266,1.55266,0,0,0,.8352,1.355c.71351.38837,1.40674.81629,2.13318,1.17884a3.06373,3.06373,0,0,0,2.73822.07525,2.1275,2.1275,0,0,0,.99482-1.92114c.00555-2.79669.00085-5.59351.00213-8.39026a.21981.21981,0,0,0-.20727-.25415c-.31739-.00513-.63526-.003-.95264-.00085a.20935.20935,0,0,0-.228.21368c-.00427,2.77875.00086,5.55829-.00256,8.33746a.94053.94053,0,0,1-.609.88373,1.53242,1.53242,0,0,1-1.23993-.16595q-.99152-.56-1.983-1.11988a.23714.23714,0,0,1-.13464-.23529q0-4.19383,0-8.38726a.2589.2589,0,0,1,.157-.2602Q8.1423,5.4553,11.85419,3.35953a.258.258,0,0,1,.29163.00043Q15.859,5.452,19.57184,7.5455a.262.262,0,0,1,.15613.26142Q19.72733,12,19.72712,16.19376a.242.242,0,0,1-.13294.23828q-3.65643,2.06753-7.31677,4.12909c-.11658.06494-.25458.16943-.39093.09076-.6391-.36176-1.27039-.73755-1.90735-1.10273a.20589.20589,0,0,0-.22968-.01379,5.21834,5.21834,0,0,1-.88208.41162c-.13806.05591-.30792.07184-.40295.19989a1.31566,1.31566,0,0,0,.43127.31061q1.11741.647,2.236,1.29285a1.62967,1.62967,0,0,0,1.65539.046q3.7261-2.101,7.45185-4.20392a1.55627,1.55627,0,0,0,.83563-1.35474V7.76346A1.53956,1.53956,0,0,0,20.29694,6.43753Z' + }) + ) +} + +export default UilJavaScript \ No newline at end of file diff --git a/src/icons/uil-kayak.ts b/src/icons/uil-kayak.ts new file mode 100644 index 00000000..ca29e715 --- /dev/null +++ b/src/icons/uil-kayak.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKayak = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.12,16.88a3,3,0,0,0-3.4-.58l-1.15-1.14A24,24,0,0,0,21.78,6.3,3.19,3.19,0,0,0,17.7,2.22,24,24,0,0,0,8.84,7.43L7.7,6.28a3,3,0,1,0-4.82.84A3,3,0,0,0,5,8a3,3,0,0,0,1.28-.3L7.43,8.84A24,24,0,0,0,2.22,17.7,3.24,3.24,0,0,0,3,21,3.17,3.17,0,0,0,5.22,22a3.74,3.74,0,0,0,1.08-.17,24,24,0,0,0,8.86-5.21l1.14,1.15a3,3,0,1,0,4.82-.84ZM5.71,5.7h0A1,1,0,0,1,4.29,4.29,1,1,0,0,1,5.71,5.7Zm12.6-1.57a1.6,1.6,0,0,1,.47-.08,1.16,1.16,0,0,1,.83.34,1.23,1.23,0,0,1,.26,1.3,22.09,22.09,0,0,1-2.13,4.64L13.67,6.26A22.09,22.09,0,0,1,18.31,4.13ZM5.69,19.87a1.2,1.2,0,0,1-1.56-1.56,22.09,22.09,0,0,1,2.13-4.64l4.07,4.07A22.09,22.09,0,0,1,5.69,19.87ZM12,16.59,7.41,12a21.29,21.29,0,0,1,1.43-1.74l4.91,4.91A21.29,21.29,0,0,1,12,16.59Zm3.15-2.84L10.25,8.84A21.29,21.29,0,0,1,12,7.41l4.6,4.6A21.29,21.29,0,0,1,15.16,13.75Zm4.55,6a1,1,0,1,1-1.42-1.41h0a1,1,0,0,1,1.41,0A1,1,0,0,1,19.71,19.71Z' + }) + ) +} + +export default UilKayak \ No newline at end of file diff --git a/src/icons/uil-key-skeleton-alt.ts b/src/icons/uil-key-skeleton-alt.ts new file mode 100644 index 00000000..f0ca2dda --- /dev/null +++ b/src/icons/uil-key-skeleton-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeySkeletonAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,6.53,20.29,5.12l1.42-1.41a1,1,0,1,0-1.42-1.42L9.75,12.83a5,5,0,1,0,1.42,1.42l4.88-4.89,1.41,1.42a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L17.46,8l1.42-1.42L20.29,8a1,1,0,0,0,.71.29A1,1,0,0,0,21.71,8,1,1,0,0,0,21.71,6.53ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Z' + }) + ) +} + +export default UilKeySkeletonAlt \ No newline at end of file diff --git a/src/icons/uil-key-skeleton.ts b/src/icons/uil-key-skeleton.ts new file mode 100644 index 00000000..8787186b --- /dev/null +++ b/src/icons/uil-key-skeleton.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeySkeleton = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,4.41l.71-.7a1,1,0,1,0-1.42-1.42L18.89,3.7h0L16.06,6.53h0L9.75,12.83a5,5,0,1,0,1.42,1.42l5.59-5.6,2.12,2.13a1,1,0,1,0,1.41-1.42L18.17,7.24l1.42-1.41.7.7a1,1,0,1,0,1.42-1.41ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Z' + }) + ) +} + +export default UilKeySkeleton \ No newline at end of file diff --git a/src/icons/uil-keyboard-alt.ts b/src/icons/uil-keyboard-alt.ts new file mode 100644 index 00000000..4e730f43 --- /dev/null +++ b/src/icons/uil-keyboard-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyboardAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.71,9.29a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21A.84.84,0,0,0,6,11a1,1,0,0,0,.92-1.38A1,1,0,0,0,6.71,9.29ZM10,11a1,1,0,0,0,.92-1.38,1,1,0,0,0-.21-.33A1,1,0,0,0,9.81,9a.6.6,0,0,0-.19.06l-.18.09-.15.12A1.05,1.05,0,0,0,9,10a1,1,0,0,0,1,1ZM6.38,13.08a1,1,0,0,0-.76,0A1,1,0,0,0,5,14a1,1,0,0,0,1.38.92,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,7,14a1,1,0,0,0-.29-.71A.93.93,0,0,0,6.38,13.08ZM14,13H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm.71-3.71a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33A1,1,0,1,0,15,10a.84.84,0,0,0-.08-.38A1,1,0,0,0,14.71,9.29Zm3.85,3.88a.76.76,0,0,0-.18-.09,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,17,14a1,1,0,1,0,2,0,1.05,1.05,0,0,0-.29-.71ZM20,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1ZM18.71,9.29A1,1,0,0,0,17,10a1,1,0,1,0,1.92-.38A1,1,0,0,0,18.71,9.29Z' + }) + ) +} + +export default UilKeyboardAlt \ No newline at end of file diff --git a/src/icons/uil-keyboard-hide.ts b/src/icons/uil-keyboard-hide.ts new file mode 100644 index 00000000..dee12676 --- /dev/null +++ b/src/icons/uil-keyboard-hide.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyboardHide = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.71,10.29a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.3-1.3A1,1,0,0,0,6.71,10.29ZM9.29,7.71A1,1,0,0,0,10,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76,1.15,1.15,0,0,0-.21-.33,1,1,0,0,0-1.42,0,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,9.29,7.71ZM6.71,6.29A1,1,0,0,0,5,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,6,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1.15,1.15,0,0,0,6.71,6.29Zm6.58,12L12,19.59l-1.29-1.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,1.42,0l2-2a1,1,0,0,0-1.42-1.42Zm5.42-12A1,1,0,0,0,17,7a.84.84,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33,1,1,0,0,0,1.42,0,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,19,7a1,1,0,0,0-.08-.38A1.15,1.15,0,0,0,18.71,6.29ZM14,10H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-8H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V5A3,3,0,0,0,20,2Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1Zm-2.29-2.71a1,1,0,0,0-.33-.21.92.92,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,17,11a1,1,0,1,0,1.92-.38A1,1,0,0,0,18.71,10.29ZM13.62,6.08a1.15,1.15,0,0,0-.33.21A1.05,1.05,0,0,0,13,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,14,8a.84.84,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,15,7a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,13.62,6.08Z' + }) + ) +} + +export default UilKeyboardHide \ No newline at end of file diff --git a/src/icons/uil-keyboard-show.ts b/src/icons/uil-keyboard-show.ts new file mode 100644 index 00000000..6015d7db --- /dev/null +++ b/src/icons/uil-keyboard-show.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyboardShow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.71,10.29A1,1,0,0,0,5,11a1,1,0,1,0,1.92-.38A1,1,0,0,0,6.71,10.29ZM9.29,7.71A1,1,0,0,0,10,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,11,7a1.05,1.05,0,0,0-.29-.71l-.15-.12-.18-.09A.6.6,0,0,0,10.19,6a1,1,0,0,0-.9.27,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76A1.15,1.15,0,0,0,9.29,7.71ZM6.56,6.17a.76.76,0,0,0-.18-.09L6.2,6a1,1,0,0,0-.91.27,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21A.84.84,0,0,0,6,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,7,7a1.05,1.05,0,0,0-.29-.71Zm6.15,12.12a1,1,0,0,0-1.42,0l-2,2a1,1,0,0,0,1.42,1.42L12,20.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm6-8a1,1,0,0,0-1.42,0,1,1,0,0,0-.21.33,1,1,0,0,0,1.3,1.3,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,19,11a.84.84,0,0,0-.08-.38A1,1,0,0,0,18.71,10.29ZM14,10H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6-8H4A3,3,0,0,0,1,5v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V5A3,3,0,0,0,20,2Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V5A1,1,0,0,1,4,4H20a1,1,0,0,1,1,1ZM17.62,6.08a.93.93,0,0,0-.33.21A1.05,1.05,0,0,0,17,7a1,1,0,0,0,.08.38,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,18,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,19,7a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,17.62,6.08Zm-3.06.09-.18-.09L14.2,6a1,1,0,0,0-.58.06.93.93,0,0,0-.33.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33A1,1,0,0,0,14,8a1,1,0,0,0,.71-.29,1.15,1.15,0,0,0,.21-.33A1,1,0,0,0,15,7a1.05,1.05,0,0,0-.29-.71Z' + }) + ) +} + +export default UilKeyboardShow \ No newline at end of file diff --git a/src/icons/uil-keyboard.ts b/src/icons/uil-keyboard.ts new file mode 100644 index 00000000..3d0c9ccd --- /dev/null +++ b/src/icons/uil-keyboard.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyboard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.21,13.29a.93.93,0,0,0-.33-.21,1,1,0,0,0-.76,0,.9.9,0,0,0-.54.54,1,1,0,1,0,1.84,0A1,1,0,0,0,6.21,13.29ZM13.5,11h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm-4,0h1a1,1,0,0,0,0-2h-1a1,1,0,0,0,0,2Zm-3-2h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM20,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1Zm-6-3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm3.5-4h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm.71,4.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,.93.93,0,0,0-.33.21,1,1,0,0,0-.21.33A1,1,0,1,0,19.5,14a.84.84,0,0,0-.08-.38A1,1,0,0,0,19.21,13.29Z' + }) + ) +} + +export default UilKeyboard \ No newline at end of file diff --git a/src/icons/uil-keyhole-circle.ts b/src/icons/uil-keyhole-circle.ts new file mode 100644 index 00000000..1e1cc748 --- /dev/null +++ b/src/icons/uil-keyhole-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyholeCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,8a2,2,0,0,0-2,2,2,2,0,0,0,1,1.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10,2,2,0,0,0,12,8Zm0-6A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilKeyholeCircle \ No newline at end of file diff --git a/src/icons/uil-keyhole-square-full.ts b/src/icons/uil-keyhole-square-full.ts new file mode 100644 index 00000000..a43dc61e --- /dev/null +++ b/src/icons/uil-keyhole-square-full.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyholeSquareFull = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,11.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10a2,2,0,0,0-4,0A2,2,0,0,0,11,11.72ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilKeyholeSquareFull \ No newline at end of file diff --git a/src/icons/uil-keyhole-square.ts b/src/icons/uil-keyhole-square.ts new file mode 100644 index 00000000..09f961aa --- /dev/null +++ b/src/icons/uil-keyhole-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKeyholeSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM12,8a2,2,0,0,0-2,2,2,2,0,0,0,1,1.72V15a1,1,0,0,0,2,0V11.72A2,2,0,0,0,14,10,2,2,0,0,0,12,8Z' + }) + ) +} + +export default UilKeyholeSquare \ No newline at end of file diff --git a/src/icons/uil-kid.ts b/src/icons/uil-kid.ts new file mode 100644 index 00000000..1f2f337f --- /dev/null +++ b/src/icons/uil-kid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilKid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,10a1,1,0,1,0-1,1A1,1,0,0,0,10,10Zm4.5,4.06a1,1,0,0,0-1.37.36,1.3,1.3,0,0,1-2.26,0,1,1,0,0,0-1.37-.36,1,1,0,0,0-.37,1.36,3.31,3.31,0,0,0,5.74,0A1,1,0,0,0,14.5,14.06ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18A8,8,0,0,1,9,4.57,3,3,0,0,0,9,5a3,3,0,0,0,3,3,1,1,0,0,0,0-2,1,1,0,0,1,0-2,8,8,0,0,1,0,16Z' + }) + ) +} + +export default UilKid \ No newline at end of file diff --git a/src/icons/uil-label-alt.ts b/src/icons/uil-label-alt.ts new file mode 100644 index 00000000..5461e8d9 --- /dev/null +++ b/src/icons/uil-label-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLabelAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,12a1,1,0,1,0,1-1A1,1,0,0,0,15,12Zm6.71-.71-5-5A1,1,0,0,0,16,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H16a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM15.59,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H15.59l4,4Z' + }) + ) +} + +export default UilLabelAlt \ No newline at end of file diff --git a/src/icons/uil-label.ts b/src/icons/uil-label.ts new file mode 100644 index 00000000..9aea6807 --- /dev/null +++ b/src/icons/uil-label.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLabel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,11.29l-5-5A1,1,0,0,0,16,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H16a1,1,0,0,0,.71-.29l5-5A1,1,0,0,0,21.71,11.29ZM15.59,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H15.59l4,4Z' + }) + ) +} + +export default UilLabel \ No newline at end of file diff --git a/src/icons/uil-lamp.ts b/src/icons/uil-lamp.ts new file mode 100644 index 00000000..212df21b --- /dev/null +++ b/src/icons/uil-lamp.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLamp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,2.78A1,1,0,0,0,17,2H7a1,1,0,0,0-1,.78l-2,9a1,1,0,0,0,.2.85A1,1,0,0,0,5,13H8.94A8.26,8.26,0,0,1,9,14a8.92,8.92,0,0,1-2.57,6.3A1,1,0,0,0,7.14,22h9.72a1,1,0,0,0,.71-1.7A8.92,8.92,0,0,1,15,14a8.26,8.26,0,0,1,.06-1H16v2a1,1,0,0,0,2,0V13h1a1,1,0,0,0,.78-.37,1,1,0,0,0,.2-.85ZM9.22,20A10.9,10.9,0,0,0,11,14c0-.33,0-.67-.05-1h2.1c0,.33-.05.67-.05,1a10.9,10.9,0,0,0,1.78,6Zm-3-9L7.8,4h8.4l1.55,7Z' + }) + ) +} + +export default UilLamp \ No newline at end of file diff --git a/src/icons/uil-language.ts b/src/icons/uil-language.ts new file mode 100644 index 00000000..c4fe40c5 --- /dev/null +++ b/src/icons/uil-language.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLanguage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.05566,12h-2a1,1,0,0,0,0,2v2H17.8714a2.96481,2.96481,0,0,0,.18426-1A2.99955,2.99955,0,0,0,12.458,13.50049a.99992.99992,0,1,0,1.73242.999A1.0009,1.0009,0,0,1,15.05566,14a1,1,0,0,1,0,2,1,1,0,0,0,0,2,1,1,0,1,1,0,2,1.0009,1.0009,0,0,1-.86523-.49951.99992.99992,0,1,0-1.73242.999A2.99955,2.99955,0,0,0,18.05566,19a2.96481,2.96481,0,0,0-.18426-1h1.18426v3a1,1,0,0,0,2,0V14a1,1,0,1,0,0-2ZM9.08594,11.24268a.99963.99963,0,1,0,1.93945-.48536L9.26855,3.72754a2.28044,2.28044,0,0,0-4.4248,0L3.08594,10.75732a.99963.99963,0,1,0,1.93945.48536L5.58618,9H8.52545ZM6.0863,7l.6969-2.78711a.29222.29222,0,0,1,.5459,0L8.02563,7Zm7.96936,0h1a1.001,1.001,0,0,1,1,1V9a1,1,0,0,0,2,0V8a3.00328,3.00328,0,0,0-3-3h-1a1,1,0,0,0,0,2Zm-4,9h-1a1.001,1.001,0,0,1-1-1V14a1,1,0,0,0-2,0v1a3.00328,3.00328,0,0,0,3,3h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLanguage \ No newline at end of file diff --git a/src/icons/uil-laptop-cloud.ts b/src/icons/uil-laptop-cloud.ts new file mode 100644 index 00000000..2d5ff51d --- /dev/null +++ b/src/icons/uil-laptop-cloud.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLaptopCloud = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.5,10H10a3,3,0,0,0,1.07-5.8,4,4,0,0,0-7.48,1A2.5,2.5,0,0,0,4.5,10Zm0-3a1,1,0,0,0,1-1,2,2,0,0,1,3.89-.64,1,1,0,0,0,.78.66A1,1,0,0,1,11,7a1,1,0,0,1-1,1H4.5a.5.5,0,0,1,0-1ZM21,16H20V9a3,3,0,0,0-3-3H16a1,1,0,0,0,0,2h1a1,1,0,0,1,1,1v7H6V13a1,1,0,0,0-2,0v3H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V17A1,1,0,0,0,21,16Zm-1,3a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V18H20Z' + }) + ) +} + +export default UilLaptopCloud \ No newline at end of file diff --git a/src/icons/uil-laptop-connection.ts b/src/icons/uil-laptop-connection.ts new file mode 100644 index 00000000..05138dc1 --- /dev/null +++ b/src/icons/uil-laptop-connection.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLaptopConnection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18H14.82A3,3,0,0,0,13,16.18V13h7a1,1,0,0,0,0-2H19V5a3,3,0,0,0-3-3H8A3,3,0,0,0,5,5v6H4a1,1,0,0,0,0,2h7v3.18A3,3,0,0,0,9.18,18H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM7,11V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1v6Zm5,9a1,1,0,1,1,1-1A1,1,0,0,1,12,20Z' + }) + ) +} + +export default UilLaptopConnection \ No newline at end of file diff --git a/src/icons/uil-laptop.ts b/src/icons/uil-laptop.ts new file mode 100644 index 00000000..a1c40cda --- /dev/null +++ b/src/icons/uil-laptop.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLaptop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H20V7a3,3,0,0,0-3-3H7A3,3,0,0,0,4,7v7H3a1,1,0,0,0-1,1v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A1,1,0,0,0,21,14ZM6,7A1,1,0,0,1,7,6H17a1,1,0,0,1,1,1v7H6ZM20,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H20Z' + }) + ) +} + +export default UilLaptop \ No newline at end of file diff --git a/src/icons/uil-laughing.ts b/src/icons/uil-laughing.ts new file mode 100644 index 00000000..92446ef6 --- /dev/null +++ b/src/icons/uil-laughing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLaughing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.16,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L14.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42Zm-5.08,0,1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21Zm5.28,2a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilLaughing \ No newline at end of file diff --git a/src/icons/uil-layer-group-slash.ts b/src/icons/uil-layer-group-slash.ts new file mode 100644 index 00000000..8cf21962 --- /dev/null +++ b/src/icons/uil-layer-group-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLayerGroupSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.26,5,12,4l7,4L15.85,9.83a1,1,0,0,0-.37,1.36,1,1,0,0,0,1.37.37L21.5,8.87a1,1,0,0,0,0-1.74l-9-5.2a1,1,0,0,0-1,0L9.26,3.23A1,1,0,0,0,8.89,4.6,1,1,0,0,0,10.26,5ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.54,6l-2,1.17a1,1,0,0,0,0,1.74l9,5.2a1,1,0,0,0,1,0l.1-.06,1.07,1.07-1.67,1L3.5,11.13a1,1,0,1,0-1,1.74l9,5.2a1,1,0,0,0,.5.13,1,1,0,0,0,.5-.13l2.63-1.52,1.07,1.07L12,20,3.5,15.13a1,1,0,0,0-1,1.74l9,5.2a1,1,0,0,0,1,0l5.17-3,2.62,2.63a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM5,8l1-.58,2.75,2.75Zm15.5,3.13-2.12,1.22a1,1,0,0,0,1,1.74l2.12-1.22a1,1,0,1,0-1-1.74Z' + }) + ) +} + +export default UilLayerGroupSlash \ No newline at end of file diff --git a/src/icons/uil-layer-group.ts b/src/icons/uil-layer-group.ts new file mode 100644 index 00000000..08adaffd --- /dev/null +++ b/src/icons/uil-layer-group.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLayerGroup = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.5,8.86l9,5.2a1,1,0,0,0,1,0l9-5.2A1,1,0,0,0,22,8a1,1,0,0,0-.5-.87l-9-5.19a1,1,0,0,0-1,0l-9,5.19A1,1,0,0,0,2,8,1,1,0,0,0,2.5,8.86ZM12,4l7,4-7,4L5,8Zm8.5,7.17L12,16,3.5,11.13a1,1,0,0,0-1.37.37,1,1,0,0,0,.37,1.36l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.36A1,1,0,0,0,20.5,11.13Zm0,4L12,20,3.5,15.13a1,1,0,0,0-1.37.37,1,1,0,0,0,.37,1.36l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.36A1,1,0,0,0,20.5,15.13Z' + }) + ) +} + +export default UilLayerGroup \ No newline at end of file diff --git a/src/icons/uil-layers-alt.ts b/src/icons/uil-layers-alt.ts new file mode 100644 index 00000000..199d7d6b --- /dev/null +++ b/src/icons/uil-layers-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLayersAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H9A1,1,0,0,0,8,3V7H6A1,1,0,0,0,5,8v4H3a1,1,0,0,0-1,1v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V19h4a1,1,0,0,0,1-1V16h4a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM10,20H4V14h6Zm5-3H12V13a1,1,0,0,0-1-1H7V9h8Zm5-3H17V8a1,1,0,0,0-1-1H10V4H20Z' + }) + ) +} + +export default UilLayersAlt \ No newline at end of file diff --git a/src/icons/uil-layers-slash.ts b/src/icons/uil-layers-slash.ts new file mode 100644 index 00000000..d69d2a66 --- /dev/null +++ b/src/icons/uil-layers-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLayersSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.49,13.94l-.34.2a1,1,0,0,0-.35,1.37,1,1,0,0,0,.86.49,1,1,0,0,0,.51-.14l.34-.2a1,1,0,0,0-1-1.72ZM11.65,6.36,12,6.15l7,4-1.76,1a1,1,0,0,0,.5,1.87,1,1,0,0,0,.5-.13l3.26-1.89a1,1,0,0,0,0-1.74l-9-5.19a1,1,0,0,0-1,0l-.85.49a1,1,0,0,0,1,1.74ZM3.71,2.29A1,1,0,0,0,2.29,3.71L5.93,7.34l-3.43,2a1,1,0,0,0,0,1.74l9,5.2a1.09,1.09,0,0,0,.5.13,1.13,1.13,0,0,0,.5-.13L14,15.4l1.45,1.46-3.44,2L3.5,13.93a1,1,0,0,0-1,1.74l9,5.2a1,1,0,0,0,1,0l4.41-2.55,3.38,3.39a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm8.29,12L5,10.19,7.4,8.81l5.12,5.13Z' + }) + ) +} + +export default UilLayersSlash \ No newline at end of file diff --git a/src/icons/uil-layers.ts b/src/icons/uil-layers.ts new file mode 100644 index 00000000..ff1365fe --- /dev/null +++ b/src/icons/uil-layers.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLayers = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.5,10.56l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,0-1.73l-9-5.2a1,1,0,0,0-1,0l-9,5.2a1,1,0,0,0,0,1.73ZM12,5.65l7,4-7,4.05L5,9.69Zm8.5,7.79L12,18.35,3.5,13.44a1,1,0,0,0-1.37.36,1,1,0,0,0,.37,1.37l9,5.2a1,1,0,0,0,1,0l9-5.2a1,1,0,0,0,.37-1.37A1,1,0,0,0,20.5,13.44Z' + }) + ) +} + +export default UilLayers \ No newline at end of file diff --git a/src/icons/uil-left-arrow-from-left.ts b/src/icons/uil-left-arrow-from-left.ts new file mode 100644 index 00000000..b886833c --- /dev/null +++ b/src/icons/uil-left-arrow-from-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeftArrowFromLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,11H5.41l2.3-2.29A1,1,0,1,0,6.29,7.29l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.41,13H17a1,1,0,0,0,0-2Zm4-7a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,21,4Z' + }) + ) +} + +export default UilLeftArrowFromLeft \ No newline at end of file diff --git a/src/icons/uil-left-arrow-to-left.ts b/src/icons/uil-left-arrow-to-left.ts new file mode 100644 index 00000000..ea19f18e --- /dev/null +++ b/src/icons/uil-left-arrow-to-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeftArrowToLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H9.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L9.41,13H21a1,1,0,0,0,0-2ZM3,3A1,1,0,0,0,2,4V20a1,1,0,0,0,2,0V4A1,1,0,0,0,3,3Z' + }) + ) +} + +export default UilLeftArrowToLeft \ No newline at end of file diff --git a/src/icons/uil-left-indent-alt.ts b/src/icons/uil-left-indent-alt.ts new file mode 100644 index 00000000..c2261ea0 --- /dev/null +++ b/src/icons/uil-left-indent-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeftIndentAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,5A1,1,0,0,0,8,6V18a1,1,0,0,0,2,0V6A1,1,0,0,0,9,5Zm4,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2ZM5.77,9.69a1,1,0,0,0-1.41-.13l-2,1.67a1,1,0,0,0,0,1.54l2,1.67a1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.41L4.56,12l1.08-.9A1,1,0,0,0,5.77,9.69ZM21,9H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLeftIndentAlt \ No newline at end of file diff --git a/src/icons/uil-left-indent.ts b/src/icons/uil-left-indent.ts new file mode 100644 index 00000000..62728b3d --- /dev/null +++ b/src/icons/uil-left-indent.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeftIndent = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm0,4H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2ZM21.77,9.69a1,1,0,0,0-1.41-.12l-2,1.66a1,1,0,0,0,0,1.54l2,1.66a1,1,0,0,0,.64.24,1,1,0,0,0,.77-.36,1,1,0,0,0-.13-1.41L20.56,12l1.08-.9A1,1,0,0,0,21.77,9.69ZM21,17H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3,15H13a1,1,0,0,0,0-2H3a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilLeftIndent \ No newline at end of file diff --git a/src/icons/uil-left-to-right-text-direction.ts b/src/icons/uil-left-to-right-text-direction.ts new file mode 100644 index 00000000..c81eeaad --- /dev/null +++ b/src/icons/uil-left-to-right-text-direction.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeftToRightTextDirection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.42,17.62a1,1,0,0,0-.21-.33l-3-3a1,1,0,0,0-1.42,1.42L18.09,17H3.5a1,1,0,0,0,0,2H18.09l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3-3a1,1,0,0,0,.21-.33A1,1,0,0,0,21.42,17.62ZM8.5,10v4a1,1,0,0,0,2,0V4h2V14a1,1,0,0,0,2,0V4h1a1,1,0,0,0,0-2h-7a4,4,0,0,0,0,8Zm0-6V8a2,2,0,0,1,0-4Z' + }) + ) +} + +export default UilLeftToRightTextDirection \ No newline at end of file diff --git a/src/icons/uil-left.ts b/src/icons/uil-left.ts new file mode 100644 index 00000000..7fc9ec6c --- /dev/null +++ b/src/icons/uil-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9.5H7.41l1.3-1.29A1,1,0,0,0,7.29,6.79l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L7.41,11.5H17a1,1,0,0,1,1,1v4a1,1,0,0,0,2,0v-4A3,3,0,0,0,17,9.5Z' + }) + ) +} + +export default UilLeft \ No newline at end of file diff --git a/src/icons/uil-letter-chinese-a.ts b/src/icons/uil-letter-chinese-a.ts new file mode 100644 index 00000000..c580b97b --- /dev/null +++ b/src/icons/uil-letter-chinese-a.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLetterChineseA = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,5H13V4a1,1,0,0,0-2,0V5H4A1,1,0,0,0,4,7H15.88214a14.49252,14.49252,0,0,1-3.94067,7.95227A14.42561,14.42561,0,0,1,8.66406,9.67041a1.0002,1.0002,0,0,0-1.88867.65918,16.41412,16.41412,0,0,0,3.68012,5.95825,14.29858,14.29858,0,0,1-5.769,2.73511A1.00015,1.00015,0,0,0,4.89941,21a1.01758,1.01758,0,0,0,.21485-.023,16.297,16.297,0,0,0,6.831-3.31885A16.38746,16.38746,0,0,0,18.78711,20.977a1,1,0,0,0,.42578-1.9541,14.38226,14.38226,0,0,1-5.78955-2.73316A16.4802,16.4802,0,0,0,17.89233,7H20a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLetterChineseA \ No newline at end of file diff --git a/src/icons/uil-letter-english-a.ts b/src/icons/uil-letter-english-a.ts new file mode 100644 index 00000000..6a265b60 --- /dev/null +++ b/src/icons/uil-letter-english-a.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLetterEnglishA = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.97021,19.75732,15.34912,5.27246A2.9958,2.9958,0,0,0,12.43848,3h-.877A2.9958,2.9958,0,0,0,8.65088,5.27246L5.02979,19.75732a1.0001,1.0001,0,0,0,1.94042.48536L8.28082,15h7.43836l1.31061,5.24268a1.0001,1.0001,0,0,0,1.94042-.48536ZM8.78082,13l1.81049-7.24219A.99825.99825,0,0,1,11.56152,5h.877a.99825.99825,0,0,1,.97021.75781L15.21918,13Z' + }) + ) +} + +export default UilLetterEnglishA \ No newline at end of file diff --git a/src/icons/uil-letter-hindi-a.ts b/src/icons/uil-letter-hindi-a.ts new file mode 100644 index 00000000..8c91c912 --- /dev/null +++ b/src/icons/uil-letter-hindi-a.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLetterHindiA = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.022,3h-5a1,1,0,0,0,0,2h1.5v6H11.57208a4.95124,4.95124,0,0,0,1.02558-3A5,5,0,0,0,3.26758,5.5.99974.99974,0,1,0,4.999,6.5,3.00021,3.00021,0,1,1,7.59766,11a1,1,0,0,0,0,2A3,3,0,1,1,4.999,17.5a.99974.99974,0,0,0-1.73144,1A5,5,0,0,0,12.59766,16a4.95124,4.95124,0,0,0-1.02558-3H16.522v7a1,1,0,0,0,2,0V5h1.5a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLetterHindiA \ No newline at end of file diff --git a/src/icons/uil-letter-japanese-a.ts b/src/icons/uil-letter-japanese-a.ts new file mode 100644 index 00000000..0fd42757 --- /dev/null +++ b/src/icons/uil-letter-japanese-a.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLetterJapaneseA = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.47168,11.99707a4.86537,4.86537,0,0,0-4.00049-2.2038A5.59215,5.59215,0,0,0,16.34082,8.769a.9997.9997,0,1,0-1.94531.46192,3.55342,3.55342,0,0,1,.0827.60132,13.57729,13.57729,0,0,0-3.257.82189c.02252-1.20385.07678-2.40728.19672-3.60729l.03827-.38221a33.43522,33.43522,0,0,0,3.48224-.66418l.12011-.02979a1,1,0,1,0-.48047-1.9414l-.12207.03027c-.92163.23047-1.85565.40448-2.79394.5506l.15137-1.51056a1.00009,1.00009,0,0,0-1.99024-.19922L9.627,4.85962C8.69312,4.94336,7.75665,5,6.81836,5a1,1,0,0,0,0,2c.87054,0,1.7395-.04639,2.60681-.1142A46.66015,46.66015,0,0,0,9.222,11.58386c-.13421.07324-.26965.14209-.40264.21936a16.4074,16.4074,0,0,0-1.94922,1.31055l-.02246.01807a13.7396,13.7396,0,0,0-2.64844,2.70068,3.00419,3.00419,0,0,0,2.94629,4.71875A9.74034,9.74034,0,0,0,9.98328,19.5379a.99564.99564,0,0,0,1.82141-.70245c-.02423-.1452-.03534-.29193-.05811-.43732a13.83775,13.83775,0,0,0,1.314-1.15545,13.16694,13.16694,0,0,0,2.10168-2.729c.02289-.03949.04212-.0791.06445-.11865.118-.21057.22944-.422.33179-.63495.05383-.11108.1023-.22174.15155-.33282.05994-.13623.11719-.27222.17047-.40882.05646-.14361.10981-.28662.15845-.42968.03235-.09583.06055-.19123.08948-.28693.05133-.16882.10174-.3371.142-.50427l.005-.01776a3.01462,3.01462,0,0,1,2.46582,1.21972c1.01856,1.76709-.96289,4.977-4.417,7.15479a.99976.99976,0,1,0,1.0664,1.6914C19.88965,19.00977,22.07422,14.77734,20.47168,11.99707ZM6.7959,18.58252a1.00469,1.00469,0,0,1-.97949-1.57373,11.89343,11.89343,0,0,1,2.291-2.32275l.02637-.02149c.35388-.27692.742-.539,1.144-.793.0611,1.19537.17285,2.38684.32593,3.57489A8.18484,8.18484,0,0,1,6.7959,18.58252Zm7.32977-6.583a8.16646,8.16646,0,0,1-.31616.78137c-.0556.1189-.118.23774-.18018.35694q-.14419.27851-.3106.55432c-.08466.13953-.17188.27887-.26514.41742a11.48078,11.48078,0,0,1-1.40711,1.719c-.06982.06983-.14343.1333-.2146.201q-.16314-1.5975-.21124-3.20276a12.51276,12.51276,0,0,1,2.94-.93237C14.149,11.9295,14.13794,11.96436,14.12567,11.99951Z' + }) + ) +} + +export default UilLetterJapaneseA \ No newline at end of file diff --git a/src/icons/uil-life-ring.ts b/src/icons/uil-life-ring.ts new file mode 100644 index 00000000..33d4364a --- /dev/null +++ b/src/icons/uil-life-ring.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLifeRing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,11.05c0-.11,0-.22,0-.33l-.09-.6-.09-.39c0-.17-.08-.34-.13-.51s-.08-.27-.13-.4a2.17,2.17,0,0,1-.07-.24s0,0,0-.05a10.1,10.1,0,0,0-5.9-5.9s0,0-.05,0l-.23-.07-.42-.13c-.15,0-.31-.08-.46-.12l-.46-.1-.46-.07c-.16,0-.31,0-.48-.06s-.35,0-.52,0L12,2l-.39,0c-.17,0-.35,0-.52,0s-.32,0-.48.06l-.46.07-.46.1c-.15,0-.31.07-.46.12l-.42.13-.23.07s0,0-.05,0a10.1,10.1,0,0,0-5.9,5.9s0,0,0,.05a2.17,2.17,0,0,1-.07.24c0,.13-.09.26-.13.4s-.09.34-.13.51l-.09.39-.09.6c0,.11,0,.22,0,.33,0,.31,0,.63,0,.95s0,.64,0,.95c0,.11,0,.22,0,.33l.09.6.09.39c0,.17.08.34.13.51s.08.27.13.4a2.17,2.17,0,0,1,.07.24.43.43,0,0,1,0,.07,10,10,0,0,0,5.89,5.88s0,0,.05,0l.24.07.4.13.51.13.39.09.6.09.33,0c.31,0,.63.05.95.05s.64,0,.95-.05l.33,0,.6-.09.39-.09.51-.13.4-.13.24-.07s0,0,.05,0a10,10,0,0,0,5.89-5.88.43.43,0,0,1,0-.07c0-.08.05-.16.07-.24s.09-.26.13-.4.09-.34.13-.51l.09-.39.09-.6c0-.11,0-.22,0-.33,0-.31.05-.63.05-.95S22,11.36,22,11.05Zm-6.3-6.16a8,8,0,0,1,3.46,3.46l-2.86,1a5.14,5.14,0,0,0-1.64-1.64Zm-5.36-.7c.21-.05.41-.08.61-.11l.24,0a8.24,8.24,0,0,1,1.72,0l.24,0c.2,0,.4.06.61.11h.06l-1,2.86A4.49,4.49,0,0,0,12,7a4.4,4.4,0,0,0-.73.06l-1-2.86Zm-1.94.7,1,2.86A5.14,5.14,0,0,0,7.75,9.39l-2.86-1A8,8,0,0,1,8.35,4.89ZM4.19,13.71a4.17,4.17,0,0,1-.1-.6c0-.09,0-.17,0-.25a7.42,7.42,0,0,1,0-1.72c0-.08,0-.16,0-.25a4.17,4.17,0,0,1,.1-.6s0,0,0-.06l2.86,1a4.47,4.47,0,0,0,0,1.46l-2.86,1S4.19,13.73,4.19,13.71Zm4.16,5.4a8,8,0,0,1-3.46-3.46l2.86-1a5.14,5.14,0,0,0,1.64,1.64Zm5.36.7c-.21.05-.41.08-.61.11l-.24,0a8.24,8.24,0,0,1-1.72,0l-.24,0c-.2,0-.4-.06-.61-.11h-.06l1-2.86a4.47,4.47,0,0,0,1.46,0l1,2.86Zm-.67-5h0c-.17.06-.34.1-.5.14a2.73,2.73,0,0,1-1,0c-.16,0-.33-.08-.5-.14h0A3,3,0,0,1,9.2,13v0a3.23,3.23,0,0,1-.14-.51,2.63,2.63,0,0,1,0-1A3.23,3.23,0,0,1,9.19,11v0A3,3,0,0,1,11,9.2h0c.17-.06.34-.1.5-.14a2.73,2.73,0,0,1,1,0c.16,0,.33.08.5.14h0A3,3,0,0,1,14.8,11v0a3.23,3.23,0,0,1,.14.51,2.63,2.63,0,0,1,0,1,3.23,3.23,0,0,1-.14.51v0A3,3,0,0,1,13,14.8Zm2.61,4.31-1-2.86a5.14,5.14,0,0,0,1.64-1.64l2.86,1A8,8,0,0,1,15.65,19.11ZM20,12.86c0,.08,0,.16,0,.25a4.17,4.17,0,0,1-.1.6s0,0,0,.06l-2.86-1a4.47,4.47,0,0,0,0-1.46l2.86-1s0,0,0,.06a4.17,4.17,0,0,1,.1.6c0,.09,0,.17,0,.25a7.42,7.42,0,0,1,0,1.72Z' + }) + ) +} + +export default UilLifeRing \ No newline at end of file diff --git a/src/icons/uil-lightbulb-alt.ts b/src/icons/uil-lightbulb-alt.ts new file mode 100644 index 00000000..d80f702a --- /dev/null +++ b/src/icons/uil-lightbulb-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLightbulbAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.09,2.82a8,8,0,0,0-6.68-1.66A8,8,0,0,0,4.14,7.48a8.07,8.07,0,0,0,1.72,6.65A4.54,4.54,0,0,1,7,17v3a3,3,0,0,0,3,3h4a3,3,0,0,0,3-3V17.19A5.17,5.17,0,0,1,18.22,14a8,8,0,0,0-1.13-11.2ZM15,20a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V19h6Zm1.67-7.24A7.13,7.13,0,0,0,15,17H13V14a1,1,0,0,0-2,0v3H9a6.5,6.5,0,0,0-1.6-4.16,6,6,0,0,1,3.39-9.72A6,6,0,0,1,18,9,5.89,5.89,0,0,1,16.67,12.76Z' + }) + ) +} + +export default UilLightbulbAlt \ No newline at end of file diff --git a/src/icons/uil-lightbulb.ts b/src/icons/uil-lightbulb.ts new file mode 100644 index 00000000..07b75801 --- /dev/null +++ b/src/icons/uil-lightbulb.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLightbulb = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.45,12.46a7,7,0,0,0-1-9.83,7.09,7.09,0,0,0-5.92-1.4,7,7,0,0,0-4,11.15,4.76,4.76,0,0,1,1.08,2.86v.29A2,2,0,0,0,7,16.93v2a2,2,0,0,0,2,2v1a1,1,0,0,0,2,0v-1h2v1a1,1,0,0,0,2,0v-1a2,2,0,0,0,2-2v-2a2,2,0,0,0-.57-1.4V15.1A4.26,4.26,0,0,1,17.45,12.46ZM9,18.93v-2h6v2Zm6.89-7.72a6.18,6.18,0,0,0-1.46,3.72H9.56a6.67,6.67,0,0,0-1.5-3.78,5,5,0,0,1,2.84-8A5,5,0,0,1,17,8.07,4.92,4.92,0,0,1,15.89,11.21Z' + }) + ) +} + +export default UilLightbulb \ No newline at end of file diff --git a/src/icons/uil-line-alt.ts b/src/icons/uil-line-alt.ts new file mode 100644 index 00000000..97ec55ee --- /dev/null +++ b/src/icons/uil-line-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLineAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,3.29a1,1,0,0,0-1.42,0l-18,18a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l18-18A1,1,0,0,0,21.71,3.29Z' + }) + ) +} + +export default UilLineAlt \ No newline at end of file diff --git a/src/icons/uil-line-spacing.ts b/src/icons/uil-line-spacing.ts new file mode 100644 index 00000000..58a3c04e --- /dev/null +++ b/src/icons/uil-line-spacing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLineSpacing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.29,9.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2-2a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2A1,1,0,0,0,3.71,9.71L4,9.41v5.18l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42l-.29.3V9.41ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,3H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLineSpacing \ No newline at end of file diff --git a/src/icons/uil-line.ts b/src/icons/uil-line.ts new file mode 100644 index 00000000..903e4664 --- /dev/null +++ b/src/icons/uil-line.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.78,9.46h0a.38.38,0,0,0-.38.38v1.67L12,9.65a.4.4,0,0,0-.33-.19h0a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38h0a.38.38,0,0,0,.38-.38V11l1.39,1.91,0,0h0a.27.27,0,0,0,.15.11.32.32,0,0,0,.14,0h0A.33.33,0,0,0,14,13l.1-.07h0a.39.39,0,0,0,.11-.27V9.84A.38.38,0,0,0,13.78,9.46ZM9.2,12.27H8.14V9.84a.38.38,0,0,0-.38-.38h0a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38H9.2a.39.39,0,0,0,.39-.38v0A.39.39,0,0,0,9.2,12.27Zm1.11-2.81h0a.39.39,0,0,0-.39.38v2.84a.39.39,0,0,0,.39.38h0a.38.38,0,0,0,.38-.38V9.84A.38.38,0,0,0,10.31,9.46ZM17.91,2H6.09A4.1,4.1,0,0,0,2,6.09V17.91A4.1,4.1,0,0,0,6.09,22H17.91A4.1,4.1,0,0,0,22,17.91V6.09A4.1,4.1,0,0,0,17.91,2Zm.31,12.28a1.55,1.55,0,0,1-.13.17h0a5.5,5.5,0,0,1-.8.8c-2,1.87-5.36,4.11-5.81,3.76s.64-1.76-.53-2a1,1,0,0,1-.25,0h0c-3.44-.48-6-2.89-6-5.78,0-3.25,3.29-5.88,7.34-5.88s7.34,2.63,7.34,5.88A5,5,0,0,1,18.22,14.28ZM16.51,9.47H15a.38.38,0,0,0-.38.38v2.84a.38.38,0,0,0,.38.38h1.48a.38.38,0,0,0,.38-.38v0a.38.38,0,0,0-.38-.38H15.45v-.6h1.06a.39.39,0,0,0,.38-.39v0a.38.38,0,0,0-.38-.38H15.45v-.61h1.06a.38.38,0,0,0,.38-.38v0A.38.38,0,0,0,16.51,9.47Z' + }) + ) +} + +export default UilLine \ No newline at end of file diff --git a/src/icons/uil-link-add.ts b/src/icons/uil-link-add.ts new file mode 100644 index 00000000..d0c76b79 --- /dev/null +++ b/src/icons/uil-link-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm12.11 15.39-3.88 3.88a2.47 2.47 0 0 1-3.5 0 2.46 2.46 0 0 1 0-3.5l3.88-3.88a1 1 0 1 0-1.42-1.42l-3.88 3.89a4.48 4.48 0 0 0 6.33 6.33l3.89-3.88a1 1 0 0 0-1.42-1.42Zm-3.28-.22a1 1 0 0 0 .71.29 1 1 0 0 0 .71-.29l4.92-4.92a1 1 0 1 0-1.42-1.42l-4.92 4.92a1 1 0 0 0 0 1.42ZM21 18h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Zm-4.19-4.47 3.88-3.89a4.48 4.48 0 0 0-6.33-6.33l-3.89 3.88a1 1 0 1 0 1.42 1.42l3.88-3.88a2.47 2.47 0 0 1 3.5 0 2.46 2.46 0 0 1 0 3.5l-3.88 3.88a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0Z' + }) + ) +} + +export default UilLinkAdd \ No newline at end of file diff --git a/src/icons/uil-link-alt.ts b/src/icons/uil-link-alt.ts new file mode 100644 index 00000000..beb2db7f --- /dev/null +++ b/src/icons/uil-link-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.11,15.39,8.23,19.27a2.52,2.52,0,0,1-3.5,0,2.47,2.47,0,0,1,0-3.5l3.88-3.88a1,1,0,1,0-1.42-1.42L3.31,14.36a4.48,4.48,0,0,0,6.33,6.33l3.89-3.88a1,1,0,0,0-1.42-1.42ZM20.69,3.31a4.49,4.49,0,0,0-6.33,0L10.47,7.19a1,1,0,1,0,1.42,1.42l3.88-3.88a2.52,2.52,0,0,1,3.5,0,2.47,2.47,0,0,1,0,3.5l-3.88,3.88a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l3.88-3.89A4.49,4.49,0,0,0,20.69,3.31ZM8.83,15.17a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l4.92-4.92a1,1,0,1,0-1.42-1.42L8.83,13.75A1,1,0,0,0,8.83,15.17Z' + }) + ) +} + +export default UilLinkAlt \ No newline at end of file diff --git a/src/icons/uil-link-broken.ts b/src/icons/uil-link-broken.ts new file mode 100644 index 00000000..c94a76f7 --- /dev/null +++ b/src/icons/uil-link-broken.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkBroken = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.76,10.59a1,1,0,0,0,.26-2L3.26,8.15a1,1,0,1,0-.52,1.93l1.76.47A.78.78,0,0,0,4.76,10.59ZM8.62,5a1,1,0,0,0,1,.74.82.82,0,0,0,.26,0,1,1,0,0,0,.7-1.22l-.47-1.76a1,1,0,1,0-1.93.52Zm4.83,10A1,1,0,0,0,12,15L8.5,18.56a2.21,2.21,0,0,1-3.06,0,2.15,2.15,0,0,1,0-3.06L9,12a1,1,0,1,0-1.41-1.41L4,14.08A4.17,4.17,0,1,0,9.92,20l3.53-3.53A1,1,0,0,0,13.45,15ZM5.18,6.59a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41L5.3,3.89A1,1,0,0,0,3.89,5.3Zm16.08,7.33-1.76-.47A1,1,0,1,0,19,15.38l1.76.47.26,0a1,1,0,0,0,.26-2ZM15.38,19a1,1,0,0,0-1.23-.7,1,1,0,0,0-.7,1.22l.47,1.76a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,.71-1.23Zm3.44-1.57a1,1,0,0,0-1.41,1.41l1.29,1.29a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM21.2,7A4.16,4.16,0,0,0,14.08,4L10.55,7.56A1,1,0,1,0,12,9L15.5,5.44a2.21,2.21,0,0,1,3.06,0,2.15,2.15,0,0,1,0,3.06L15,12a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L20,9.92A4.19,4.19,0,0,0,21.2,7Z' + }) + ) +} + +export default UilLinkBroken \ No newline at end of file diff --git a/src/icons/uil-link-h.ts b/src/icons/uil-link-h.ts new file mode 100644 index 00000000..696d34aa --- /dev/null +++ b/src/icons/uil-link-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,12a1,1,0,0,0,1,1h6a1,1,0,0,0,0-2H9A1,1,0,0,0,8,12Zm2,3H7A3,3,0,0,1,7,9h3a1,1,0,0,0,0-2H7A5,5,0,0,0,7,17h3a1,1,0,0,0,0-2Zm7-8H14a1,1,0,0,0,0,2h3a3,3,0,0,1,0,6H14a1,1,0,0,0,0,2h3A5,5,0,0,0,17,7Z' + }) + ) +} + +export default UilLinkH \ No newline at end of file diff --git a/src/icons/uil-link.ts b/src/icons/uil-link.ts new file mode 100644 index 00000000..a570c0de --- /dev/null +++ b/src/icons/uil-link.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLink = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,17.55,8.23,19.27a2.47,2.47,0,0,1-3.5-3.5l4.54-4.55a2.46,2.46,0,0,1,3.39-.09l.12.1a1,1,0,0,0,1.4-1.43A2.75,2.75,0,0,0,14,9.59a4.46,4.46,0,0,0-6.09.22L3.31,14.36a4.48,4.48,0,0,0,6.33,6.33L11.37,19A1,1,0,0,0,10,17.55ZM20.69,3.31a4.49,4.49,0,0,0-6.33,0L12.63,5A1,1,0,0,0,14,6.45l1.73-1.72a2.47,2.47,0,0,1,3.5,3.5l-4.54,4.55a2.46,2.46,0,0,1-3.39.09l-.12-.1a1,1,0,0,0-1.4,1.43,2.75,2.75,0,0,0,.23.21,4.47,4.47,0,0,0,6.09-.22l4.55-4.55A4.49,4.49,0,0,0,20.69,3.31Z' + }) + ) +} + +export default UilLink \ No newline at end of file diff --git a/src/icons/uil-linkedin-alt.ts b/src/icons/uil-linkedin-alt.ts new file mode 100644 index 00000000..5719bd17 --- /dev/null +++ b/src/icons/uil-linkedin-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkedinAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.5,8.999a5.41868,5.41868,0,0,0-2.56543.64453A.99918.99918,0,0,0,14,8.999H10a.99943.99943,0,0,0-1,1v12a.99942.99942,0,0,0,1,1h4a.99942.99942,0,0,0,1-1v-5.5a1,1,0,1,1,2,0v5.5a.99942.99942,0,0,0,1,1h4a.99942.99942,0,0,0,1-1v-7.5A5.50685,5.50685,0,0,0,17.5,8.999Zm3.5,12H19v-4.5a3,3,0,1,0-6,0v4.5H11v-10h2v.70313a1.00048,1.00048,0,0,0,1.78125.625A3.48258,3.48258,0,0,1,21,14.499Zm-14-12H3a.99943.99943,0,0,0-1,1v12a.99942.99942,0,0,0,1,1H7a.99942.99942,0,0,0,1-1v-12A.99943.99943,0,0,0,7,8.999Zm-1,12H4v-10H6ZM5.01465,1.542A3.23283,3.23283,0,1,0,4.958,7.999h.02832a3.23341,3.23341,0,1,0,.02832-6.457ZM4.98633,5.999H4.958A1.22193,1.22193,0,0,1,3.58887,4.77051c0-.7461.55957-1.22852,1.42578-1.22852A1.2335,1.2335,0,0,1,6.41113,4.77051C6.41113,5.5166,5.85156,5.999,4.98633,5.999Z' + }) + ) +} + +export default UilLinkedinAlt \ No newline at end of file diff --git a/src/icons/uil-linkedin.ts b/src/icons/uil-linkedin.ts new file mode 100644 index 00000000..08133e69 --- /dev/null +++ b/src/icons/uil-linkedin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinkedin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.47,2H3.53A1.45,1.45,0,0,0,2.06,3.43V20.57A1.45,1.45,0,0,0,3.53,22H20.47a1.45,1.45,0,0,0,1.47-1.43V3.43A1.45,1.45,0,0,0,20.47,2ZM8.09,18.74h-3v-9h3ZM6.59,8.48h0a1.56,1.56,0,1,1,0-3.12,1.57,1.57,0,1,1,0,3.12ZM18.91,18.74h-3V13.91c0-1.21-.43-2-1.52-2A1.65,1.65,0,0,0,12.85,13a2,2,0,0,0-.1.73v5h-3s0-8.18,0-9h3V11A3,3,0,0,1,15.46,9.5c2,0,3.45,1.29,3.45,4.06Z' + }) + ) +} + +export default UilLinkedin \ No newline at end of file diff --git a/src/icons/uil-linux.ts b/src/icons/uil-linux.ts new file mode 100644 index 00000000..8d4f2b2d --- /dev/null +++ b/src/icons/uil-linux.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLinux = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.7 17.6c-.1-.2-.2-.4-.2-.6 0-.4-.2-.7-.5-1-.1-.1-.3-.2-.4-.2.6-1.8-.3-3.6-1.3-4.9-.8-1.2-2-2.1-1.9-3.7 0-1.9.2-5.4-3.3-5.1-3.6.2-2.6 3.9-2.7 5.2 0 1.1-.5 2.2-1.3 3.1-.2.2-.4.5-.5.7-1 1.2-1.5 2.8-1.5 4.3-.2.2-.4.4-.5.6-.1.1-.2.2-.2.3-.1.1-.3.2-.5.3-.4.1-.7.3-.9.7-.1.3-.2.7-.1 1.1.1.2.1.4 0 .7-.2.4-.2.9 0 1.4.3.4.8.5 1.5.6.5 0 1.1.2 1.6.4.5.3 1.1.5 1.7.5.3 0 .7-.1 1-.2.3-.2.5-.4.6-.7.4 0 1-.2 1.7-.2.6 0 1.2.2 2 .1 0 .1 0 .2.1.3.2.5.7.9 1.3 1h.2c.8-.1 1.6-.5 2.1-1.1.4-.4.9-.7 1.4-.9.6-.3 1-.5 1.1-1 .1-.7-.1-1.1-.5-1.7zM12.8 4.8c.6.1 1.1.6 1 1.2 0 .3-.1.6-.3.9h-.1c-.2-.1-.3-.1-.4-.2.1-.1.1-.3.2-.5 0-.4-.2-.7-.4-.7-.3 0-.5.3-.5.7v.1c-.1-.1-.3-.1-.4-.2V6c-.1-.5.3-1.1.9-1.2zm-.3 2c.1.1.3.2.4.2.1 0 .3.1.4.2.2.1.4.2.4.5s-.3.6-.9.8c-.2.1-.3.1-.4.2-.3.2-.6.3-1 .3-.3 0-.6-.2-.8-.4-.1-.1-.2-.2-.4-.3-.1-.1-.3-.3-.4-.6 0-.1.1-.2.2-.3.3-.2.4-.3.5-.4l.1-.1c.2-.3.6-.5 1-.5.3.1.6.2.9.4zM10.4 5c.4 0 .7.4.8 1.1v.2c-.1 0-.3.1-.4.2v-.2c0-.3-.2-.6-.4-.5-.2 0-.3.3-.3.6 0 .2.1.3.2.4 0 0-.1.1-.2.1-.2-.2-.4-.5-.4-.8 0-.6.3-1.1.7-1.1zm-1 16.1c-.7.3-1.6.2-2.2-.2-.6-.3-1.1-.4-1.8-.4-.5-.1-1-.1-1.1-.3-.1-.2-.1-.5.1-1 .1-.3.1-.6 0-.9-.1-.3-.1-.5 0-.8.1-.3.3-.4.6-.5.3-.1.5-.2.7-.4.1-.1.2-.2.3-.4.3-.4.5-.6.8-.6.6.1 1.1 1 1.5 1.9.2.3.4.7.7 1 .4.5.9 1.2.9 1.6 0 .5-.2.8-.5 1zm4.9-2.2c0 .1 0 .1-.1.2-1.2.9-2.8 1-4.1.3l-.6-.9c.9-.1.7-1.3-1.2-2.5-2-1.3-.6-3.7.1-4.8.1-.1.1 0-.3.8-.3.6-.9 2.1-.1 3.2 0-.8.2-1.6.5-2.4.7-1.3 1.2-2.8 1.5-4.3.1.1.1.1.2.1.1.1.2.2.3.2.2.3.6.4.9.4h.1c.4 0 .8-.1 1.1-.4.1-.1.2-.2.4-.2.3-.1.6-.3.9-.6.4 1.3.8 2.5 1.4 3.6.4.8.7 1.6.9 2.5.3 0 .7.1 1 .3.8.4 1.1.7 1 1.2H18c0-.3-.2-.6-.9-.9-.7-.3-1.3-.3-1.5.4-.1 0-.2.1-.3.1-.8.4-.8 1.5-.9 2.6.1.4 0 .7-.1 1.1zm4.6.6c-.6.2-1.1.6-1.5 1.1-.4.6-1.1 1-1.9.9-.4 0-.8-.3-.9-.7-.1-.6-.1-1.2.2-1.8.1-.4.2-.7.3-1.1.1-1.2.1-1.9.6-2.2 0 .5.3.8.7 1 .5 0 1-.1 1.4-.5h.2c.3 0 .5 0 .7.2.2.2.3.5.3.7 0 .3.2.6.3.9.5.5.5.8.5.9-.1.2-.5.4-.9.6zm-9-12c-.1 0-.1 0-.1.1 0 0 0 .1.1.1s.1.1.1.1c.3.4.8.6 1.4.7.5-.1 1-.2 1.5-.6l.6-.3c.1 0 .1-.1.1-.1 0-.1 0-.1-.1-.1-.2.1-.5.2-.7.3-.4.3-.9.5-1.4.5-.5 0-.9-.3-1.2-.6-.1 0-.2-.1-.3-.1z' + }) + ) +} + +export default UilLinux \ No newline at end of file diff --git a/src/icons/uil-lira-sign.ts b/src/icons/uil-lira-sign.ts new file mode 100644 index 00000000..ce3e3a07 --- /dev/null +++ b/src/icons/uil-lira-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLiraSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,12a1,1,0,0,0-1,1,7.00787,7.00787,0,0,1-7,7V11.13538l5.2168-1.15931a.99986.99986,0,0,0-.4336-1.95214L10,9.08685V7.13538l5.2168-1.15931a.99986.99986,0,1,0-.4336-1.95214L10,5.08685V3A1,1,0,0,0,8,3V5.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,7.57983V9.53131l-2.2168.49262a.99986.99986,0,1,0,.4336,1.95214L8,11.57983V21a1,1,0,0,0,1,1h1a9.01047,9.01047,0,0,0,9-9A1,1,0,0,0,18,12Z' + }) + ) +} + +export default UilLiraSign \ No newline at end of file diff --git a/src/icons/uil-list-ol-alt.ts b/src/icons/uil-list-ol-alt.ts new file mode 100644 index 00000000..5d3aff4c --- /dev/null +++ b/src/icons/uil-list-ol-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilListOlAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7 20H4v-.1c0-.5.4-.9.9-.9 1.4 0 2.6-.9 3-2.2.4-1.6-.5-3.3-2.1-3.7-1.3-.4-2.7.2-3.4 1.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.3-.5.9-.6 1.4-.3.1.1.2.1.2.2.2.3.2.6.2.9-.2.4-.6.7-1 .7-1.7 0-3 1.3-3 2.9V21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zM7 9H6V3c0-.6-.4-1-1-1s-1 .4-1 1v1H3c-.6 0-1 .4-1 1s.4 1 1 1h1v3H3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm4-3h10c.6 0 1-.4 1-1s-.4-1-1-1H11c-.6 0-1 .4-1 1s.4 1 1 1zm10 14H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1zm0-11H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1zm0 6H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1z' + }) + ) +} + +export default UilListOlAlt \ No newline at end of file diff --git a/src/icons/uil-list-ol.ts b/src/icons/uil-list-ol.ts new file mode 100644 index 00000000..55926f16 --- /dev/null +++ b/src/icons/uil-list-ol.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilListOl = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7 20H4v-.1c0-.5.4-.9.9-.9 1.4 0 2.6-.9 3-2.2.4-1.6-.5-3.3-2.1-3.7-1.3-.4-2.7.2-3.4 1.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.3-.5.9-.6 1.4-.3.1.1.2.1.2.2.2.3.2.6.2.9-.2.4-.6.7-1 .7-1.7 0-3 1.3-3 2.9V21c0 .6.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm4-13h10c.6 0 1-.4 1-1s-.4-1-1-1H11c-.6 0-1 .4-1 1s.4 1 1 1zM7 9H6V3c0-.6-.4-1-1-1s-1 .4-1 1v1H3c-.6 0-1 .4-1 1s.4 1 1 1h1v3H3c-.6 0-1 .4-1 1s.4 1 1 1h4c.6 0 1-.4 1-1s-.4-1-1-1zm14 7H11c-.6 0-1 .4-1 1s.4 1 1 1h10c.6 0 1-.4 1-1s-.4-1-1-1z' + }) + ) +} + +export default UilListOl \ No newline at end of file diff --git a/src/icons/uil-list-ui-alt.ts b/src/icons/uil-list-ui-alt.ts new file mode 100644 index 00000000..7d4515fe --- /dev/null +++ b/src/icons/uil-list-ui-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilListUiAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.5,6a1,1,0,1,0,1,1A1,1,0,0,0,3.5,6Zm4,2h14a1,1,0,0,0,0-2H7.5a1,1,0,0,0,0,2Zm0,3a1,1,0,1,0,1,1A1,1,0,0,0,7.5,11Zm4,5a1,1,0,1,0,1,1A1,1,0,0,0,11.5,16Zm10-5h-10a1,1,0,0,0,0,2h10a1,1,0,0,0,0-2Zm0,5h-6a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilListUiAlt \ No newline at end of file diff --git a/src/icons/uil-list-ul.ts b/src/icons/uil-list-ul.ts new file mode 100644 index 00000000..b789fd08 --- /dev/null +++ b/src/icons/uil-list-ul.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilListUl = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.71,16.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21,1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.21-1.09A1,1,0,0,0,3.71,16.29ZM7,8H21a1,1,0,0,0,0-2H7A1,1,0,0,0,7,8ZM3.71,11.29a1,1,0,0,0-1.09-.21,1.15,1.15,0,0,0-.33.21,1,1,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1,1,0,0,0,3.71,11.29ZM21,11H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM3.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-1.09.21,1.15,1.15,0,0,0-.21.33.94.94,0,0,0,0,.76,1.15,1.15,0,0,0,.21.33,1.15,1.15,0,0,0,.33.21,1,1,0,0,0,1.09-.21,1.15,1.15,0,0,0,.21-.33.94.94,0,0,0,0-.76A1.15,1.15,0,0,0,3.71,6.29ZM21,16H7a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilListUl \ No newline at end of file diff --git a/src/icons/uil-location-arrow-alt.ts b/src/icons/uil-location-arrow-alt.ts new file mode 100644 index 00000000..c76afebd --- /dev/null +++ b/src/icons/uil-location-arrow-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLocationArrowAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.68,17.65l-7-14a3,3,0,0,0-5.36,0l-7,14a3,3,0,0,0,3.9,4.08l5.37-2.4h0a1.06,1.06,0,0,1,.82,0l5.37,2.4a3,3,0,0,0,3.9-4.08Zm-2,2a1,1,0,0,1-1.13.22l-5.37-2.39a3,3,0,0,0-2.44,0L5.41,19.9a1,1,0,0,1-1.3-1.35l7-14a1,1,0,0,1,1.78,0l7,14A1,1,0,0,1,19.72,19.68Z' + }) + ) +} + +export default UilLocationArrowAlt \ No newline at end of file diff --git a/src/icons/uil-location-arrow.ts b/src/icons/uil-location-arrow.ts new file mode 100644 index 00000000..d0c615fa --- /dev/null +++ b/src/icons/uil-location-arrow.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLocationArrow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.15,2.86a2.89,2.89,0,0,0-3-.71L4,6.88a2.9,2.9,0,0,0-.12,5.47l5.24,2h0a.93.93,0,0,1,.53.52l2,5.25A2.87,2.87,0,0,0,14.36,22h.07a2.88,2.88,0,0,0,2.69-2L21.85,5.83A2.89,2.89,0,0,0,21.15,2.86ZM20,5.2,15.22,19.38a.88.88,0,0,1-.84.62.92.92,0,0,1-.87-.58l-2-5.25a2.91,2.91,0,0,0-1.67-1.68l-5.25-2A.9.9,0,0,1,4,9.62a.88.88,0,0,1,.62-.84L18.8,4.05A.91.91,0,0,1,20,5.2Z' + }) + ) +} + +export default UilLocationArrow \ No newline at end of file diff --git a/src/icons/uil-location-pin-alt.ts b/src/icons/uil-location-pin-alt.ts new file mode 100644 index 00000000..2f8d8428 --- /dev/null +++ b/src/icons/uil-location-pin-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLocationPinAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10.8a2,2,0,1,0-2-2A2,2,0,0,0,12,10.8Zm-.71,6.91a1,1,0,0,0,1.42,0l4.09-4.1a6.79,6.79,0,1,0-9.6,0ZM7.23,8.34A4.81,4.81,0,0,1,9.36,4.79a4.81,4.81,0,0,1,5.28,0,4.82,4.82,0,0,1,.75,7.41L12,15.59,8.61,12.2A4.77,4.77,0,0,1,7.23,8.34ZM19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLocationPinAlt \ No newline at end of file diff --git a/src/icons/uil-location-point.ts b/src/icons/uil-location-point.ts new file mode 100644 index 00000000..98077af8 --- /dev/null +++ b/src/icons/uil-location-point.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLocationPoint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,4.48a8.45,8.45,0,0,0-12,12l5.27,5.28a1,1,0,0,0,1.42,0L18,16.43A8.45,8.45,0,0,0,18,4.48ZM16.57,15,12,19.59,7.43,15a6.46,6.46,0,1,1,9.14,0ZM9,7.41a4.32,4.32,0,0,0,0,6.1,4.31,4.31,0,0,0,7.36-3,4.24,4.24,0,0,0-1.26-3.05A4.3,4.3,0,0,0,9,7.41Zm4.69,4.68a2.33,2.33,0,1,1,.67-1.63A2.33,2.33,0,0,1,13.64,12.09Z' + }) + ) +} + +export default UilLocationPoint \ No newline at end of file diff --git a/src/icons/uil-lock-access.ts b/src/icons/uil-lock-access.ts new file mode 100644 index 00000000..1f5eb86e --- /dev/null +++ b/src/icons/uil-lock-access.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLockAccess = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H15a1,1,0,0,0,0,2h5V9a1,1,0,0,0,2,0V3A1,1,0,0,0,21,2Zm0,12a1,1,0,0,0-1,1v5H15a1,1,0,0,0,0,2h6a1,1,0,0,0,1-1V15A1,1,0,0,0,21,14ZM12,6A3,3,0,0,0,9,9v1a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V12a2,2,0,0,0-2-2V9A3,3,0,0,0,12,6ZM11,9a1,1,0,0,1,2,0v1H11Zm4,7H9V12h6ZM3,10A1,1,0,0,0,4,9V4H9A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V9A1,1,0,0,0,3,10ZM9,20H4V15a1,1,0,0,0-2,0v6a1,1,0,0,0,1,1H9a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilLockAccess \ No newline at end of file diff --git a/src/icons/uil-lock-alt.ts b/src/icons/uil-lock-alt.ts new file mode 100644 index 00000000..8031bb09 --- /dev/null +++ b/src/icons/uil-lock-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLockAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V14A1,1,0,0,0,12,13Zm5-4V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilLockAlt \ No newline at end of file diff --git a/src/icons/uil-lock-open-alt.ts b/src/icons/uil-lock-open-alt.ts new file mode 100644 index 00000000..e004bea2 --- /dev/null +++ b/src/icons/uil-lock-open-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLockOpenAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13a1.49,1.49,0,0,0-1,2.61V17a1,1,0,0,0,2,0V15.61A1.49,1.49,0,0,0,12,13Zm5-4H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilLockOpenAlt \ No newline at end of file diff --git a/src/icons/uil-lock-slash.ts b/src/icons/uil-lock-slash.ts new file mode 100644 index 00000000..71b9246d --- /dev/null +++ b/src/icons/uil-lock-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLockSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.84,5.38a2,2,0,0,1,2.57.21A2,2,0,0,1,14,7v3a1,1,0,0,0,1,1h1a1,1,0,0,1,1,1v.34a1,1,0,0,0,2,0V12a3,3,0,0,0-3-3V7a4,4,0,0,0-1.17-2.83,4.06,4.06,0,0,0-5.19-.39,1,1,0,1,0,1.2,1.6ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L7.62,9A3,3,0,0,0,5,12v6a3,3,0,0,0,3,3h8a3,3,0,0,0,2.39-1.2l1.9,1.91a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM16,19H8a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H9.59l2.07,2.07A1,1,0,0,0,11,14v2a1,1,0,0,0,2,0V14.41l3.93,3.93A1,1,0,0,1,16,19Z' + }) + ) +} + +export default UilLockSlash \ No newline at end of file diff --git a/src/icons/uil-lock.ts b/src/icons/uil-lock.ts new file mode 100644 index 00000000..4af77882 --- /dev/null +++ b/src/icons/uil-lock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilLock \ No newline at end of file diff --git a/src/icons/uil-lottiefiles-alt.ts b/src/icons/uil-lottiefiles-alt.ts new file mode 100644 index 00000000..b9e84c6e --- /dev/null +++ b/src/icons/uil-lottiefiles-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLottiefilesAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19 2H5a3.003 3.003 0 0 0-3 3v14a3.003 3.003 0 0 0 3 3h14a3.003 3.003 0 0 0 3-3V5a3.003 3.003 0 0 0-3-3Zm-2 6c-1.66 0-2.856 2.177-4.124 4.482C11.384 15.195 9.841 18 7 18a1 1 0 0 1 0-2c1.66 0 2.856-2.177 4.124-4.482C12.616 8.805 14.159 6 17 6a1 1 0 0 1 0 2Z' + }) + ) +} + +export default UilLottiefilesAlt \ No newline at end of file diff --git a/src/icons/uil-lottiefiles.ts b/src/icons/uil-lottiefiles.ts new file mode 100644 index 00000000..fd03b1d6 --- /dev/null +++ b/src/icons/uil-lottiefiles.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLottiefiles = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17 6c-2.8 0-4.4 2.8-5.9 5.5C9.9 13.8 8.7 16 7 16c-.6 0-1 .4-1 1s.4 1 1 1c2.8 0 4.4-2.8 5.9-5.5C14.1 10.2 15.3 8 17 8c.6 0 1-.4 1-1s-.4-1-1-1zm2-4H5C3.3 2 2 3.3 2 5v14c0 1.7 1.3 3 3 3h14c1.7 0 3-1.3 3-3V5c0-1.7-1.3-3-3-3zm1 17c0 .6-.4 1-1 1H5c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v14z' + }) + ) +} + +export default UilLottiefiles \ No newline at end of file diff --git a/src/icons/uil-luggage-cart.ts b/src/icons/uil-luggage-cart.ts new file mode 100644 index 00000000..9666a1ee --- /dev/null +++ b/src/icons/uil-luggage-cart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilLuggageCart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2,13.5v2a1,1,0,0,0,1,1H13a3,3,0,0,0,6,0h2a1,1,0,0,0,1-1v-8a3,3,0,0,0-3-3H9a3,3,0,0,0-3,3v7H4v-1a1,1,0,0,0-2,0Zm13,3a1,1,0,1,1,1,1A1,1,0,0,1,15,16.5Zm-7-6H20v4H18.22a3,3,0,0,0-4.44,0H8Zm0-3a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1v1H8Z' + }) + ) +} + +export default UilLuggageCart \ No newline at end of file diff --git a/src/icons/uil-mailbox-alt.ts b/src/icons/uil-mailbox-alt.ts new file mode 100644 index 00000000..e8fe090e --- /dev/null +++ b/src/icons/uil-mailbox-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMailboxAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,13h2a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm8,7H18V9h1a1,1,0,0,0,0-2H17.91A6,6,0,0,0,6.09,7H5A1,1,0,0,0,5,9H6V20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2ZM12,4a4,4,0,0,1,3.86,3H8.14A4,4,0,0,1,12,4Zm4,16H8V18h8Zm0-4H8V9h8Z' + }) + ) +} + +export default UilMailboxAlt \ No newline at end of file diff --git a/src/icons/uil-mailbox.ts b/src/icons/uil-mailbox.ts new file mode 100644 index 00000000..f3ed71e5 --- /dev/null +++ b/src/icons/uil-mailbox.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMailbox = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,12h2a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm9-6H12V4h1a1,1,0,0,0,0-2H11a1,1,0,0,0-1,1V6H7a4,4,0,0,0-4,4v6a1,1,0,0,0,1,1h6v4a1,1,0,0,0,2,0V17h8a1,1,0,0,0,1-1V10A4,4,0,0,0,17,6Zm-4,4v5H5V10A2,2,0,0,1,7,8h6.56A3.91,3.91,0,0,0,13,10Zm6,5H15V10a2,2,0,0,1,4,0Z' + }) + ) +} + +export default UilMailbox \ No newline at end of file diff --git a/src/icons/uil-map-marker-alt.ts b/src/icons/uil-map-marker-alt.ts new file mode 100644 index 00000000..019aac0a --- /dev/null +++ b/src/icons/uil-map-marker-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.46,9.63A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05ZM12,6a4.5,4.5,0,1,0,4.5,4.5A4.51,4.51,0,0,0,12,6Zm0,7a2.5,2.5,0,1,1,2.5-2.5A2.5,2.5,0,0,1,12,13Z' + }) + ) +} + +export default UilMapMarkerAlt \ No newline at end of file diff --git a/src/icons/uil-map-marker-edit.ts b/src/icons/uil-map-marker-edit.ts new file mode 100644 index 00000000..41844b08 --- /dev/null +++ b/src/icons/uil-map-marker-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.46,9.63A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Zm-2.81-8.8a1,1,0,0,0-1.42,0L8.79,9.83a1,1,0,0,0-.29.7V13a1,1,0,0,0,1,1h2.42a1,1,0,0,0,.71-.29l3.58-3.58a1,1,0,0,0,0-1.41ZM11.51,12h-1V11l2.58-2.58,1,1Z' + }) + ) +} + +export default UilMapMarkerEdit \ No newline at end of file diff --git a/src/icons/uil-map-marker-info.ts b/src/icons/uil-map-marker-info.ts new file mode 100644 index 00000000..96bb81ed --- /dev/null +++ b/src/icons/uil-map-marker-info.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerInfo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm8.46-.32A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05ZM12.92,7.57a.56.56,0,0,0-.09-.17l-.12-.15A1,1,0,0,0,11.8,7L11.62,7l-.18.09-.15.13-.12.15a.56.56,0,0,0-.09.17.6.6,0,0,0-.06.19A1.23,1.23,0,0,0,11,8a.88.88,0,0,0,.08.39,1.11,1.11,0,0,0,.21.32,1.06,1.06,0,0,0,.33.22,1.07,1.07,0,0,0,.76,0,1.19,1.19,0,0,0,.33-.22,1.11,1.11,0,0,0,.21-.32A1,1,0,0,0,13,8a1.23,1.23,0,0,0,0-.19A.6.6,0,0,0,12.92,7.57Z' + }) + ) +} + +export default UilMapMarkerInfo \ No newline at end of file diff --git a/src/icons/uil-map-marker-minus.ts b/src/icons/uil-map-marker-minus.ts new file mode 100644 index 00000000..502cecda --- /dev/null +++ b/src/icons/uil-map-marker-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9.45H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm6.46.18A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' + }) + ) +} + +export default UilMapMarkerMinus \ No newline at end of file diff --git a/src/icons/uil-map-marker-plus.ts b/src/icons/uil-map-marker-plus.ts new file mode 100644 index 00000000..7aa09210 --- /dev/null +++ b/src/icons/uil-map-marker-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9.45H13v-1a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm6.46.18A8.5,8.5,0,1,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' + }) + ) +} + +export default UilMapMarkerPlus \ No newline at end of file diff --git a/src/icons/uil-map-marker-question.ts b/src/icons/uil-map-marker-question.ts new file mode 100644 index 00000000..cfb7d4d3 --- /dev/null +++ b/src/icons/uil-map-marker-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.44,13.11,12.27,13a1,1,0,0,0-1.09.22.87.87,0,0,0-.22.32,1,1,0,0,0-.08.39,1,1,0,0,0,.08.38,1.07,1.07,0,0,0,.54.54,1,1,0,0,0,.38.08,1.09,1.09,0,0,0,.39-.08,1,1,0,0,0,.32-.22,1,1,0,0,0,0-1.41ZM11.88,6A2.75,2.75,0,0,0,9.5,7.32a1,1,0,1,0,1.73,1A.77.77,0,0,1,11.88,8a.75.75,0,1,1,0,1.5,1,1,0,1,0,0,2,2.75,2.75,0,1,0,0-5.5Zm8.58,3.68A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' + }) + ) +} + +export default UilMapMarkerQuestion \ No newline at end of file diff --git a/src/icons/uil-map-marker-shield.ts b/src/icons/uil-map-marker-shield.ts new file mode 100644 index 00000000..0ad1100f --- /dev/null +++ b/src/icons/uil-map-marker-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.41,6.53a2.24,2.24,0,0,1-1.82-.39,1,1,0,0,0-1.18,0,2.24,2.24,0,0,1-1.82.39,1,1,0,0,0-.84.2,1,1,0,0,0-.37.78v2.9A4.14,4.14,0,0,0,10,13.74l1.37,1a1,1,0,0,0,1.18,0l1.37-1a4.14,4.14,0,0,0,1.66-3.33V7.51a1,1,0,0,0-.37-.78A1,1,0,0,0,14.41,6.53Zm-.79,3.88a2.15,2.15,0,0,1-.85,1.73l-.77.57-.77-.57a2.15,2.15,0,0,1-.85-1.73V8.57A4.22,4.22,0,0,0,12,8.12a4.22,4.22,0,0,0,1.62.45Zm6.84-.78A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' + }) + ) +} + +export default UilMapMarkerShield \ No newline at end of file diff --git a/src/icons/uil-map-marker-slash.ts b/src/icons/uil-map-marker-slash.ts new file mode 100644 index 00000000..a501e05b --- /dev/null +++ b/src/icons/uil-map-marker-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarkerSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.63,5.49a6,6,0,0,1,7.21,7.2,1,1,0,0,0,.74,1.21.9.9,0,0,0,.23,0,1,1,0,0,0,1-.76,8,8,0,0,0-9.61-9.62,1,1,0,0,0,.46,2ZM21.71,20.07,17.44,15.8h0L3.71,2.07a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L5.5,6.69A8,8,0,0,0,6.34,17l4.95,4.95a1,1,0,0,0,1.42,0l4-4,3.56,3.56a1,1,0,0,0,1.42-1.41Zm-9.59-6.76a2,2,0,0,1-1.53-.57A2,2,0,0,1,10,11.21ZM12,19.81,7.76,15.57a6,6,0,0,1-.82-7.44L8.41,9.6a4,4,0,0,0,.76,4.55A4,4,0,0,0,12,15.33a3.93,3.93,0,0,0,1.73-.41l1.58,1.58Z' + }) + ) +} + +export default UilMapMarkerSlash \ No newline at end of file diff --git a/src/icons/uil-map-marker.ts b/src/icons/uil-map-marker.ts new file mode 100644 index 00000000..42073521 --- /dev/null +++ b/src/icons/uil-map-marker.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapMarker = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2a8,8,0,0,0-8,8c0,5.4,7.05,11.5,7.35,11.76a1,1,0,0,0,1.3,0C13,21.5,20,15.4,20,10A8,8,0,0,0,12,2Zm0,17.65c-2.13-2-6-6.31-6-9.65a6,6,0,0,1,12,0C18,13.34,14.13,17.66,12,19.65ZM12,6a4,4,0,1,0,4,4A4,4,0,0,0,12,6Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,12,12Z' + }) + ) +} + +export default UilMapMarker \ No newline at end of file diff --git a/src/icons/uil-map-pin-alt.ts b/src/icons/uil-map-pin-alt.ts new file mode 100644 index 00000000..8cd72bdf --- /dev/null +++ b/src/icons/uil-map-pin-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapPinAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,11.9V17a1,1,0,0,0,2,0V11.9a5,5,0,1,0-2,0ZM12,4A3,3,0,1,1,9,7,3,3,0,0,1,12,4Zm4.21,10.42a1,1,0,1,0-.42,2C18.06,16.87,19,17.68,19,18c0,.58-2.45,2-7,2s-7-1.42-7-2c0-.32.94-1.13,3.21-1.62a1,1,0,1,0-.42-2C4.75,15.08,3,16.39,3,18c0,2.63,4.53,4,9,4s9-1.37,9-4C21,16.39,19.25,15.08,16.21,14.42Z' + }) + ) +} + +export default UilMapPinAlt \ No newline at end of file diff --git a/src/icons/uil-map-pin.ts b/src/icons/uil-map-pin.ts new file mode 100644 index 00000000..cdf148ab --- /dev/null +++ b/src/icons/uil-map-pin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMapPin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.37,12.79a1,1,0,0,0-.74,1.86C17.09,15.23,18,16.13,18,17c0,1.42-2.46,3-6,3s-6-1.58-6-3c0-.87.91-1.77,2.37-2.35a1,1,0,0,0-.74-1.86C5.36,13.69,4,15.26,4,17c0,2.8,3.51,5,8,5s8-2.2,8-5C20,15.26,18.64,13.69,16.37,12.79ZM11,9.86V17a1,1,0,0,0,2,0V9.86a4,4,0,1,0-2,0ZM12,4a2,2,0,1,1-2,2A2,2,0,0,1,12,4Z' + }) + ) +} + +export default UilMapPin \ No newline at end of file diff --git a/src/icons/uil-map.ts b/src/icons/uil-map.ts new file mode 100644 index 00000000..57d9b122 --- /dev/null +++ b/src/icons/uil-map.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMap = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.32,5.05l-6-2h-.07a.7.7,0,0,0-.14,0h-.23l-.13,0h-.07L9,5,3.32,3.05a1,1,0,0,0-.9.14A1,1,0,0,0,2,4V18a1,1,0,0,0,.68.95l6,2h0a1,1,0,0,0,.62,0h0L15,19.05,20.68,21A1.19,1.19,0,0,0,21,21a.94.94,0,0,0,.58-.19A1,1,0,0,0,22,20V6A1,1,0,0,0,21.32,5.05ZM8,18.61,4,17.28V5.39L8,6.72Zm6-1.33-4,1.33V6.72l4-1.33Zm6,1.33-4-1.33V5.39l4,1.33Z' + }) + ) +} + +export default UilMap \ No newline at end of file diff --git a/src/icons/uil-mars.ts b/src/icons/uil-mars.ts new file mode 100644 index 00000000..11a7df2f --- /dev/null +++ b/src/icons/uil-mars.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMars = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.42,4.12a1,1,0,0,0-.54-.54,1,1,0,0,0-.38-.08h-4a1,1,0,0,0,0,2h1.59l-2.4,2.4A7,7,0,1,0,16.1,9.31l2.4-2.4V8.5a1,1,0,0,0,2,0v-4A1,1,0,0,0,20.42,4.12ZM14,17A5,5,0,1,1,14,10h0A5,5,0,0,1,14,17Z' + }) + ) +} + +export default UilMars \ No newline at end of file diff --git a/src/icons/uil-master-card.ts b/src/icons/uil-master-card.ts new file mode 100644 index 00000000..ea677069 --- /dev/null +++ b/src/icons/uil-master-card.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMasterCard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.26465,5.27441a6.68141,6.68141,0,0,0-3.27295.85505,6.72754,6.72754,0,1,0,0,11.745,6.72551,6.72551,0,1,0,3.27295-12.6ZM10.23712,16.457a4.66714,4.66714,0,0,1-1.51837.27252,4.72754,4.72754,0,0,1,0-9.45508,4.66688,4.66688,0,0,1,1.51837.27253,6.68737,6.68737,0,0,0,0,8.91ZM11.9917,15.3996a4.69542,4.69542,0,0,1,0-6.79529,4.69542,4.69542,0,0,1,0,6.79529Zm3.27295,1.32989a4.66709,4.66709,0,0,1-1.51837-.27252,6.68737,6.68737,0,0,0,0-8.91,4.66683,4.66683,0,0,1,1.51837-.27253,4.72754,4.72754,0,0,1,0,9.45508Z' + }) + ) +} + +export default UilMasterCard \ No newline at end of file diff --git a/src/icons/uil-maximize-left.ts b/src/icons/uil-maximize-left.ts new file mode 100644 index 00000000..e84fc444 --- /dev/null +++ b/src/icons/uil-maximize-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMaximizeLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41l5.79,5.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM21,16a1,1,0,0,0-1,1v1.59l-5.79-5.8a1,1,0,0,0-1.42,1.42L18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' + }) + ) +} + +export default UilMaximizeLeft \ No newline at end of file diff --git a/src/icons/uil-medal.ts b/src/icons/uil-medal.ts new file mode 100644 index 00000000..d4c5db6b --- /dev/null +++ b/src/icons/uil-medal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMedal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.38,5.76a1,1,0,0,0-.47-.61l-5.2-3a1,1,0,0,0-1.37.36L12,6.57,9.66,2.51a1,1,0,0,0-1.37-.36l-5.2,3a1,1,0,0,0-.47.61,1,1,0,0,0,.1.75l4,6.83A5.91,5.91,0,0,0,6,16a6,6,0,1,0,11.34-2.72l3.9-6.76A1,1,0,0,0,21.38,5.76ZM5,6.38l3.46-2L11.68,10A5.94,5.94,0,0,0,8,11.58ZM12,20a4,4,0,0,1-4-4,4,4,0,0,1,4-4,4,4,0,1,1,0,8Zm4-8.45a5.9,5.9,0,0,0-1.86-1.15L13.16,8.57l2.42-4.19,3.46,2Z' + }) + ) +} + +export default UilMedal \ No newline at end of file diff --git a/src/icons/uil-medical-drip.ts b/src/icons/uil-medical-drip.ts new file mode 100644 index 00000000..77fb8d9d --- /dev/null +++ b/src/icons/uil-medical-drip.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMedicalDrip = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,6H15V4h2a1,1,0,0,0,0-2H9A5,5,0,0,0,4,7V21a1,1,0,0,0,2,0V7A3,3,0,0,1,9,4h4V6H11A3,3,0,0,0,8,9v4.93a3,3,0,0,0,1.34,2.5L11,17.54V18a2,2,0,0,0,2,2v1a1,1,0,0,0,2,0V20a2,2,0,0,0,2-2v-.46l1.66-1.11A3,3,0,0,0,20,13.93V9A3,3,0,0,0,17,6Zm-1,5h2v1H17a1,1,0,0,0,0,2h1a1,1,0,0,1-.44.76l-2.1,1.41A1,1,0,0,0,15,17v1H13V17a1,1,0,0,0-.45-.83l-2.1-1.41a1,1,0,0,1-.45-.83V9a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1H16a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilMedicalDrip \ No newline at end of file diff --git a/src/icons/uil-medical-square-full.ts b/src/icons/uil-medical-square-full.ts new file mode 100644 index 00000000..9bee3fd2 --- /dev/null +++ b/src/icons/uil-medical-square-full.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMedicalSquareFull = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20ZM7,14.79H9v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1v-2h2a1,1,0,0,0,1-1v-4a1,1,0,0,0-1-1H15v-2a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v2H7a1,1,0,0,0-1,1v4A1,1,0,0,0,7,14.79Zm1-4h2a1,1,0,0,0,1-1v-2h2v2a1,1,0,0,0,1,1h2v2H14a1,1,0,0,0-1,1v2H11v-2a1,1,0,0,0-1-1H8Z' + }) + ) +} + +export default UilMedicalSquareFull \ No newline at end of file diff --git a/src/icons/uil-medical-square.ts b/src/icons/uil-medical-square.ts new file mode 100644 index 00000000..5efb020a --- /dev/null +++ b/src/icons/uil-medical-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMedicalSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM17,9H15V7a1,1,0,0,0-1-1H10A1,1,0,0,0,9,7V9H7a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H9v2a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V15h2a1,1,0,0,0,1-1V10A1,1,0,0,0,17,9Zm-1,4H14a1,1,0,0,0-1,1v2H11V14a1,1,0,0,0-1-1H8V11h2a1,1,0,0,0,1-1V8h2v2a1,1,0,0,0,1,1h2Z' + }) + ) +} + +export default UilMedicalSquare \ No newline at end of file diff --git a/src/icons/uil-medium-m.ts b/src/icons/uil-medium-m.ts new file mode 100644 index 00000000..041308a7 --- /dev/null +++ b/src/icons/uil-medium-m.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMediumM = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.20905,6.41669H22V4.08331H14.51978l-2.48584,9.16663h-.068L9.50269,4.08331H2V6.41663h.76837A.89578.89578,0,0,1,3.5,7.11139v9.83032a.84093.84093,0,0,1-.73163.6416H2v2.33338H8V17.58331H6.5V7.25h.08752L10.0451,19.91669h2.712L16.25989,7.25h.07355V17.58331H14.83337v2.33338H22V17.58331h-.79095a.83931.83931,0,0,1-.70905-.6416V7.11145A.8976.8976,0,0,1,21.20905,6.41669Z' + }) + ) +} + +export default UilMediumM \ No newline at end of file diff --git a/src/icons/uil-medkit.ts b/src/icons/uil-medkit.ts new file mode 100644 index 00000000..66f6ddee --- /dev/null +++ b/src/icons/uil-medkit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMedkit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,17h1v1a1,1,0,0,0,2,0V17h1a1,1,0,0,0,0-2H13V14a1,1,0,0,0-2,0v1H10a1,1,0,0,0,0,2ZM19,6H17V5a3,3,0,0,0-3-3H10A3,3,0,0,0,7,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM9,5a1,1,0,0,1,1-1h4a1,1,0,0,1,1,1V6H9ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H20Zm0-9H4V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMedkit \ No newline at end of file diff --git a/src/icons/uil-meeting-board.ts b/src/icons/uil-meeting-board.ts new file mode 100644 index 00000000..37b1c3c0 --- /dev/null +++ b/src/icons/uil-meeting-board.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMeetingBoard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,10H9A1,1,0,0,0,9,8H7a1,1,0,0,0,0,2ZM21,4H13V3a1,1,0,0,0-2,0V4H3A1,1,0,0,0,2,5V15a3,3,0,0,0,3,3H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,19.41V21a1,1,0,0,0,2,0V19.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,18H19a3,3,0,0,0,3-3V5A1,1,0,0,0,21,4ZM20,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V6H20ZM7,14h6a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilMeetingBoard \ No newline at end of file diff --git a/src/icons/uil-megaphone.ts b/src/icons/uil-megaphone.ts new file mode 100644 index 00000000..4e6b9de2 --- /dev/null +++ b/src/icons/uil-megaphone.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMegaphone = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.99121,2.002a.99943.99943,0,0,0-1,1v.63672a9.03617,9.03617,0,0,1-7,3.36328h-6a3.00328,3.00328,0,0,0-3,3v2a3.00328,3.00328,0,0,0,3,3H6.475L4.07227,20.6084A.99931.99931,0,0,0,4.99121,22.002h4a.99857.99857,0,0,0,.91895-.60644L12.63391,15.04a9.02805,9.02805,0,0,1,6.3573,3.32507V19.002a1,1,0,0,0,2,0v-16A.99942.99942,0,0,0,19.99121,2.002Zm-14,11a1.00067,1.00067,0,0,1-1-1v-2a1.00068,1.00068,0,0,1,1-1h1v4Zm2.34082,7H6.50781l2.14258-5h1.82422ZM18.99121,15.5238a11.052,11.052,0,0,0-7-2.52185h-3v-4h3a11.05281,11.05281,0,0,0,7-2.52234Z' + }) + ) +} + +export default UilMegaphone \ No newline at end of file diff --git a/src/icons/uil-meh-alt.ts b/src/icons/uil-meh-alt.ts new file mode 100644 index 00000000..5f89f86f --- /dev/null +++ b/src/icons/uil-meh-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMehAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11h1a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2Zm6,3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-5H14a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilMehAlt \ No newline at end of file diff --git a/src/icons/uil-meh-closed-eye.ts b/src/icons/uil-meh-closed-eye.ts new file mode 100644 index 00000000..b99bdbe8 --- /dev/null +++ b/src/icons/uil-meh-closed-eye.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMehClosedEye = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm2.62-4.87a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilMehClosedEye \ No newline at end of file diff --git a/src/icons/uil-meh.ts b/src/icons/uil-meh.ts new file mode 100644 index 00000000..3c869e3b --- /dev/null +++ b/src/icons/uil-meh.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMeh = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,3H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0-5a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilMeh \ No newline at end of file diff --git a/src/icons/uil-message.ts b/src/icons/uil-message.ts new file mode 100644 index 00000000..21e20d7e --- /dev/null +++ b/src/icons/uil-message.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMessage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.34,9.32l-14-7a3,3,0,0,0-4.08,3.9l2.4,5.37h0a1.06,1.06,0,0,1,0,.82l-2.4,5.37A3,3,0,0,0,5,22a3.14,3.14,0,0,0,1.35-.32l14-7a3,3,0,0,0,0-5.36Zm-.89,3.57-14,7a1,1,0,0,1-1.35-1.3l2.39-5.37A2,2,0,0,0,6.57,13h6.89a1,1,0,0,0,0-2H6.57a2,2,0,0,0-.08-.22L4.1,5.41a1,1,0,0,1,1.35-1.3l14,7a1,1,0,0,1,0,1.78Z' + }) + ) +} + +export default UilMessage \ No newline at end of file diff --git a/src/icons/uil-metro.ts b/src/icons/uil-metro.ts new file mode 100644 index 00000000..1a446759 --- /dev/null +++ b/src/icons/uil-metro.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMetro = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.71,14.29a1.00157,1.00157,0,0,0-1.08984-.21.90087.90087,0,0,0-.54.54,1.00008,1.00008,0,1,0,1.83984,0A1.14718,1.14718,0,0,0,8.71,14.29Zm8,0a1.04669,1.04669,0,0,0-1.41992,0,1.14718,1.14718,0,0,0-.21.33008A.98919.98919,0,0,0,15.29,15.71a1.14718,1.14718,0,0,0,.33008.21.94107.94107,0,0,0,.75976,0,1.16044,1.16044,0,0,0,.33008-.21.98919.98919,0,0,0,.21-1.08984A1.14718,1.14718,0,0,0,16.71,14.29Zm2.59943,4.60528a4.97014,4.97014,0,0,0,1.78436-4.8172l-1.5-8A5.00038,5.00038,0,0,0,14.68066,2H9.31934A5.00038,5.00038,0,0,0,4.40625,6.07812l-1.5,8a4.97014,4.97014,0,0,0,1.78436,4.8172L3.293,20.293A.99989.99989,0,1,0,4.707,21.707l1.86914-1.86914A5.00576,5.00576,0,0,0,7.81934,20h8.36132a5.00576,5.00576,0,0,0,1.24317-.16211L19.293,21.707A.99989.99989,0,0,0,20.707,20.293ZM6.37109,6.44727A3.0021,3.0021,0,0,1,9.31934,4h5.36132a3.0021,3.0021,0,0,1,2.94825,2.44727l.34668,1.84893a7.95514,7.95514,0,0,1-11.95118,0ZM18.48828,16.916A2.9899,2.9899,0,0,1,16.18066,18H7.81934a3.00057,3.00057,0,0,1-2.94825-3.55273l.71106-3.79236a9.95447,9.95447,0,0,0,12.8357,0l.71106,3.79236A2.99028,2.99028,0,0,1,18.48828,16.916Z' + }) + ) +} + +export default UilMetro \ No newline at end of file diff --git a/src/icons/uil-microphone-slash.ts b/src/icons/uil-microphone-slash.ts new file mode 100644 index 00000000..0cc8e0ab --- /dev/null +++ b/src/icons/uil-microphone-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMicrophoneSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,3.73a2,2,0,0,1,2.95-.14A2,2,0,0,1,14,5V8.41a1,1,0,0,0,2,0V5A4,4,0,0,0,9,2.47,1,1,0,1,0,10.5,3.73Zm8.22,9.54.2,0a1,1,0,0,0,1-.81A7.91,7.91,0,0,0,20,11a1,1,0,0,0-2,0,5.54,5.54,0,0,1-.11,1.1A1,1,0,0,0,18.72,13.27Zm3,6.06-18-18a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L8,8.48V11a4,4,0,0,0,6,3.46l1.46,1.46A6,6,0,0,1,6,11a1,1,0,0,0-2,0,8,8,0,0,0,7,7.93V21H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V18.93a7.87,7.87,0,0,0,3.85-1.59l3.4,3.4a1,1,0,0,0,1.42-1.41ZM12,13a2,2,0,0,1-2-2v-.52l2.45,2.46A1.74,1.74,0,0,1,12,13Z' + }) + ) +} + +export default UilMicrophoneSlash \ No newline at end of file diff --git a/src/icons/uil-microphone.ts b/src/icons/uil-microphone.ts new file mode 100644 index 00000000..04d6be4f --- /dev/null +++ b/src/icons/uil-microphone.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMicrophone = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,15a4,4,0,0,0,4-4V5A4,4,0,0,0,8,5v6A4,4,0,0,0,12,15ZM10,5a2,2,0,0,1,4,0v6a2,2,0,0,1-4,0Zm10,6a1,1,0,0,0-2,0A6,6,0,0,1,6,11a1,1,0,0,0-2,0,8,8,0,0,0,7,7.93V21H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V18.93A8,8,0,0,0,20,11Z' + }) + ) +} + +export default UilMicrophone \ No newline at end of file diff --git a/src/icons/uil-microscope.ts b/src/icons/uil-microscope.ts new file mode 100644 index 00000000..ed35f3d6 --- /dev/null +++ b/src/icons/uil-microscope.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMicroscope = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20 21.005h-5.184a2.964 2.964 0 0 0 .143-.591A8.044 8.044 0 0 0 20 13.005a7.945 7.945 0 0 0-2.127-5.422l.637-.638a.991.991 0 0 0 .241-.39l.708-2.122a1 1 0 0 0-.241-1.024l-2.122-2.121a.999.999 0 0 0-1.024-.242l-2.12.707a.997.997 0 0 0-.391.242L7.198 8.358a1 1 0 0 0 0 1.414l-1.416 1.415a1 1 0 0 0 0 1.415l2.122 2.12a1 1 0 0 0 1.414 0l1.414-1.413.002.002a1 1 0 0 0 1.414 0l4.31-4.312A5.955 5.955 0 0 1 18 13.005a6.048 6.048 0 0 1-3.455 5.431 2.976 2.976 0 0 0-5.124.063 6.822 6.822 0 0 1-1.12-.554.989.989 0 0 0 .699-.94 1 1 0 0 0-1-1H4a1 1 0 0 0 0 2h1.331a8.814 8.814 0 0 0 3.717 2.473 2.955 2.955 0 0 0 .136.527H4a1 1 0 0 0 0 2h16a1 1 0 0 0 0-2ZM8.611 12.602l-.708-.707.708-.708.707.708Zm8.318-6.904L11.44 11.19 9.32 9.065l5.489-5.489 1.311-.437 1.247 1.247ZM12 21.005a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' + }) + ) +} + +export default UilMicroscope \ No newline at end of file diff --git a/src/icons/uil-microsoft.ts b/src/icons/uil-microsoft.ts new file mode 100644 index 00000000..512c60cc --- /dev/null +++ b/src/icons/uil-microsoft.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMicrosoft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2 22h9.5v-9.5H2V22zm0-10.5h9.5V2H2v9.5zM12.5 2v9.5H22V2h-9.5zm0 20H22v-9.5h-9.5V22z' + }) + ) +} + +export default UilMicrosoft \ No newline at end of file diff --git a/src/icons/uil-minus-circle.ts b/src/icons/uil-minus-circle.ts new file mode 100644 index 00000000..d5da869e --- /dev/null +++ b/src/icons/uil-minus-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMinusCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4-9H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilMinusCircle \ No newline at end of file diff --git a/src/icons/uil-minus-path.ts b/src/icons/uil-minus-path.ts new file mode 100644 index 00000000..62ef0790 --- /dev/null +++ b/src/icons/uil-minus-path.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMinusPath = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.18,4h2.1a1,1,0,0,0,0-2H8.18a1,1,0,0,0,0,2ZM3,11.28a1,1,0,0,0,1-1V8.18a1,1,0,0,0-2,0v2.1A1,1,0,0,0,3,11.28ZM14.46,4a1,1,0,0,0,2,0V3a1,1,0,0,0-1-1h-1a1,1,0,0,0,0,2ZM21,7.54H16.46a1,1,0,1,0-2,0H8.54a1,1,0,0,0-1,1v5.92a1,1,0,1,0,0,2V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V15.47h0V9.54H20ZM4,2H3A1,1,0,0,0,2,3V4A1,1,0,0,0,4,4,1,1,0,0,0,4,2ZM4,14.46a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1H4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilMinusPath \ No newline at end of file diff --git a/src/icons/uil-minus-square-full.ts b/src/icons/uil-minus-square-full.ts new file mode 100644 index 00000000..915e4fb1 --- /dev/null +++ b/src/icons/uil-minus-square-full.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMinusSquareFull = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,13h6a1,1,0,0,0,0-2H9a1,1,0,0,0,0,2ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilMinusSquareFull \ No newline at end of file diff --git a/src/icons/uil-minus-square.ts b/src/icons/uil-minus-square.ts new file mode 100644 index 00000000..be1ab14b --- /dev/null +++ b/src/icons/uil-minus-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMinusSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Zm-4-8H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilMinusSquare \ No newline at end of file diff --git a/src/icons/uil-minus.ts b/src/icons/uil-minus.ts new file mode 100644 index 00000000..3c6585c7 --- /dev/null +++ b/src/icons/uil-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,11H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilMinus \ No newline at end of file diff --git a/src/icons/uil-missed-call.ts b/src/icons/uil-missed-call.ts new file mode 100644 index 00000000..abde67db --- /dev/null +++ b/src/icons/uil-missed-call.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMissedCall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6,7.49a1,1,0,0,0,1-1V5.9L9.88,8.78a3,3,0,0,0,4.24,0l4.59-4.59a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L12.71,7.36a1,1,0,0,1-1.42,0L8.41,4.49H9a1,1,0,0,0,0-2H6a1,1,0,0,0-.92.61A1.09,1.09,0,0,0,5,3.49v3A1,1,0,0,0,6,7.49Zm15.94,7.36a16.27,16.27,0,0,0-19.88,0,2.69,2.69,0,0,0-1,2,2.66,2.66,0,0,0,.78,2.07L3.6,20.72A2.68,2.68,0,0,0,7.06,21l.47-.32a8.13,8.13,0,0,1,1-.55,1.85,1.85,0,0,0,1-2.3l-.09-.24a10.49,10.49,0,0,1,5.22,0l-.09.24a1.85,1.85,0,0,0,1,2.3,8.13,8.13,0,0,1,1,.55l.47.32a2.58,2.58,0,0,0,1.54.5,2.72,2.72,0,0,0,1.92-.79l1.81-1.82A2.66,2.66,0,0,0,23,16.83,2.69,2.69,0,0,0,21.94,14.85ZM20.8,17.49,19,19.3a.68.68,0,0,1-.86.1c-.19-.14-.38-.27-.59-.4a11.65,11.65,0,0,0-1.09-.61l.4-1.09a1,1,0,0,0-.6-1.28,12.42,12.42,0,0,0-8.5,0,1,1,0,0,0-.6,1.28l.4,1.1a9.8,9.8,0,0,0-1.1.6l-.58.4A.66.66,0,0,1,5,19.3L3.2,17.49A.67.67,0,0,1,3,17a.76.76,0,0,1,.28-.53,14.29,14.29,0,0,1,17.44,0A.76.76,0,0,1,21,17,.67.67,0,0,1,20.8,17.49Z' + }) + ) +} + +export default UilMissedCall \ No newline at end of file diff --git a/src/icons/uil-mobile-android-alt.ts b/src/icons/uil-mobile-android-alt.ts new file mode 100644 index 00000000..b6d47a66 --- /dev/null +++ b/src/icons/uil-mobile-android-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMobileAndroidAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V18H17Zm0-3H7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMobileAndroidAlt \ No newline at end of file diff --git a/src/icons/uil-mobile-android.ts b/src/icons/uil-mobile-android.ts new file mode 100644 index 00000000..1874d6b2 --- /dev/null +++ b/src/icons/uil-mobile-android.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMobileAndroid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,16.29l-.15-.12a.76.76,0,0,0-.18-.09L12.2,16a1,1,0,0,0-.91.27,1.15,1.15,0,0,0-.21.33,1,1,0,0,0,1.3,1.31,1.46,1.46,0,0,0,.33-.22,1,1,0,0,0,.21-1.09A1,1,0,0,0,12.71,16.29ZM16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMobileAndroid \ No newline at end of file diff --git a/src/icons/uil-mobile-vibrate.ts b/src/icons/uil-mobile-vibrate.ts new file mode 100644 index 00000000..8f99bd27 --- /dev/null +++ b/src/icons/uil-mobile-vibrate.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMobileVibrate = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.88,14.12,9.73,14l-.18-.1-.18-.05a1,1,0,0,0-.9.27.83.83,0,0,0-.22.33.94.94,0,0,0,0,.76,1.07,1.07,0,0,0,.54.54,1,1,0,0,0,.38.08,1.09,1.09,0,0,0,.39-.08.87.87,0,0,0,.32-.22,1,1,0,0,0,.22-.32,1,1,0,0,0,.07-.38.84.84,0,0,0-.08-.38A.93.93,0,0,0,9.88,14.12ZM3.51,8.76a1,1,0,0,0,.71-.3L8.46,4.22a1,1,0,0,0,0-1.41,1,1,0,0,0-1.41,0L2.81,7.05a1,1,0,0,0,0,1.41A1,1,0,0,0,3.51,8.76Zm17.68,6.78a1,1,0,0,0-1.41,0l-4.24,4.24a1,1,0,0,0,.7,1.71,1,1,0,0,0,.71-.3L21.19,17A1,1,0,0,0,21.19,15.54Zm.17-5.66a3,3,0,0,0-.87-2.12L16.24,3.51a3.08,3.08,0,0,0-4.24,0L3.51,12a3,3,0,0,0,0,4.24l4.25,4.25h0a3,3,0,0,0,4.24,0L20.49,12A3,3,0,0,0,21.36,9.88Zm-2.29.71-8.48,8.48a1,1,0,0,1-1.42,0h0L4.93,14.83a1,1,0,0,1,0-1.42l8.48-8.48a1,1,0,0,1,1.42,0l4.24,4.24a1,1,0,0,1,0,1.42Z' + }) + ) +} + +export default UilMobileVibrate \ No newline at end of file diff --git a/src/icons/uil-modem.ts b/src/icons/uil-modem.ts new file mode 100644 index 00000000..89031a1e --- /dev/null +++ b/src/icons/uil-modem.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilModem = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.48,13.13a.65.65,0,0,0-.05-.2.89.89,0,0,0-.08-.17.86.86,0,0,0-.1-.16l-.16-.13L21,12.38,6.28,3.88a1,1,0,0,0-1,1.74l11.49,6.63H3.5a1,1,0,0,0-1,1v4a3,3,0,0,0,3,3h13a3,3,0,0,0,3-3v-4S21.48,13.17,21.48,13.13Zm-2,4.12a1,1,0,0,1-1,1H5.5a1,1,0,0,1-1-1v-3h15Zm-3,0a1,1,0,1,0-1-1A1,1,0,0,0,16.5,17.25Z' + }) + ) +} + +export default UilModem \ No newline at end of file diff --git a/src/icons/uil-money-bill-slash.ts b/src/icons/uil-money-bill-slash.ts new file mode 100644 index 00000000..a3998dad --- /dev/null +++ b/src/icons/uil-money-bill-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyBillSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6,11a1,1,0,1,0,1,1A1,1,0,0,0,6,11Zm5.86-1.55h0L4.71,2.29A1,1,0,0,0,3.29,3.71L4.59,5H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H18.59l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Zm-.74,2.09,1.34,1.34A1,1,0,0,1,12,13a1,1,0,0,1-1-1A1,1,0,0,1,11.12,11.54ZM4,17a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H6.59l3.1,3.1A3,3,0,0,0,9,12a3,3,0,0,0,3,3,3,3,0,0,0,1.9-.69L16.59,17ZM20,5H12.66a1,1,0,0,0,0,2H20a1,1,0,0,1,1,1v7.34a1,1,0,1,0,2,0V8A3,3,0,0,0,20,5Zm-1,7a1,1,0,1,0-1,1A1,1,0,0,0,19,12Z' + }) + ) +} + +export default UilMoneyBillSlash \ No newline at end of file diff --git a/src/icons/uil-money-bill-stack.ts b/src/icons/uil-money-bill-stack.ts new file mode 100644 index 00000000..d4b45769 --- /dev/null +++ b/src/icons/uil-money-bill-stack.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyBillStack = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,1H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1ZM8,21H4a1,1,0,0,1-1-1V18.82A3,3,0,0,0,4,19H8Zm0-4H4a1,1,0,0,1-1-1V14.82A3,3,0,0,0,4,15H8Zm0-4H4a1,1,0,0,1-1-1V4A1,1,0,0,1,4,3H8Zm6,8H10V15h4Zm0-8H10V3h4Zm7,7a1,1,0,0,1-1,1H16V19h4a3,3,0,0,0,1-.18Zm0-4a1,1,0,0,1-1,1H16V15h4a3,3,0,0,0,1-.18Zm0-4a1,1,0,0,1-1,1H16V3h4a1,1,0,0,1,1,1ZM18,7a1,1,0,1,0,1,1A1,1,0,0,0,18,7ZM6,9A1,1,0,1,0,5,8,1,1,0,0,0,6,9Z' + }) + ) +} + +export default UilMoneyBillStack \ No newline at end of file diff --git a/src/icons/uil-money-bill.ts b/src/icons/uil-money-bill.ts new file mode 100644 index 00000000..59177caf --- /dev/null +++ b/src/icons/uil-money-bill.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyBill = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6,11a1,1,0,1,0,1,1A1,1,0,0,0,6,11Zm12,0a1,1,0,1,0,1,1A1,1,0,0,0,18,11Zm2-6H4A3,3,0,0,0,1,8v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V8A3,3,0,0,0,20,5Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H20a1,1,0,0,1,1,1ZM12,9a3,3,0,1,0,3,3A3,3,0,0,0,12,9Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,13Z' + }) + ) +} + +export default UilMoneyBill \ No newline at end of file diff --git a/src/icons/uil-money-insert.ts b/src/icons/uil-money-insert.ts new file mode 100644 index 00000000..98af56bf --- /dev/null +++ b/src/icons/uil-money-insert.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyInsert = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.46,6,11,5.41V9a1,1,0,0,0,2,0V5.41l.54.55A1,1,0,0,0,15,6a1,1,0,0,0,0-1.42L12.71,2.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L9,4.54A1,1,0,0,0,10.46,6ZM12,12a3,3,0,1,0,3,3A3,3,0,0,0,12,12Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,16ZM5,15a1,1,0,1,0,1-1A1,1,0,0,0,5,15Zm14,0a1,1,0,1,0-1,1A1,1,0,0,0,19,15Zm1-7H16a1,1,0,0,0,0,2h4a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H8A1,1,0,0,0,8,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V11A3,3,0,0,0,20,8Z' + }) + ) +} + +export default UilMoneyInsert \ No newline at end of file diff --git a/src/icons/uil-money-stack.ts b/src/icons/uil-money-stack.ts new file mode 100644 index 00000000..d57c6fa4 --- /dev/null +++ b/src/icons/uil-money-stack.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyStack = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,17H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2Zm0,4H2a1,1,0,0,0,0,2H22a1,1,0,0,0,0-2ZM6,7A1,1,0,1,0,7,8,1,1,0,0,0,6,7ZM20,1H4A3,3,0,0,0,1,4v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1Zm1,11a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V4A1,1,0,0,1,4,3H20a1,1,0,0,1,1,1ZM12,5a3,3,0,1,0,3,3A3,3,0,0,0,12,5Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,9Zm6-2a1,1,0,1,0,1,1A1,1,0,0,0,18,7Z' + }) + ) +} + +export default UilMoneyStack \ No newline at end of file diff --git a/src/icons/uil-money-withdraw.ts b/src/icons/uil-money-withdraw.ts new file mode 100644 index 00000000..8d0383ef --- /dev/null +++ b/src/icons/uil-money-withdraw.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyWithdraw = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,12a3,3,0,1,0,3,3A3,3,0,0,0,12,12Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,16Zm-.71-6.29a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21L15,7.46A1,1,0,1,0,13.54,6L13,6.59V3a1,1,0,0,0-2,0V6.59L10.46,6A1,1,0,0,0,9,7.46ZM19,15a1,1,0,1,0-1,1A1,1,0,0,0,19,15Zm1-7H17a1,1,0,0,0,0,2h3a1,1,0,0,1,1,1v8a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H7A1,1,0,0,0,7,8H4a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V11A3,3,0,0,0,20,8ZM5,15a1,1,0,1,0,1-1A1,1,0,0,0,5,15Z' + }) + ) +} + +export default UilMoneyWithdraw \ No newline at end of file diff --git a/src/icons/uil-money-withdrawal.ts b/src/icons/uil-money-withdrawal.ts new file mode 100644 index 00000000..141f0d0f --- /dev/null +++ b/src/icons/uil-money-withdrawal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneyWithdrawal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,2H2A1,1,0,0,0,1,3v8a1,1,0,0,0,1,1H5v9a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V12h3a1,1,0,0,0,1-1V3A1,1,0,0,0,22,2ZM7,20V18a2,2,0,0,1,2,2Zm10,0H15a2,2,0,0,1,2-2Zm0-4a4,4,0,0,0-4,4H11a4,4,0,0,0-4-4V8H17Zm4-6H19V7a1,1,0,0,0-1-1H6A1,1,0,0,0,5,7v3H3V4H21Zm-9,5a3,3,0,1,0-3-3A3,3,0,0,0,12,15Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,12,11Z' + }) + ) +} + +export default UilMoneyWithdrawal \ No newline at end of file diff --git a/src/icons/uil-moneybag-alt.ts b/src/icons/uil-moneybag-alt.ts new file mode 100644 index 00000000..68b3ce12 --- /dev/null +++ b/src/icons/uil-moneybag-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneybagAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,7H16V6a3,3,0,0,0-3-3H11A3,3,0,0,0,8,6V7H5a3,3,0,0,0-3,3v8a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V10A3,3,0,0,0,19,7ZM10,6a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V7H10ZM4,10A1,1,0,0,1,5,9H6a2,2,0,0,1-2,2Zm1,9a1,1,0,0,1-1-1V17a2,2,0,0,1,2,2Zm15-1a1,1,0,0,1-1,1H18a2,2,0,0,1,2-2Zm0-3a4,4,0,0,0-4,4H8a4,4,0,0,0-4-4V13A4,4,0,0,0,8,9h8a4,4,0,0,0,4,4Zm0-4a2,2,0,0,1-2-2h1a1,1,0,0,1,1,1Zm-8,0a3,3,0,1,0,3,3A3,3,0,0,0,12,11Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,15Z' + }) + ) +} + +export default UilMoneybagAlt \ No newline at end of file diff --git a/src/icons/uil-moneybag.ts b/src/icons/uil-moneybag.ts new file mode 100644 index 00000000..8f741b89 --- /dev/null +++ b/src/icons/uil-moneybag.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoneybag = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,11a3,3,0,1,0,3,3A3,3,0,0,0,12,11Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,15Zm7-9H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10ZM4,9A1,1,0,0,1,5,8H6a2,2,0,0,1-2,2ZM5,20a1,1,0,0,1-1-1V18a2,2,0,0,1,2,2Zm15-1a1,1,0,0,1-1,1H18a2,2,0,0,1,2-2Zm0-3a4,4,0,0,0-4,4H8a4,4,0,0,0-4-4V12A4,4,0,0,0,8,8h8a4,4,0,0,0,4,4Zm0-6a2,2,0,0,1-2-2h1a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMoneybag \ No newline at end of file diff --git a/src/icons/uil-monitor-heart-rate.ts b/src/icons/uil-monitor-heart-rate.ts new file mode 100644 index 00000000..515c2873 --- /dev/null +++ b/src/icons/uil-monitor-heart-rate.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMonitorHeartRate = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,19a1,1,0,0,0,.38-.08,1.15,1.15,0,0,0,.33-.21,1,1,0,0,0,.12-.16.56.56,0,0,0,.09-.17A.64.64,0,0,0,10,18.2a1.36,1.36,0,0,0,0-.2,1,1,0,0,0-.08-.38.9.9,0,0,0-.54-.54A1,1,0,0,0,8.8,17l-.18.06a.56.56,0,0,0-.17.09,1,1,0,0,0-.16.12,1,1,0,0,0-.21.33A1,1,0,0,0,8,18a1,1,0,0,0,1,1Zm-3.71-.29a1.15,1.15,0,0,0,.33.21A1,1,0,0,0,6,19l.19,0a.6.6,0,0,0,.19-.06.76.76,0,0,0,.18-.09l.15-.12a1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,7,18a1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.56.56,0,0,0-.09-.17,1,1,0,0,0-.12-.16,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21,1,1,0,0,0-.12.16.56.56,0,0,0-.09.17A.64.64,0,0,0,5,17.8,1.36,1.36,0,0,0,5,18a1,1,0,0,0,.08.38A1.15,1.15,0,0,0,5.29,18.71ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V16H20Zm0-5H4V10H8a1,1,0,0,0,.71-.29L10,8.46l2.8,3.2a1,1,0,0,0,.72.34h0a1,1,0,0,0,.71-.29L15.91,10H20Zm0-6H15.5a1,1,0,0,0-.71.29L13.55,9.54l-2.8-3.2a1,1,0,0,0-1.46,0L7.59,8H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMonitorHeartRate \ No newline at end of file diff --git a/src/icons/uil-monitor.ts b/src/icons/uil-monitor.ts new file mode 100644 index 00000000..08a058ac --- /dev/null +++ b/src/icons/uil-monitor.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMonitor = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H7.64l-.58,1a2,2,0,0,0,0,2,2,2,0,0,0,1.75,1h6.46A2,2,0,0,0,17,21a2,2,0,0,0,0-2l-.59-1H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM8.77,20,10,18H14l1.2,2ZM20,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V14H20Zm0-3H4V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilMonitor \ No newline at end of file diff --git a/src/icons/uil-moon-eclipse.ts b/src/icons/uil-moon-eclipse.ts new file mode 100644 index 00000000..1ff2bef0 --- /dev/null +++ b/src/icons/uil-moon-eclipse.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoonEclipse = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2a10,10,0,0,0-2.14.24l-.12,0a10,10,0,0,0-.1,19.44l.14,0A9.57,9.57,0,0,0,12,22,10,10,0,0,0,12,2ZM10,19.74A8,8,0,0,1,10,4.26a8,8,0,0,1,0,15.48Zm4.53-.16a10,10,0,0,0,0-15.16,8,8,0,0,1,0,15.16Z' + }) + ) +} + +export default UilMoonEclipse \ No newline at end of file diff --git a/src/icons/uil-moon.ts b/src/icons/uil-moon.ts new file mode 100644 index 00000000..c6bfa992 --- /dev/null +++ b/src/icons/uil-moon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.64,13a1,1,0,0,0-1.05-.14,8.05,8.05,0,0,1-3.37.73A8.15,8.15,0,0,1,9.08,5.49a8.59,8.59,0,0,1,.25-2A1,1,0,0,0,8,2.36,10.14,10.14,0,1,0,22,14.05,1,1,0,0,0,21.64,13Zm-9.5,6.69A8.14,8.14,0,0,1,7.08,5.22v.27A10.15,10.15,0,0,0,17.22,15.63a9.79,9.79,0,0,0,2.1-.22A8.11,8.11,0,0,1,12.14,19.73Z' + }) + ) +} + +export default UilMoon \ No newline at end of file diff --git a/src/icons/uil-moonset.ts b/src/icons/uil-moonset.ts new file mode 100644 index 00000000..d76978a6 --- /dev/null +++ b/src/icons/uil-moonset.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMoonset = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,19H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm9-4H18.84A8.18,8.18,0,0,0,20,12.05a1,1,0,0,0-.34-.93,1,1,0,0,0-1-.19,6,6,0,0,1-1.92.32,6.06,6.06,0,0,1-6.06-6,6.93,6.93,0,0,1,.1-1,1,1,0,0,0-.35-.92,1,1,0,0,0-1-.18A8.06,8.06,0,0,0,4,10.68,8,8,0,0,0,5.27,15H4a1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Zm-3.72,0H7.83a6,6,0,0,1,.88-9.36,8.06,8.06,0,0,0,8.05,7.61,7,7,0,0,0,.79,0A6.08,6.08,0,0,1,16.28,15ZM16,19H15a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilMoonset \ No newline at end of file diff --git a/src/icons/uil-mountains-sun.ts b/src/icons/uil-mountains-sun.ts new file mode 100644 index 00000000..e5595187 --- /dev/null +++ b/src/icons/uil-mountains-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMountainsSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,10a4,4,0,1,0-4-4A4,4,0,0,0,18,10Zm0-6a2,2,0,1,1-2,2A2,2,0,0,1,18,4Zm-1.15,8.47a1,1,0,0,0-1.7,0l-1,1.63L10.86,8.5a1,1,0,0,0-1.72,0l-7,12A1,1,0,0,0,3,22H21a1,1,0,0,0,.85-1.53ZM10.45,20H4.74L10,11l2.94,5-1.25,2Zm2.35,0,1.49-2.37L15,16.57h0L16,14.89,19.2,20Z' + }) + ) +} + +export default UilMountainsSun \ No newline at end of file diff --git a/src/icons/uil-mountains.ts b/src/icons/uil-mountains.ts new file mode 100644 index 00000000..2f339d37 --- /dev/null +++ b/src/icons/uil-mountains.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMountains = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.85,17.47l-5-8a1,1,0,0,0-1.7,0l-1,1.63L10.86,5.5a1,1,0,0,0-1.72,0l-7,12A1,1,0,0,0,3,19H21a1,1,0,0,0,.85-1.53ZM10.45,17H4.74L10,8l2.93,5Zm2.35,0L15,13.57h0L16,11.89,19.2,17Z' + }) + ) +} + +export default UilMountains \ No newline at end of file diff --git a/src/icons/uil-mouse-alt-2.ts b/src/icons/uil-mouse-alt-2.ts new file mode 100644 index 00000000..0f493448 --- /dev/null +++ b/src/icons/uil-mouse-alt-2.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMouseAlt2 = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2Zm5,13A5,5,0,0,1,7,15V9a5,5,0,0,1,4-4.9V12a1,1,0,0,0,2,0V4.1A5,5,0,0,1,17,9Z' + }) + ) +} + +export default UilMouseAlt2 \ No newline at end of file diff --git a/src/icons/uil-mouse-alt.ts b/src/icons/uil-mouse-alt.ts new file mode 100644 index 00000000..139adb72 --- /dev/null +++ b/src/icons/uil-mouse-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMouseAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6a1,1,0,0,0-1,1V9a1,1,0,0,0,2,0V7A1,1,0,0,0,12,6Zm0-4A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2Zm5,13A5,5,0,0,1,7,15V9A5,5,0,0,1,17,9Z' + }) + ) +} + +export default UilMouseAlt \ No newline at end of file diff --git a/src/icons/uil-mouse.ts b/src/icons/uil-mouse.ts new file mode 100644 index 00000000..5c3efd1a --- /dev/null +++ b/src/icons/uil-mouse.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMouse = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A7,7,0,0,0,5,9v6a7,7,0,0,0,14,0V9A7,7,0,0,0,12,2ZM7,9a5,5,0,0,1,4-4.9V10H7Zm10,6A5,5,0,0,1,7,15V12H17Zm0-5H13V4.1A5,5,0,0,1,17,9Z' + }) + ) +} + +export default UilMouse \ No newline at end of file diff --git a/src/icons/uil-multiply.ts b/src/icons/uil-multiply.ts new file mode 100644 index 00000000..6dea5248 --- /dev/null +++ b/src/icons/uil-multiply.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMultiply = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.41,12l6.3-6.29a1,1,0,1,0-1.42-1.42L12,10.59,5.71,4.29A1,1,0,0,0,4.29,5.71L10.59,12l-6.3,6.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l6.29,6.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilMultiply \ No newline at end of file diff --git a/src/icons/uil-music-note.ts b/src/icons/uil-music-note.ts new file mode 100644 index 00000000..4dd7bc27 --- /dev/null +++ b/src/icons/uil-music-note.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMusicNote = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.12,2.21A1,1,0,0,0,18.26,2l-8,2A1,1,0,0,0,9.5,5V15.35A3.45,3.45,0,0,0,8,15a3.5,3.5,0,1,0,3.5,3.5V10.78L18.74,9l.07,0L19,8.85l.15-.1a.93.93,0,0,0,.13-.15.78.78,0,0,0,.1-.15.55.55,0,0,0,.06-.18.58.58,0,0,0,0-.19.24.24,0,0,0,0-.08V3A1,1,0,0,0,19.12,2.21ZM8,20a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,8,20ZM17.5,7.22l-6,1.5V5.78l6-1.5Z' + }) + ) +} + +export default UilMusicNote \ No newline at end of file diff --git a/src/icons/uil-music-tune-slash.ts b/src/icons/uil-music-tune-slash.ts new file mode 100644 index 00000000..21ef5199 --- /dev/null +++ b/src/icons/uil-music-tune-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMusicTuneSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,7.33a1,1,0,0,0,1-1V5.78l6-1.5V7.22L14.7,8.3a1,1,0,0,0,.24,2l.24,0L20.24,9l.07,0,.19-.09.15-.1a.93.93,0,0,0,.13-.15.78.78,0,0,0,.1-.15.55.55,0,0,0,.06-.18.65.65,0,0,0,0-.19A.24.24,0,0,0,21,8V3a1,1,0,0,0-1.24-1l-8,2A1,1,0,0,0,11,5V6.33A1,1,0,0,0,12,7.33Zm9.71,13-9-9h0l-9-9A1,1,0,0,0,2.29,3.71L11,12.41v2.94A3.45,3.45,0,0,0,9.5,15,3.5,3.5,0,1,0,13,18.5V14.41l7.29,7.3a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM9.5,20A1.5,1.5,0,1,1,11,18.5,1.5,1.5,0,0,1,9.5,20Z' + }) + ) +} + +export default UilMusicTuneSlash \ No newline at end of file diff --git a/src/icons/uil-music.ts b/src/icons/uil-music.ts new file mode 100644 index 00000000..e5095f7b --- /dev/null +++ b/src/icons/uil-music.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilMusic = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.65,2.24a1,1,0,0,0-.8-.23l-13,2A1,1,0,0,0,7,5V15.35A3.45,3.45,0,0,0,5.5,15,3.5,3.5,0,1,0,9,18.5V10.86L20,9.17v4.18A3.45,3.45,0,0,0,18.5,13,3.5,3.5,0,1,0,22,16.5V3A1,1,0,0,0,21.65,2.24ZM5.5,20A1.5,1.5,0,1,1,7,18.5,1.5,1.5,0,0,1,5.5,20Zm13-2A1.5,1.5,0,1,1,20,16.5,1.5,1.5,0,0,1,18.5,18ZM20,7.14,9,8.83v-3L20,4.17Z' + }) + ) +} + +export default UilMusic \ No newline at end of file diff --git a/src/icons/uil-n-a.ts b/src/icons/uil-n-a.ts new file mode 100644 index 00000000..03ff3db7 --- /dev/null +++ b/src/icons/uil-n-a.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNA = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H18a3,3,0,0,0-3,3v8a1,1,0,0,0,2,0V13h3v4a1,1,0,0,0,2,0V9A3,3,0,0,0,19,6Zm1,5H17V9a1,1,0,0,1,1-1h1a1,1,0,0,1,1,1ZM8,6A1,1,0,0,0,7,7v5.76L3.89,6.55A1,1,0,0,0,2,7V17a1,1,0,0,0,2,0V11.24l3.11,6.21A1,1,0,0,0,8,18a.91.91,0,0,0,.23,0A1,1,0,0,0,9,17V7A1,1,0,0,0,8,6Zm4-2a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,12,4Z' + }) + ) +} + +export default UilNA \ No newline at end of file diff --git a/src/icons/uil-navigator.ts b/src/icons/uil-navigator.ts new file mode 100644 index 00000000..e2b74373 --- /dev/null +++ b/src/icons/uil-navigator.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNavigator = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.17,9.23l-14-5.78a3,3,0,0,0-4,3.7L3.71,12,2.13,16.85A3,3,0,0,0,2.94,20a3,3,0,0,0,2,.8,3,3,0,0,0,1.15-.23l14.05-5.78a3,3,0,0,0,0-5.54ZM5.36,18.7a1,1,0,0,1-1.06-.19,1,1,0,0,1-.27-1L5.49,13H19.22ZM5.49,11,4,6.53a1,1,0,0,1,.27-1A1,1,0,0,1,5,5.22a1,1,0,0,1,.39.08L19.22,11Z' + }) + ) +} + +export default UilNavigator \ No newline at end of file diff --git a/src/icons/uil-nerd.ts b/src/icons/uil-nerd.ts new file mode 100644 index 00000000..7c3493ba --- /dev/null +++ b/src/icons/uil-nerd.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNerd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.41,8.65s0,0,0-.06A10,10,0,0,0,2.63,8.53a.85.85,0,0,0-.08.24A9.87,9.87,0,0,0,2,12,10,10,0,1,0,21.41,8.65ZM12,4a8,8,0,0,1,6.92,4h-1.2a3,3,0,0,0-4.62.22A3.17,3.17,0,0,0,12,8a3.17,3.17,0,0,0-1.1.22A3,3,0,0,0,6.28,8H5.08A8,8,0,0,1,12,4Zm4.5,6a1,1,0,1,1-1-1A1,1,0,0,1,16.5,10Zm-7,0a1,1,0,1,1-1-1A1,1,0,0,1,9.5,10ZM12,20a8,8,0,0,1-8-8,8.24,8.24,0,0,1,.26-2H5.5a3,3,0,0,0,6,.18,1,1,0,0,1,1,0,3,3,0,0,0,6-.18h1.24A8.24,8.24,0,0,1,20,12,8,8,0,0,1,12,20Zm2.36-5.77a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54Z' + }) + ) +} + +export default UilNerd \ No newline at end of file diff --git a/src/icons/uil-newspaper.ts b/src/icons/uil-newspaper.ts new file mode 100644 index 00000000..d0171f2e --- /dev/null +++ b/src/icons/uil-newspaper.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNewspaper = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,11H16a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm0,4H16a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM11,9h6a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2ZM21,3H7A1,1,0,0,0,6,4V7H3A1,1,0,0,0,2,8V18a3,3,0,0,0,3,3H18a4,4,0,0,0,4-4V4A1,1,0,0,0,21,3ZM6,18a1,1,0,0,1-2,0V9H6Zm14-1a2,2,0,0,1-2,2H7.82A3,3,0,0,0,8,18V5H20Zm-9-4h1a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm0,4h1a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilNewspaper \ No newline at end of file diff --git a/src/icons/uil-ninja.ts b/src/icons/uil-ninja.ts new file mode 100644 index 00000000..bc90a63e --- /dev/null +++ b/src/icons/uil-ninja.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNinja = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.44,5.34l-.06-.07a10,10,0,0,0-14.76,0l-.06.07A10,10,0,1,0,22,12,9.93,9.93,0,0,0,19.44,5.34ZM12,4a7.87,7.87,0,0,1,3.86,1H8.14A7.87,7.87,0,0,1,12,4ZM5.76,7H18.24a8,8,0,0,1,1.69,4H4.07A8,8,0,0,1,5.76,7ZM12,20a8,8,0,0,1-7.93-7H19.93A8,8,0,0,1,12,20ZM8,8A1,1,0,1,0,9,9,1,1,0,0,0,8,8Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,14,8Zm-3,9.93a1,1,0,0,0,.49.13,1,1,0,0,0,.87-.51A3,3,0,0,1,15,16a1,1,0,0,0,0-2,5,5,0,0,0-4.37,2.57A1,1,0,0,0,11,17.93Z' + }) + ) +} + +export default UilNinja \ No newline at end of file diff --git a/src/icons/uil-no-entry.ts b/src/icons/uil-no-entry.ts new file mode 100644 index 00000000..d5ab991f --- /dev/null +++ b/src/icons/uil-no-entry.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNoEntry = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H19.76L15.37,4.2A3,3,0,0,0,12.48,2h-1A3,3,0,0,0,8.63,4.2L4.24,20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2ZM10.56,4.73a1,1,0,0,1,1-.73h1a1,1,0,0,1,1,.73L14.35,8H9.65ZM9.09,10h5.82L16,14H8ZM6.32,20l1.11-4h9.14l1.11,4Z' + }) + ) +} + +export default UilNoEntry \ No newline at end of file diff --git a/src/icons/uil-notebooks.ts b/src/icons/uil-notebooks.ts new file mode 100644 index 00000000..13bd038f --- /dev/null +++ b/src/icons/uil-notebooks.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNotebooks = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,6a1,1,0,0,0-1,1V17a3,3,0,0,1-3,3H7a1,1,0,0,0,0,2H17a5,5,0,0,0,5-5V7A1,1,0,0,0,21,6Zm-3,9V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V15a3,3,0,0,0,3,3H15A3,3,0,0,0,18,15ZM10,4h2V8.86l-.36-.3a1,1,0,0,0-1.28,0l-.36.3ZM4,15V5A1,1,0,0,1,5,4H8v7a1,1,0,0,0,1.65.76L11,10.63l1.35,1.13A1,1,0,0,0,13,12a1.06,1.06,0,0,0,.42-.09A1,1,0,0,0,14,11V4h1a1,1,0,0,1,1,1V15a1,1,0,0,1-1,1H5A1,1,0,0,1,4,15Z' + }) + ) +} + +export default UilNotebooks \ No newline at end of file diff --git a/src/icons/uil-notes.ts b/src/icons/uil-notes.ts new file mode 100644 index 00000000..542db288 --- /dev/null +++ b/src/icons/uil-notes.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilNotes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,14H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0-4H10a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm4-6H17V3a1,1,0,0,0-2,0V4H13V3a1,1,0,0,0-2,0V4H9V3A1,1,0,0,0,7,3V4H4A1,1,0,0,0,3,5V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V5A1,1,0,0,0,20,4ZM19,19a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V6H7V7A1,1,0,0,0,9,7V6h2V7a1,1,0,0,0,2,0V6h2V7a1,1,0,0,0,2,0V6h2Z' + }) + ) +} + +export default UilNotes \ No newline at end of file diff --git a/src/icons/uil-object-group.ts b/src/icons/uil-object-group.ts new file mode 100644 index 00000000..4b3cace8 --- /dev/null +++ b/src/icons/uil-object-group.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilObjectGroup = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,10H14V8a1,1,0,0,0-1-1H8A1,1,0,0,0,7,8v5a1,1,0,0,0,1,1h2v2a1,1,0,0,0,1,1h5a1,1,0,0,0,1-1V11A1,1,0,0,0,16,10Zm-6,1v1H9V9h3v1H11A1,1,0,0,0,10,11Zm5,4H12V12h3Zm6,3.28V5.72A2,2,0,1,0,18.28,3H5.72A2,2,0,1,0,3,5.72V18.28A2,2,0,1,0,5.72,21H18.28A2,2,0,1,0,21,18.28Zm-2,0a1.91,1.91,0,0,0-.72.72H5.72A1.91,1.91,0,0,0,5,18.28V5.72A1.91,1.91,0,0,0,5.72,5H18.28a1.91,1.91,0,0,0,.72.72Z' + }) + ) +} + +export default UilObjectGroup \ No newline at end of file diff --git a/src/icons/uil-object-ungroup.ts b/src/icons/uil-object-ungroup.ts new file mode 100644 index 00000000..0b7c9854 --- /dev/null +++ b/src/icons/uil-object-ungroup.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilObjectUngroup = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18.28V11.72A2,2,0,1,0,18.28,9H15V5.72A2,2,0,1,0,12.28,3H5.72A2,2,0,1,0,3,5.72v6.56A2,2,0,1,0,5.72,15H9v3.28A2,2,0,1,0,11.72,21h6.56A2,2,0,1,0,21,18.28ZM8,10a2,2,0,0,0,1,1.72V13H5.72A1.91,1.91,0,0,0,5,12.28V5.72A1.91,1.91,0,0,0,5.72,5h6.56a1.91,1.91,0,0,0,.72.72V9H11.72A2,2,0,0,0,8,10Zm5,1v1.28a1.91,1.91,0,0,0-.72.72H11V11.72a1.91,1.91,0,0,0,.72-.72Zm6,7.28a1.91,1.91,0,0,0-.72.72H11.72a1.91,1.91,0,0,0-.72-.72V15h1.28A2,2,0,1,0,15,12.28V11h3.28a1.91,1.91,0,0,0,.72.72Z' + }) + ) +} + +export default UilObjectUngroup \ No newline at end of file diff --git a/src/icons/uil-octagon.ts b/src/icons/uil-octagon.ts new file mode 100644 index 00000000..c6e51007 --- /dev/null +++ b/src/icons/uil-octagon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOctagon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,7.57,16.44,2.29A1.05,1.05,0,0,0,15.73,2H8.27a1.05,1.05,0,0,0-.71.29L2.29,7.57a1,1,0,0,0-.29.7v7.46a1,1,0,0,0,.29.7l5.27,5.28a1.05,1.05,0,0,0,.71.29h7.46a1.05,1.05,0,0,0,.71-.29l5.27-5.28a1,1,0,0,0,.29-.7V8.27A1,1,0,0,0,21.71,7.57ZM20,15.31,15.31,20H8.69L4,15.31V8.69L8.69,4h6.62L20,8.69Z' + }) + ) +} + +export default UilOctagon \ No newline at end of file diff --git a/src/icons/uil-okta.ts b/src/icons/uil-okta.ts new file mode 100644 index 00000000..c88b8865 --- /dev/null +++ b/src/icons/uil-okta.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOkta = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 10c0 2.8-2.2 5-5 5s-5-2.2-5-5 2.2-5 5-5 5 2.2 5 5z' + }) + ) +} + +export default UilOkta \ No newline at end of file diff --git a/src/icons/uil-opera-alt.ts b/src/icons/uil-opera-alt.ts new file mode 100644 index 00000000..06514413 --- /dev/null +++ b/src/icons/uil-opera-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOperaAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.9707,5.00044c-3.64355,0-3.64355,5.12207-3.64355,6.85742,0,1.95313,0,7.14258,3.66015,7.14258,3.6543,0,3.6543-5.16211,3.6543-7.10547C15.6416,7.31977,14.40625,5.00044,11.9707,5.00044Zm.0166,12c-1.10156,0-1.66015-1.73047-1.66015-5.19531,0-2.19141.28515-4.80469,1.64355-4.80469,1.4541,0,1.6709,3.0664,1.6709,4.89453C13.6416,15.28267,13.085,17.00044,11.9873,17.00044Zm.001-16C5.93652,1.00044,1.71,5.48188,1.71,11.89888c0,5.457,3.84668,11.10156,10.28516,11.10156,6.43359,0,10.27832-5.64453,10.27832-11.10156C22.27344,5.48188,18.044,1.00044,11.98828,1.00044Zm.00684,20c-5.18653,0-8.28516-4.62793-8.28516-9.10156,0-5.32227,3.32715-8.89844,8.27832-8.89844,4.95606,0,8.28516,3.57617,8.28516,8.89844C20.27344,16.37251,17.17676,21.00044,11.99512,21.00044Z' + }) + ) +} + +export default UilOperaAlt \ No newline at end of file diff --git a/src/icons/uil-opera.ts b/src/icons/uil-opera.ts new file mode 100644 index 00000000..5cd5b801 --- /dev/null +++ b/src/icons/uil-opera.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOpera = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.9963,2c-5.462,0-9.278,3.95814-9.278,9.899,0,5.28991,3.7112,10.101,9.28549,10.101,5.56676,0,9.27787-4.81857,9.27787-10.101C21.28168,5.95814,17.45831,2,11.9963,2Zm0,18.38381c-3.39693,0-3.77107-5.01309-3.77107-8.7093V11.5997c0-3.99549.59858-8.23042,3.74864-8.23042s3.786,4.3621,3.786,8.3576C15.75987,15.42311,15.39318,20.38381,11.9963,20.38381Z' + }) + ) +} + +export default UilOpera \ No newline at end of file diff --git a/src/icons/uil-outgoing-call.ts b/src/icons/uil-outgoing-call.ts new file mode 100644 index 00000000..9ab16b89 --- /dev/null +++ b/src/icons/uil-outgoing-call.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOutgoingCall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1ZM21.86,2.68a1,1,0,0,0-.54-.54,1,1,0,0,0-.38-.08h-4a1,1,0,1,0,0,2h1.58l-3.29,3.3a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l3.3-3.29V7.06a1,1,0,0,0,2,0v-4A1,1,0,0,0,21.86,2.68Z' + }) + ) +} + +export default UilOutgoingCall \ No newline at end of file diff --git a/src/icons/uil-outline.ts b/src/icons/uil-outline.ts new file mode 100644 index 00000000..51f35edc --- /dev/null +++ b/src/icons/uil-outline.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilOutline = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.2,7.3c-1.9-0.4-3.3-2-3.4-3.9V3.1h-3.1v12.5c0,1.5-1.2,2.6-2.6,2.6c-0.8,0-1.6-0.4-2.1-1l0,0l0,0C7,16,7.2,14.3,8.4,13.4C9,13,9.5,13,10.2,13V9.8c-3.2-0.4-5.5,1.8-6,4.9c-0.2,1.8,0.3,3.5,1.6,4.8c2.2,2.3,5.9,2.3,8.2,0.1c1.1-1.1,1.7-2.6,1.7-4.1V9.2c1.3,0.9,2.8,1.4,4.4,1.4V7.4C19.8,7.4,19.5,7.4,19.2,7.3z' + }) + ) +} + +export default UilOutline \ No newline at end of file diff --git a/src/icons/uil-package.ts b/src/icons/uil-package.ts new file mode 100644 index 00000000..6c0add96 --- /dev/null +++ b/src/icons/uil-package.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPackage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM10,4h4V7.13l-1.45-1a1,1,0,0,0-1.1,0L10,7.13ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H8V9a1,1,0,0,0,.53.88,1,1,0,0,0,1-.05L12,8.2l2.45,1.63A1,1,0,0,0,16,9V4h3a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilPackage \ No newline at end of file diff --git a/src/icons/uil-padlock.ts b/src/icons/uil-padlock.ts new file mode 100644 index 00000000..d8a30457 --- /dev/null +++ b/src/icons/uil-padlock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPadlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13a1.49,1.49,0,0,0-1,2.61V17a1,1,0,0,0,2,0V15.61A1.49,1.49,0,0,0,12,13Zm5-4V7A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9ZM9,7a3,3,0,0,1,6,0V9H9Zm9,12a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilPadlock \ No newline at end of file diff --git a/src/icons/uil-pagelines.ts b/src/icons/uil-pagelines.ts new file mode 100644 index 00000000..5223acc8 --- /dev/null +++ b/src/icons/uil-pagelines.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPagelines = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.885 13.993c1.75-.901 2.282-3.35 2.282-3.35s-2.305-.99-4.055-.085a4.206 4.206 0 0 0-1.698 1.822 8.965 8.965 0 0 0 .06-.99 6.993 6.993 0 0 0 1.582-4.726C16.712 3.901 13.71 2 13.71 2s-2.442 2.583-2.095 5.35a6.819 6.819 0 0 0 2.518 4.03 9.322 9.322 0 0 1-.076 1.01 4.396 4.396 0 0 0-1.9-2.058c-1.774-.853-4.049.203-4.049.203s.603 2.432 2.376 3.284a4.72 4.72 0 0 0 3.258.076 9.433 9.433 0 0 1-1.458 2.9 4.393 4.393 0 0 0-2.012-1.98c-1.813-.763-4.028.404-4.028.404s.72 2.402 2.536 3.162a3.744 3.744 0 0 0 1.735.243 9.419 9.419 0 0 1-5.845 2.032.672.672 0 0 0 0 1.344 10.786 10.786 0 0 0 7.968-3.527 4.954 4.954 0 0 0 3.336 1.194c1.96-.207 3.34-2.299 3.34-2.299s-1.792-1.753-3.75-1.543a3.54 3.54 0 0 0-1.36.456 10.744 10.744 0 0 0 .895-2.275 5.153 5.153 0 0 0 3.786-.013Z' + }) + ) +} + +export default UilPagelines \ No newline at end of file diff --git a/src/icons/uil-pagerduty.ts b/src/icons/uil-pagerduty.ts new file mode 100644 index 00000000..9565d8b5 --- /dev/null +++ b/src/icons/uil-pagerduty.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPagerduty = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17 3c-1.6-.8-2.7-1-5.2-1H6v12.1h5.8c2.3 0 4-.1 5.5-1.1 1.6-1.1 2.6-3 2.5-5 .1-2.1-1-4-2.8-5zm-4.6 8.6H8.9v-7h3.3c3 0 4.5 1 4.5 3.4.1 2.6-1.8 3.6-4.3 3.6zM6 22h2.9v-5.3H6V22z' + }) + ) +} + +export default UilPagerduty \ No newline at end of file diff --git a/src/icons/uil-paint-tool.ts b/src/icons/uil-paint-tool.ts new file mode 100644 index 00000000..bf7f9450 --- /dev/null +++ b/src/icons/uil-paint-tool.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPaintTool = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,1H10A3,3,0,0,0,7,4H6A3,3,0,0,0,3,7v3a3,3,0,0,0,3,3h6a1,1,0,0,1,1,1v1a2,2,0,0,0-2,2v4a2,2,0,0,0,2,2h2a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2V14a3,3,0,0,0-3-3H6a1,1,0,0,1-1-1V7A1,1,0,0,1,6,6H7a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V4A3,3,0,0,0,18,1ZM15,17v4H13V17ZM19,6a1,1,0,0,1-1,1H10A1,1,0,0,1,9,6V4a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilPaintTool \ No newline at end of file diff --git a/src/icons/uil-palette.ts b/src/icons/uil-palette.ts new file mode 100644 index 00000000..436ae6b8 --- /dev/null +++ b/src/icons/uil-palette.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPalette = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.42,15.54a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,7.42,15.54Zm0-8.49a1,1,0,0,0,0,1.41,1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41A1,1,0,0,0,7.42,7.05Zm4.95,10a1,1,0,1,0,1,1A1,1,0,0,0,12.37,17Zm-6-6a1,1,0,1,0,1,1A1,1,0,0,0,6.37,11Zm6-6a1,1,0,1,0,1,1A1,1,0,0,0,12.37,5Zm3.54,2.05a1,1,0,1,0,1.41,0A1,1,0,0,0,15.91,7.05Zm6.3,0a11,11,0,1,0-7.85,15.74,3.87,3.87,0,0,0,2.5-1.65A4.2,4.2,0,0,0,17.47,18a5.65,5.65,0,0,1-.1-1,5,5,0,0,1,3-4.56,3.84,3.84,0,0,0,2.06-2.25A4,4,0,0,0,22.21,7.08Zm-1.7,2.44a1.9,1.9,0,0,1-1,1.09A7,7,0,0,0,15.37,17a7.3,7.3,0,0,0,.14,1.4,2.16,2.16,0,0,1-.31,1.65,1.79,1.79,0,0,1-1.21.8,8.72,8.72,0,0,1-1.62.15,9,9,0,0,1-9-9.28A9.05,9.05,0,0,1,11.85,3h.51a9,9,0,0,1,8.06,5A2,2,0,0,1,20.51,9.52ZM12.37,11a1,1,0,1,0,1,1A1,1,0,0,0,12.37,11Z' + }) + ) +} + +export default UilPalette \ No newline at end of file diff --git a/src/icons/uil-panel-add.ts b/src/icons/uil-panel-add.ts new file mode 100644 index 00000000..2489f795 --- /dev/null +++ b/src/icons/uil-panel-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPanelAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18 10h-4V3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v5H3a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h15a1 1 0 0 0 1-1V11a1 1 0 0 0-1-1ZM7 20H4V10h3Zm5 0H9V4h3Zm5 0h-3v-8h3Zm4-16h-1V3a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0V6h1a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilPanelAdd \ No newline at end of file diff --git a/src/icons/uil-panorama-h-alt.ts b/src/icons/uil-panorama-h-alt.ts new file mode 100644 index 00000000..11c6ad2a --- /dev/null +++ b/src/icons/uil-panorama-h-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPanoramaHAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.46,5.83A1,1,0,0,0,20.7,5l-.11,0A37.49,37.49,0,0,0,3.41,5L3.3,5a1,1,0,0,0-.76.8,35.52,35.52,0,0,0,0,12.34,1,1,0,0,0,.76.8l.11,0A37.62,37.62,0,0,0,12,20a37.62,37.62,0,0,0,8.59-1l.11,0a1,1,0,0,0,.76-.8A35.52,35.52,0,0,0,21.46,5.83ZM19.6,17.17a35.42,35.42,0,0,1-15.2,0,33.2,33.2,0,0,1,0-10.34,35.42,35.42,0,0,1,15.2,0A33.2,33.2,0,0,1,19.6,17.17Z' + }) + ) +} + +export default UilPanoramaHAlt \ No newline at end of file diff --git a/src/icons/uil-panorama-h.ts b/src/icons/uil-panorama-h.ts new file mode 100644 index 00000000..94680ce4 --- /dev/null +++ b/src/icons/uil-panorama-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPanoramaH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.54,5.16a1,1,0,0,0-1-.07A21.27,21.27,0,0,1,12,6.73,21.27,21.27,0,0,1,3.42,5.09a1,1,0,0,0-1,.07A1,1,0,0,0,2,6V18a1,1,0,0,0,.46.84,1,1,0,0,0,1,.07A21.27,21.27,0,0,1,12,17.27a21.27,21.27,0,0,1,8.58,1.64A1.06,1.06,0,0,0,21,19a1,1,0,0,0,.54-.16A1,1,0,0,0,22,18V6A1,1,0,0,0,21.54,5.16ZM20,16.52a24.77,24.77,0,0,0-8-1.25,24.77,24.77,0,0,0-8,1.25v-9a24.77,24.77,0,0,0,8,1.25,24.77,24.77,0,0,0,8-1.25Z' + }) + ) +} + +export default UilPanoramaH \ No newline at end of file diff --git a/src/icons/uil-panorama-v.ts b/src/icons/uil-panorama-v.ts new file mode 100644 index 00000000..3ffde116 --- /dev/null +++ b/src/icons/uil-panorama-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPanoramaV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.27,12a21.11,21.11,0,0,1,1.64-8.58,1,1,0,0,0-.07-1A1,1,0,0,0,18,2H6a1,1,0,0,0-.84.46,1,1,0,0,0-.07,1A21.11,21.11,0,0,1,6.73,12a21.11,21.11,0,0,1-1.64,8.58,1,1,0,0,0,.07,1A1,1,0,0,0,6,22H18a1,1,0,0,0,.84-.46,1,1,0,0,0,.07-1A21.11,21.11,0,0,1,17.27,12Zm-.75,8h-9a24.77,24.77,0,0,0,1.25-8A24.77,24.77,0,0,0,7.48,4h9a24.77,24.77,0,0,0-1.25,8A24.77,24.77,0,0,0,16.52,20Z' + }) + ) +} + +export default UilPanoramaV \ No newline at end of file diff --git a/src/icons/uil-paperclip.ts b/src/icons/uil-paperclip.ts new file mode 100644 index 00000000..1793e5d0 --- /dev/null +++ b/src/icons/uil-paperclip.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPaperclip = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.08,12.42,11.9,18.61a4.25,4.25,0,0,1-6-6l8-8a2.57,2.57,0,0,1,3.54,0,2.52,2.52,0,0,1,0,3.54l-6.9,6.89A.75.75,0,1,1,9.42,14l5.13-5.12a1,1,0,0,0-1.42-1.42L8,12.6a2.74,2.74,0,0,0,0,3.89,2.82,2.82,0,0,0,3.89,0l6.89-6.9a4.5,4.5,0,0,0-6.36-6.36l-8,8A6.25,6.25,0,0,0,13.31,20l6.19-6.18a1,1,0,1,0-1.42-1.42Z' + }) + ) +} + +export default UilPaperclip \ No newline at end of file diff --git a/src/icons/uil-paragraph.ts b/src/icons/uil-paragraph.ts new file mode 100644 index 00000000..011c4eeb --- /dev/null +++ b/src/icons/uil-paragraph.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilParagraph = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,13.5H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2Zm8-5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilParagraph \ No newline at end of file diff --git a/src/icons/uil-parcel.ts b/src/icons/uil-parcel.ts new file mode 100644 index 00000000..ce09eba2 --- /dev/null +++ b/src/icons/uil-parcel.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilParcel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,14H9a1,1,0,0,0,0-2H7a1,1,0,0,0,0,2Zm6,2H7a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM14,4V7.29l-1.51-.84a1,1,0,0,0-1,0L10,7.29V4Zm6,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H8V9a1,1,0,0,0,.5.86,1,1,0,0,0,1,0L12,8.47l2.51,1.4A1,1,0,0,0,15,10a1,1,0,0,0,1-1V4h3a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilParcel \ No newline at end of file diff --git a/src/icons/uil-parking-circle.ts b/src/icons/uil-parking-circle.ts new file mode 100644 index 00000000..cfdbc2ad --- /dev/null +++ b/src/icons/uil-parking-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilParkingCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,7H10A1,1,0,0,0,9,8v8a1,1,0,0,0,2,0V14h2a3,3,0,0,0,3-3V10A3,3,0,0,0,13,7Zm1,4a1,1,0,0,1-1,1H11V9h2a1,1,0,0,1,1,1ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilParkingCircle \ No newline at end of file diff --git a/src/icons/uil-parking-square.ts b/src/icons/uil-parking-square.ts new file mode 100644 index 00000000..e73a4e32 --- /dev/null +++ b/src/icons/uil-parking-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilParkingSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6H9A1,1,0,0,0,8,7V17a1,1,0,0,0,2,0V14h2a4,4,0,0,0,0-8Zm0,6H10V8h2a2,2,0,0,1,0,4ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilParkingSquare \ No newline at end of file diff --git a/src/icons/uil-pathfinder-unite.ts b/src/icons/uil-pathfinder-unite.ts new file mode 100644 index 00000000..dd381b02 --- /dev/null +++ b/src/icons/uil-pathfinder-unite.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPathfinderUnite = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,7.54H16.46V3a1,1,0,0,0-1-1H3A1,1,0,0,0,2,3V15.46a1,1,0,0,0,1,1H7.54V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V8.54A1,1,0,0,0,21,7.54ZM20,20H9.54V15.46a1,1,0,0,0-1-1H4V4H14.46V8.54a1,1,0,0,0,1,1H20Z' + }) + ) +} + +export default UilPathfinderUnite \ No newline at end of file diff --git a/src/icons/uil-pathfinder.ts b/src/icons/uil-pathfinder.ts new file mode 100644 index 00000000..1668776e --- /dev/null +++ b/src/icons/uil-pathfinder.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPathfinder = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4,14.46a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1H4a1,1,0,0,0,0-2ZM8.18,4h2.1a1,1,0,0,0,0-2H8.18a1,1,0,0,0,0,2Zm6.28,0a1,1,0,0,0,2,0V3a1,1,0,0,0-1-1h-1a1,1,0,0,0,0,2ZM4,2H3A1,1,0,0,0,2,3V4A1,1,0,0,0,4,4,1,1,0,0,0,4,2ZM3,11.28a1,1,0,0,0,1-1V8.18a1,1,0,0,0-2,0v2.1A1,1,0,0,0,3,11.28ZM15.82,20h-2.1a1,1,0,1,0,0,2h2.1a1,1,0,0,0,0-2ZM21,7.54H20a1,1,0,0,0,0,2,1,1,0,0,0,2,0v-1A1,1,0,0,0,21,7.54Zm0,5.18a1,1,0,0,0-1,1v2.1a1,1,0,0,0,2,0v-2.1A1,1,0,0,0,21,12.72ZM16.46,7.54a1,1,0,1,0-2,0H8.54a1,1,0,0,0-1,1v5.92a1,1,0,1,0,0,2,1,1,0,0,0,2,0h5.92a1,1,0,0,0,1-1V9.54a1,1,0,1,0,0-2Zm-2,6.92H9.54V9.54h4.92ZM21,19a1,1,0,0,0-1,1,1,1,0,0,0,0,2h1a1,1,0,0,0,1-1V20A1,1,0,0,0,21,19ZM9.54,20a1,1,0,0,0-2,0v1a1,1,0,0,0,1,1h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilPathfinder \ No newline at end of file diff --git a/src/icons/uil-pause-circle.ts b/src/icons/uil-pause-circle.ts new file mode 100644 index 00000000..6df2faeb --- /dev/null +++ b/src/icons/uil-pause-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPauseCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,7A1,1,0,0,0,9,8v8a1,1,0,0,0,2,0V8A1,1,0,0,0,10,7Zm2-5A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM14,7a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,14,7Z' + }) + ) +} + +export default UilPauseCircle \ No newline at end of file diff --git a/src/icons/uil-pause.ts b/src/icons/uil-pause.ts new file mode 100644 index 00000000..98e78168 --- /dev/null +++ b/src/icons/uil-pause.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPause = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,2a3,3,0,0,0-3,3V19a3,3,0,0,0,6,0V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-2,0V5a1,1,0,0,1,2,0ZM8,2A3,3,0,0,0,5,5V19a3,3,0,0,0,6,0V5A3,3,0,0,0,8,2ZM9,19a1,1,0,0,1-2,0V5A1,1,0,0,1,9,5Z' + }) + ) +} + +export default UilPause \ No newline at end of file diff --git a/src/icons/uil-paypal.ts b/src/icons/uil-paypal.ts new file mode 100644 index 00000000..9ac392a3 --- /dev/null +++ b/src/icons/uil-paypal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPaypal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.43705,7.10449a3.82273,3.82273,0,0,0-.57281-.5238,4.72529,4.72529,0,0,0-1.15766-3.73987C17.6226,1.61914,15.77494,1,13.2144,1H7.00053A1.89234,1.89234,0,0,0,5.13725,2.5918L2.5474,18.99805A1.53317,1.53317,0,0,0,4.063,20.7832H6.72709l-.082.52051A1.46684,1.46684,0,0,0,8.0933,23h3.23438a1.76121,1.76121,0,0,0,1.751-1.46973l.64063-4.03125.01074-.05468h.29883c4.03223,0,6.55078-1.99317,7.28516-5.7627A5.149,5.149,0,0,0,20.43705,7.10449ZM7.84233,13.7041l-.71448,4.53528-.08631.54382H4.606L7.09721,3H13.2144c1.93554,0,3.31738.4043,3.99218,1.16406a2.96675,2.96675,0,0,1,.60791,2.73334l-.01861.11224c-.01215.07648-.0232.15119-.0434.24622a5.84606,5.84606,0,0,1-2.00512,3.67053,6.67728,6.67728,0,0,1-4.21753,1.183H9.70658A1.87969,1.87969,0,0,0,7.84233,13.7041Zm11.50878-2.40527c-.55078,2.82812-2.24218,4.14551-5.32226,4.14551h-.4834a1.76109,1.76109,0,0,0-1.751,1.47265l-.64941,4.07422L8.71733,21l.47815-3.03387.61114-3.85285h1.7193c.1568,0,.29541-.02356.44812-.02893.35883-.01239.71661-.02618,1.05267-.06787.20526-.02557.39362-.07221.59034-.1087.27252-.05036.54522-.10016.80108-.17127.19037-.053.368-.12121.54907-.18561.23926-.0849.4748-.174.69757-.27868.168-.0791.32807-.16706.48658-.25727a6.77125,6.77125,0,0,0,.61236-.39172c.14228-.1026.28192-.20789.415-.321a6.56392,6.56392,0,0,0,.53693-.51892c.113-.12055.2287-.23755.33331-.36725a7.09,7.09,0,0,0,.48-.69263c.07648-.12219.16126-.23523.23163-.36383a8.33175,8.33175,0,0,0,.52075-1.15326c.00867-.02386.02106-.044.02954-.068.004-.01123.00989-.02057.01386-.03186A4.29855,4.29855,0,0,1,19.35111,11.29883Z' + }) + ) +} + +export default UilPaypal \ No newline at end of file diff --git a/src/icons/uil-pen.ts b/src/icons/uil-pen.ts new file mode 100644 index 00000000..ab5d651e --- /dev/null +++ b/src/icons/uil-pen.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,7.24a1,1,0,0,0-.29-.71L17.47,2.29A1,1,0,0,0,16.76,2a1,1,0,0,0-.71.29L13.22,5.12h0L2.29,16.05a1,1,0,0,0-.29.71V21a1,1,0,0,0,1,1H7.24A1,1,0,0,0,8,21.71L18.87,10.78h0L21.71,8a1.19,1.19,0,0,0,.22-.33,1,1,0,0,0,0-.24.7.7,0,0,0,0-.14ZM6.83,20H4V17.17l9.93-9.93,2.83,2.83ZM18.17,8.66,15.34,5.83l1.42-1.41,2.82,2.82Z' + }) + ) +} + +export default UilPen \ No newline at end of file diff --git a/src/icons/uil-pentagon.ts b/src/icons/uil-pentagon.ts new file mode 100644 index 00000000..2f90ce38 --- /dev/null +++ b/src/icons/uil-pentagon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPentagon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.59,9.17l-9-6.54a1,1,0,0,0-1.18,0l-9,6.54a1,1,0,0,0-.36,1.12L5.49,20.87a1,1,0,0,0,1,.69H17.56a1,1,0,0,0,1-.69L22,10.29A1,1,0,0,0,21.59,9.17ZM16.84,19.56H7.16l-3-9.2L12,4.68l7.82,5.68Z' + }) + ) +} + +export default UilPentagon \ No newline at end of file diff --git a/src/icons/uil-percentage.ts b/src/icons/uil-percentage.ts new file mode 100644 index 00000000..cd67c5c3 --- /dev/null +++ b/src/icons/uil-percentage.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPercentage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.75781,10.75781a3,3,0,1,0-3-3A3.00328,3.00328,0,0,0,7.75781,10.75781Zm0-4a1,1,0,1,1-1,1A1.00067,1.00067,0,0,1,7.75781,6.75781Zm8.48438,6.48438a3,3,0,1,0,3,3A3.00328,3.00328,0,0,0,16.24219,13.24219Zm0,4a1,1,0,1,1,1-1A1.00067,1.00067,0,0,1,16.24219,17.24219ZM19.707,4.293a.99962.99962,0,0,0-1.41406,0l-14,14A.99989.99989,0,1,0,5.707,19.707l14-14A.99962.99962,0,0,0,19.707,4.293Z' + }) + ) +} + +export default UilPercentage \ No newline at end of file diff --git a/src/icons/uil-phone-alt.ts b/src/icons/uil-phone-alt.ts new file mode 100644 index 00000000..eda17c92 --- /dev/null +++ b/src/icons/uil-phone-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhoneAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' + }) + ) +} + +export default UilPhoneAlt \ No newline at end of file diff --git a/src/icons/uil-phone-pause.ts b/src/icons/uil-phone-pause.ts new file mode 100644 index 00000000..8280dd8e --- /dev/null +++ b/src/icons/uil-phone-pause.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhonePause = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1,1,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1ZM19,10a1,1,0,0,0,1-1V5a1,1,0,0,0-2,0V9A1,1,0,0,0,19,10Zm-4,0a1,1,0,0,0,1-1V5a1,1,0,0,0-2,0V9A1,1,0,0,0,15,10Z' + }) + ) +} + +export default UilPhonePause \ No newline at end of file diff --git a/src/icons/uil-phone-slash.ts b/src/icons/uil-phone-slash.ts new file mode 100644 index 00000000..2c3c412b --- /dev/null +++ b/src/icons/uil-phone-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhoneSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.91,13.1a1,1,0,0,0,.85.47A1,1,0,0,0,6.61,12,17,17,0,0,1,4.14,5.15a1,1,0,0,1,.24-.81A1,1,0,0,1,5.13,4h3a1,1,0,0,1,1,.8c0,.23.08.44.13.67l0,.13a10.33,10.33,0,0,0,.47,1.54L8.34,7.8a1,1,0,0,0-.52.57,1,1,0,0,0,0,.77c.1.21.2.42.32.64a1,1,0,0,0,1.37.37,1,1,0,0,0,.5-.94L10.58,9a2,2,0,0,0,1.05-2.48,9.3,9.3,0,0,1-.39-1.3l0-.1c0-.2-.08-.4-.11-.58A3,3,0,0,0,8.16,2h-3A3,3,0,0,0,2.88,3a3,3,0,0,0-.72,2.39A19.05,19.05,0,0,0,4.91,13.1Zm14.61-.21-.6-.11-.08,0a9.31,9.31,0,0,1-1.33-.39,2,2,0,0,0-2.47,1l-.21.46a12.39,12.39,0,0,1-1.92-1.37l8.8-8.79a1,1,0,1,0-1.42-1.42l-18,18a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4.59-4.6a19.09,19.09,0,0,0,10.29,4.73,2.69,2.69,0,0,0,.4,0,3,3,0,0,0,2-.75,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.52,12.89Zm.48,6a1,1,0,0,1-.34.75,1,1,0,0,1-.81.24A17.07,17.07,0,0,1,9.71,15.7l1.77-1.77a14.69,14.69,0,0,0,3.38,2.21,1,1,0,0,0,.77,0,1,1,0,0,0,.57-.52l.62-1.41a12,12,0,0,0,1.6.47l.11,0,.69.13a1,1,0,0,1,.78,1Z' + }) + ) +} + +export default UilPhoneSlash \ No newline at end of file diff --git a/src/icons/uil-phone-times.ts b/src/icons/uil-phone-times.ts new file mode 100644 index 00000000..8d0f768d --- /dev/null +++ b/src/icons/uil-phone-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhoneTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.85,5.56l1.79-1.79a1,1,0,1,0-1.41-1.41L18.44,4.15l-1.8-1.79a1,1,0,0,0-1.41,1.41L17,5.56l-1.79,1.8a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0L18.44,7l1.79,1.79a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.06,1.06,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' + }) + ) +} + +export default UilPhoneTimes \ No newline at end of file diff --git a/src/icons/uil-phone-volume.ts b/src/icons/uil-phone-volume.ts new file mode 100644 index 00000000..4b5dc280 --- /dev/null +++ b/src/icons/uil-phone-volume.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhoneVolume = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.41,13c-.22,0-.45-.07-.67-.12a9.86,9.86,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.46a13.17,13.17,0,0,1-2.67-2,13.17,13.17,0,0,1-2-2.67l.46-.21a2,2,0,0,0,1-2.48,10.47,10.47,0,0,1-.39-1.32c-.05-.22-.09-.45-.12-.67a3,3,0,0,0-3-2.49H5a3,3,0,0,0-2.24,1,3,3,0,0,0-.73,2.4,19.07,19.07,0,0,0,5.41,11,19.07,19.07,0,0,0,11,5.41,2.56,2.56,0,0,0,.39,0,3,3,0,0,0,2-.76,3,3,0,0,0,1-2.24v-3A3,3,0,0,0,19.41,13Zm.49,6a1,1,0,0,1-.33.74,1,1,0,0,1-.82.25,17.16,17.16,0,0,1-9.87-4.84A17.16,17.16,0,0,1,4,5.25a1,1,0,0,1,.25-.82A1,1,0,0,1,5,4.1h3a1,1,0,0,1,1,.78c0,.27.09.55.15.82a11,11,0,0,0,.46,1.54l-1.4.66a1,1,0,0,0-.52.56,1,1,0,0,0,0,.76,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.56-.52l.63-1.4a12.41,12.41,0,0,0,1.58.46c.26.06.54.11.81.15a1,1,0,0,1,.78,1ZM14,2c-.23,0-.47,0-.7,0a1,1,0,0,0,.17,2L14,4a6,6,0,0,1,6,6c0,.18,0,.35,0,.53a1,1,0,0,0,.91,1.08h.08a1,1,0,0,0,1-.91c0-.23,0-.47,0-.7A8,8,0,0,0,14,2Zm2,8a1,1,0,0,0,2,0,4,4,0,0,0-4-4,1,1,0,0,0,0,2A2,2,0,0,1,16,10Z' + }) + ) +} + +export default UilPhoneVolume \ No newline at end of file diff --git a/src/icons/uil-phone.ts b/src/icons/uil-phone.ts new file mode 100644 index 00000000..f4f2cea5 --- /dev/null +++ b/src/icons/uil-phone.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPhone = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.44,13c-.22,0-.45-.07-.67-.12a9.44,9.44,0,0,1-1.31-.39,2,2,0,0,0-2.48,1l-.22.45a12.18,12.18,0,0,1-2.66-2,12.18,12.18,0,0,1-2-2.66L10.52,9a2,2,0,0,0,1-2.48,10.33,10.33,0,0,1-.39-1.31c-.05-.22-.09-.45-.12-.68a3,3,0,0,0-3-2.49h-3a3,3,0,0,0-3,3.41A19,19,0,0,0,18.53,21.91l.38,0a3,3,0,0,0,2-.76,3,3,0,0,0,1-2.25v-3A3,3,0,0,0,19.44,13Zm.5,6a1,1,0,0,1-.34.75,1.05,1.05,0,0,1-.82.25A17,17,0,0,1,4.07,5.22a1.09,1.09,0,0,1,.25-.82,1,1,0,0,1,.75-.34h3a1,1,0,0,1,1,.79q.06.41.15.81a11.12,11.12,0,0,0,.46,1.55l-1.4.65a1,1,0,0,0-.49,1.33,14.49,14.49,0,0,0,7,7,1,1,0,0,0,.76,0,1,1,0,0,0,.57-.52l.62-1.4a13.69,13.69,0,0,0,1.58.46q.4.09.81.15a1,1,0,0,1,.79,1Z' + }) + ) +} + +export default UilPhone \ No newline at end of file diff --git a/src/icons/uil-picture.ts b/src/icons/uil-picture.ts new file mode 100644 index 00000000..7543dd2d --- /dev/null +++ b/src/icons/uil-picture.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPicture = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,4a1,1,0,0,0,.71-1.7,1,1,0,0,0-1.42,0,1,1,0,0,0-.21.32A.84.84,0,0,0,19,3a1,1,0,0,0,1,1Zm0,9a1,1,0,0,0-1,1v.39l-1.48-1.48a2.77,2.77,0,0,0-3.93,0l-.7.7-2.48-2.49a2.86,2.86,0,0,0-3.93,0L5,12.6V7A1,1,0,0,1,6,6H16a1,1,0,0,0,0-2H6A3,3,0,0,0,3,7V19a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V14A1,1,0,0,0,20,13ZM6,20a1,1,0,0,1-1-1V15.43l2.9-2.9a.79.79,0,0,1,1.09,0l3.17,3.17,0,0L16.45,20Zm13-1a1,1,0,0,1-.18.53L14.31,15l.7-.7a.78.78,0,0,1,1.1,0L19,17.22ZM20,5a1,1,0,0,0-1,1v4a1,1,0,0,0,2,0V6A1,1,0,0,0,20,5Z' + }) + ) +} + +export default UilPicture \ No newline at end of file diff --git a/src/icons/uil-pizza-slice.ts b/src/icons/uil-pizza-slice.ts new file mode 100644 index 00000000..3d0f651d --- /dev/null +++ b/src/icons/uil-pizza-slice.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPizzaSlice = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.51,12.48a1,1,0,1,0,1,1A1,1,0,0,0,8.51,12.48ZM8.51,8a1,1,0,1,0,1,1A1,1,0,0,0,8.51,8ZM12,10a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V11A1,1,0,0,0,12,10Zm8.5-1.43,0,0a3,3,0,0,0-2.3-.29,2.9,2.9,0,0,0-1.09.56L5.51,2.13a1,1,0,0,0-1,0A1,1,0,0,0,4,3V16.17A2.94,2.94,0,0,0,2,19H2a3,3,0,0,0,2.92,3h.58a18.57,18.57,0,0,0,16.11-9.41A3,3,0,0,0,20.51,8.57ZM6,4.73l9.89,5.71A12.57,12.57,0,0,1,6,16Zm13.87,6.88A16.58,16.58,0,0,1,5,20a1,1,0,0,1-1-1,1,1,0,0,1,.3-.72A1,1,0,0,1,5,18h.51a14.5,14.5,0,0,0,12.62-7.37.9.9,0,0,1,.58-.44,1,1,0,0,1,.75.09h0A1,1,0,0,1,19.88,11.61Z' + }) + ) +} + +export default UilPizzaSlice \ No newline at end of file diff --git a/src/icons/uil-plane-arrival.ts b/src/icons/uil-plane-arrival.ts new file mode 100644 index 00000000..5e7eb48b --- /dev/null +++ b/src/icons/uil-plane-arrival.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlaneArrival = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.12,16.23a5,5,0,0,0-2.3-3L16.71,12l-.48-5.47a1,1,0,0,0-.49-.78l-3-1.72a1,1,0,0,0-1,0,1,1,0,0,0-.52.84l-.15,3.9-1.75-1L6.46,3.92a1,1,0,0,0-1.78.41L3.81,8.94A3,3,0,0,0,5.2,12.23l14.06,8.11A1,1,0,0,0,20.62,20,4.91,4.91,0,0,0,21.12,16.23ZM19.24,18,6.2,10.5a1,1,0,0,1-.44-1.13l.46-2.44,1.66,2.2a1,1,0,0,0,.3.27l3.35,1.94a1,1,0,0,0,1.5-.83l.16-3.9,1.09.63.48,5.47a1,1,0,0,0,.5.78L17.82,15a2.91,2.91,0,0,1,1.36,1.78A2.74,2.74,0,0,1,19.24,18Z' + }) + ) +} + +export default UilPlaneArrival \ No newline at end of file diff --git a/src/icons/uil-plane-departure.ts b/src/icons/uil-plane-departure.ts new file mode 100644 index 00000000..d821f611 --- /dev/null +++ b/src/icons/uil-plane-departure.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlaneDeparture = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,5.08A3.08,3.08,0,0,0,16.74,2.9L13.93,5.71,7.44,3.55a1,1,0,0,0-1,.24L4.06,6.15a1,1,0,0,0,.29,1.61l5.18,2.35-2.6,2.6-1.71-.86A1,1,0,0,0,4.06,12L2.29,13.81a1,1,0,0,0,0,1.41l6.49,6.49a1,1,0,0,0,1.41,0L12,19.94a1,1,0,0,0,.19-1.16l-.86-1.71,2.6-2.6,2.35,5.18a1,1,0,0,0,1.61.29l2.36-2.36a1,1,0,0,0,.24-1l-2.16-6.49L21.1,7.26A3.05,3.05,0,0,0,22,5.08Zm-2.32.77L16.44,9.09a1,1,0,0,0-.24,1l2.16,6.48-.9.9-2.35-5.17a1,1,0,0,0-.73-.57,1,1,0,0,0-.89.28L9.37,16.17a1,1,0,0,0-.19,1.15L10,19l-.56.56L4.41,14.52,5,14l1.71.86a1,1,0,0,0,1.15-.19L12,10.51a1,1,0,0,0-.29-1.62L6.5,6.54l.9-.9L13.88,7.8a1,1,0,0,0,1-.24l3.24-3.24a1.07,1.07,0,0,1,1.53,0,1,1,0,0,1,.32.76A1.06,1.06,0,0,1,19.68,5.85Z' + }) + ) +} + +export default UilPlaneDeparture \ No newline at end of file diff --git a/src/icons/uil-plane-fly.ts b/src/icons/uil-plane-fly.ts new file mode 100644 index 00000000..ec827bc1 --- /dev/null +++ b/src/icons/uil-plane-fly.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlaneFly = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M23,9.32a1.06,1.06,0,0,0-.1-.76,4.93,4.93,0,0,0-6.75-1.8L14,8,9,5.65a1,1,0,0,0-.92,0l-3,1.73a1,1,0,0,0-.5.84,1,1,0,0,0,.46.87l3.3,2.08-1.74,1-4.78.58a1,1,0,0,0-.53,1.75l3.54,3.06a3,3,0,0,0,3.55.44L22.5,9.93A1,1,0,0,0,23,9.32Zm-15.53,7a1,1,0,0,1-1.2-.18L4.37,14.51l2.73-.33a1,1,0,0,0,.38-.13l3.36-1.93a1,1,0,0,0,.5-.85,1,1,0,0,0-.47-.86L7.57,8.32l1.1-.63,5,2.32a1,1,0,0,0,.92,0l2.56-1.48a3,3,0,0,1,3.36.29Z' + }) + ) +} + +export default UilPlaneFly \ No newline at end of file diff --git a/src/icons/uil-plane.ts b/src/icons/uil-plane.ts new file mode 100644 index 00000000..49ec684f --- /dev/null +++ b/src/icons/uil-plane.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlane = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.75,12a1,1,0,0,0-.55-.89L15.08,8.05v-4a3.08,3.08,0,1,0-6.16,0v4L2.8,11.11a1,1,0,0,0-.55.89v3.33a1,1,0,0,0,.43.83,1,1,0,0,0,.92.11l5.32-2V18l-1.82.6a1,1,0,0,0-.68.95V22a1,1,0,0,0,.3.71,1,1,0,0,0,.7.29h9.17a1,1,0,0,0,1-1V19.5a1,1,0,0,0-.68-.95L15.08,18V14.28l5.32,2a1,1,0,0,0,.92-.11,1,1,0,0,0,.43-.83Zm-7.31-.1a1,1,0,0,0-.93.11,1,1,0,0,0-.43.82v5.84a1,1,0,0,0,.69.95l1.81.6V21H8.41v-.78l1.81-.6a1,1,0,0,0,.69-.95V12.83a1,1,0,0,0-.43-.82,1,1,0,0,0-.93-.11l-5.31,2V12.62l6.11-3.06a1,1,0,0,0,.56-.89V4.08a1.08,1.08,0,1,1,2.16,0V8.67a1,1,0,0,0,.56.89l6.11,3.06v1.27Z' + }) + ) +} + +export default UilPlane \ No newline at end of file diff --git a/src/icons/uil-play-circle.ts b/src/icons/uil-play-circle.ts new file mode 100644 index 00000000..e14edb0d --- /dev/null +++ b/src/icons/uil-play-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlayCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,10.27,11,7.38A2,2,0,0,0,8,9.11v5.78a2,2,0,0,0,1,1.73,2,2,0,0,0,2,0l5-2.89a2,2,0,0,0,0-3.46ZM15,12l-5,2.89V9.11L15,12ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilPlayCircle \ No newline at end of file diff --git a/src/icons/uil-play.ts b/src/icons/uil-play.ts new file mode 100644 index 00000000..c103bb91 --- /dev/null +++ b/src/icons/uil-play.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlay = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.54,9,8.88,3.46a3.42,3.42,0,0,0-5.13,3V17.58A3.42,3.42,0,0,0,7.17,21a3.43,3.43,0,0,0,1.71-.46L18.54,15a3.42,3.42,0,0,0,0-5.92Zm-1,4.19L7.88,18.81a1.44,1.44,0,0,1-1.42,0,1.42,1.42,0,0,1-.71-1.23V6.42a1.42,1.42,0,0,1,.71-1.23A1.51,1.51,0,0,1,7.17,5a1.54,1.54,0,0,1,.71.19l9.66,5.58a1.42,1.42,0,0,1,0,2.46Z' + }) + ) +} + +export default UilPlay \ No newline at end of file diff --git a/src/icons/uil-plug.ts b/src/icons/uil-plug.ts new file mode 100644 index 00000000..6087f8aa --- /dev/null +++ b/src/icons/uil-plug.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlug = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H16V3a1,1,0,0,0-2,0V6H10V3A1,1,0,0,0,8,3V6H5A1,1,0,0,0,5,8H6v5a1,1,0,0,0,.29.71L9,16.41V21a1,1,0,0,0,2,0V17h2v4a1,1,0,0,0,2,0V16.41l2.71-2.7A1,1,0,0,0,18,13V8h1a1,1,0,0,0,0-2Zm-3,6.59L13.59,15H10.41L8,12.59V8h8ZM11,13h2a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilPlug \ No newline at end of file diff --git a/src/icons/uil-plus-circle.ts b/src/icons/uil-plus-circle.ts new file mode 100644 index 00000000..1b2fc50a --- /dev/null +++ b/src/icons/uil-plus-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlusCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm4-9H13V8a1,1,0,0,0-2,0v3H8a1,1,0,0,0,0,2h3v3a1,1,0,0,0,2,0V13h3a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilPlusCircle \ No newline at end of file diff --git a/src/icons/uil-plus-square.ts b/src/icons/uil-plus-square.ts new file mode 100644 index 00000000..0f57e295 --- /dev/null +++ b/src/icons/uil-plus-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlusSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,13h2v2a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2H13V9a1,1,0,0,0-2,0v2H9a1,1,0,0,0,0,2ZM21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilPlusSquare \ No newline at end of file diff --git a/src/icons/uil-plus.ts b/src/icons/uil-plus.ts new file mode 100644 index 00000000..8d36b296 --- /dev/null +++ b/src/icons/uil-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,11H13V5a1,1,0,0,0-2,0v6H5a1,1,0,0,0,0,2h6v6a1,1,0,0,0,2,0V13h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilPlus \ No newline at end of file diff --git a/src/icons/uil-podium.ts b/src/icons/uil-podium.ts new file mode 100644 index 00000000..5a0d80ab --- /dev/null +++ b/src/icons/uil-podium.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPodium = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.79,7.13A1,1,0,0,0,19,6.75H8v-.5A2,2,0,0,1,9.46,4.33a1.5,1.5,0,0,0,1,.42h1a1.5,1.5,0,0,0,0-3h-1a1.49,1.49,0,0,0-1.17.57A4,4,0,0,0,6,6.25v.5H5a1,1,0,0,0-.79.38A1,1,0,0,0,4,8l.62,2.49A3,3,0,0,0,7.1,12.71l.78,7H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2h-.88l.78-7a3,3,0,0,0,2.45-2.23L20,8A1,1,0,0,0,19.79,7.13ZM14.1,19.75H9.9l-.78-7h5.76ZM17.41,10a1,1,0,0,1-1,.76H7.56a1,1,0,0,1-1-.76L6.28,8.75H17.72Z' + }) + ) +} + +export default UilPodium \ No newline at end of file diff --git a/src/icons/uil-polygon.ts b/src/icons/uil-polygon.ts new file mode 100644 index 00000000..ddac68f1 --- /dev/null +++ b/src/icons/uil-polygon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPolygon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.87,11.5l-4.5-7.79a1,1,0,0,0-.87-.5h-9a1,1,0,0,0-.87.5L2.13,11.5a1,1,0,0,0,0,1l4.5,7.79a1,1,0,0,0,.87.5h9a1,1,0,0,0,.87-.5l4.5-7.79A1,1,0,0,0,21.87,11.5Zm-6,7.29H8.08L4.15,12,8.08,5.21h7.84L19.85,12Z' + }) + ) +} + +export default UilPolygon \ No newline at end of file diff --git a/src/icons/uil-post-stamp.ts b/src/icons/uil-post-stamp.ts new file mode 100644 index 00000000..f41eac04 --- /dev/null +++ b/src/icons/uil-post-stamp.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPostStamp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.5,5.5a1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1,.5.5,0,0,1-1,0,1,1,0,0,0-1-1h-3a1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1,.5.5,0,0,1,0,1,1,1,0,0,0-1,1v3a1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1,.5.5,0,0,1,1,0,1,1,0,0,0,1,1h3a1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1,1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1,1,1,0,0,0,1-1v-3a1,1,0,0,0-1-1,.5.5,0,0,1,0-1Zm-1-1.79a2.5,2.5,0,0,0,0,4.58V9.71a2.5,2.5,0,0,0,0,4.58v1.42a2.5,2.5,0,0,0,0,4.58V21.5H20.29a2.5,2.5,0,0,0-4.58,0H14.29a2.5,2.5,0,0,0-4.58,0H8.29a2.5,2.5,0,0,0-4.58,0H2.5V20.29a2.5,2.5,0,0,0,0-4.58V14.29a2.5,2.5,0,0,0,0-4.58V8.29a2.5,2.5,0,0,0,0-4.58V2.5H3.71a2.5,2.5,0,0,0,4.58,0H9.71a2.5,2.5,0,0,0,4.58,0h1.42a2.5,2.5,0,0,0,4.58,0H21.5ZM12,5a7,7,0,0,0,0,14,6.93,6.93,0,0,0,3.5-.94,1,1,0,1,0-1-1.73A5,5,0,1,1,17,12v.5a.83.83,0,0,1-.83.83.84.84,0,0,1-.84-.83V9.67a1,1,0,0,0-1.78-.6A3.25,3.25,0,0,0,12,8.67a3.33,3.33,0,0,0,0,6.66,3.28,3.28,0,0,0,2.17-.82,2.84,2.84,0,0,0,4.83-2V12A7,7,0,0,0,12,5Zm0,8.33A1.33,1.33,0,1,1,13.33,12,1.32,1.32,0,0,1,12,13.33Z' + }) + ) +} + +export default UilPostStamp \ No newline at end of file diff --git a/src/icons/uil-postcard.ts b/src/icons/uil-postcard.ts new file mode 100644 index 00000000..c1019be1 --- /dev/null +++ b/src/icons/uil-postcard.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPostcard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,11h1a1,1,0,0,0,1-1V9a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v1A1,1,0,0,0,17,11ZM6,12h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2ZM22,4H2A1,1,0,0,0,1,5V19a1,1,0,0,0,1,1H22a1,1,0,0,0,1-1V5A1,1,0,0,0,22,4ZM21,18H3V6H21ZM6,16h5a1,1,0,0,0,0-2H6a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilPostcard \ No newline at end of file diff --git a/src/icons/uil-pound-circle.ts b/src/icons/uil-pound-circle.ts new file mode 100644 index 00000000..78c0eebc --- /dev/null +++ b/src/icons/uil-pound-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPoundCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,15H10.82A3,3,0,0,0,11,14V13h2.5a1,1,0,0,0,0-2H11V10a1.95,1.95,0,0,1,3.63-1,1,1,0,0,0,1.74-1A4,4,0,0,0,9,10V11H8a1,1,0,0,0,0,2H9v1a1,1,0,0,1-1,1,1,1,0,0,0,0,2h8a1,1,0,0,0,0-2ZM12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' + }) + ) +} + +export default UilPoundCircle \ No newline at end of file diff --git a/src/icons/uil-pound.ts b/src/icons/uil-pound.ts new file mode 100644 index 00000000..7e90a665 --- /dev/null +++ b/src/icons/uil-pound.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPound = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,20H8a4.92,4.92,0,0,0,1-3V14h6a1,1,0,0,0,0-2H9V8.89a4.89,4.89,0,0,1,9.13-2.44,1,1,0,0,0,1.37.36,1,1,0,0,0,.37-1.36A6.9,6.9,0,0,0,7,8.89V12H4a1,1,0,0,0,0,2H7v3a3,3,0,0,1-3,3,1,1,0,0,0,0,2H20a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilPound \ No newline at end of file diff --git a/src/icons/uil-power.ts b/src/icons/uil-power.ts new file mode 100644 index 00000000..742ff39d --- /dev/null +++ b/src/icons/uil-power.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPower = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.21,6.21l.79-.8V10a1,1,0,0,0,2,0V5.41l.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2.5,2.5a1,1,0,0,0,1.42,1.42ZM18,7.56A1,1,0,1,0,16.56,9,6.45,6.45,0,1,1,7.44,9,1,1,0,1,0,6,7.56a8.46,8.46,0,1,0,12,0Z' + }) + ) +} + +export default UilPower \ No newline at end of file diff --git a/src/icons/uil-prescription-bottle.ts b/src/icons/uil-prescription-bottle.ts new file mode 100644 index 00000000..3ae320bd --- /dev/null +++ b/src/icons/uil-prescription-bottle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPrescriptionBottle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A2,2,0,0,0,3,4V6A2,2,0,0,0,5,8V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8a2,2,0,0,0,2-2V4A2,2,0,0,0,19,2ZM17,16H11V12h6Zm0-6H10a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h7v1a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17ZM5,6V4H19V6Z' + }) + ) +} + +export default UilPrescriptionBottle \ No newline at end of file diff --git a/src/icons/uil-presentation-check.ts b/src/icons/uil-presentation-check.ts new file mode 100644 index 00000000..393fa6c5 --- /dev/null +++ b/src/icons/uil-presentation-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.29,11.71a1,1,0,0,0,1.42,0l4-4a1,1,0,1,0-1.42-1.42L11,9.59,9.71,8.29A1,1,0,0,0,8.29,9.71ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentationCheck \ No newline at end of file diff --git a/src/icons/uil-presentation-edit.ts b/src/icons/uil-presentation-edit.ts new file mode 100644 index 00000000..0b9c50d5 --- /dev/null +++ b/src/icons/uil-presentation-edit.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationEdit = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.41,13h2.42a1,1,0,0,0,.71-.29l3.58-3.58a1,1,0,0,0,0-1.41L13.7,5.32a1,1,0,0,0-1.41,0L8.71,8.9a1,1,0,0,0-.3.7V12A1,1,0,0,0,9.41,13Zm1-3L13,7.44l1,1L11.42,11h-1ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentationEdit \ No newline at end of file diff --git a/src/icons/uil-presentation-line.ts b/src/icons/uil-presentation-line.ts new file mode 100644 index 00000000..49c9b729 --- /dev/null +++ b/src/icons/uil-presentation-line.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationLine = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H20V3a1,1,0,0,0-1-1H5A1,1,0,0,0,4,3V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18ZM9,12a1,1,0,0,0,.83-.45l1.33-2,1.13,1.14a1,1,0,0,0,.81.29,1,1,0,0,0,.73-.45l2-3a1,1,0,0,0-1.66-1.1l-1.33,2L11.71,7.29A1,1,0,0,0,10.9,7a1,1,0,0,0-.73.45l-2,3a1,1,0,0,0,.28,1.38A.94.94,0,0,0,9,12Z' + }) + ) +} + +export default UilPresentationLine \ No newline at end of file diff --git a/src/icons/uil-presentation-lines-alt.ts b/src/icons/uil-presentation-lines-alt.ts new file mode 100644 index 00000000..f2db5a59 --- /dev/null +++ b/src/icons/uil-presentation-lines-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationLinesAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.17,10.55a1,1,0,0,0,.73.45,1,1,0,0,0,.81-.29l1.13-1.14,1.33,2A1,1,0,0,0,15,12a.94.94,0,0,0,.55-.17,1,1,0,0,0,.28-1.38l-2-3A1,1,0,0,0,13.1,7a1,1,0,0,0-.81.29L11.16,8.43l-1.33-2a1,1,0,1,0-1.66,1.1ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentationLinesAlt \ No newline at end of file diff --git a/src/icons/uil-presentation-minus.ts b/src/icons/uil-presentation-minus.ts new file mode 100644 index 00000000..6b37b45a --- /dev/null +++ b/src/icons/uil-presentation-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,10h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm11,4H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentationMinus \ No newline at end of file diff --git a/src/icons/uil-presentation-play.ts b/src/icons/uil-presentation-play.ts new file mode 100644 index 00000000..4d5e07ac --- /dev/null +++ b/src/icons/uil-presentation-play.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationPlay = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18ZM9.61,12.26a1.73,1.73,0,0,0,1.76,0l3-1.74a1.76,1.76,0,0,0,0-3l-3-1.74a1.73,1.73,0,0,0-1.76,0,1.71,1.71,0,0,0-.87,1.52v3.48A1.71,1.71,0,0,0,9.61,12.26Zm1.13-4.58L13,9l-2.28,1.32Z' + }) + ) +} + +export default UilPresentationPlay \ No newline at end of file diff --git a/src/icons/uil-presentation-plus.ts b/src/icons/uil-presentation-plus.ts new file mode 100644 index 00000000..5c49b38d --- /dev/null +++ b/src/icons/uil-presentation-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Zm-8-4h1v1a1,1,0,0,0,2,0V10h1a1,1,0,0,0,0-2H13V7a1,1,0,0,0-2,0V8H10a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilPresentationPlus \ No newline at end of file diff --git a/src/icons/uil-presentation-times.ts b/src/icons/uil-presentation-times.ts new file mode 100644 index 00000000..927b90fa --- /dev/null +++ b/src/icons/uil-presentation-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentationTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.29,11.71a1,1,0,0,0,1.42,0L12,10.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,9l1.3-1.29a1,1,0,1,0-1.42-1.42L12,7.59l-1.29-1.3A1,1,0,0,0,9.29,7.71L10.59,9l-1.3,1.29A1,1,0,0,0,9.29,11.71ZM21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentationTimes \ No newline at end of file diff --git a/src/icons/uil-presentation.ts b/src/icons/uil-presentation.ts new file mode 100644 index 00000000..1f597c50 --- /dev/null +++ b/src/icons/uil-presentation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPresentation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,14H20V4h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,4H4V14H3a1,1,0,0,0,0,2h8v1.15l-4.55,3A1,1,0,0,0,7,22a.94.94,0,0,0,.55-.17L11,19.55V21a1,1,0,0,0,2,0V19.55l3.45,2.28A.94.94,0,0,0,17,22a1,1,0,0,0,.55-1.83l-4.55-3V16h8a1,1,0,0,0,0-2Zm-3,0H6V4H18Z' + }) + ) +} + +export default UilPresentation \ No newline at end of file diff --git a/src/icons/uil-previous.ts b/src/icons/uil-previous.ts new file mode 100644 index 00000000..447460b8 --- /dev/null +++ b/src/icons/uil-previous.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPrevious = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.41,12l3.3-3.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0,0,1.42l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM8,7A1,1,0,0,0,7,8v8a1,1,0,0,0,2,0V8A1,1,0,0,0,8,7Z' + }) + ) +} + +export default UilPrevious \ No newline at end of file diff --git a/src/icons/uil-pricetag-alt.ts b/src/icons/uil-pricetag-alt.ts new file mode 100644 index 00000000..4750f94c --- /dev/null +++ b/src/icons/uil-pricetag-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPricetagAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,6A1,1,0,1,0,8,7,1,1,0,0,0,7,6Zm14.71,5.78L12.23,2.32A1,1,0,0,0,11.5,2h-6a1,1,0,0,0-.71.29L2.29,4.78A1,1,0,0,0,2,5.49v6a1.05,1.05,0,0,0,.29.71l9.49,9.5a1.05,1.05,0,0,0,.71.29,1,1,0,0,0,.71-.29l8.51-8.51a1,1,0,0,0,.29-.71A1.05,1.05,0,0,0,21.71,11.78Zm-9.22,7.81L4,11.09V5.9L5.9,4h5.18l8.5,8.49Z' + }) + ) +} + +export default UilPricetagAlt \ No newline at end of file diff --git a/src/icons/uil-print-slash.ts b/src/icons/uil-print-slash.ts new file mode 100644 index 00000000..3b47752b --- /dev/null +++ b/src/icons/uil-print-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPrintSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,10a1,1,0,1,0,1,1A1,1,0,0,0,7,10ZM3.71,2.29A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H6v3a1,1,0,0,0,1,1H17a1,1,0,0,0,1-1V19.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM6,15v1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H6.59l6,6H7A1,1,0,0,0,6,15Zm10,5H8V16h6.59L16,17.41ZM19,6H18V3a1,1,0,0,0-1-1H8.66a1,1,0,0,0,0,2H16V6H12.66a1,1,0,0,0,0,2H19a1,1,0,0,1,1,1v6a.37.37,0,0,1,0,.11,1,1,0,0,0,.78,1.18l.2,0a1,1,0,0,0,1-.8A2.84,2.84,0,0,0,22,15V9A3,3,0,0,0,19,6Z' + }) + ) +} + +export default UilPrintSlash \ No newline at end of file diff --git a/src/icons/uil-print.ts b/src/icons/uil-print.ts new file mode 100644 index 00000000..942cadbe --- /dev/null +++ b/src/icons/uil-print.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPrint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,10a1,1,0,1,0,1,1A1,1,0,0,0,7,10ZM19,6H18V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3H6v3a1,1,0,0,0,1,1H17a1,1,0,0,0,1-1V18h1a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM8,4h8V6H8Zm8,16H8V16h8Zm4-5a1,1,0,0,1-1,1H18V15a1,1,0,0,0-1-1H7a1,1,0,0,0-1,1v1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilPrint \ No newline at end of file diff --git a/src/icons/uil-process.ts b/src/icons/uil-process.ts new file mode 100644 index 00000000..5554c3e6 --- /dev/null +++ b/src/icons/uil-process.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilProcess = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.9917,14.502a.99974.99974,0,0,0-1,1v1.78229a7.97243,7.97243,0,0,1-2-5.28229,7.29085,7.29085,0,0,1,.05273-.87988.99992.99992,0,1,0-1.98535-.24023A9.17334,9.17334,0,0,0,1.9917,12.002a9.96434,9.96434,0,0,0,2.41687,6.5H2.9917a1,1,0,1,0,0,2h4a.98173.98173,0,0,0,.79413-.42181c.01166-.01538.02655-.0268.03741-.043.00666-.00995.00684-.02173.01306-.03186a.96576.96576,0,0,0,.106-.2583.95234.95234,0,0,0,.03143-.15589c.00287-.03088.018-.05749.018-.08911v-4A.99974.99974,0,0,0,6.9917,14.502Zm1.5-8.5H6.70923a7.9737,7.9737,0,0,1,5.28247-2,7.07475,7.07475,0,0,1,.87939.05274,1.00046,1.00046,0,0,0,.24121-1.98633A9.22717,9.22717,0,0,0,11.9917,2.002a9.96421,9.96421,0,0,0-6.5,2.41669V3.002a1,1,0,0,0-2,0v4a.95355.95355,0,0,0,.03931.19471l.00024.00122a.96893.96893,0,0,0,.14117.345l.01142.0169a.97291.97291,0,0,0,.2445.24634c.01093.008.01636.02026.02771.02789.01429.00946.03046.01246.04505.02112a.95817.95817,0,0,0,.17932.084.98784.98784,0,0,0,.26184.05285c.01733.00092.03192.01.04944.01h4a1,1,0,0,0,0-2ZM20.45215,16.80609a.96745.96745,0,0,0-.14124-.34509l-.01129-.01679a.97315.97315,0,0,0-.24469-.24646c-.01092-.00793-.01629-.02026-.02759-.02783-.0108-.00714-.02362-.00738-.0346-.0141a1.15354,1.15354,0,0,0-.40973-.13543c-.03162-.003-.0589-.01844-.09131-.01844h-4a1,1,0,0,0,0,2h1.78241a7.97338,7.97338,0,0,1-5.28241,2,7.07446,7.07446,0,0,1-.8794-.05371,1.00046,1.00046,0,0,0-.24121,1.98633,9.36538,9.36538,0,0,0,1.12061.06738,9.96425,9.96425,0,0,0,6.5-2.41668V21.002a1,1,0,0,0,2,0v-4a.95345.95345,0,0,0-.03931-.1947ZM20.9917,5.502a1,1,0,0,0,0-2h-4a.9519.9519,0,0,0-.19183.0387l-.00666.00134a.96837.96837,0,0,0-.3407.13953l-.01959.01324a.974.974,0,0,0-.2453.24378c-.00787.0108-.02.01611-.02746.02728-.00714.01074-.00739.02344-.0141.03436a1.14563,1.14563,0,0,0-.13636.41266c-.00286.03089-.018.0575-.018.08911v4a1,1,0,1,0,2,0V6.71912a7.97527,7.97527,0,0,1,2,5.28283,7.289,7.289,0,0,1-.05274.87989,1.00106,1.00106,0,0,0,.87208,1.11328,1.02916,1.02916,0,0,0,.12207.00683.99971.99971,0,0,0,.99121-.87988A9.17363,9.17363,0,0,0,21.9917,12.002a9.96411,9.96411,0,0,0-2.417-6.5Z' + }) + ) +} + +export default UilProcess \ No newline at end of file diff --git a/src/icons/uil-processor.ts b/src/icons/uil-processor.ts new file mode 100644 index 00000000..399bbed2 --- /dev/null +++ b/src/icons/uil-processor.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilProcessor = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9H10a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,14,9Zm-1,4H11V11h2Zm8,0a1,1,0,0,0,0-2H19V9h2a1,1,0,0,0,0-2H18.82A3,3,0,0,0,17,5.18V3a1,1,0,0,0-2,0V5H13V3a1,1,0,0,0-2,0V5H9V3A1,1,0,0,0,7,3V5.18A3,3,0,0,0,5.18,7H3A1,1,0,0,0,3,9H5v2H3a1,1,0,0,0,0,2H5v2H3a1,1,0,0,0,0,2H5.18A3,3,0,0,0,7,18.82V21a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V19h2v2a1,1,0,0,0,2,0V18.82A3,3,0,0,0,18.82,17H21a1,1,0,0,0,0-2H19V13Zm-4,3a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8A1,1,0,0,1,8,7h8a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilProcessor \ No newline at end of file diff --git a/src/icons/uil-programming-language.ts b/src/icons/uil-programming-language.ts new file mode 100644 index 00000000..75232256 --- /dev/null +++ b/src/icons/uil-programming-language.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilProgrammingLanguage = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,3l-3,15.1l-9.1,3l-7.9-3L2.8,14h3.4l-0.4,1.7l4.8,1.8l5.5-1.8l0.8-3.8H3.2l0.7-3.4h13.6L18,6.4H4.3L5,3H22z' + }) + ) +} + +export default UilProgrammingLanguage \ No newline at end of file diff --git a/src/icons/uil-pump.ts b/src/icons/uil-pump.ts new file mode 100644 index 00000000..51b348bd --- /dev/null +++ b/src/icons/uil-pump.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPump = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.54,6.29,19,4.75,17.59,3.34a1,1,0,0,0-1.42,1.42l1,1-.83,2.49a3,3,0,0,0,.73,3.07l2.95,3V19a1,1,0,0,1-2,0V17a3,3,0,0,0-3-3H14V5a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3h6a3,3,0,0,0,3-3V16h1a1,1,0,0,1,1,1v2a3,3,0,0,0,6,0V9.83A5,5,0,0,0,20.54,6.29ZM12,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12h8Zm0-9H4V5A1,1,0,0,1,5,4h6a1,1,0,0,1,1,1Zm8,1.42L18.46,9.88a1,1,0,0,1-.24-1l.51-1.54.39.4A3,3,0,0,1,20,9.83Z' + }) + ) +} + +export default UilPump \ No newline at end of file diff --git a/src/icons/uil-puzzle-piece.ts b/src/icons/uil-puzzle-piece.ts new file mode 100644 index 00000000..fc2598bd --- /dev/null +++ b/src/icons/uil-puzzle-piece.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilPuzzlePiece = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,22H5a3,3,0,0,1-3-3V9A3,3,0,0,1,5,6H6a4,4,0,0,1,7.3-2.18A3.86,3.86,0,0,1,14,6h3a1,1,0,0,1,1,1v3a4,4,0,0,1,2.18,7.3A3.86,3.86,0,0,1,18,18h0v3A1,1,0,0,1,17,22ZM5,8A1,1,0,0,0,4,9V19a1,1,0,0,0,1,1H16V16.82a1,1,0,0,1,.42-.82,1,1,0,0,1,.91-.13,1.77,1.77,0,0,0,1.74-.23A2,2,0,0,0,20,14.27a2,2,0,0,0-.48-1.59,1.89,1.89,0,0,0-2.17-.55,1,1,0,0,1-.91-.13,1,1,0,0,1-.42-.82V8H12.82a1,1,0,0,1-1-1.33,1.77,1.77,0,0,0-.23-1.74,1.94,1.94,0,0,0-3-.43A2,2,0,0,0,8,6a1.89,1.89,0,0,0,.13.67A1,1,0,0,1,7.18,8Z' + }) + ) +} + +export default UilPuzzlePiece \ No newline at end of file diff --git a/src/icons/uil-qrcode-scan.ts b/src/icons/uil-qrcode-scan.ts new file mode 100644 index 00000000..a09a93d7 --- /dev/null +++ b/src/icons/uil-qrcode-scan.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilQrcodeScan = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8 21H4a1 1 0 0 1-1-1v-4a1 1 0 0 0-2 0v4a3 3 0 0 0 3 3h4a1 1 0 0 0 0-2Zm14-6a1 1 0 0 0-1 1v4a1 1 0 0 1-1 1h-4a1 1 0 0 0 0 2h4a3 3 0 0 0 3-3v-4a1 1 0 0 0-1-1ZM20 1h-4a1 1 0 0 0 0 2h4a1 1 0 0 1 1 1v4a1 1 0 0 0 2 0V4a3 3 0 0 0-3-3ZM2 9a1 1 0 0 0 1-1V4a1 1 0 0 1 1-1h4a1 1 0 0 0 0-2H4a3 3 0 0 0-3 3v4a1 1 0 0 0 1 1Zm8-4H6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1ZM9 9H7V7h2Zm5 2h4a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1Zm1-4h2v2h-2Zm-5 6H6a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1Zm-1 4H7v-2h2Zm5-1a1 1 0 0 0 1-1 1 1 0 0 0 0-2h-1a1 1 0 0 0-1 1v1a1 1 0 0 0 1 1Zm4-3a1 1 0 0 0-1 1v3a1 1 0 0 0 0 2h1a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1Zm-4 4a1 1 0 1 0 1 1 1 1 0 0 0-1-1Z' + }) + ) +} + +export default UilQrcodeScan \ No newline at end of file diff --git a/src/icons/uil-question-circle.ts b/src/icons/uil-question-circle.ts new file mode 100644 index 00000000..4f707bab --- /dev/null +++ b/src/icons/uil-question-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilQuestionCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,15.29a1.58,1.58,0,0,0-.12.15.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2.84.84,0,0,0,.08.38.9.9,0,0,0,.54.54.94.94,0,0,0,.76,0,.9.9,0,0,0,.54-.54A1,1,0,0,0,13,16a1,1,0,0,0-.29-.71A1,1,0,0,0,11.29,15.29ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,7A3,3,0,0,0,9.4,8.5a1,1,0,1,0,1.73,1A1,1,0,0,1,12,9a1,1,0,0,1,0,2,1,1,0,0,0-1,1v1a1,1,0,0,0,2,0v-.18A3,3,0,0,0,12,7Z' + }) + ) +} + +export default UilQuestionCircle \ No newline at end of file diff --git a/src/icons/uil-question.ts b/src/icons/uil-question.ts new file mode 100644 index 00000000..73f729b0 --- /dev/null +++ b/src/icons/uil-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.33252,9.5A3.5001,3.5001,0,0,0,8.80127,7.75a1.00016,1.00016,0,0,0,1.73242,1A1.50266,1.50266,0,0,1,11.83252,8a1.5,1.5,0,1,1,0,3h-.00244a.94984.94984,0,0,0-.18927.0387,1.03181,1.03181,0,0,0-.19861.04065.98275.98275,0,0,0-.15552.10485,1.00813,1.00813,0,0,0-.162.10975,1.00464,1.00464,0,0,0-.11706.1737.97789.97789,0,0,0-.09668.14417,1.02252,1.02252,0,0,0-.04285.21191A.94847.94847,0,0,0,10.83252,12v1l.00232.01135.0011.49109a1.00016,1.00016,0,0,0,1,.99756h.00244a1.00006,1.00006,0,0,0,.99756-1.00244l-.00153-.66138A3.49363,3.49363,0,0,0,15.33252,9.5Zm-4.20264,6.79A1,1,0,0,0,11.82959,18a1.036,1.036,0,0,0,.71045-.29,1.01517,1.01517,0,0,0,0-1.41992A1.03425,1.03425,0,0,0,11.12988,16.29Z' + }) + ) +} + +export default UilQuestion \ No newline at end of file diff --git a/src/icons/uil-rainbow.ts b/src/icons/uil-rainbow.ts new file mode 100644 index 00000000..3c719937 --- /dev/null +++ b/src/icons/uil-rainbow.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRainbow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0A7,7,0,0,0,5,12ZM5,4A1,1,0,0,0,5,6,13,13,0,0,1,18,19a1,1,0,0,0,2,0A15,15,0,0,0,5,4ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0A11,11,0,0,0,5,8Z' + }) + ) +} + +export default UilRainbow \ No newline at end of file diff --git a/src/icons/uil-raindrops-alt.ts b/src/icons/uil-raindrops-alt.ts new file mode 100644 index 00000000..25a77f30 --- /dev/null +++ b/src/icons/uil-raindrops-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRaindropsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,7.75C9,5,6.42,3.24,6.31,3.17a1,1,0,0,0-1.12,0C5.08,3.25,2.5,5,2.5,7.75a3.25,3.25,0,0,0,6.5,0ZM5.75,9A1.25,1.25,0,0,1,4.5,7.75,3.66,3.66,0,0,1,5.75,5.3,3.61,3.61,0,0,1,7,7.75,1.25,1.25,0,0,1,5.75,9Zm6.06,1.17a1,1,0,0,0-1.12,0c-.17.12-4.19,2.9-4.19,7.08a4.75,4.75,0,0,0,9.5,0C16,13,12,10.28,11.81,10.17ZM11.25,20A2.75,2.75,0,0,1,8.5,17.25c0-2.31,1.81-4.17,2.76-5,.94.79,2.74,2.63,2.74,5A2.75,2.75,0,0,1,11.25,20ZM18.06,2.17a1,1,0,0,0-1.12,0C16.8,2.27,13.5,4.55,13.5,8a4,4,0,0,0,8,0C21.5,4.51,18.2,2.26,18.06,2.17ZM17.5,10a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,19.5,8,2,2,0,0,1,17.5,10Z' + }) + ) +} + +export default UilRaindropsAlt \ No newline at end of file diff --git a/src/icons/uil-raindrops.ts b/src/icons/uil-raindrops.ts new file mode 100644 index 00000000..3e4a5f6d --- /dev/null +++ b/src/icons/uil-raindrops.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRaindrops = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,8c0-3.49-3.3-5.74-3.44-5.83a1,1,0,0,0-1.12,0C5.8,2.27,2.5,4.55,2.5,8a4,4,0,0,0,8,0Zm-4,2a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,8.5,8,2,2,0,0,1,6.5,10ZM18.06,2.17a1,1,0,0,0-1.12,0C16.8,2.27,13.5,4.55,13.5,8a4,4,0,0,0,8,0C21.5,4.51,18.2,2.26,18.06,2.17ZM17.5,10a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72A5.39,5.39,0,0,1,19.5,8,2,2,0,0,1,17.5,10Zm-4.44,2.17a1,1,0,0,0-1.12,0c-.14.1-3.44,2.38-3.44,5.83a4,4,0,0,0,8,0C16.5,14.51,13.2,12.26,13.06,12.17ZM12.5,20a2,2,0,0,1-2-2,5.44,5.44,0,0,1,2-3.72,5.39,5.39,0,0,1,2,3.72A2,2,0,0,1,12.5,20Z' + }) + ) +} + +export default UilRaindrops \ No newline at end of file diff --git a/src/icons/uil-react.ts b/src/icons/uil-react.ts new file mode 100644 index 00000000..c5f42dac --- /dev/null +++ b/src/icons/uil-react.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilReact = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.103,10.43793a1.78593,1.78593,0,1,0,2.43957.65362A1.786,1.786,0,0,0,11.103,10.43793Zm8.0047,1.93768q-.17587-.201-.37116-.40308.13641-.14337.264-.28649c1.60583-1.80427,2.28357-3.61371,1.65558-4.70154-.60217-1.043-2.39343-1.35382-4.63593-.91779q-.33132.06482-.659.14624-.06272-.21624-.13343-.43C14.467,3.49042,13.2381,1.99921,11.98206,2,10.77765,2.00055,9.61359,3.39709,8.871,5.5575q-.10959.31969-.20276.64471-.21908-.05375-.44-.0993c-2.366-.48578-4.27167-.16584-4.89844.9226-.601,1.04376.02753,2.74982,1.52851,4.47211q.22329.25562.45922.49976c-.18542.191-.361.38189-.52465.57171-1.4646,1.698-2.05719,3.37616-1.45716,4.41541.61969,1.07348,2.49854,1.42437,4.7854.97436q.278-.05511.55292-.124.10071.35156.22095.697c.73932,2.11706,1.89685,3.46863,3.097,3.4682,1.23944-.00073,2.48194-1.45288,3.23474-3.65875.05945-.17432.11573-.35535.16907-.54175q.35514.08835.71485.1568c2.20336.41687,3.95251.089,4.55145-.951C21.28058,15.93109,20.64288,14.12933,19.10767,12.37561ZM4.07019,7.45184c.38586-.67,1.94324-.93139,3.98608-.512q.19584.04027.39838.09a20.464,20.464,0,0,0-.42126,2.67767,20.88659,20.88659,0,0,0-2.10389,1.6936q-.21945-.22695-.42718-.4649l.00006.00006C4.21631,9.46057,3.708,8.08081,4.07019,7.45184Zm3.88666,5.72809c-.51056-.3866-.98505-.78265-1.41571-1.181.43036-.39587.90515-.79059,1.41467-1.17615q-.02746.58915-.02722,1.1792Q7.929,12.59117,7.95685,13.17993Zm-.00061,3.94061a7.23675,7.23675,0,0,1-2.63971.09314,1.766,1.766,0,0,1-1.241-.65631c-.36407-.63067.11176-1.978,1.36432-3.43023q.23621-.273.48791-.53174a20.49026,20.49026,0,0,0,2.10712,1.70007,20.80226,20.80226,0,0,0,.42621,2.712Q8.21011,17.07023,7.95624,17.12054Zm7.10113-8.03936q-.50309-.317-1.01861-.61365-.5073-.292-1.0268-.56207c.593-.24933,1.17591-.46228,1.73865-.63581A18.21775,18.21775,0,0,1,15.05737,9.08118ZM9.679,5.83521c.63623-1.85114,1.57763-2.98053,2.30352-2.98084.77308-.00037,1.77753,1.21826,2.43433,3.19763q.064.19355.121.38928a20.478,20.478,0,0,0-2.52716.9712,20.06145,20.06145,0,0,0-2.519-.98194Q9.578,6.13062,9.679,5.83521ZM9.27863,7.259a18.30717,18.30717,0,0,1,1.72967.642Q9.95746,8.4433,8.96094,9.0824C9.0412,8.4444,9.148,7.83313,9.27863,7.259ZM8.9624,14.91968q.49695.31813,1.00843.61273.52174.30039,1.05737.57556a18.19577,18.19577,0,0,1-1.74445.66492C9.15161,16.1908,9.04364,15.56879,8.9624,14.91968Zm5.45569,3.14551A7.23556,7.23556,0,0,1,13.18,20.39844l-.00006.00006a1.76585,1.76585,0,0,1-1.18841.747c-.72821.00042-1.65766-1.085-2.28992-2.89545q-.11169-.32108-.20551-.648a20.10863,20.10863,0,0,0,2.52918-1.0097,20.79976,20.79976,0,0,0,2.54736.97851Q14.50141,17.81983,14.41809,18.06519Zm.36224-1.32422c-.56921-.176-1.16058-.39252-1.76214-.64551q.50867-.2677,1.02472-.56543.52955-.30579,1.0321-.62689A18.1524,18.1524,0,0,1,14.78033,16.741Zm.44629-4.74268q.00111.91095-.05688,1.82044c-.49268.33343-1.01282.659-1.554.97143-.53894.31116-1.07293.59711-1.59674.8559q-.82682-.39624-1.62176-.854-.79047-.455-1.54468-.969-.06894-.90921-.06946-1.82172l.00012.00019q-.00063-.91187.06794-1.82184c.49255-.33637,1.00891-.66168,1.54278-.96991.53632-.30969,1.077-.59442,1.61469-.85248q.81664.39688,1.60382.85065.78992.454,1.549.95868.06519.91443.06524,1.83166Zm.95673-5.09283c1.92133-.37372,3.37-.12232,3.73291.50622.3866.66962-.16748,2.1485-1.55383,3.70636l-.00006.00006q-.1149.12891-.23841.25891A20.06118,20.06118,0,0,0,15.98,9.68915a20.04054,20.04054,0,0,0-.40546-2.64893Q15.88486,6.96387,16.18335,6.90546Zm-.12988,3.8847A18.16447,18.16447,0,0,1,17.51483,11.978a18.11912,18.11912,0,0,1-1.45672,1.20831q.02325-.59391.02288-1.18842Q16.08072,11.39389,16.05347,10.79016Zm3.8681,5.78876c-.36346.63116-1.76788.89435-3.65222.53784q-.32391-.06115-.66474-.14557a20.069,20.069,0,0,0,.38746-2.68176,19.93914,19.93914,0,0,0,2.13708-1.71588q.17643.18329.33563.36487v-.00007a7.23437,7.23437,0,0,1,1.40308,2.23792A1.76563,1.76563,0,0,1,19.92157,16.57892Z' + }) + ) +} + +export default UilReact \ No newline at end of file diff --git a/src/icons/uil-receipt-alt.ts b/src/icons/uil-receipt-alt.ts new file mode 100644 index 00000000..0c06d0d1 --- /dev/null +++ b/src/icons/uil-receipt-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilReceiptAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,8h6a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2ZM8,12h8a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm0,4h8a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2ZM20,2H4A1,1,0,0,0,3,3V21a1,1,0,0,0,1.6.8l2.07-1.55L8.73,21.8a1,1,0,0,0,1.2,0L12,20.25l2.07,1.55a1,1,0,0,0,1.2,0l2.06-1.55L19.4,21.8a1,1,0,0,0,1.05.09A1,1,0,0,0,21,21V3A1,1,0,0,0,20,2ZM19,19l-1.07-.8a1,1,0,0,0-1.2,0l-2.06,1.55L12.6,18.2a1,1,0,0,0-1.2,0L9.33,19.75,7.27,18.2a1,1,0,0,0-1.2,0L5,19V4H19Z' + }) + ) +} + +export default UilReceiptAlt \ No newline at end of file diff --git a/src/icons/uil-receipt.ts b/src/icons/uil-receipt.ts new file mode 100644 index 00000000..0041f184 --- /dev/null +++ b/src/icons/uil-receipt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilReceipt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,12H7a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2ZM8,10h4a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Zm1,6H7a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm12-4H18V3a1,1,0,0,0-.5-.87,1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0l-3,1.72-3-1.72a1,1,0,0,0-1,0A1,1,0,0,0,2,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12ZM5,20a1,1,0,0,1-1-1V4.73L6,5.87a1.08,1.08,0,0,0,1,0l3-1.72,3,1.72a1.08,1.08,0,0,0,1,0l2-1.14V19a3,3,0,0,0,.18,1Zm15-1a1,1,0,0,1-2,0V14h2Zm-6.44-2.83a.76.76,0,0,0-.18-.09.6.6,0,0,0-.19-.06,1,1,0,0,0-.9.27A1.05,1.05,0,0,0,12,17a1,1,0,0,0,.07.38,1.19,1.19,0,0,0,.22.33,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,1.15,1.15,0,0,0,.33-.21A1,1,0,0,0,14,17a1.05,1.05,0,0,0-.29-.71A1.58,1.58,0,0,0,13.56,16.17Zm.14-3.88a1,1,0,0,0-1.62.33A1,1,0,0,0,13,14a1,1,0,0,0,1-1,1,1,0,0,0-.08-.38A.91.91,0,0,0,13.7,12.29Z' + }) + ) +} + +export default UilReceipt \ No newline at end of file diff --git a/src/icons/uil-record-audio.ts b/src/icons/uil-record-audio.ts new file mode 100644 index 00000000..dae3eadc --- /dev/null +++ b/src/icons/uil-record-audio.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRecordAudio = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM12,6a6,6,0,1,0,6,6A6,6,0,0,0,12,6Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' + }) + ) +} + +export default UilRecordAudio \ No newline at end of file diff --git a/src/icons/uil-reddit-alien-alt.ts b/src/icons/uil-reddit-alien-alt.ts new file mode 100644 index 00000000..2aa9646e --- /dev/null +++ b/src/icons/uil-reddit-alien-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRedditAlienAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.41016,16.86719A3.375,3.375,0,0,1,12.042,17.5a3.36829,3.36829,0,0,1-2.36523-.63184,1.00059,1.00059,0,0,0-1.416,1.41407A5.11054,5.11054,0,0,0,12.042,19.5a5.12,5.12,0,0,0,3.78223-1.2168,1.00058,1.00058,0,1,0-1.41406-1.416ZM9.2005,15.00165a1,1,0,1,0-1.0003-.9997A1.00079,1.00079,0,0,0,9.2005,15.00165Zm6-2a1,1,0,1,0,.9997,1.0003A1.00138,1.00138,0,0,0,15.2005,13.00165ZM23,11.78027a3.77157,3.77157,0,0,0-6.794-2.26471,16.50461,16.50461,0,0,0-3.05005-.47851l.85578-5.705,2.08752.70984a2.99694,2.99694,0,0,0,5.99353-.06433V3.95508a3.02886,3.02886,0,0,0-3-2.95508,2.97689,2.97689,0,0,0-2.33209,1.155L13.52246,1.05371a.999.999,0,0,0-1.31152.79785L11.13446,9.027A16.66426,16.66426,0,0,0,7.794,9.51556a3.76753,3.76753,0,0,0-6.22492,4.23487A4.86206,4.86206,0,0,0,1,16c0,3.9248,4.832,7,11,7s11-3.0752,11-7a4.86217,4.86217,0,0,0-.56866-2.2489A3.78344,3.78344,0,0,0,23,11.78027ZM19.09277,3a1,1,0,1,1-1,1A1.01672,1.01672,0,0,1,19.09277,3ZM4.78027,10a1.75976,1.75976,0,0,1,.88172.24951A9.97889,9.97889,0,0,0,3.0141,11.9234c-.004-.04785-.0141-.095-.0141-.14313A1.78255,1.78255,0,0,1,4.78027,10ZM12,21c-4.87891,0-9-2.29-9-5s4.12109-5,9-5,9,2.29,9,5S16.87891,21,12,21Zm8.9859-9.07654A9.97805,9.97805,0,0,0,18.338,10.24951,1.75993,1.75993,0,0,1,19.21973,10,1.78255,1.78255,0,0,1,21,11.78027C21,11.82837,20.98993,11.87561,20.9859,11.92346Z' + }) + ) +} + +export default UilRedditAlienAlt \ No newline at end of file diff --git a/src/icons/uil-redo.ts b/src/icons/uil-redo.ts new file mode 100644 index 00000000..f15637c8 --- /dev/null +++ b/src/icons/uil-redo.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRedo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11a1,1,0,0,0-1,1,8.05,8.05,0,1,1-2.22-5.5h-2.4a1,1,0,0,0,0,2h4.53a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4.77A10,10,0,1,0,22,12,1,1,0,0,0,21,11Z' + }) + ) +} + +export default UilRedo \ No newline at end of file diff --git a/src/icons/uil-refresh.ts b/src/icons/uil-refresh.ts new file mode 100644 index 00000000..ad2d8e1f --- /dev/null +++ b/src/icons/uil-refresh.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRefresh = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.91,15.51H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM15,12a3,3,0,1,0-3,3A3,3,0,0,0,15,12Zm-4,0a1,1,0,1,1,1,1A1,1,0,0,1,11,12ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Z' + }) + ) +} + +export default UilRefresh \ No newline at end of file diff --git a/src/icons/uil-registered.ts b/src/icons/uil-registered.ts new file mode 100644 index 00000000..4e60e381 --- /dev/null +++ b/src/icons/uil-registered.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRegistered = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm.5-13h-3a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V14h2a1,1,0,0,1,1,1v1a1,1,0,0,0,2,0V15a3,3,0,0,0-.78-2,3,3,0,0,0,.78-2V10A3,3,0,0,0,12.5,7Zm1,4a1,1,0,0,1-1,1h-2V9h2a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilRegistered \ No newline at end of file diff --git a/src/icons/uil-repeat.ts b/src/icons/uil-repeat.ts new file mode 100644 index 00000000..fbc79ca5 --- /dev/null +++ b/src/icons/uil-repeat.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRepeat = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.5,17.5H4V6.5h7.8L11,7.29a1,1,0,0,0,1.41,1.42l2.5-2.5a1,1,0,0,0,0-1.42l-2.5-2.5a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.79.79H3a1,1,0,0,0-1,1v13a1,1,0,0,0,1,1H5.5a1,1,0,0,0,0-2ZM21,4.5H18.5a1,1,0,0,0,0,2H20v11H11.63l.79-.79a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0l-2.5,2.5a1,1,0,0,0,0,1.42l2.5,2.5a1,1,0,0,0,1.41-1.42l-.79-.79H21a1,1,0,0,0,1-1V5.5A1,1,0,0,0,21,4.5Z' + }) + ) +} + +export default UilRepeat \ No newline at end of file diff --git a/src/icons/uil-restaurant.ts b/src/icons/uil-restaurant.ts new file mode 100644 index 00000000..174c599b --- /dev/null +++ b/src/icons/uil-restaurant.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRestaurant = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.84,11.63A3,3,0,0,0,19,10.75l2.83-2.83a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L17.55,9.33a1,1,0,0,1-1.42,0h0L19.67,5.8a1,1,0,1,0-1.42-1.42L14.72,7.92a1,1,0,0,1,0-1.41l2.83-2.83a1,1,0,1,0-1.42-1.42L13.3,5.09a3,3,0,0,0,0,4.24h0L12,10.62,3.73,2.32l-.1-.06a.71.71,0,0,0-.17-.11l-.18-.07L3.16,2H3.09l-.2,0a.57.57,0,0,0-.18,0,.7.7,0,0,0-.17.09l-.16.1-.07,0-.06.1a1,1,0,0,0-.11.17,1.07,1.07,0,0,0-.07.19s0,.07,0,.11a11,11,0,0,0,3.11,9.34l2.64,2.63-5.41,5.4a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29L9.9,15.57h0l2.83-2.83h0l2-2A3,3,0,0,0,16.84,11.63ZM9.19,13.45,6.56,10.81A9.06,9.06,0,0,1,4,5.4L10.61,12Zm6.24.57A1,1,0,0,0,14,15.44l6.3,6.3A1,1,0,0,0,21,22a1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilRestaurant \ No newline at end of file diff --git a/src/icons/uil-right-indent-alt.ts b/src/icons/uil-right-indent-alt.ts new file mode 100644 index 00000000..caccb5de --- /dev/null +++ b/src/icons/uil-right-indent-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRightIndentAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.64,9.56A1,1,0,1,0,2.36,11.1l1.08.9-1.08.9a1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.13l2-1.67a1,1,0,0,0,0-1.54ZM9,5A1,1,0,0,0,8,6V18a1,1,0,0,0,2,0V6A1,1,0,0,0,9,5Zm4,2h8a1,1,0,0,0,0-2H13a1,1,0,0,0,0,2Zm8,10H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0-8H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Zm0,4H13a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilRightIndentAlt \ No newline at end of file diff --git a/src/icons/uil-right-to-left-text-direction.ts b/src/icons/uil-right-to-left-text-direction.ts new file mode 100644 index 00000000..89026ec8 --- /dev/null +++ b/src/icons/uil-right-to-left-text-direction.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRightToLeftTextDirection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,17H5.91l1.3-1.29a1,1,0,0,0-1.42-1.42l-3,3a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l3,3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L5.91,19H20.5a1,1,0,0,0,0-2Zm-9-7v4a1,1,0,0,0,2,0V4h2V14a1,1,0,0,0,2,0V4h1a1,1,0,0,0,0-2h-7a4,4,0,0,0,0,8Zm0-6V8a2,2,0,0,1,0-4Z' + }) + ) +} + +export default UilRightToLeftTextDirection \ No newline at end of file diff --git a/src/icons/uil-robot.ts b/src/icons/uil-robot.ts new file mode 100644 index 00000000..46f757f3 --- /dev/null +++ b/src/icons/uil-robot.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRobot = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,15a1,1,0,1,0,1,1A1,1,0,0,0,9,15ZM2,14a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,2,14Zm20,0a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V15A1,1,0,0,0,22,14ZM17,7H13V5.72A2,2,0,0,0,14,4a2,2,0,0,0-4,0,2,2,0,0,0,1,1.72V7H7a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V10A3,3,0,0,0,17,7ZM13.72,9l-.5,2H10.78l-.5-2ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H8.22L9,12.24A1,1,0,0,0,10,13h4a1,1,0,0,0,1-.76L15.78,9H17a1,1,0,0,1,1,1Zm-3-4a1,1,0,1,0,1,1A1,1,0,0,0,15,15Z' + }) + ) +} + +export default UilRobot \ No newline at end of file diff --git a/src/icons/uil-rocket.ts b/src/icons/uil-rocket.ts new file mode 100644 index 00000000..4933b281 --- /dev/null +++ b/src/icons/uil-rocket.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRocket = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.601 2.062a1 1 0 0 0-.713-.713A11.252 11.252 0 0 0 10.47 4.972L9.354 6.296 6.75 5.668a2.777 2.777 0 0 0-3.387 1.357l-2.2 3.9a1 1 0 0 0 .661 1.469l3.073.659a13.42 13.42 0 0 0-.555 2.434 1 1 0 0 0 .284.836l3.1 3.1a1 1 0 0 0 .708.293c.028 0 .057-.001.086-.004a12.169 12.169 0 0 0 2.492-.49l.644 3.004a1 1 0 0 0 1.469.661l3.905-2.202a3.035 3.035 0 0 0 1.375-3.304l-.668-2.76 1.237-1.137A11.204 11.204 0 0 0 22.6 2.062ZM3.572 10.723l1.556-2.76a.826.826 0 0 1 1.07-.375l1.718.416-.65.772a13.095 13.095 0 0 0-1.59 2.398Zm12.47 8.222-2.715 1.532-.43-2.005a11.34 11.34 0 0 0 2.414-1.62l.743-.683.404 1.664a1.041 1.041 0 0 1-.416 1.112Zm1.615-6.965-3.685 3.386a9.773 9.773 0 0 1-5.17 2.304l-2.405-2.404a10.932 10.932 0 0 1 2.401-5.206l1.679-1.993a.964.964 0 0 0 .078-.092L11.99 6.27a9.278 9.278 0 0 1 8.81-3.12 9.218 9.218 0 0 1-3.143 8.829Zm-.923-6.164a1.5 1.5 0 1 0 1.5 1.5 1.5 1.5 0 0 0-1.5-1.5Z' + }) + ) +} + +export default UilRocket \ No newline at end of file diff --git a/src/icons/uil-rope-way.ts b/src/icons/uil-rope-way.ts new file mode 100644 index 00000000..7c6a0698 --- /dev/null +++ b/src/icons/uil-rope-way.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRopeWay = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6.5H13V4h4.62a1,1,0,0,0,0-2H6.38a1,1,0,1,0,0,2H11V6.5H5a3,3,0,0,0-3,3V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9.5A3,3,0,0,0,19,6.5ZM11,20H5a1,1,0,0,1-1-1V15.25h7a.5.5,0,0,0,0,.13v4.5A.53.53,0,0,0,11,20Zm9-1a1,1,0,0,1-1,1H13a.53.53,0,0,0,0-.12v-4.5a.5.5,0,0,0,0-.13h7Zm0-5.75H4V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilRopeWay \ No newline at end of file diff --git a/src/icons/uil-rotate-360.ts b/src/icons/uil-rotate-360.ts new file mode 100644 index 00000000..28bc950d --- /dev/null +++ b/src/icons/uil-rotate-360.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRotate360 = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6C6.3,6,2,8.15,2,11c0,2.45,3.19,4.38,7.71,4.88l-.42.41a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-2-2a1,1,0,0,0-1.42,1.42l.12.11C6,13.34,4,12,4,11c0-1.22,3.12-3,8-3s8,1.78,8,3c0,.83-1.45,2-4.21,2.6A1,1,0,0,0,15,14.79a1,1,0,0,0,1.19.77C19.84,14.76,22,13.06,22,11,22,8.15,17.7,6,12,6Z' + }) + ) +} + +export default UilRotate360 \ No newline at end of file diff --git a/src/icons/uil-rss-alt.ts b/src/icons/uil-rss-alt.ts new file mode 100644 index 00000000..cbb7aace --- /dev/null +++ b/src/icons/uil-rss-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRssAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.88,16.88a3,3,0,1,0,4.24,4.24h0a3,3,0,0,0,0-4.24A3.08,3.08,0,0,0,2.88,16.88Zm2.83,2.83h0a1,1,0,0,1-1.42,0,1,1,0,0,1,0-1.42,1,1,0,0,1,1.42,0A1,1,0,0,1,5.71,19.71ZM5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0A7,7,0,0,0,5,12ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0A11,11,0,0,0,5,8Z' + }) + ) +} + +export default UilRssAlt \ No newline at end of file diff --git a/src/icons/uil-rss-interface.ts b/src/icons/uil-rss-interface.ts new file mode 100644 index 00000000..60c7d849 --- /dev/null +++ b/src/icons/uil-rss-interface.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRssInterface = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,14a1,1,0,0,0,0,2,3,3,0,0,1,3,3,1,1,0,0,0,2,0A5,5,0,0,0,3,14Zm-.71,4.29a1,1,0,1,0,1.42,0A1,1,0,0,0,2.29,18.29ZM19,4H5A3,3,0,0,0,2,7,1,1,0,0,0,4,7,1,1,0,0,1,5,6H19a1,1,0,0,1,1,1V17a1,1,0,0,1-1,1H15a1,1,0,0,0,0,2h4a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM3,10a1,1,0,0,0,0,2,7,7,0,0,1,7,7,1,1,0,0,0,2,0A9,9,0,0,0,3,10Z' + }) + ) +} + +export default UilRssInterface \ No newline at end of file diff --git a/src/icons/uil-rss.ts b/src/icons/uil-rss.ts new file mode 100644 index 00000000..ff26c8eb --- /dev/null +++ b/src/icons/uil-rss.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRss = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.88,16.88a3,3,0,0,0,0,4.24,3,3,0,0,0,4.24,0,3,3,0,0,0-4.24-4.24Zm2.83,2.83a1,1,0,0,1-1.42-1.42,1,1,0,0,1,1.42,0A1,1,0,0,1,5.71,19.71ZM5,12a1,1,0,0,0,0,2,5,5,0,0,1,5,5,1,1,0,0,0,2,0,7,7,0,0,0-7-7ZM5,8a1,1,0,0,0,0,2,9,9,0,0,1,9,9,1,1,0,0,0,2,0,11.08,11.08,0,0,0-3.22-7.78A11.08,11.08,0,0,0,5,8Zm10.61.39A15.11,15.11,0,0,0,5,4,1,1,0,0,0,5,6,13,13,0,0,1,18,19a1,1,0,0,0,2,0A15.11,15.11,0,0,0,15.61,8.39Z' + }) + ) +} + +export default UilRss \ No newline at end of file diff --git a/src/icons/uil-ruler-combined.ts b/src/icons/uil-ruler-combined.ts new file mode 100644 index 00000000..a169e510 --- /dev/null +++ b/src/icons/uil-ruler-combined.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRulerCombined = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H9a1,1,0,0,0,1-1V10H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,8H18V7a1,1,0,0,0-2,0V8H14V7a1,1,0,0,0-2,0V8H10V7A1,1,0,0,0,8,7V8H7a1,1,0,0,0,0,2H8v2H7a1,1,0,0,0,0,2H8v2H7a1,1,0,0,0,0,2H8v2H4V4H20Z' + }) + ) +} + +export default UilRulerCombined \ No newline at end of file diff --git a/src/icons/uil-ruler.ts b/src/icons/uil-ruler.ts new file mode 100644 index 00000000..cab29062 --- /dev/null +++ b/src/icons/uil-ruler.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRuler = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.61,7.05,17,1.39a1,1,0,0,0-.71-.29,1,1,0,0,0-.7.29L1.39,15.54a1,1,0,0,0,0,1.41l5.66,5.66a1,1,0,0,0,.71.29,1,1,0,0,0,.7-.29l2.83-2.83h0l8.49-8.49h0l2.83-2.83A1,1,0,0,0,22.61,7.05ZM19.07,9.17l-.71-.71a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42l.71.71L16.24,12,14.12,9.88a1,1,0,0,0-1.41,1.41l2.12,2.12-1.42,1.42-.7-.71a1,1,0,1,0-1.42,1.42l.71.7-1.41,1.42L8.46,15.54a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.41l2.12,2.12L7.76,20.49,3.51,16.24,16.24,3.51l4.25,4.25Z' + }) + ) +} + +export default UilRuler \ No newline at end of file diff --git a/src/icons/uil-rupee-sign.ts b/src/icons/uil-rupee-sign.ts new file mode 100644 index 00000000..21e4684d --- /dev/null +++ b/src/icons/uil-rupee-sign.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilRupeeSign = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18 7h-2.21a5.49 5.49 0 0 0-1-2H18a1 1 0 0 0 0-2H7a1 1 0 0 0 0 2h3.5a3.5 3.5 0 0 1 3.15 2H7a1 1 0 0 0 0 2h7a3.5 3.5 0 0 1-3.45 3H7a.7.7 0 0 0-.14 0 .65.65 0 0 0-.2 0 .69.69 0 0 0-.19.1l-.12.07a.75.75 0 0 0-.14.17 1.1 1.1 0 0 0-.09.14.61.61 0 0 0 0 .18A.65.65 0 0 0 6 13a.7.7 0 0 0 0 .14.65.65 0 0 0 0 .2.69.69 0 0 0 .1.19s0 .08.07.12l6 7a1 1 0 0 0 1.52-1.3L9.18 14h1.32A5.5 5.5 0 0 0 16 9h2a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilRupeeSign \ No newline at end of file diff --git a/src/icons/uil-sad-cry.ts b/src/icons/uil-sad-cry.ts new file mode 100644 index 00000000..91b68bba --- /dev/null +++ b/src/icons/uil-sad-cry.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSadCry = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,8.59,21.39l.06,0a9.81,9.81,0,0,0,6.7,0l.06,0A10,10,0,0,0,12,2Zm2,17.74a7.82,7.82,0,0,1-4,0V16h4Zm2-.82V11a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2v3H10V11a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2v7.92a8,8,0,1,1,8,0Z' + }) + ) +} + +export default UilSadCry \ No newline at end of file diff --git a/src/icons/uil-sad-crying.ts b/src/icons/uil-sad-crying.ts new file mode 100644 index 00000000..2760bd58 --- /dev/null +++ b/src/icons/uil-sad-crying.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSadCrying = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,8.59,21.39l.06,0a9.81,9.81,0,0,0,6.7,0l.06,0A10,10,0,0,0,12,2Zm2,17.74a7.82,7.82,0,0,1-4,0V16.61a3.79,3.79,0,0,1,4,0Zm2-.82V11a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2v3.39a6,6,0,0,0-4,0V11a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2v7.92a8,8,0,1,1,8,0Z' + }) + ) +} + +export default UilSadCrying \ No newline at end of file diff --git a/src/icons/uil-sad-dizzy.ts b/src/icons/uil-sad-dizzy.ts new file mode 100644 index 00000000..974b8c0f --- /dev/null +++ b/src/icons/uil-sad-dizzy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSadDizzy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0Zm-.6,3.62a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' + }) + ) +} + +export default UilSadDizzy \ No newline at end of file diff --git a/src/icons/uil-sad-squint.ts b/src/icons/uil-sad-squint.ts new file mode 100644 index 00000000..576c3fd9 --- /dev/null +++ b/src/icons/uil-sad-squint.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSadSquint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.08,12.21l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21Zm-.72,3.12a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,1.41-.13,1,1,0,0,0-.13-1.4A5.81,5.81,0,0,0,8.36,15.33Zm8.22-7.54a1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0,0,1.42l1.5,1.5a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79A1,1,0,0,0,16.58,7.79ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSadSquint \ No newline at end of file diff --git a/src/icons/uil-sad.ts b/src/icons/uil-sad.ts new file mode 100644 index 00000000..b6a341a8 --- /dev/null +++ b/src/icons/uil-sad.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSad = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.36,15.33a1,1,0,0,0-.13,1.4,1,1,0,0,0,1.41.13,3.76,3.76,0,0,1,4.72,0,1,1,0,0,0,.64.23,1,1,0,0,0,.64-1.76A5.81,5.81,0,0,0,8.36,15.33Zm.85-4.79a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13Z' + }) + ) +} + +export default UilSad \ No newline at end of file diff --git a/src/icons/uil-sanitizer-alt.ts b/src/icons/uil-sanitizer-alt.ts new file mode 100644 index 00000000..bf6fa4c4 --- /dev/null +++ b/src/icons/uil-sanitizer-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSanitizerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14 15h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Zm2-7V5a1 1 0 0 0-1-1h-1V3h1a1 1 0 0 0 0-2h-4.764a4.593 4.593 0 0 0-4.13 2.553 1 1 0 0 0 1.789.894A2.603 2.603 0 0 1 10.235 3H12v1h-1a1 1 0 0 0-1 1v3a3.003 3.003 0 0 0-3 3v9a3.003 3.003 0 0 0 3 3h6a3.003 3.003 0 0 0 3-3v-9a3.003 3.003 0 0 0-3-3Zm-4-2h2v2h-2Zm5 14a1.001 1.001 0 0 1-1 1h-6a1.001 1.001 0 0 1-1-1v-9a1.001 1.001 0 0 1 1-1h6a1.001 1.001 0 0 1 1 1Z' + }) + ) +} + +export default UilSanitizerAlt \ No newline at end of file diff --git a/src/icons/uil-sanitizer.ts b/src/icons/uil-sanitizer.ts new file mode 100644 index 00000000..2ae12cea --- /dev/null +++ b/src/icons/uil-sanitizer.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSanitizer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13 12a3 3 0 1 0 3 3 3.003 3.003 0 0 0-3-3Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Zm5.8-8.4L16 5.5V3h1a1 1 0 0 0 0-2H8.657a4.967 4.967 0 0 0-3.535 1.464l-.829.829a1 1 0 1 0 1.414 1.414l.829-.829A3.022 3.022 0 0 1 8.656 3H10v2.5L7.2 7.6A3.016 3.016 0 0 0 6 10v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V10a3.015 3.015 0 0 0-1.2-2.4ZM12 3h2v2h-2Zm6 18H8V10a1.006 1.006 0 0 1 .4-.8L11.334 7h3.333L17.6 9.2a1.005 1.005 0 0 1 .4.8Z' + }) + ) +} + +export default UilSanitizer \ No newline at end of file diff --git a/src/icons/uil-save.ts b/src/icons/uil-save.ts new file mode 100644 index 00000000..c2b6bec7 --- /dev/null +++ b/src/icons/uil-save.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSave = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm20.71 9.29-6-6a1 1 0 0 0-.32-.21A1.09 1.09 0 0 0 14 3H6a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3v-8a1 1 0 0 0-.29-.71ZM9 5h4v2H9Zm6 14H9v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1Zm4-1a1 1 0 0 1-1 1h-1v-3a3 3 0 0 0-3-3h-4a3 3 0 0 0-3 3v3H6a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h1v3a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6.41l4 4Z' + }) + ) +} + +export default UilSave \ No newline at end of file diff --git a/src/icons/uil-scaling-left.ts b/src/icons/uil-scaling-left.ts new file mode 100644 index 00000000..9e8e291c --- /dev/null +++ b/src/icons/uil-scaling-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScalingLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,16a1,1,0,0,0-1,1v1.59L13.41,12l2.13-2.12a1,1,0,0,0-1.42-1.42L12,10.59,5.41,4H7A1,1,0,0,0,7,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V7A1,1,0,0,0,4,7V5.41L10.59,12,8.46,14.12a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29L12,13.41,18.59,20H17a1,1,0,0,0,0,2h4a1,1,0,0,0,.38-.08,1,1,0,0,0,.54-.54A1,1,0,0,0,22,21V17A1,1,0,0,0,21,16Z' + }) + ) +} + +export default UilScalingLeft \ No newline at end of file diff --git a/src/icons/uil-scaling-right.ts b/src/icons/uil-scaling-right.ts new file mode 100644 index 00000000..ba79899b --- /dev/null +++ b/src/icons/uil-scaling-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScalingRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,2.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,2H17a1,1,0,0,0,0,2h1.59L12,10.59,9.88,8.46A1,1,0,0,0,8.46,9.88L10.59,12,4,18.59V17a1,1,0,0,0-2,0v4a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H7a1,1,0,0,0,0-2H5.41L12,13.41l2.12,2.13a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L13.41,12,20,5.41V7a1,1,0,0,0,2,0V3A1,1,0,0,0,21.92,2.62Z' + }) + ) +} + +export default UilScalingRight \ No newline at end of file diff --git a/src/icons/uil-scenery.ts b/src/icons/uil-scenery.ts new file mode 100644 index 00000000..96cb238c --- /dev/null +++ b/src/icons/uil-scenery.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScenery = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a2.81,2.81,0,0,0,.49-.05l.3-.07.07,0h0l.05,0,.37-.14.13-.07c.1-.06.21-.11.31-.18a3.79,3.79,0,0,0,.38-.32l.07-.09a2.69,2.69,0,0,0,.27-.32l.09-.13a2.31,2.31,0,0,0,.18-.35,1,1,0,0,0,.07-.15c.05-.12.08-.25.12-.38l0-.15A2.6,2.6,0,0,0,22,19V5A3,3,0,0,0,19,2ZM5,20a1,1,0,0,1-1-1V14.69l3.29-3.3h0a1,1,0,0,1,1.42,0L17.31,20Zm15-1a1,1,0,0,1-.07.36,1,1,0,0,1-.08.14.94.94,0,0,1-.09.12l-5.35-5.35.88-.88a1,1,0,0,1,1.42,0h0L20,16.69Zm0-5.14L18.12,12a3.08,3.08,0,0,0-4.24,0l-.88.88L10.12,10a3.08,3.08,0,0,0-4.24,0L4,11.86V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM13.5,6A1.5,1.5,0,1,0,15,7.5,1.5,1.5,0,0,0,13.5,6Z' + }) + ) +} + +export default UilScenery \ No newline at end of file diff --git a/src/icons/uil-schedule.ts b/src/icons/uil-schedule.ts new file mode 100644 index 00000000..11539ff9 --- /dev/null +++ b/src/icons/uil-schedule.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSchedule = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,14a1,1,0,1,0-1-1A1,1,0,0,0,12,14Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,14Zm-5,4a1,1,0,1,0-1-1A1,1,0,0,0,12,18Zm5,0a1,1,0,1,0-1-1A1,1,0,0,0,17,18ZM7,14a1,1,0,1,0-1-1A1,1,0,0,0,7,14ZM19,4H18V3a1,1,0,0,0-2,0V4H8V3A1,1,0,0,0,6,3V4H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4Zm1,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V10H20ZM20,8H4V7A1,1,0,0,1,5,6H19a1,1,0,0,1,1,1ZM7,18a1,1,0,1,0-1-1A1,1,0,0,0,7,18Z' + }) + ) +} + +export default UilSchedule \ No newline at end of file diff --git a/src/icons/uil-screw.ts b/src/icons/uil-screw.ts new file mode 100644 index 00000000..d5f42407 --- /dev/null +++ b/src/icons/uil-screw.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScrew = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,10.12,13.88,2.29a1,1,0,0,0-1.7.57L11.45,8l-2,2-.33-.19A1,1,0,0,0,8,11.44L6.85,12.61l-.33-.19a1,1,0,0,0-1.11,1.63L4.24,15.21,3.92,15a1,1,0,0,0-1.37.37,1,1,0,0,0,.25,1.26l-.51.51a.93.93,0,0,0-.21.33,1,1,0,0,0-.08.38V21a1,1,0,0,0,1,1H6.13a1,1,0,0,0,.38-.08.93.93,0,0,0,.33-.21L8.54,20l.33.19a1,1,0,0,0,1.37-.36A1,1,0,0,0,10,18.56l1.17-1.16.33.19a1,1,0,0,0,.49.13A1,1,0,0,0,12.59,16l1.17-1.16.33.19a1,1,0,0,0,.49.13,1,1,0,0,0,.62-1.77l.79-.79,5.15-.73a1,1,0,0,0,.81-.68A1,1,0,0,0,21.71,10.12ZM5.72,20H4V18.28l.57-.57L6.75,19Zm2.49-2.5L6,16.25l1.14-1.14,2.17,1.25Zm2.61-2.6L8.64,13.64,9.79,12.5,12,13.75Zm2.61-2.61L11.25,11l1.14-1.14,1.72,1.72Zm2.45-1.74L13.45,8.12l.43-3,5,5Z' + }) + ) +} + +export default UilScrew \ No newline at end of file diff --git a/src/icons/uil-scroll-h.ts b/src/icons/uil-scroll-h.ts new file mode 100644 index 00000000..b3ae6b48 --- /dev/null +++ b/src/icons/uil-scroll-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScrollH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.71,6.29A1,1,0,0,0,3.29,7.71L7.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l5-5a1,1,0,0,0,0-1.42ZM16.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42l-5,5a1,1,0,0,0,0,1.42l5,5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilScrollH \ No newline at end of file diff --git a/src/icons/uil-scroll.ts b/src/icons/uil-scroll.ts new file mode 100644 index 00000000..55d1c4ac --- /dev/null +++ b/src/icons/uil-scroll.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilScroll = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,9.71a1,1,0,0,0,1.42,0l5-5a1,1,0,1,0-1.42-1.42L12,7.59,7.71,3.29A1,1,0,0,0,6.29,4.71Zm1.42,4.58a1,1,0,0,0-1.42,0l-5,5a1,1,0,0,0,1.42,1.42L12,16.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilScroll \ No newline at end of file diff --git a/src/icons/uil-search-alt.ts b/src/icons/uil-search-alt.ts new file mode 100644 index 00000000..ee0b1bb9 --- /dev/null +++ b/src/icons/uil-search-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSearchAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.07,16.83,19,14.71a3.08,3.08,0,0,0-3.4-.57l-.9-.9a7,7,0,1,0-1.41,1.41l.89.89A3,3,0,0,0,14.71,19l2.12,2.12a3,3,0,0,0,4.24,0A3,3,0,0,0,21.07,16.83Zm-8.48-4.24a5,5,0,1,1,0-7.08A5,5,0,0,1,12.59,12.59Zm7.07,7.07a1,1,0,0,1-1.42,0l-2.12-2.12a1,1,0,0,1,0-1.42,1,1,0,0,1,1.42,0l2.12,2.12A1,1,0,0,1,19.66,19.66Z' + }) + ) +} + +export default UilSearchAlt \ No newline at end of file diff --git a/src/icons/uil-search-minus.ts b/src/icons/uil-search-minus.ts new file mode 100644 index 00000000..c7c3cfac --- /dev/null +++ b/src/icons/uil-search-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSearchMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Zm4-8H7a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSearchMinus \ No newline at end of file diff --git a/src/icons/uil-search-plus.ts b/src/icons/uil-search-plus.ts new file mode 100644 index 00000000..cfb42d5b --- /dev/null +++ b/src/icons/uil-search-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSearchPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,10H12V7a1,1,0,0,0-2,0v3H7a1,1,0,0,0,0,2h3v3a1,1,0,0,0,2,0V12h3a1,1,0,0,0,0-2Zm6.71,10.29L18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z' + }) + ) +} + +export default UilSearchPlus \ No newline at end of file diff --git a/src/icons/uil-search.ts b/src/icons/uil-search.ts new file mode 100644 index 00000000..cc166925 --- /dev/null +++ b/src/icons/uil-search.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSearch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29,18,16.61A9,9,0,1,0,16.61,18l3.68,3.68a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM11,18a7,7,0,1,1,7-7A7,7,0,0,1,11,18Z' + }) + ) +} + +export default UilSearch \ No newline at end of file diff --git a/src/icons/uil-selfie.ts b/src/icons/uil-selfie.ts new file mode 100644 index 00000000..210b6af2 --- /dev/null +++ b/src/icons/uil-selfie.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSelfie = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,2H8A3,3,0,0,0,5,5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V5A3,3,0,0,0,16,2Zm1,17a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V18H17Zm-5-5a3,3,0,0,1,2.82,2H9.18A3,3,0,0,1,12,14Zm-1-3a1,1,0,1,1,1,1A1,1,0,0,1,11,11Zm6,5h-.1a5,5,0,0,0-2.42-3.32A3,3,0,0,0,15,11a3,3,0,0,0-6,0,3,3,0,0,0,.52,1.68A5,5,0,0,0,7.1,16H7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1ZM12,5a1,1,0,1,0,1,1A1,1,0,0,0,12,5Z' + }) + ) +} + +export default UilSelfie \ No newline at end of file diff --git a/src/icons/uil-server-alt.ts b/src/icons/uil-server-alt.ts new file mode 100644 index 00000000..5e6321a7 --- /dev/null +++ b/src/icons/uil-server-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,17a1,1,0,1,0,1,1A1,1,0,0,0,8,17Zm0-6a1,1,0,1,0,1,1A1,1,0,0,0,8,11ZM8,5A1,1,0,1,0,9,6,1,1,0,0,0,8,5ZM20,5a3,3,0,0,0-3-3H7A3,3,0,0,0,4,5V7a3,3,0,0,0,.78,2A3,3,0,0,0,4,11v2a3,3,0,0,0,.78,2A3,3,0,0,0,4,17v2a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V17a3,3,0,0,0-.78-2A3,3,0,0,0,20,13V11a3,3,0,0,0-.78-2A3,3,0,0,0,20,7ZM18,19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,7V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilServerAlt \ No newline at end of file diff --git a/src/icons/uil-server-connection.ts b/src/icons/uil-server-connection.ts new file mode 100644 index 00000000..9ef45b75 --- /dev/null +++ b/src/icons/uil-server-connection.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServerConnection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,13a1,1,0,1,0,1,1A1,1,0,0,0,11,13ZM7,13a1,1,0,1,0,1,1A1,1,0,0,0,7,13ZM22,4a3,3,0,0,0-3-3H5A3,3,0,0,0,2,4V8a3,3,0,0,0,.78,2A3,3,0,0,0,2,12v4a3,3,0,0,0,3,3h6v2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2H13V19h6a3,3,0,0,0,3-3V12a3,3,0,0,0-.78-2A3,3,0,0,0,22,8ZM20,16a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-8a1,1,0,0,1-1,1H5A1,1,0,0,1,4,8V4A1,1,0,0,1,5,3H19a1,1,0,0,1,1,1ZM11,5a1,1,0,1,0,1,1A1,1,0,0,0,11,5ZM7,5A1,1,0,1,0,8,6,1,1,0,0,0,7,5Z' + }) + ) +} + +export default UilServerConnection \ No newline at end of file diff --git a/src/icons/uil-server-network-alt.ts b/src/icons/uil-server-network-alt.ts new file mode 100644 index 00000000..261ea3dc --- /dev/null +++ b/src/icons/uil-server-network-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServerNetworkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,6h3a1,1,0,0,0,0-2H8A1,1,0,0,0,8,6Zm8,0a1,1,0,1,0-1-1A1,1,0,0,0,16,6Zm0,4a1,1,0,1,0,1,1A1,1,0,0,0,16,10Zm5,9H14.82A3,3,0,0,0,13,17.18V15h4a3,3,0,0,0,3-3V10a3,3,0,0,0-.78-2A3,3,0,0,0,20,6V4a3,3,0,0,0-3-3H7A3,3,0,0,0,4,4V6a3,3,0,0,0,.78,2A3,3,0,0,0,4,10v2a3,3,0,0,0,3,3h4v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM6,4A1,1,0,0,1,7,3H17a1,1,0,0,1,1,1V6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,6Zm1,9a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H17a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1Zm5,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21ZM11,10H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilServerNetworkAlt \ No newline at end of file diff --git a/src/icons/uil-server-network.ts b/src/icons/uil-server-network.ts new file mode 100644 index 00000000..8fd49ec7 --- /dev/null +++ b/src/icons/uil-server-network.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServerNetwork = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,6A1,1,0,1,0,7,5,1,1,0,0,0,8,6ZM21,19H14.82A3,3,0,0,0,13,17.18V15h4a3,3,0,0,0,3-3V10a3,3,0,0,0-.78-2A3,3,0,0,0,20,6V4a3,3,0,0,0-3-3H7A3,3,0,0,0,4,4V6a3,3,0,0,0,.78,2A3,3,0,0,0,4,10v2a3,3,0,0,0,3,3h4v2.18A3,3,0,0,0,9.18,19H3a1,1,0,0,0,0,2H9.18a3,3,0,0,0,5.64,0H21a1,1,0,0,0,0-2ZM6,4A1,1,0,0,1,7,3H17a1,1,0,0,1,1,1V6a1,1,0,0,1-1,1H7A1,1,0,0,1,6,6Zm1,9a1,1,0,0,1-1-1V10A1,1,0,0,1,7,9H17a1,1,0,0,1,1,1v2a1,1,0,0,1-1,1Zm5,8a1,1,0,1,1,1-1A1,1,0,0,1,12,21ZM8,10a1,1,0,1,0,1,1A1,1,0,0,0,8,10Z' + }) + ) +} + +export default UilServerNetwork \ No newline at end of file diff --git a/src/icons/uil-server.ts b/src/icons/uil-server.ts new file mode 100644 index 00000000..90e3fc71 --- /dev/null +++ b/src/icons/uil-server.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,17a1,1,0,1,0,1,1A1,1,0,0,0,15,17ZM9,17H6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9,0a1,1,0,1,0,1,1A1,1,0,0,0,18,17Zm-3-6a1,1,0,1,0,1,1A1,1,0,0,0,15,11ZM9,11H6a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9-6a1,1,0,1,0,1,1A1,1,0,0,0,18,5Zm0,6a1,1,0,1,0,1,1A1,1,0,0,0,18,11Zm4-6a3,3,0,0,0-3-3H5A3,3,0,0,0,2,5V7a3,3,0,0,0,.78,2A3,3,0,0,0,2,11v2a3,3,0,0,0,.78,2A3,3,0,0,0,2,17v2a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V17a3,3,0,0,0-.78-2A3,3,0,0,0,22,13V11a3,3,0,0,0-.78-2A3,3,0,0,0,22,7ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H5A1,1,0,0,1,4,7V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1ZM15,5a1,1,0,1,0,1,1A1,1,0,0,0,15,5ZM9,5H6A1,1,0,0,0,6,7H9A1,1,0,0,0,9,5Z' + }) + ) +} + +export default UilServer \ No newline at end of file diff --git a/src/icons/uil-servers.ts b/src/icons/uil-servers.ts new file mode 100644 index 00000000..7cee464f --- /dev/null +++ b/src/icons/uil-servers.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServers = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,17a1,1,0,1,0,1,1A1,1,0,0,0,15,17Zm-4,0H9a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm0-6H9a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm4,0a1,1,0,1,0,1,1A1,1,0,0,0,15,11Zm8-3a3,3,0,0,0-3-3H19a3,3,0,0,0-3-3H8A3,3,0,0,0,5,5H4A3,3,0,0,0,1,8v2a3,3,0,0,0,.78,2A3,3,0,0,0,1,14v2a3,3,0,0,0,3,3H5a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3h1a3,3,0,0,0,3-3V14a3,3,0,0,0-.78-2A3,3,0,0,0,23,10ZM5,17H4a1,1,0,0,1-1-1V14a1,1,0,0,1,1-1H5a3,3,0,0,0,.78,2A3,3,0,0,0,5,17Zm0-6H4a1,1,0,0,1-1-1V8A1,1,0,0,1,4,7H5a3,3,0,0,0,.78,2A3,3,0,0,0,5,11Zm12,8a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V11a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H8A1,1,0,0,1,7,7V5A1,1,0,0,1,8,4h8a1,1,0,0,1,1,1Zm4,9a1,1,0,0,1-1,1H19a3,3,0,0,0-.78-2A3,3,0,0,0,19,13h1a1,1,0,0,1,1,1Zm0-6a1,1,0,0,1-1,1H19a3,3,0,0,0-.78-2A3,3,0,0,0,19,7h1a1,1,0,0,1,1,1ZM15,5a1,1,0,1,0,1,1A1,1,0,0,0,15,5ZM11,5H9A1,1,0,0,0,9,7h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilServers \ No newline at end of file diff --git a/src/icons/uil-servicemark.ts b/src/icons/uil-servicemark.ts new file mode 100644 index 00000000..1f367e75 --- /dev/null +++ b/src/icons/uil-servicemark.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilServicemark = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.5,9h4a1,1,0,0,0,0-2h-4a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2h-4a1,1,0,0,0,0,2h4a3,3,0,0,0,0-6h-2a1,1,0,0,1,0-2ZM21.42,7.62a1,1,0,0,0-.54-.54,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L17,10.09l-2.79-2.8a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,12.5,8v8a1,1,0,0,0,2,0V10.41l1.79,1.8a1,1,0,0,0,1.42,0l1.79-1.8V16a1,1,0,0,0,2,0V8A1,1,0,0,0,21.42,7.62Z' + }) + ) +} + +export default UilServicemark \ No newline at end of file diff --git a/src/icons/uil-setting.ts b/src/icons/uil-setting.ts new file mode 100644 index 00000000..cd473c50 --- /dev/null +++ b/src/icons/uil-setting.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSetting = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.9 12.66a1 1 0 0 1 0-1.32l1.28-1.44a1 1 0 0 0 .12-1.17l-2-3.46a1 1 0 0 0-1.07-.48l-1.88.38a1 1 0 0 1-1.15-.66l-.61-1.83a1 1 0 0 0-.95-.68h-4a1 1 0 0 0-1 .68l-.56 1.83a1 1 0 0 1-1.15.66L5 4.79a1 1 0 0 0-1 .48L2 8.73a1 1 0 0 0 .1 1.17l1.27 1.44a1 1 0 0 1 0 1.32L2.1 14.1a1 1 0 0 0-.1 1.17l2 3.46a1 1 0 0 0 1.07.48l1.88-.38a1 1 0 0 1 1.15.66l.61 1.83a1 1 0 0 0 1 .68h4a1 1 0 0 0 .95-.68l.61-1.83a1 1 0 0 1 1.15-.66l1.88.38a1 1 0 0 0 1.07-.48l2-3.46a1 1 0 0 0-.12-1.17ZM18.41 14l.8.9-1.28 2.22-1.18-.24a3 3 0 0 0-3.45 2L12.92 20h-2.56L10 18.86a3 3 0 0 0-3.45-2l-1.18.24-1.3-2.21.8-.9a3 3 0 0 0 0-4l-.8-.9 1.28-2.2 1.18.24a3 3 0 0 0 3.45-2L10.36 4h2.56l.38 1.14a3 3 0 0 0 3.45 2l1.18-.24 1.28 2.22-.8.9a3 3 0 0 0 0 3.98Zm-6.77-6a4 4 0 1 0 4 4 4 4 0 0 0-4-4Zm0 6a2 2 0 1 1 2-2 2 2 0 0 1-2 2Z' + }) + ) +} + +export default UilSetting \ No newline at end of file diff --git a/src/icons/uil-share-alt.ts b/src/icons/uil-share-alt.ts new file mode 100644 index 00000000..a70aa1b5 --- /dev/null +++ b/src/icons/uil-share-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShareAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,14a4,4,0,0,0-3.08,1.48l-5.1-2.35a3.64,3.64,0,0,0,0-2.26l5.1-2.35A4,4,0,1,0,14,6a4.17,4.17,0,0,0,.07.71L8.79,9.14a4,4,0,1,0,0,5.72l5.28,2.43A4.17,4.17,0,0,0,14,18a4,4,0,1,0,4-4ZM18,4a2,2,0,1,1-2,2A2,2,0,0,1,18,4ZM6,14a2,2,0,1,1,2-2A2,2,0,0,1,6,14Zm12,6a2,2,0,1,1,2-2A2,2,0,0,1,18,20Z' + }) + ) +} + +export default UilShareAlt \ No newline at end of file diff --git a/src/icons/uil-share.ts b/src/icons/uil-share.ts new file mode 100644 index 00000000..cee352ac --- /dev/null +++ b/src/icons/uil-share.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm21.707 11.293-8-8A1 1 0 0 0 12 4v3.545A11.015 11.015 0 0 0 2 18.5V20a1 1 0 0 0 1.784.62 11.456 11.456 0 0 1 7.887-4.049c.05-.006.175-.016.329-.026V20a1 1 0 0 0 1.707.707l8-8a1 1 0 0 0 0-1.414ZM14 17.586V15.5a1 1 0 0 0-1-1c-.255 0-1.296.05-1.562.085a14.005 14.005 0 0 0-7.386 2.948A9.013 9.013 0 0 1 13 9.5a1 1 0 0 0 1-1V6.414L19.586 12Z' + }) + ) +} + +export default UilShare \ No newline at end of file diff --git a/src/icons/uil-shield-check.ts b/src/icons/uil-shield-check.ts new file mode 100644 index 00000000..757cfce1 --- /dev/null +++ b/src/icons/uil-shield-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShieldCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.63,3.65a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39ZM13.54,9.59l-2.69,2.7-.89-.9a1,1,0,0,0-1.42,1.42l1.6,1.6a1,1,0,0,0,1.42,0L15,11a1,1,0,0,0-1.42-1.42Z' + }) + ) +} + +export default UilShieldCheck \ No newline at end of file diff --git a/src/icons/uil-shield-exclamation.ts b/src/icons/uil-shield-exclamation.ts new file mode 100644 index 00000000..38a92abf --- /dev/null +++ b/src/icons/uil-shield-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShieldExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.92,15a.56.56,0,0,0-.09-.17l-.12-.15a1,1,0,0,0-1.42,0,.61.61,0,0,0-.12.15.56.56,0,0,0-.09.17.7.7,0,0,0-.06.19,1.23,1.23,0,0,0,0,.19.88.88,0,0,0,.08.39,1,1,0,0,0,1.3.54,1.19,1.19,0,0,0,.33-.22,1,1,0,0,0,.21-.32,1,1,0,0,0,.08-.39,1.23,1.23,0,0,0,0-.19A.7.7,0,0,0,12.92,15ZM12,7.36a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0v-3A1,1,0,0,0,12,7.36Zm7.63-3.71a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39Z' + }) + ) +} + +export default UilShieldExclamation \ No newline at end of file diff --git a/src/icons/uil-shield-plus.ts b/src/icons/uil-shield-plus.ts new file mode 100644 index 00000000..2897d356 --- /dev/null +++ b/src/icons/uil-shield-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShieldPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14 11h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Zm5.63-7.35a1.007 1.007 0 0 0-.835-.203 7.98 7.98 0 0 1-6.223-1.267.999.999 0 0 0-1.144 0 7.976 7.976 0 0 1-6.223 1.267A1 1 0 0 0 4 4.427v7.456a9.019 9.019 0 0 0 3.769 7.324l3.65 2.607a1 1 0 0 0 1.162 0l3.65-2.607A9.017 9.017 0 0 0 20 11.883V4.426a1.001 1.001 0 0 0-.37-.776ZM18 11.883a7.016 7.016 0 0 1-2.93 5.696L12 19.771 8.93 17.58A7.017 7.017 0 0 1 6 11.883v-6.3a9.955 9.955 0 0 0 6-1.391 9.955 9.955 0 0 0 6 1.391Z' + }) + ) +} + +export default UilShieldPlus \ No newline at end of file diff --git a/src/icons/uil-shield-question.ts b/src/icons/uil-shield-question.ts new file mode 100644 index 00000000..4764fa5f --- /dev/null +++ b/src/icons/uil-shield-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShieldQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,14.66a1,1,0,0,0-.29.7,1,1,0,0,0,.08.39A1,1,0,0,0,13,15.36a1,1,0,0,0-.29-.7A1,1,0,0,0,11.29,14.66Zm8.34-11a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39ZM12,7.36a3,3,0,0,0-2.6,1.5,1,1,0,0,0,1.73,1A1,1,0,1,1,12,11.36a1,1,0,0,0,0,2,3,3,0,1,0,0-6Z' + }) + ) +} + +export default UilShieldQuestion \ No newline at end of file diff --git a/src/icons/uil-shield-slash.ts b/src/icons/uil-shield-slash.ts new file mode 100644 index 00000000..7557f51c --- /dev/null +++ b/src/icons/uil-shield-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShieldSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-16-16h0l-2-2A1,1,0,0,0,2.29,3.71L4,5.41v6.47A9,9,0,0,0,7.77,19.2l3.65,2.61a1,1,0,0,0,1.16,0l3.65-2.61a8.21,8.21,0,0,0,.86-.7l3.2,3.21a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29Zm-6.64-2.71L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V7.41l9.67,9.68C15.48,17.26,15.28,17.42,15.07,17.58Zm-5-12.51A10.15,10.15,0,0,0,12,4.19a9.82,9.82,0,0,0,6,1.39v6.3a6.88,6.88,0,0,1-.1,1.18,1,1,0,0,0,.83,1.15h.16a1,1,0,0,0,1-.84,9.77,9.77,0,0,0,.12-1.5V4.43a1,1,0,0,0-.37-.77,1,1,0,0,0-.83-.21,7.89,7.89,0,0,1-6.23-1.27,1,1,0,0,0-1.14,0,8,8,0,0,1-2,1,1,1,0,1,0,.64,1.9Z' + }) + ) +} + +export default UilShieldSlash \ No newline at end of file diff --git a/src/icons/uil-shield.ts b/src/icons/uil-shield.ts new file mode 100644 index 00000000..6e94fae7 --- /dev/null +++ b/src/icons/uil-shield.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShield = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.63,3.65a1,1,0,0,0-.84-.2,8,8,0,0,1-6.22-1.27,1,1,0,0,0-1.14,0A8,8,0,0,1,5.21,3.45a1,1,0,0,0-.84.2A1,1,0,0,0,4,4.43v7.45a9,9,0,0,0,3.77,7.33l3.65,2.6a1,1,0,0,0,1.16,0l3.65-2.6A9,9,0,0,0,20,11.88V4.43A1,1,0,0,0,19.63,3.65ZM18,11.88a7,7,0,0,1-2.93,5.7L12,19.77,8.93,17.58A7,7,0,0,1,6,11.88V5.58a10,10,0,0,0,6-1.39,10,10,0,0,0,6,1.39Z' + }) + ) +} + +export default UilShield \ No newline at end of file diff --git a/src/icons/uil-ship.ts b/src/icons/uil-ship.ts new file mode 100644 index 00000000..61bad139 --- /dev/null +++ b/src/icons/uil-ship.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShip = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.62,17.28a1,1,0,0,0,1.86-.74L4.36,13.72,11,12.25V17a1,1,0,0,0,2,0V12.25l6.64,1.47-1.12,2.82a1,1,0,0,0,.56,1.3,1,1,0,0,0,.37.07,1,1,0,0,0,.93-.63l1.55-3.91a1,1,0,0,0-.05-.84,1,1,0,0,0-.66-.51L18,11.31V7a1,1,0,0,0-1-1H15V3a1,1,0,0,0-1-1H10A1,1,0,0,0,9,3V6H7A1,1,0,0,0,6,7v4.31L2.78,12a1,1,0,0,0-.66.51,1,1,0,0,0-.05.84ZM11,4h2V6H11ZM8,8h8v2.86L12.22,10h-.1L12,10l-.12,0h-.1L8,10.86ZM20.71,19.28a4.38,4.38,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.14,2.14,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.38,4.38,0,0,0-1-.45A1,1,0,0,0,2,20a1,1,0,0,0,.67,1.24,2.1,2.1,0,0,1,.57.25,4,4,0,0,0,2,.55,4.14,4.14,0,0,0,2.08-.56,2.65,2.65,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.65,2.65,0,0,1,2.56,0,4,4,0,0,0,4.1,0,2.1,2.1,0,0,1,.57-.25A1,1,0,0,0,22,20,1,1,0,0,0,20.71,19.28Z' + }) + ) +} + +export default UilShip \ No newline at end of file diff --git a/src/icons/uil-shop.ts b/src/icons/uil-shop.ts new file mode 100644 index 00000000..77e7a270 --- /dev/null +++ b/src/icons/uil-shop.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,5H2A1,1,0,0,0,1,6v4a3,3,0,0,0,2,2.82V22a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V12.82A3,3,0,0,0,23,10V6A1,1,0,0,0,22,5ZM15,7h2v3a1,1,0,0,1-2,0ZM11,7h2v3a1,1,0,0,1-2,0ZM7,7H9v3a1,1,0,0,1-2,0ZM4,11a1,1,0,0,1-1-1V7H5v3A1,1,0,0,1,4,11ZM14,21H10V19a2,2,0,0,1,4,0Zm5,0H16V19a4,4,0,0,0-8,0v2H5V12.82a3.17,3.17,0,0,0,1-.6,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3.17,3.17,0,0,0,1,.6Zm2-11a1,1,0,0,1-2,0V7h2ZM4.3,3H20a1,1,0,0,0,0-2H4.3a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilShop \ No newline at end of file diff --git a/src/icons/uil-shopping-bag.ts b/src/icons/uil-shopping-bag.ts new file mode 100644 index 00000000..11f35cd8 --- /dev/null +++ b/src/icons/uil-shopping-bag.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShoppingBag = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,7H16V6A4,4,0,0,0,8,6V7H5A1,1,0,0,0,4,8V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V8A1,1,0,0,0,19,7ZM10,6a2,2,0,0,1,4,0V7H10Zm8,13a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V9H8v1a1,1,0,0,0,2,0V9h4v1a1,1,0,0,0,2,0V9h2Z' + }) + ) +} + +export default UilShoppingBag \ No newline at end of file diff --git a/src/icons/uil-shopping-basket.ts b/src/icons/uil-shopping-basket.ts new file mode 100644 index 00000000..25ae759e --- /dev/null +++ b/src/icons/uil-shopping-basket.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShoppingBasket = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,18a1,1,0,0,0,1-1V15a1,1,0,0,0-2,0v2A1,1,0,0,0,14,18Zm-4,0a1,1,0,0,0,1-1V15a1,1,0,0,0-2,0v2A1,1,0,0,0,10,18ZM19,6H17.62L15.89,2.55a1,1,0,1,0-1.78.9L15.38,6H8.62L9.89,3.45a1,1,0,0,0-1.78-.9L6.38,6H5a3,3,0,0,0-.92,5.84l.74,7.46a3,3,0,0,0,3,2.7h8.38a3,3,0,0,0,3-2.7l.74-7.46A3,3,0,0,0,19,6ZM17.19,19.1a1,1,0,0,1-1,.9H7.81a1,1,0,0,1-1-.9L6.1,12H17.9ZM19,10H5A1,1,0,0,1,5,8H19a1,1,0,0,1,0,2Z' + }) + ) +} + +export default UilShoppingBasket \ No newline at end of file diff --git a/src/icons/uil-shopping-cart-alt.ts b/src/icons/uil-shopping-cart-alt.ts new file mode 100644 index 00000000..4563939a --- /dev/null +++ b/src/icons/uil-shopping-cart-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShoppingCartAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.5,15a3,3,0,0,0-1.9-2.78l1.87-7a1,1,0,0,0-.18-.87A1,1,0,0,0,20.5,4H6.8L6.47,2.74A1,1,0,0,0,5.5,2h-2V4H4.73l2.48,9.26a1,1,0,0,0,1,.74H18.5a1,1,0,0,1,0,2H5.5a1,1,0,0,0,0,2H6.68a3,3,0,1,0,5.64,0h2.36a3,3,0,1,0,5.82,1,2.94,2.94,0,0,0-.4-1.47A3,3,0,0,0,21.5,15Zm-3.91-3H9L7.34,6H19.2ZM9.5,20a1,1,0,1,1,1-1A1,1,0,0,1,9.5,20Zm8,0a1,1,0,1,1,1-1A1,1,0,0,1,17.5,20Z' + }) + ) +} + +export default UilShoppingCartAlt \ No newline at end of file diff --git a/src/icons/uil-shopping-cart.ts b/src/icons/uil-shopping-cart.ts new file mode 100644 index 00000000..6455a09a --- /dev/null +++ b/src/icons/uil-shopping-cart.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShoppingCart = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5,19A1.5,1.5,0,1,0,10,20.5,1.5,1.5,0,0,0,8.5,19ZM19,16H7a1,1,0,0,1,0-2h8.49121A3.0132,3.0132,0,0,0,18.376,11.82422L19.96143,6.2749A1.00009,1.00009,0,0,0,19,5H6.73907A3.00666,3.00666,0,0,0,3.92139,3H3A1,1,0,0,0,3,5h.92139a1.00459,1.00459,0,0,1,.96142.7251l.15552.54474.00024.00506L6.6792,12.01709A3.00006,3.00006,0,0,0,7,18H19a1,1,0,0,0,0-2ZM17.67432,7l-1.2212,4.27441A1.00458,1.00458,0,0,1,15.49121,12H8.75439l-.25494-.89221L7.32642,7ZM16.5,19A1.5,1.5,0,1,0,18,20.5,1.5,1.5,0,0,0,16.5,19Z' + }) + ) +} + +export default UilShoppingCart \ No newline at end of file diff --git a/src/icons/uil-shovel.ts b/src/icons/uil-shovel.ts new file mode 100644 index 00000000..099abb7a --- /dev/null +++ b/src/icons/uil-shovel.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShovel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,7.38,16.62,2.29a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42L17,5.54,11.58,11l-1-1h0a3,3,0,0,0-4.25,0L2.88,13.42A3,3,0,0,0,2,15.55V19a3,3,0,0,0,3,3H8.45a3,3,0,0,0,2.13-.88L14,17.69a3,3,0,0,0,0-4.25l-1-1L18.46,7l1.83,1.83a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,7.38ZM12.6,16.27,9.16,19.71a1,1,0,0,1-.71.29H5a1,1,0,0,1-1-1V15.55a1,1,0,0,1,.29-.71L7.73,11.4a1,1,0,0,1,1.41,0l1,1-.89.9a1,1,0,0,0,0,1.41A1,1,0,0,0,10,15a1,1,0,0,0,.7-.29l.9-.89,1,1A1,1,0,0,1,12.6,16.27Z' + }) + ) +} + +export default UilShovel \ No newline at end of file diff --git a/src/icons/uil-shrink.ts b/src/icons/uil-shrink.ts new file mode 100644 index 00000000..d1077930 --- /dev/null +++ b/src/icons/uil-shrink.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShrink = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.71,11.29l-2.5-2.5a1,1,0,1,0-1.42,1.42l.8.79H3a1,1,0,0,0,0,2H7.59l-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2.5-2.5a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76A1,1,0,0,0,10.71,11.29ZM21,11H16.41l.8-.79a1,1,0,0,0-1.42-1.42l-2.5,2.5a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2.5,2.5a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.8-.79H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilShrink \ No newline at end of file diff --git a/src/icons/uil-shuffle.ts b/src/icons/uil-shuffle.ts new file mode 100644 index 00000000..07aad691 --- /dev/null +++ b/src/icons/uil-shuffle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShuffle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,10A1,1,0,0,0,4,9V5.41L8.56,10A1,1,0,0,0,10,10a1,1,0,0,0,0-1.41L5.41,4H9A1,1,0,0,0,9,2H3a1,1,0,0,0-.38.08,1,1,0,0,0-.54.54A1,1,0,0,0,2,3V9A1,1,0,0,0,3,10Zm12.3,4a1,1,0,0,0-1.41,1.41l6.27,6.28a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42ZM9,20H5.41L21.71,3.71a1,1,0,1,0-1.42-1.42L4,18.59V15a1,1,0,0,0-2,0v6a1,1,0,0,0,.08.38,1,1,0,0,0,.54.54A1,1,0,0,0,3,22H9a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilShuffle \ No newline at end of file diff --git a/src/icons/uil-shutter-alt.ts b/src/icons/uil-shutter-alt.ts new file mode 100644 index 00000000..e4e34a0b --- /dev/null +++ b/src/icons/uil-shutter-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShutterAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,11a1,1,0,0,1,0-.16c0-.28-.08-.56-.13-.84v0A9.54,9.54,0,0,0,21,7.62v0A10,10,0,0,0,14,2.21h0l-.84-.13-.16,0-.29,0h-.08L12,2c-.34,0-.68,0-1,0l-.16,0L10,2.2h0A10,10,0,0,0,2.21,10v0c-.05.28-.09.56-.13.84a1,1,0,0,1,0,.16c0,.33,0,.67,0,1s0,.68,0,1a1,1,0,0,1,0,.16c0,.28.08.56.13.84v0A9.54,9.54,0,0,0,3,16.38v0A10,10,0,0,0,10,21.79h0l.84.13L11,22l.34,0h.14c.18,0,.35,0,.53,0,.34,0,.68,0,1-.05l.16,0L14,21.8h0A10,10,0,0,0,21.79,14v0c.05-.28.09-.56.13-.84A1,1,0,0,1,22,13c0-.33.05-.67.05-1S22,11.32,22,11Zm-8.84-6.9.5.07h0A8,8,0,0,1,18.24,7H11.42Zm-2.74.08h0l.4-.06L7.38,10,5.7,7.08A8,8,0,0,1,10.37,4.17ZM4.59,15a8,8,0,0,1-.42-1.37v0c0-.22-.08-.45-.1-.68a.5.5,0,0,1,0-.12,8.22,8.22,0,0,1,0-1.62.5.5,0,0,1,0-.12c0-.23.06-.46.1-.68v0A7.76,7.76,0,0,1,4.55,9.1L8,15Zm6.3,4.91-.5-.07h0A8,8,0,0,1,5.76,17h6.82ZM10.27,15,8.54,12l1.73-3h3.46l1.73,3-1.73,3Zm3.36,4.83h0l-.4.06L16.62,14l1.68,2.92A8,8,0,0,1,13.63,19.83Zm6.33-7a.5.5,0,0,1,0,.12c0,.23-.06.46-.1.68v0a7.76,7.76,0,0,1-.38,1.27L16,9h3.37a8,8,0,0,1,.42,1.37v0c0,.22.08.45.1.68a.5.5,0,0,1,0,.12,8.22,8.22,0,0,1,0,1.62Z' + }) + ) +} + +export default UilShutterAlt \ No newline at end of file diff --git a/src/icons/uil-shutter.ts b/src/icons/uil-shutter.ts new file mode 100644 index 00000000..b62a4b46 --- /dev/null +++ b/src/icons/uil-shutter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilShutter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.07,4.93A10,10,0,1,0,4.93,19.07,10,10,0,1,0,19.07,4.93ZM18.23,7H12.76l2.35-2.35A8.14,8.14,0,0,1,18.23,7ZM9,4.6a8.15,8.15,0,0,1,3.87-.54L9,7.93ZM7,5.77v5.47L5.19,9.43l-.54-.54A8.14,8.14,0,0,1,7,5.77ZM4.6,15a8.12,8.12,0,0,1-.54-3.87L7.93,15Zm1.17,2h5.47L8.89,19.35A8.14,8.14,0,0,1,5.77,17ZM15,19.4a8.13,8.13,0,0,1-3.87.54L15,16.07Zm0-6.16L13.24,15H10.75L9,13.24V10.76L10.76,9h2.48L15,10.76Zm2,5V12.76l2.35,2.35A8.14,8.14,0,0,1,17,18.23ZM16.07,9H19.4a8.13,8.13,0,0,1,.54,3.87Z' + }) + ) +} + +export default UilShutter \ No newline at end of file diff --git a/src/icons/uil-sick.ts b/src/icons/uil-sick.ts new file mode 100644 index 00000000..7e7777ed --- /dev/null +++ b/src/icons/uil-sick.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSick = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,0a1,1,0,1,0-1-1A1,1,0,0,0,15,11Zm.27,3.2a1,1,0,0,0-1.2,0l-.74.55-.73-.55a1,1,0,0,0-1.2,0l-.73.55-.74-.55a1,1,0,0,0-1.2,0l-1.33,1a1,1,0,1,0,1.2,1.6l.73-.55.74.55,0,0,.12.06a.83.83,0,0,0,.22.08l.12,0a1,1,0,0,0,.25,0h.1a1.06,1.06,0,0,0,.34-.16l.73-.55.73.55a1,1,0,0,0,1,.11l.1-.05a.39.39,0,0,0,.11-.06l.74-.55.73.55a1,1,0,0,0,.6.2,1,1,0,0,0,.8-.4,1,1,0,0,0-.2-1.4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSick \ No newline at end of file diff --git a/src/icons/uil-sigma.ts b/src/icons/uil-sigma.ts new file mode 100644 index 00000000..b1d591d5 --- /dev/null +++ b/src/icons/uil-sigma.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSigma = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,16H10.41l3.3-3.29a1,1,0,0,0,0-1.42L10.41,8H16a1,1,0,0,0,0-2H8a1,1,0,0,0-.92.62,1,1,0,0,0,.21,1.09L11.59,12l-4.3,4.29a1,1,0,0,0-.21,1.09A1,1,0,0,0,8,18h8a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSigma \ No newline at end of file diff --git a/src/icons/uil-sign-alt.ts b/src/icons/uil-sign-alt.ts new file mode 100644 index 00000000..18a27e21 --- /dev/null +++ b/src/icons/uil-sign-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.78,11.88l-2-2.5A1,1,0,0,0,19,9H13V3a1,1,0,0,0-2,0V4H5a1,1,0,0,0-.78.38l-2,2.5a1,1,0,0,0,0,1.24l2,2.5A1,1,0,0,0,5,11h6v9H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V16h6a1,1,0,0,0,.78-.38l2-2.5A1,1,0,0,0,21.78,11.88ZM11,9H5.48L4.28,7.5,5.48,6H11Zm7.52,5H13V11h5.52l1.2,1.5Z' + }) + ) +} + +export default UilSignAlt \ No newline at end of file diff --git a/src/icons/uil-sign-in-alt.ts b/src/icons/uil-sign-in-alt.ts new file mode 100644 index 00000000..e3d5e85f --- /dev/null +++ b/src/icons/uil-sign-in-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignInAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.5,15.1a1,1,0,0,0-1.34.45A8,8,0,1,1,12,4a7.93,7.93,0,0,1,7.16,4.45,1,1,0,0,0,1.8-.9,10,10,0,1,0,0,8.9A1,1,0,0,0,20.5,15.1ZM21,11H11.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,13H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSignInAlt \ No newline at end of file diff --git a/src/icons/uil-sign-left.ts b/src/icons/uil-sign-left.ts new file mode 100644 index 00000000..72174db4 --- /dev/null +++ b/src/icons/uil-sign-left.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignLeft = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,5H13V3a1,1,0,0,0-2,0V5H6a1,1,0,0,0-.78.38l-2,2.5a1,1,0,0,0,0,1.24l2,2.5A1,1,0,0,0,6,12h5v8H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V12h3a1,1,0,0,0,1-1V6A1,1,0,0,0,16,5Zm-1,5H6.48L5.28,8.5,6.48,7H15Z' + }) + ) +} + +export default UilSignLeft \ No newline at end of file diff --git a/src/icons/uil-sign-out-alt.ts b/src/icons/uil-sign-out-alt.ts new file mode 100644 index 00000000..7ec77ff2 --- /dev/null +++ b/src/icons/uil-sign-out-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignOutAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.59,13l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L12.59,11H3a1,1,0,0,0,0,2ZM12,2A10,10,0,0,0,3,7.55a1,1,0,0,0,1.8.9A8,8,0,1,1,12,20a7.93,7.93,0,0,1-7.16-4.45,1,1,0,0,0-1.8.9A10,10,0,1,0,12,2Z' + }) + ) +} + +export default UilSignOutAlt \ No newline at end of file diff --git a/src/icons/uil-sign-right.ts b/src/icons/uil-sign-right.ts new file mode 100644 index 00000000..6e00a7fd --- /dev/null +++ b/src/icons/uil-sign-right.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignRight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,6v5a1,1,0,0,0,1,1h3v8H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2H13V12h5a1,1,0,0,0,.78-.37l2-2.5a1,1,0,0,0,0-1.25l-2-2.5A1,1,0,0,0,18,5H13V3a1,1,0,0,0-2,0V5H8A1,1,0,0,0,7,6ZM9,7h8.52l1.2,1.5L17.52,10H9Z' + }) + ) +} + +export default UilSignRight \ No newline at end of file diff --git a/src/icons/uil-signal-alt-3.ts b/src/icons/uil-signal-alt-3.ts new file mode 100644 index 00000000..654f0193 --- /dev/null +++ b/src/icons/uil-signal-alt-3.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignalAlt3 = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,9H10a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V10A1,1,0,0,0,14,9ZM13,21H11V11h2ZM22,1H18a1,1,0,0,0-1,1V22a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V2A1,1,0,0,0,22,1ZM21,21H19V3h2ZM6,15H2a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H6a1,1,0,0,0,1-1V16A1,1,0,0,0,6,15ZM5,21H3V17H5Z' + }) + ) +} + +export default UilSignalAlt3 \ No newline at end of file diff --git a/src/icons/uil-signal-alt.ts b/src/icons/uil-signal-alt.ts new file mode 100644 index 00000000..812d70eb --- /dev/null +++ b/src/icons/uil-signal-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignalAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,14a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,10,14ZM5,18a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,5,18ZM20,2a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V3A1,1,0,0,0,20,2ZM15,9a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V10A1,1,0,0,0,15,9Z' + }) + ) +} + +export default UilSignalAlt \ No newline at end of file diff --git a/src/icons/uil-signal.ts b/src/icons/uil-signal.ts new file mode 100644 index 00000000..e084cddb --- /dev/null +++ b/src/icons/uil-signal.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignal = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6,15a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V16A1,1,0,0,0,6,15Zm4-3a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V13A1,1,0,0,0,10,12Zm8-8a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V5A1,1,0,0,0,18,4ZM14,8a1,1,0,0,0-1,1V19a1,1,0,0,0,2,0V9A1,1,0,0,0,14,8Z' + }) + ) +} + +export default UilSignal \ No newline at end of file diff --git a/src/icons/uil-signin.ts b/src/icons/uil-signin.ts new file mode 100644 index 00000000..9a2d0210 --- /dev/null +++ b/src/icons/uil-signin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,12a1,1,0,0,0-1-1H11.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l4,4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L11.41,13H19A1,1,0,0,0,20,12ZM17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V16a1,1,0,0,0-2,0v3a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1V8a1,1,0,0,0,2,0V5A3,3,0,0,0,17,2Z' + }) + ) +} + +export default UilSignin \ No newline at end of file diff --git a/src/icons/uil-signout.ts b/src/icons/uil-signout.ts new file mode 100644 index 00000000..e0e3f9a2 --- /dev/null +++ b/src/icons/uil-signout.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSignout = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4,12a1,1,0,0,0,1,1h7.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,.21-.33,1,1,0,0,0,0-.76,1,1,0,0,0-.21-.33l-4-4a1,1,0,1,0-1.42,1.42L12.59,11H5A1,1,0,0,0,4,12ZM17,2H7A3,3,0,0,0,4,5V8A1,1,0,0,0,6,8V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1V19a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V16a1,1,0,0,0-2,0v3a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Z' + }) + ) +} + +export default UilSignout \ No newline at end of file diff --git a/src/icons/uil-silence.ts b/src/icons/uil-silence.ts new file mode 100644 index 00000000..be47f289 --- /dev/null +++ b/src/icons/uil-silence.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSilence = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6,0a1,1,0,1,0-1-1A1,1,0,0,0,15,11Zm1,3a1,1,0,0,0-2,0H13a1,1,0,0,0-2,0H10a1,1,0,0,0-2,0,1,1,0,0,0,0,2,1,1,0,0,0,2,0h1a1,1,0,0,0,2,0h1a1,1,0,0,0,2,0,1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSilence \ No newline at end of file diff --git a/src/icons/uil-silent-squint.ts b/src/icons/uil-silent-squint.ts new file mode 100644 index 00000000..2547eb09 --- /dev/null +++ b/src/icons/uil-silent-squint.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSilentSquint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.66,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79A1,1,0,0,0,7.66,12.21Zm7.5,0a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42Zm.11,2a1,1,0,0,0-1.2,0l-.74.55-.73-.55a1,1,0,0,0-1.2,0l-.73.55-.74-.55a1,1,0,0,0-1.2,0l-1.33,1a1,1,0,1,0,1.2,1.6l.73-.55.74.55,0,0a.67.67,0,0,0,.12.06.83.83,0,0,0,.22.08l.13,0h.23l.12,0a1.12,1.12,0,0,0,.33-.16l.73-.55.73.55a1,1,0,0,0,1,.11l.1-.05a.39.39,0,0,0,.11-.06l.74-.55.73.55a1,1,0,0,0,.6.2,1,1,0,0,0,.8-.4,1,1,0,0,0-.2-1.4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSilentSquint \ No newline at end of file diff --git a/src/icons/uil-sim-card.ts b/src/icons/uil-sim-card.ts new file mode 100644 index 00000000..fd84a9ad --- /dev/null +++ b/src/icons/uil-sim-card.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSimCard = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,3.5H7A3.5,3.5,0,0,0,3.5,7V17A3.5,3.5,0,0,0,7,20.5H17A3.5,3.5,0,0,0,20.5,17V7A3.5,3.5,0,0,0,17,3.5Zm-6.5,2h3v3h-3Zm-2,13H7A1.5,1.5,0,0,1,5.5,17V15.5h3Zm5,0h-3v-3h3Zm5-1.5A1.5,1.5,0,0,1,17,18.5H15.5v-3h3Zm0-3.5H5.5V7A1.5,1.5,0,0,1,7,5.5H8.5v4a1,1,0,0,0,1,1h9Zm0-5h-3v-3H17A1.5,1.5,0,0,1,18.5,7Z' + }) + ) +} + +export default UilSimCard \ No newline at end of file diff --git a/src/icons/uil-sitemap.ts b/src/icons/uil-sitemap.ts new file mode 100644 index 00000000..f0ec2cb8 --- /dev/null +++ b/src/icons/uil-sitemap.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSitemap = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,15H20V12a1,1,0,0,0-1-1H13V9h2a1,1,0,0,0,1-1V2a1,1,0,0,0-1-1H9A1,1,0,0,0,8,2V8A1,1,0,0,0,9,9h2v2H5a1,1,0,0,0-1,1v3H2a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1H8a1,1,0,0,0,1-1V16a1,1,0,0,0-1-1H6V13H18v2H16a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V16A1,1,0,0,0,22,15ZM7,17v4H3V17ZM10,7V3h4V7ZM21,21H17V17h4Z' + }) + ) +} + +export default UilSitemap \ No newline at end of file diff --git a/src/icons/uil-skip-forward-alt.ts b/src/icons/uil-skip-forward-alt.ts new file mode 100644 index 00000000..92d89dd4 --- /dev/null +++ b/src/icons/uil-skip-forward-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSkipForwardAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5,3A3,3,0,0,0,2,6V18a3,3,0,0,0,6,0V6A3,3,0,0,0,5,3ZM6,18a1,1,0,0,1-2,0V6A1,1,0,0,1,6,6ZM20.68,9.65,14,5.66a2.6,2.6,0,0,0-2.64,0A2.74,2.74,0,0,0,10,8v8a2.74,2.74,0,0,0,1.37,2.38,2.57,2.57,0,0,0,2.64,0l6.67-4a2.75,2.75,0,0,0,0-4.7Zm-1,3-6.66,4a.61.61,0,0,1-.63,0A.72.72,0,0,1,12,16V8a.72.72,0,0,1,.36-.64.64.64,0,0,1,.31-.08.63.63,0,0,1,.32.09l6.66,4a.76.76,0,0,1,0,1.28Z' + }) + ) +} + +export default UilSkipForwardAlt \ No newline at end of file diff --git a/src/icons/uil-skip-forward-circle.ts b/src/icons/uil-skip-forward-circle.ts new file mode 100644 index 00000000..6a2301d1 --- /dev/null +++ b/src/icons/uil-skip-forward-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSkipForwardCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.5,7a1,1,0,0,0-1,1V9.69l-4-2.31a2,2,0,0,0-3,1.73v5.78a2,2,0,0,0,1,1.73,2,2,0,0,0,2,0l4-2.31V16a1,1,0,0,0,2,0V8A1,1,0,0,0,15.5,7Zm-1,5-5,2.89V9.11l5,2.88ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSkipForwardCircle \ No newline at end of file diff --git a/src/icons/uil-skip-forward.ts b/src/icons/uil-skip-forward.ts new file mode 100644 index 00000000..1428fcef --- /dev/null +++ b/src/icons/uil-skip-forward.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSkipForward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,3a3,3,0,0,0-3,3V8.84L7,3.47a3.21,3.21,0,0,0-3.29,0A3.38,3.38,0,0,0,2,6.42V17.58a3.38,3.38,0,0,0,1.72,3A3.24,3.24,0,0,0,5.33,21,3.28,3.28,0,0,0,7,20.53l9-5.37V18a3,3,0,0,0,6,0V6A3,3,0,0,0,19,3ZM15.32,13.23,6,18.81a1.23,1.23,0,0,1-1.28,0A1.4,1.4,0,0,1,4,17.58V6.42a1.4,1.4,0,0,1,.71-1.25A1.29,1.29,0,0,1,5.33,5,1.23,1.23,0,0,1,6,5.19l9.33,5.58a1.45,1.45,0,0,1,0,2.46ZM20,18a1,1,0,0,1-2,0V6a1,1,0,0,1,2,0Z' + }) + ) +} + +export default UilSkipForward \ No newline at end of file diff --git a/src/icons/uil-skype-alt.ts b/src/icons/uil-skype-alt.ts new file mode 100644 index 00000000..7738014e --- /dev/null +++ b/src/icons/uil-skype-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSkypeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.13916,11.8125a5.07559,5.07559,0,0,0-1.291-.59277c-.27978-.0846-.58953-.16736-.9104-.24713-.27911-.07782-.61132-.15766-1.02221-.248a9.31489,9.31489,0,0,1-1.436-.42383,1.49588,1.49588,0,0,1-.61572-.44726.84285.84285,0,0,1-.15918-.56543.96712.96712,0,0,1,.2041-.59668,1.59829,1.59829,0,0,1,.69971-.47559A4.01235,4.01235,0,0,1,12.03223,8a3.78727,3.78727,0,0,1,1.10547.14648,2.08274,2.08274,0,0,1,.66357.32129,1.23492,1.23492,0,0,1,.32519.34278.9997.9997,0,1,0,1.76075-.94727,3.14668,3.14668,0,0,0-.83741-.958A4.006,4.006,0,0,0,13.731,6.23633,5.76768,5.76768,0,0,0,12.03223,6a5.96329,5.96329,0,0,0-2.145.35059A3.55209,3.55209,0,0,0,8.30908,7.49121a2.97709,2.97709,0,0,0-.60449,1.79688,2.839,2.839,0,0,0,.58008,1.792,3.50074,3.50074,0,0,0,1.438,1.07226,10.5822,10.5822,0,0,0,1.30706.4079c.00837.00275.014.00946.02253.012.1914.05761.49755.13476.93994.23046.17236.037.33478.07789.49713.11847.01575.0047.03851.00965.05365.01435l.01807.00274c.24835.0633.48706.12873.70556.1955a3.02336,3.02336,0,0,1,.76367.34375,1.12652,1.12652,0,0,1,.36231.36816,1.20138,1.20138,0,0,1,.11865.585,1.15187,1.15187,0,0,1-.21387.73243,1.76331,1.76331,0,0,1-.80273.585A3.78736,3.78736,0,0,1,12.0083,16a3.68851,3.68851,0,0,1-1.70361-.34375,1.75626,1.75626,0,0,1-.61573-.54687,1.0164,1.0164,0,0,1-.20166-.50293,1,1,0,0,0-2,0,2.93957,2.93957,0,0,0,.55616,1.63867,3.7737,3.7737,0,0,0,1.34179,1.1875A5.621,5.621,0,0,0,12.0083,18a5.7083,5.7083,0,0,0,2.25391-.40527,3.71019,3.71019,0,0,0,1.665-1.27246,3.14637,3.14637,0,0,0,.58349-1.92676,3.08942,3.08942,0,0,0-.375-1.53028A3.16532,3.16532,0,0,0,15.13916,11.8125Zm7.22217,1.87891A10.49127,10.49127,0,0,0,10.30859,1.63867a6.499,6.499,0,0,0-8.66992,8.66992A10.49127,10.49127,0,0,0,13.69141,22.36133a6.499,6.499,0,0,0,8.66992-8.66992ZM16.5,21a4.5057,4.5057,0,0,1-2.16943-.55762,1.0038,1.0038,0,0,0-.67725-.10644A8.49212,8.49212,0,0,1,3.5,12a8.58284,8.58284,0,0,1,.16406-1.6543A1.00336,1.00336,0,0,0,3.55811,9.669,4.49939,4.49939,0,0,1,9.66943,3.55762a.99964.99964,0,0,0,.67725.10644A8.49212,8.49212,0,0,1,20.5,12a8.58284,8.58284,0,0,1-.16406,1.6543,1.00336,1.00336,0,0,0,.106.67675A4.49869,4.49869,0,0,1,16.5,21Z' + }) + ) +} + +export default UilSkypeAlt \ No newline at end of file diff --git a/src/icons/uil-skype.ts b/src/icons/uil-skype.ts new file mode 100644 index 00000000..a66e5c19 --- /dev/null +++ b/src/icons/uil-skype.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSkype = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.43451,14.15552a9.586,9.586,0,0,0,.21155-2.02631,9.47653,9.47653,0,0,0-9.54029-9.42254,9.11414,9.11414,0,0,0-1.62494.14178A5.53558,5.53558,0,0,0,2.00061,7.466a5.42884,5.42884,0,0,0,.75354,2.7558,10.0197,10.0197,0,0,0-.18866,1.88452,9.33889,9.33889,0,0,0,9.54028,9.25788,8.56663,8.56663,0,0,0,1.74268-.16584A5.57942,5.57942,0,0,0,16.46368,22a5.433,5.433,0,0,0,4.97083-7.84448ZM16.43964,15.9931a3.63146,3.63146,0,0,1-1.62488,1.22473,6.33963,6.33963,0,0,1-2.52033.44709,6.21683,6.21683,0,0,1-2.89764-.61176,3.733,3.733,0,0,1-1.31964-1.17779,2.574,2.574,0,0,1-.494-1.41339.88041.88041,0,0,1,.30646-.68384,1.09008,1.09008,0,0,1,.77643-.28247.94433.94433,0,0,1,.637.2127,1.793,1.793,0,0,1,.44708.65863,3.39792,3.39792,0,0,0,.49518.87256,1.78964,1.78964,0,0,0,.72955.56488,3.01435,3.01435,0,0,0,1.24872.23554,2.9217,2.9217,0,0,0,1.71985-.44708,1.33217,1.33217,0,0,0,.65979-1.13092,1.135,1.135,0,0,0-.35333-.87134,2.18491,2.18491,0,0,0-.91944-.51923c-.37616-.11774-.89538-.23553-1.53112-.37616a13.9908,13.9908,0,0,1-2.14295-.6358,3.34814,3.34814,0,0,1-1.36651-1.01312,2.47429,2.47429,0,0,1-.49512-1.57807,2.62945,2.62945,0,0,1,.54205-1.60205,3.41154,3.41154,0,0,1,1.53113-1.084,6.652,6.652,0,0,1,2.37964-.37623,6.403,6.403,0,0,1,1.88452.25843,4.07215,4.07215,0,0,1,1.31842.65979,2.91587,2.91587,0,0,1,.77765.87134,1.80281,1.80281,0,0,1,.23553.87139.96189.96189,0,0,1-.30645.70667.9912.9912,0,0,1-.7536.30646.9735.9735,0,0,1-.63575-.18866,2.38218,2.38218,0,0,1-.47113-.61176,2.93711,2.93711,0,0,0-.77758-.96631A2.37614,2.37614,0,0,0,12.0589,7.96a2.7028,2.7028,0,0,0-1.5083.37738,1.07558,1.07558,0,0,0-.56488.89539.95783.95783,0,0,0,.18866.56488,1.41851,1.41851,0,0,0,.54205.4002,2.69264,2.69264,0,0,0,.68262.25959c.23559.07092.613.16467,1.15381.28247.65979.14178,1.27276.30646,1.81475.47107a5.43,5.43,0,0,1,1.38941.6358,2.85691,2.85691,0,0,1,.89532.94226,2.8284,2.8284,0,0,1,.32935,1.3905A2.89029,2.89029,0,0,1,16.43964,15.9931Z' + }) + ) +} + +export default UilSkype \ No newline at end of file diff --git a/src/icons/uil-slack-alt.ts b/src/icons/uil-slack-alt.ts new file mode 100644 index 00000000..0a837463 --- /dev/null +++ b/src/icons/uil-slack-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSlackAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M23,9.5A3.50424,3.50424,0,0,0,19.5,6a3.45946,3.45946,0,0,0-1.5.35107V4.5a3.49466,3.49466,0,0,0-6-2.44171A3.48676,3.48676,0,0,0,6.35107,6H4.5a3.49466,3.49466,0,0,0-2.44171,6A3.48676,3.48676,0,0,0,6,17.64893V19.5a3.49466,3.49466,0,0,0,6,2.44171A3.48676,3.48676,0,0,0,17.64893,18H19.5a3.49466,3.49466,0,0,0,2.44171-6A3.48559,3.48559,0,0,0,23,9.5Zm-10-5a1.5,1.5,0,0,1,3,0v5a1.5,1.5,0,0,1-3,0Zm-7,10A1.5,1.5,0,1,1,4.5,13H6Zm5,5a1.5,1.5,0,0,1-3,0v-5a1.5,1.5,0,0,1,3,0ZM9.5,11h-5a1.5,1.5,0,0,1,0-3h5a1.5,1.5,0,0,1,0,3ZM11,6H9.5A1.5,1.5,0,1,1,11,4.5Zm1,6.05829c-.01935-.01978-.03851-.03894-.05829-.05829.01978-.01935.03894-.03851.05829-.05829.01935.01978.03851.03894.05829.05829C12.03851,12.01935,12.01935,12.03851,12,12.05829ZM14.5,21A1.50164,1.50164,0,0,1,13,19.5V18h1.5a1.5,1.5,0,0,1,0,3Zm5-5h-5a1.5,1.5,0,0,1,0-3h5a1.5,1.5,0,0,1,0,3Zm0-5H18V9.5A1.5,1.5,0,1,1,19.5,11Z' + }) + ) +} + +export default UilSlackAlt \ No newline at end of file diff --git a/src/icons/uil-slack.ts b/src/icons/uil-slack.ts new file mode 100644 index 00000000..4a2c0a51 --- /dev/null +++ b/src/icons/uil-slack.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSlack = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2,14.67a2,2,0,1,0,4,0v-2H4A2,2,0,0,0,2,14.67Zm12.64-3.34a2,2,0,0,0,2-2V4a2,2,0,1,0-4,0V9.33A2,2,0,0,0,14.66,11.33Zm7.32-2a2,2,0,1,0-4,0v2h2A2,2,0,0,0,22,9.33ZM9.34,12.67a2,2,0,0,0-2,2V20a2,2,0,1,0,4,0V14.67A2,2,0,0,0,9.34,12.67ZM14.66,18h-2v2a2,2,0,1,0,2-2ZM20,12.67H14.66a2,2,0,0,0,0,4H20a2,2,0,0,0,0-4ZM9.34,7.33H4a2,2,0,1,0,0,4H9.34a2,2,0,0,0,0-4ZM9.34,2a2,2,0,0,0,0,4h2V4A2,2,0,0,0,9.34,2Z' + }) + ) +} + +export default UilSlack \ No newline at end of file diff --git a/src/icons/uil-sleep.ts b/src/icons/uil-sleep.ts new file mode 100644 index 00000000..75680b8d --- /dev/null +++ b/src/icons/uil-sleep.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSleep = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,12.5a3,3,0,1,0-3-3A3,3,0,0,0,7,12.5Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,7,8.5Zm13-2H12a1,1,0,0,0-1,1v6H3v-8a1,1,0,0,0-2,0v13a1,1,0,0,0,2,0v-3H21v3a1,1,0,0,0,2,0v-9A3,3,0,0,0,20,6.5Zm1,7H13v-5h7a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilSleep \ No newline at end of file diff --git a/src/icons/uil-slider-h-range.ts b/src/icons/uil-slider-h-range.ts new file mode 100644 index 00000000..e7d98bee --- /dev/null +++ b/src/icons/uil-slider-h-range.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSliderHRange = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H19.81573a2.98208,2.98208,0,0,0-5.63146,0H9.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2H4.18433a2.982,2.982,0,0,0,5.6314,0h4.3686a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2ZM7,13a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,7,13Zm10,0a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,17,13Z' + }) + ) +} + +export default UilSliderHRange \ No newline at end of file diff --git a/src/icons/uil-slider-h.ts b/src/icons/uil-slider-h.ts new file mode 100644 index 00000000..ba64d669 --- /dev/null +++ b/src/icons/uil-slider-h.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSliderH = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H17.81573a2.98208,2.98208,0,0,0-5.63146,0H3a1,1,0,0,0,0,2h9.18433a2.982,2.982,0,0,0,5.6314,0H21a1,1,0,0,0,0-2Zm-6,2a1,1,0,1,1,1-1A1.0013,1.0013,0,0,1,15,13Z' + }) + ) +} + +export default UilSliderH \ No newline at end of file diff --git a/src/icons/uil-sliders-v-alt.ts b/src/icons/uil-sliders-v-alt.ts new file mode 100644 index 00000000..963d5e5f --- /dev/null +++ b/src/icons/uil-sliders-v-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSlidersVAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,8.18V3a1,1,0,0,0-2,0V8.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V13.82a3,3,0,0,0,0-5.64ZM19,12a1,1,0,1,1,1-1A1,1,0,0,1,19,12Zm-6,2.18V3a1,1,0,0,0-2,0V14.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V19.82a3,3,0,0,0,0-5.64ZM12,18a1,1,0,1,1,1-1A1,1,0,0,1,12,18ZM6,6.18V3A1,1,0,0,0,4,3V6.18a3,3,0,0,0,0,5.64V21a1,1,0,0,0,2,0V11.82A3,3,0,0,0,6,6.18ZM5,10A1,1,0,1,1,6,9,1,1,0,0,1,5,10Z' + }) + ) +} + +export default UilSlidersVAlt \ No newline at end of file diff --git a/src/icons/uil-sliders-v.ts b/src/icons/uil-sliders-v.ts new file mode 100644 index 00000000..aea8f9b4 --- /dev/null +++ b/src/icons/uil-sliders-v.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSlidersV = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,6H6V3A1,1,0,0,0,4,3V6H3A1,1,0,0,0,3,8H7A1,1,0,0,0,7,6ZM5,10a1,1,0,0,0-1,1V21a1,1,0,0,0,2,0V11A1,1,0,0,0,5,10Zm7,8a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19A1,1,0,0,0,12,18Zm9-8H20V3a1,1,0,0,0-2,0v7H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-2,4a1,1,0,0,0-1,1v6a1,1,0,0,0,2,0V15A1,1,0,0,0,19,14Zm-5,0H13V3a1,1,0,0,0-2,0V14H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSlidersV \ No newline at end of file diff --git a/src/icons/uil-smile-beam.ts b/src/icons/uil-smile-beam.ts new file mode 100644 index 00000000..d836b8e8 --- /dev/null +++ b/src/icons/uil-smile-beam.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileBeam = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9.21,10.54a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41A1,1,0,0,1,9.21,10.54Zm8.41-1.41a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSmileBeam \ No newline at end of file diff --git a/src/icons/uil-smile-dizzy.ts b/src/icons/uil-smile-dizzy.ts new file mode 100644 index 00000000..53afebe9 --- /dev/null +++ b/src/icons/uil-smile-dizzy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileDizzy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9,11.71l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,9.54,8.29l-.29.3L9,8.29A1,1,0,1,0,7.54,9.71l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17,8.29a1,1,0,0,0-1.42,0l-.29.3L15,8.29a1,1,0,0,0-1.42,1.42l.3.29-.3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.29-.3.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29.3-.29A1,1,0,0,0,17,8.29Z' + }) + ) +} + +export default UilSmileDizzy \ No newline at end of file diff --git a/src/icons/uil-smile-squint-wink-alt.ts b/src/icons/uil-smile-squint-wink-alt.ts new file mode 100644 index 00000000..7be9655f --- /dev/null +++ b/src/icons/uil-smile-squint-wink-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileSquintWinkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm5.16,1.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L14.79,10l.79-.79a1,1,0,1,0-1.42-1.42l-1.5,1.5a1,1,0,0,0,0,1.42ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Zm2.36-5.77a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54Z' + }) + ) +} + +export default UilSmileSquintWinkAlt \ No newline at end of file diff --git a/src/icons/uil-smile-squint-wink.ts b/src/icons/uil-smile-squint-wink.ts new file mode 100644 index 00000000..7646143e --- /dev/null +++ b/src/icons/uil-smile-squint-wink.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileSquintWink = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.42,12.21a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,1,0,8.42,9.21l.79.79-.79.79A1,1,0,0,0,8.42,12.21Zm5.94,2a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM15,9a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSmileSquintWink \ No newline at end of file diff --git a/src/icons/uil-smile-wink-alt.ts b/src/icons/uil-smile-wink-alt.ts new file mode 100644 index 00000000..9222d581 --- /dev/null +++ b/src/icons/uil-smile-wink-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileWinkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm5.36,3.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM17.62,9.13a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13Z' + }) + ) +} + +export default UilSmileWinkAlt \ No newline at end of file diff --git a/src/icons/uil-smile-wink.ts b/src/icons/uil-smile-wink.ts new file mode 100644 index 00000000..eb00fed4 --- /dev/null +++ b/src/icons/uil-smile-wink.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmileWink = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM10.5,10A1.5,1.5,0,1,0,9,11.5,1.5,1.5,0,0,0,10.5,10ZM15,9H14a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSmileWink \ No newline at end of file diff --git a/src/icons/uil-smile.ts b/src/icons/uil-smile.ts new file mode 100644 index 00000000..a8b6dcde --- /dev/null +++ b/src/icons/uil-smile.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSmile = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.36,14.23a3.76,3.76,0,0,1-4.72,0,1,1,0,0,0-1.28,1.54,5.68,5.68,0,0,0,7.28,0,1,1,0,1,0-1.28-1.54ZM9,11a1,1,0,1,0-1-1A1,1,0,0,0,9,11Zm6-2a1,1,0,1,0,1,1A1,1,0,0,0,15,9ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilSmile \ No newline at end of file diff --git a/src/icons/uil-snapchat-alt.ts b/src/icons/uil-snapchat-alt.ts new file mode 100644 index 00000000..ce4cfd90 --- /dev/null +++ b/src/icons/uil-snapchat-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnapchatAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.95117,15.61426a4.72447,4.72447,0,0,1-2.98144-2.17285,1,1,0,1,0-1.65625,1.12109,7.68775,7.68775,0,0,0,2.40234,2.334c-.13477.0254-.28125.04981-.44141.0752a1.36673,1.36673,0,0,0-1.07617,1.207,6.06237,6.06237,0,0,0-2.01465-.00391,4.64069,4.64069,0,0,0-1.958.95606,3.48426,3.48426,0,0,1-2.10352.87109h-.26074a3.485,3.485,0,0,1-2.10547-.873,4.62737,4.62737,0,0,0-1.92871-.94922,6.39,6.39,0,0,0-2.04.0039,1.3679,1.3679,0,0,0-1.0625-1.21c-.15723-.02441-.30176-.04883-.43457-.07422a6.85691,6.85691,0,0,0,1.79492-1.499,6.7141,6.7141,0,0,0,.63477-.86816.99986.99986,0,0,0-1.69532-1.06055,4.90731,4.90731,0,0,1-.44824.61621,4.252,4.252,0,0,1-2.55273,1.52832A1.22412,1.22412,0,0,0,.99121,16.85156a1.28037,1.28037,0,0,0,.11524.53321c.31543.71582,1.15527,1.168,2.78417,1.47461l.03126.12988c.02832.11816.05761.23828.09179.34765a1.28858,1.28858,0,0,0,1.27832.94532,2.59082,2.59082,0,0,0,.60254-.08692,4.66937,4.66937,0,0,1,1.58887-.0459,3.008,3.008,0,0,1,1.12305.61719A5.41315,5.41315,0,0,0,11.86133,22.002h.26074a5.44479,5.44479,0,0,0,3.27344-1.248,2.915,2.915,0,0,1,1.13183-.60938,3.48494,3.48494,0,0,1,.624-.05273,4.27087,4.27087,0,0,1,.95508.10644,3.78837,3.78837,0,0,0,.61523.06348,1.25616,1.25616,0,0,0,1.24512-.92285c.03808-.12207.06738-.23926.09472-.35449l.03125-.124c1.624-.30566,2.4668-.75488,2.76758-1.44043a1.17069,1.17069,0,0,0,.127-.47949A1.24436,1.24436,0,0,0,21.95117,15.61426ZM3.80176,11.14844a1.00451,1.00451,0,0,0,1.05664-.48438,3.13849,3.13849,0,0,0,1.27441.33789,1.79447,1.79447,0,0,0,1.26563-.499,1.00048,1.00048,0,0,0,.3164-.79l-.03613-.60156A9.90221,9.90221,0,0,1,7.835,5.5498a4.2597,4.2597,0,0,1,3.96582-2.54394l.3877-.00391a4.26391,4.26391,0,0,1,3.96,2.54688,9.9174,9.9174,0,0,1,.15625,3.56445l-.00977.16309-.02734.44336a1.028,1.028,0,0,0,.3125.77832,1.79536,1.79536,0,0,0,1.2539.50293,3.27129,3.27129,0,0,0,1.24122-.36524,1.00091,1.00091,0,0,0,.916.59864h.01758a1.00021,1.00021,0,0,0,.98242-1.01758,1.64158,1.64158,0,0,0-1.18555-1.45118,1.91432,1.91432,0,0,0-1.47656.01075,9.4713,9.4713,0,0,0-.35449-4.042,6.23557,6.23557,0,0,0-5.7959-3.73243l-.39258.00391A6.22235,6.22235,0,0,0,6.00879,4.73535a9.58634,9.58634,0,0,0-.35156,4.09473c-.03418-.01563-.07129-.0332-.11133-.05176A1.90859,1.90859,0,0,0,3.00879,9.97656,1.00153,1.00153,0,0,0,3.80176,11.14844Z' + }) + ) +} + +export default UilSnapchatAlt \ No newline at end of file diff --git a/src/icons/uil-snapchat-ghost.ts b/src/icons/uil-snapchat-ghost.ts new file mode 100644 index 00000000..295956bb --- /dev/null +++ b/src/icons/uil-snapchat-ghost.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnapchatGhost = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.79755,16.98718c-2.86621-.47223-4.15094-3.40149-4.204-3.52588l-.00544-.01172a1.07048,1.07048,0,0,1-.10223-.89758c.19251-.45361.82935-.6557,1.25134-.78967.10535-.03339.205-.065.28315-.096.76275-.30127.91784-.61316.91406-.8219a.66226.66226,0,0,0-.50134-.54358l-.00568-.00213a.9462.9462,0,0,0-.35632-.06824.7546.7546,0,0,0-.31287.06207,2.54,2.54,0,0,1-.95526.26612.82134.82134,0,0,1-.52954-.17725c.00915-.16992.02-.34522.0318-.53046l.004-.0653a10.10231,10.10231,0,0,0-.24091-4.03449,5.2482,5.2482,0,0,0-4.87311-3.1394q-.20114.0021-.4024.00378A5.23959,5.23959,0,0,0,6.92853,5.75293,10.08988,10.08988,0,0,0,6.68726,9.784q.01941.29872.036.59771a.8483.8483,0,0,1-.5838.17841,2.45322,2.45322,0,0,1-1.014-.26776.57538.57538,0,0,0-.2453-.04895.83387.83387,0,0,0-.81061.53265c-.08191.43061.5329.74256.90668.8902.079.03137.17822.0628.28308.096.42169.13385,1.05908.33606,1.25152.78985a1.07171,1.07171,0,0,1-.10223.89783l-.00537.01154a7.02828,7.02828,0,0,1-1.06915,1.66211,5.21488,5.21488,0,0,1-3.13483,1.86389.23978.23978,0,0,0-.20044.25006.38046.38046,0,0,0,.031.12964c.17578.41113,1.05822.75061,2.55182.981.13964.02161.19873.24927.28027.6222.03259.14929.06634.30426.1134.46423a.29261.29261,0,0,0,.31922.22876,2.48528,2.48528,0,0,0,.42492-.06091,5.52912,5.52912,0,0,1,1.12036-.12677,4.95367,4.95367,0,0,1,.8078.0683,3.87725,3.87725,0,0,1,1.535.78417,4.443,4.443,0,0,0,2.6897,1.06006c.03375,0,.06744-.00122.10009-.004.04114.00195.09522.004.15192.004a4.44795,4.44795,0,0,0,2.69122-1.06079,3.87269,3.87269,0,0,1,1.53351-.78332,4.97275,4.97275,0,0,1,.808-.0683,5.59252,5.59252,0,0,1,1.12037.11871,2.39142,2.39142,0,0,0,.425.05371h.02338a.279.279,0,0,0,.29547-.221c.04645-.15784.08045-.308.11389-.46131.08081-.371.1399-.59759.28009-.61926,1.494-.23078,2.37641-.56976,2.551-.97858a.38487.38487,0,0,0,.03174-.13086A.24.24,0,0,0,21.79755,16.98718Z' + }) + ) +} + +export default UilSnapchatGhost \ No newline at end of file diff --git a/src/icons/uil-snapchat-square.ts b/src/icons/uil-snapchat-square.ts new file mode 100644 index 00000000..cc502e1d --- /dev/null +++ b/src/icons/uil-snapchat-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnapchatSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.97333,6.68079a6.124,6.124,0,0,0-.09876-1.074,4.37223,4.37223,0,0,0-.4057-1.24566,4.32419,4.32419,0,0,0-.83166-1.11036,4.12544,4.12544,0,0,0-1.81574-1.03607,7.36011,7.36011,0,0,0-1.92-.20483L16.89777,2H7.09906l-.00055.00989a10.48784,10.48784,0,0,0-1.10089.04925,5.243,5.243,0,0,0-1.17609.26477A4.26175,4.26175,0,0,0,2.21918,5.17023a7.33786,7.33786,0,0,0-.20484,1.9046L2.00775,16.913v.00086a9.44465,9.44465,0,0,0,.09058,1.33179,4.61631,4.61631,0,0,0,.40924,1.3457,4.30506,4.30506,0,0,0,1.20166,1.45331,3.9027,3.9027,0,0,0,1.20239.65173,6.51637,6.51637,0,0,0,1.97687.29047c.41937.00262.83844.01312,1.258.01135,3.04664-.01282,6.09333.022,9.14008-.0188a7.18977,7.18977,0,0,0,1.19879-.12738,4.06007,4.06007,0,0,0,2.00769-.97668,4.16178,4.16178,0,0,0,1.32642-2.21228,8.06159,8.06159,0,0,0,.17273-1.75019v-.11718C21.99219,16.75024,21.97491,6.81219,21.97333,6.68079ZM19.29724,15.9306c-.12787.29938-.774.54761-1.86792.71656-.10266.01586-.14593.18182-.20508.45349-.02447.11218-.04937.22216-.08343.33777a.20428.20428,0,0,1-.21631.1618h-.01715a1.74575,1.74575,0,0,1-.31122-.03937,4.09738,4.09738,0,0,0-.82037-.08685,3.63726,3.63726,0,0,0-.59162.05,2.836,2.836,0,0,0-1.12286.57354,3.25673,3.25673,0,0,1-1.97064.77674c-.04151,0-.08112-.00147-.11121-.00293-.02392.00207-.04858.00293-.0733.00293a3.25323,3.25323,0,0,1-1.96948-.77619,2.83977,2.83977,0,0,0-1.124-.57422,3.63334,3.63334,0,0,0-.59149-.05,4.04744,4.04744,0,0,0-.82031.09283,1.82073,1.82073,0,0,1-.31116.04462.21421.21421,0,0,1-.2337-.16754c-.03449-.11713-.05921-.23059-.08307-.33991-.05969-.27307-.103-.43976-.2052-.45556C5.474,16.47955,4.82782,16.231,4.69916,15.93a.27773.27773,0,0,1-.02271-.095.17561.17561,0,0,1,.14679-.1831,3.8182,3.8182,0,0,0,2.29535-1.36481,5.145,5.145,0,0,0,.7829-1.217l.004-.00842a.78492.78492,0,0,0,.07483-.65741c-.14093-.33228-.60761-.48035-.91639-.57831-.07678-.02429-.14941-.0473-.20727-.07031-.27374-.1081-.72388-.33655-.66394-.65186a.6107.6107,0,0,1,.59356-.39.42052.42052,0,0,1,.17963.03588,1.79643,1.79643,0,0,0,.74243.196.62144.62144,0,0,0,.42749-.13062q-.01207-.2189-.02636-.43768a7.38812,7.38812,0,0,1,.17663-2.95166A3.83671,3.83671,0,0,1,11.8479,5.12848l.29468-.00275a3.84306,3.84306,0,0,1,3.56824,2.29871,7.39771,7.39771,0,0,1,.17639,2.95422l-.003.04779c-.00861.13562-.01654.264-.02332.38843a.60229.60229,0,0,0,.38782.12976,1.85974,1.85974,0,0,0,.6994-.19482.55227.55227,0,0,1,.22913-.04547.69414.69414,0,0,1,.26092.04992l.00409.00159a.485.485,0,0,1,.36719.39807c.00274.15277-.11084.38117-.66937.60181-.05719.02264-.13019.04577-.20728.07025-.309.09808-.77533.24609-.91626.57818a.78359.78359,0,0,0,.07483.65723l.004.00861a4.52238,4.52238,0,0,0,3.07831,2.58172.17581.17581,0,0,1,.14678.18311A.28042.28042,0,0,1,19.29724,15.9306Z' + }) + ) +} + +export default UilSnapchatSquare \ No newline at end of file diff --git a/src/icons/uil-snow-flake.ts b/src/icons/uil-snow-flake.ts new file mode 100644 index 00000000..d6d167c3 --- /dev/null +++ b/src/icons/uil-snow-flake.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnowFlake = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H19.41l1.3-1.29a1,1,0,0,0-1.42-1.42L16.59,11H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L13,9.59V7.41l2.71-2.7a1,1,0,1,0-1.42-1.42L13,4.59V3a1,1,0,0,0-2,0V4.59L9.71,3.29A1,1,0,0,0,8.29,4.71L11,7.41V9.59L8.71,7.29A1,1,0,1,0,7.29,8.71L9.59,11H7.41L4.71,8.29A1,1,0,0,0,3.29,9.71L4.59,11H3a1,1,0,0,0,0,2H4.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L7.41,13H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,14.41v2.18l-2.71,2.7a1,1,0,0,0,1.42,1.42L11,19.41V21a1,1,0,0,0,2,0V19.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13,16.59V14.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,13h2.18l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L19.41,13H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSnowFlake \ No newline at end of file diff --git a/src/icons/uil-snowflake-alt.ts b/src/icons/uil-snowflake-alt.ts new file mode 100644 index 00000000..131eb746 --- /dev/null +++ b/src/icons/uil-snowflake-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnowflakeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M4.93,17.66a1,1,0,1,0,1.41,0A1,1,0,0,0,4.93,17.66ZM19.07,6.34a1,1,0,1,0-1.41,0A1,1,0,0,0,19.07,6.34Zm-12.73,0a1,1,0,1,0-1.41,0A1,1,0,0,0,6.34,6.34ZM17.66,17.66a1,1,0,1,0,1.41,0A1,1,0,0,0,17.66,17.66ZM21,11H19.41l1.3-1.29a1,1,0,0,0-1.42-1.42L16.59,11H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L13,9.59V7.41l2.71-2.7a1,1,0,1,0-1.42-1.42L13,4.59V3a1,1,0,0,0-2,0V4.59L9.71,3.29A1,1,0,0,0,8.29,4.71L11,7.41V9.59L8.71,7.29A1,1,0,1,0,7.29,8.71L9.59,11H7.41L4.71,8.29A1,1,0,0,0,3.29,9.71L4.59,11H3a1,1,0,0,0,0,2H4.59l-1.3,1.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L7.41,13H9.59l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L11,14.41v2.18l-2.71,2.7a1,1,0,0,0,1.42,1.42L11,19.41V21a1,1,0,0,0,2,0V19.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13,16.59V14.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L14.41,13h2.18l2.7,2.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L19.41,13H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSnowflakeAlt \ No newline at end of file diff --git a/src/icons/uil-snowflake.ts b/src/icons/uil-snowflake.ts new file mode 100644 index 00000000..a0ceeb17 --- /dev/null +++ b/src/icons/uil-snowflake.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSnowflake = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.16,16.13l-2-1.15.89-.24a1,1,0,1,0-.52-1.93l-2.82.76L14,12l2.71-1.57,2.82.76.26,0a1,1,0,0,0,.26-2L19.16,9l2-1.15a1,1,0,0,0-1-1.74L18,7.37l.3-1.11a1,1,0,1,0-1.93-.52l-.82,3L13,10.27V7.14l2.07-2.07a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L13,4.31V2a1,1,0,0,0-2,0V4.47l-.81-.81a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41L11,7.3v3L8.43,8.78l-.82-3a1,1,0,1,0-1.93.52L6,7.37,3.84,6.13a1,1,0,0,0-1,1.74L4.84,9,4,9.26a1,1,0,0,0,.26,2l.26,0,2.82-.76L10,12,7.29,13.57l-2.82-.76A1,1,0,1,0,4,14.74l.89.24-2,1.15a1,1,0,0,0,1,1.74L6,16.63l-.3,1.11A1,1,0,0,0,6.39,19a1.15,1.15,0,0,0,.26,0,1,1,0,0,0,1-.74l.82-3L11,13.73v3.13L8.93,18.93a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.71-.3l.65-.65V22a1,1,0,0,0,2,0V19.53l.81.81a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41L13,16.7v-3l2.57,1.49.82,3a1,1,0,0,0,1,.74,1.15,1.15,0,0,0,.26,0,1,1,0,0,0,.71-1.23L18,16.63l2.14,1.24a1,1,0,1,0,1-1.74Z' + }) + ) +} + +export default UilSnowflake \ No newline at end of file diff --git a/src/icons/uil-social-distancing.ts b/src/icons/uil-social-distancing.ts new file mode 100644 index 00000000..da54d7a3 --- /dev/null +++ b/src/icons/uil-social-distancing.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSocialDistancing = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.5 17H5.914l.293-.293a1 1 0 0 0-1.414-1.414l-2 2a1.004 1.004 0 0 0 0 1.414l2 2a1 1 0 0 0 1.414-1.414L5.914 19H8.5a1 1 0 0 0 0-2Zm12.707.293-2-2a1 1 0 0 0-1.414 1.414l.293.293H15.5a1 1 0 0 0 0 2h2.586l-.293.293a1 1 0 1 0 1.414 1.414l2-2a1.004 1.004 0 0 0 0-1.414Zm-.567-7.521A3.468 3.468 0 0 0 21.5 7.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 13 14a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM18 9a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 18 9Zm-9.36.772A3.468 3.468 0 0 0 9.5 7.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 1 14a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM6 9a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 6 9Z' + }) + ) +} + +export default UilSocialDistancing \ No newline at end of file diff --git a/src/icons/uil-solid.ts b/src/icons/uil-solid.ts new file mode 100644 index 00000000..0defcaf6 --- /dev/null +++ b/src/icons/uil-solid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSolid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.4,7.1c-0.1-0.1-0.2-0.1-0.4-0.1h0c-0.3,0-0.5,0-0.8-0.1c-1.7-0.4-2.9-1.7-3-3.4V3.1c0-0.3-0.2-0.5-0.5-0.5h-3.1c-0.3,0-0.5,0.2-0.5,0.5v12.5c0,1.2-1,2.1-2.1,2.1c0,0,0,0,0,0c-0.7,0-1.3-0.3-1.7-0.8c-0.7-0.9-0.5-2.3,0.4-3c0.4-0.3,0.8-0.3,1.6-0.3c0.1,0,0.3,0,0.4-0.1s0.2-0.2,0.2-0.4V9.8c0-0.2-0.2-0.5-0.4-0.5c-1.6-0.2-3.2,0.2-4.4,1.2c-1.1,1-1.9,2.4-2.1,4.1c-0.3,1.9,0.4,3.9,1.7,5.2c1.2,1.3,2.9,1.9,4.5,1.9c1.6,0,3.2-0.6,4.4-1.8c1.2-1.2,1.9-2.8,1.9-4.5v-5.5c1.2,0.6,2.5,1,3.8,1c0.3,0,0.5-0.2,0.5-0.5V7.4C20.6,7.3,20.5,7.2,20.4,7.1z' + }) + ) +} + +export default UilSolid \ No newline at end of file diff --git a/src/icons/uil-sort-amount-down.ts b/src/icons/uil-sort-amount-down.ts new file mode 100644 index 00000000..8d949abb --- /dev/null +++ b/src/icons/uil-sort-amount-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSortAmountDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.29,14.29l-.29.3V7A1,1,0,0,0,4,7v7.59l-.29-.3a1,1,0,0,0-1.42,1.42l2,2a1,1,0,0,0,.33.21.94.94,0,0,0,.76,0,1,1,0,0,0,.33-.21l2-2a1,1,0,0,0-1.42-1.42ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,3H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0,5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSortAmountDown \ No newline at end of file diff --git a/src/icons/uil-sort-amount-up.ts b/src/icons/uil-sort-amount-up.ts new file mode 100644 index 00000000..c9e7eeb9 --- /dev/null +++ b/src/icons/uil-sort-amount-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSortAmountUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-2,2A1,1,0,0,0,3.71,9.71L4,9.41V17a1,1,0,0,0,2,0V9.41l.29.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM11,8H21a1,1,0,0,0,0-2H11a1,1,0,0,0,0,2Zm10,8H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm0-5H11a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSortAmountUp \ No newline at end of file diff --git a/src/icons/uil-sort.ts b/src/icons/uil-sort.ts new file mode 100644 index 00000000..a3a28704 --- /dev/null +++ b/src/icons/uil-sort.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSort = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.29,14.29,12,18.59l-4.29-4.3a1,1,0,0,0-1.42,1.42l5,5a1,1,0,0,0,1.42,0l5-5a1,1,0,0,0-1.42-1.42ZM7.71,9.71,12,5.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-5-5a1,1,0,0,0-1.42,0l-5,5A1,1,0,0,0,7.71,9.71Z' + }) + ) +} + +export default UilSort \ No newline at end of file diff --git a/src/icons/uil-sorting.ts b/src/icons/uil-sorting.ts new file mode 100644 index 00000000..3f378599 --- /dev/null +++ b/src/icons/uil-sorting.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSorting = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,10.21a1,1,0,0,0,1.42,0l3-3a1,1,0,1,0-1.42-1.42L12,8.09,9.71,5.79A1,1,0,0,0,8.29,7.21Zm1.42,4.58a1,1,0,0,0-1.42,0l-3,3a1,1,0,0,0,1.42,1.42L12,16.91l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilSorting \ No newline at end of file diff --git a/src/icons/uil-space-key.ts b/src/icons/uil-space-key.ts new file mode 100644 index 00000000..b0ee738d --- /dev/null +++ b/src/icons/uil-space-key.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSpaceKey = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,9a1,1,0,0,0-1,1v3H4V10a1,1,0,0,0-2,0v4a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V10A1,1,0,0,0,21,9Z' + }) + ) +} + +export default UilSpaceKey \ No newline at end of file diff --git a/src/icons/uil-spade.ts b/src/icons/uil-spade.ts new file mode 100644 index 00000000..fdd89d64 --- /dev/null +++ b/src/icons/uil-spade.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSpade = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.06,12.28a5.69,5.69,0,0,0-1.67-4L14,2.81a2.83,2.83,0,0,0-4,0L4.61,8.23a5.69,5.69,0,0,0-1.67,4A5.7,5.7,0,0,0,8.66,18h0a6.88,6.88,0,0,1-1.23,2.37A1,1,0,0,0,8.24,22h7.52a1,1,0,0,0,.78-1.63A6.84,6.84,0,0,1,15.31,18a5.69,5.69,0,0,0,5.75-5.71ZM18,14.91a3.78,3.78,0,0,1-3.66.95,1,1,0,0,0-.17,0l-.2,0h0a1.41,1.41,0,0,0-.22.06l-.15,0a.69.69,0,0,0-.13.11.75.75,0,0,0-.17.14.6.6,0,0,1-.06.11,2.53,2.53,0,0,0-.12.23v0a1.1,1.1,0,0,0,0,.18c0,.06,0,.12,0,.18v0h0A8.84,8.84,0,0,0,13.94,20H10.06A8.62,8.62,0,0,0,10.94,17h0v0c0-.06,0-.12,0-.19a1.1,1.1,0,0,0,0-.18h0a1.12,1.12,0,0,0-.13-.24.53.53,0,0,0-.06-.1.54.54,0,0,0-.16-.14,1.27,1.27,0,0,0-.13-.11l-.14,0a.88.88,0,0,0-.23-.07h0l-.19,0a1.1,1.1,0,0,0-.18,0A3.81,3.81,0,0,1,6,14.91a3.75,3.75,0,0,1-1.09-2.63A3.69,3.69,0,0,1,6,9.65l5.4-5.42a.81.81,0,0,1,1.13,0L18,9.65a3.69,3.69,0,0,1,1.09,2.63A3.78,3.78,0,0,1,18,14.91Z' + }) + ) +} + +export default UilSpade \ No newline at end of file diff --git a/src/icons/uil-sperms.ts b/src/icons/uil-sperms.ts new file mode 100644 index 00000000..96f31905 --- /dev/null +++ b/src/icons/uil-sperms.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSperms = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.06,20.1a2,2,0,0,1-.65-.48,2.47,2.47,0,0,1-.67-1.14,4.19,4.19,0,0,0-1.31-2.06,3.57,3.57,0,0,0-1-3.28,3.28,3.28,0,0,0-4.59-.35,3.29,3.29,0,0,0,.35,4.6A3.87,3.87,0,0,0,5.4,18.51l.36,0a2.85,2.85,0,0,0,1.53-.44A2.05,2.05,0,0,1,7.8,19,4.46,4.46,0,0,0,9,21a4.27,4.27,0,0,0,1.2.88,1,1,0,0,0,.44.1,1,1,0,0,0,.44-1.9ZM6.32,16.33a.86.86,0,0,1-.7.19A1.8,1.8,0,0,1,4.56,16c-.57-.56-.73-1.39-.36-1.77a.82.82,0,0,1,.56-.2A1.8,1.8,0,0,1,6,14.56a1.8,1.8,0,0,1,.55,1.06A.86.86,0,0,1,6.32,16.33Zm15-6.12a2.17,2.17,0,0,1-.91-.59,2.47,2.47,0,0,1-.67-1.14,4.19,4.19,0,0,0-1.31-2.06,3.57,3.57,0,0,0-1.05-3.28,3.28,3.28,0,0,0-4.59-.35,3.29,3.29,0,0,0,.35,4.6A3.87,3.87,0,0,0,15.4,8.51l.36,0a2.85,2.85,0,0,0,1.53-.44A2.05,2.05,0,0,1,17.8,9,4.54,4.54,0,0,0,19,11a4.36,4.36,0,0,0,1.7,1.08,1.25,1.25,0,0,0,.32.05,1,1,0,0,0,.95-.68A1,1,0,0,0,21.32,10.21Zm-5-3.88a.86.86,0,0,1-.7.19A1.8,1.8,0,0,1,14.56,6c-.57-.56-.73-1.39-.36-1.77a.82.82,0,0,1,.56-.2A1.8,1.8,0,0,1,16,4.56a1.8,1.8,0,0,1,.55,1.06A.86.86,0,0,1,16.32,6.33Zm5.39,14.12a4.45,4.45,0,0,0-3.23-3.23,3.18,3.18,0,0,1-1.39-.82,2.93,2.93,0,0,1-.8-1.38A4.65,4.65,0,0,0,13,11.77a2.92,2.92,0,0,1-1.38-.8,3,3,0,0,1-.81-1.39,4.68,4.68,0,0,0-1-1.86A3.94,3.94,0,0,0,10,6.22a4.75,4.75,0,0,0-1.4-2.8A4.78,4.78,0,0,0,5.78,2,3.43,3.43,0,0,0,3,3,3.43,3.43,0,0,0,2,5.78a4.75,4.75,0,0,0,1.4,2.8A4.78,4.78,0,0,0,6.22,10l.43,0a3.39,3.39,0,0,0,2-.6,2.64,2.64,0,0,1,.31.71,5.12,5.12,0,0,0,3.6,3.59,2.61,2.61,0,0,1,1.83,1.84,5.11,5.11,0,0,0,3.6,3.6A2.57,2.57,0,0,1,19.79,21a2.8,2.8,0,0,0,.16.46,1,1,0,0,0,.88.54,1.21,1.21,0,0,0,.44-.1,1,1,0,0,0,.48-1.33S21.72,20.47,21.71,20.45ZM7.64,7.64c-.64.63-1.92.41-2.81-.47A2.78,2.78,0,0,1,4,5.56a1.47,1.47,0,0,1,.35-1.2,1.39,1.39,0,0,1,1-.36,2.71,2.71,0,0,1,1.83.83A2.78,2.78,0,0,1,8,6.44,1.47,1.47,0,0,1,7.64,7.64Z' + }) + ) +} + +export default UilSperms \ No newline at end of file diff --git a/src/icons/uil-spin.ts b/src/icons/uil-spin.ts new file mode 100644 index 00000000..69949a3d --- /dev/null +++ b/src/icons/uil-spin.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSpin = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,3a7,7,0,0,0,0,14A5,5,0,0,0,13,7a3,3,0,0,0,0,6,1,1,0,0,0,0-2,1,1,0,0,1,0-2,3,3,0,0,1,0,6A5,5,0,0,1,13,5a7,7,0,0,1,0,14,9,9,0,0,1-9-9,1,1,0,0,0-2,0A11,11,0,0,0,13,21,9,9,0,0,0,13,3Z' + }) + ) +} + +export default UilSpin \ No newline at end of file diff --git a/src/icons/uil-spinner-alt.ts b/src/icons/uil-spinner-alt.ts new file mode 100644 index 00000000..0233d8be --- /dev/null +++ b/src/icons/uil-spinner-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSpinnerAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.804 15a1 1 0 0 0-1.366-.366l-1.732 1a1 1 0 0 0 1 1.732l1.732-1A1 1 0 0 0 6.804 15ZM3.706 8.366l1.732 1a1 1 0 1 0 1-1.732l-1.732-1a1 1 0 0 0-1 1.732ZM6 12a1 1 0 0 0-1-1H3a1 1 0 0 0 0 2h2a1 1 0 0 0 1-1Zm11.196-3a1 1 0 0 0 1.366.366l1.732-1a1 1 0 1 0-1-1.732l-1.732 1A1 1 0 0 0 17.196 9ZM15 6.804a1 1 0 0 0 1.366-.366l1-1.732a1 1 0 1 0-1.732-1l-1 1.732A1 1 0 0 0 15 6.804Zm5.294 8.83-1.732-1a1 1 0 1 0-1 1.732l1.732 1a1 1 0 0 0 1-1.732Zm-3.928 1.928a1 1 0 1 0-1.732 1l1 1.732a1 1 0 1 0 1.732-1ZM21 11h-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2Zm-9 7a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0v-2a1 1 0 0 0-1-1Zm-3-.804a1 1 0 0 0-1.366.366l-1 1.732a1 1 0 0 0 1.732 1l1-1.732A1 1 0 0 0 9 17.196ZM12 2a1 1 0 0 0-1 1v2a1 1 0 0 0 2 0V3a1 1 0 0 0-1-1Z' + }) + ) +} + +export default UilSpinnerAlt \ No newline at end of file diff --git a/src/icons/uil-spinner.ts b/src/icons/uil-spinner.ts new file mode 100644 index 00000000..8e16d6d5 --- /dev/null +++ b/src/icons/uil-spinner.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSpinner = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.1 16c-.3-.5-.9-.6-1.4-.4-.5.3-.6.9-.4 1.4.3.5.9.6 1.4.4.5-.3.6-.9.4-1.4zm-.4-9.4c-.5-.2-1.1-.1-1.4.4-.2.5-.1 1.1.4 1.4.5.2 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zm15.6 1.8c.5-.3.6-.9.4-1.4-.3-.5-.9-.6-1.4-.4-.5.3-.6.9-.4 1.4.3.5.9.6 1.4.4zM4 12c0-.6-.4-1-1-1s-1 .4-1 1 .4 1 1 1 1-.4 1-1zm3.2 6.8c-.5.1-.9.7-.7 1.2.1.5.7.9 1.2.7.5-.1.9-.7.7-1.2-.1-.5-.6-.8-1.2-.7zM21 11c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1zm-.7 4.6c-.5-.3-1.1-.1-1.4.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zM17 3.3c-.5-.3-1.1-.1-1.4.4-.3.5-.1 1.1.4 1.4.5.3 1.1.1 1.4-.4.2-.5.1-1.1-.4-1.4zm-.2 15.5c-.5-.1-1.1.2-1.2.7-.1.5.2 1.1.7 1.2.5.1 1.1-.2 1.2-.7.1-.5-.2-1-.7-1.2zM12 20c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1zm0-18c-.6 0-1 .4-1 1s.4 1 1 1 1-.4 1-1-.4-1-1-1z' + }) + ) +} + +export default UilSpinner \ No newline at end of file diff --git a/src/icons/uil-square-full.ts b/src/icons/uil-square-full.ts new file mode 100644 index 00000000..be63a19c --- /dev/null +++ b/src/icons/uil-square-full.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSquareFull = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilSquareFull \ No newline at end of file diff --git a/src/icons/uil-square-shape.ts b/src/icons/uil-square-shape.ts new file mode 100644 index 00000000..06b1c905 --- /dev/null +++ b/src/icons/uil-square-shape.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSquareShape = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H7A5,5,0,0,0,2,7V17a5,5,0,0,0,5,5H17a5,5,0,0,0,5-5V7A5,5,0,0,0,17,2Zm3,15a3,3,0,0,1-3,3H7a3,3,0,0,1-3-3V7A3,3,0,0,1,7,4H17a3,3,0,0,1,3,3Z' + }) + ) +} + +export default UilSquareShape \ No newline at end of file diff --git a/src/icons/uil-square.ts b/src/icons/uil-square.ts new file mode 100644 index 00000000..878d4de3 --- /dev/null +++ b/src/icons/uil-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V4H20Z' + }) + ) +} + +export default UilSquare \ No newline at end of file diff --git a/src/icons/uil-squint.ts b/src/icons/uil-squint.ts new file mode 100644 index 00000000..3279dab1 --- /dev/null +++ b/src/icons/uil-squint.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSquint = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,14H9a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2ZM9.08,12.21l1.5-1.5a1,1,0,0,0,0-1.42l-1.5-1.5A1,1,0,0,0,7.66,9.21l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,.71.29A1,1,0,0,0,9.08,12.21ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM16.58,7.79a1,1,0,0,0-1.42,0l-1.5,1.5a1,1,0,0,0,0,1.42l1.5,1.5a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42L15.79,10l.79-.79A1,1,0,0,0,16.58,7.79Z' + }) + ) +} + +export default UilSquint \ No newline at end of file diff --git a/src/icons/uil-star-half-alt.ts b/src/icons/uil-star-half-alt.ts new file mode 100644 index 00000000..92e0a061 --- /dev/null +++ b/src/icons/uil-star-half-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStarHalfAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68A1,1,0,0,0,6.9,21.44L12,18.77l5.1,2.67a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67ZM11,17l-3.23,1.7.72-4.2a1,1,0,0,0-.29-.88l-3-3,4.21-.61a1,1,0,0,0,.76-.55L11,7.73Zm4.8-3.38a1,1,0,0,0-.29.88l.72,4.2L13,17V7.73l.88,1.79a1,1,0,0,0,.76.55l4.21.61Z' + }) + ) +} + +export default UilStarHalfAlt \ No newline at end of file diff --git a/src/icons/uil-star.ts b/src/icons/uil-star.ts new file mode 100644 index 00000000..21d2ccb9 --- /dev/null +++ b/src/icons/uil-star.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStar = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,9.67A1,1,0,0,0,21.14,9l-5.69-.83L12.9,3a1,1,0,0,0-1.8,0L8.55,8.16,2.86,9a1,1,0,0,0-.81.68,1,1,0,0,0,.25,1l4.13,4-1,5.68a1,1,0,0,0,.4,1,1,1,0,0,0,1.05.07L12,18.76l5.1,2.68a.93.93,0,0,0,.46.12,1,1,0,0,0,.59-.19,1,1,0,0,0,.4-1l-1-5.68,4.13-4A1,1,0,0,0,22,9.67Zm-6.15,4a1,1,0,0,0-.29.89l.72,4.19-3.76-2a1,1,0,0,0-.94,0l-3.76,2,.72-4.19a1,1,0,0,0-.29-.89l-3-3,4.21-.61a1,1,0,0,0,.76-.55L12,5.7l1.88,3.82a1,1,0,0,0,.76.55l4.21.61Z' + }) + ) +} + +export default UilStar \ No newline at end of file diff --git a/src/icons/uil-statistics.ts b/src/icons/uil-statistics.ts new file mode 100644 index 00000000..a6fab8a3 --- /dev/null +++ b/src/icons/uil-statistics.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStatistics = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.92,6.62a1,1,0,0,0-.54-.54A1,1,0,0,0,21,6H16a1,1,0,0,0,0,2h2.59L13,13.59l-3.29-3.3a1,1,0,0,0-1.42,0l-6,6a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L9,12.41l3.29,3.3a1,1,0,0,0,1.42,0L20,9.41V12a1,1,0,0,0,2,0V7A1,1,0,0,0,21.92,6.62Z' + }) + ) +} + +export default UilStatistics \ No newline at end of file diff --git a/src/icons/uil-step-backward-alt.ts b/src/icons/uil-step-backward-alt.ts new file mode 100644 index 00000000..fa3d8ce6 --- /dev/null +++ b/src/icons/uil-step-backward-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStepBackwardAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,3a3,3,0,0,0-3,3V18a3,3,0,0,0,6,0V6A3,3,0,0,0,19,3Zm1,15a1,1,0,0,1-2,0V6a1,1,0,0,1,2,0ZM12.63,5.63a2.6,2.6,0,0,0-2.64,0l-6.67,4a2.75,2.75,0,0,0,0,4.7l6.67,4a2.57,2.57,0,0,0,2.64,0A2.74,2.74,0,0,0,14,16V8A2.74,2.74,0,0,0,12.63,5.63ZM12,16a.72.72,0,0,1-.36.64.61.61,0,0,1-.63,0l-6.66-4a.76.76,0,0,1,0-1.28l6.66-4a.63.63,0,0,1,.32-.09.64.64,0,0,1,.31.08A.72.72,0,0,1,12,8Z' + }) + ) +} + +export default UilStepBackwardAlt \ No newline at end of file diff --git a/src/icons/uil-step-backward-circle.ts b/src/icons/uil-step-backward-circle.ts new file mode 100644 index 00000000..0679c5c2 --- /dev/null +++ b/src/icons/uil-step-backward-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStepBackwardCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.5,7.38a2,2,0,0,0-2,0l-4,2.31V8a1,1,0,0,0-2,0v8a1,1,0,0,0,2,0V14.31l4,2.31a2,2,0,0,0,2,0,2,2,0,0,0,1-1.73V9.11A2,2,0,0,0,15.5,7.38Zm-1,7.51L9.5,12h0l5-2.89ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilStepBackwardCircle \ No newline at end of file diff --git a/src/icons/uil-step-backward.ts b/src/icons/uil-step-backward.ts new file mode 100644 index 00000000..4fb3619d --- /dev/null +++ b/src/icons/uil-step-backward.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStepBackward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.28,3.43a3.23,3.23,0,0,0-3.29,0L8,8.84V6A3,3,0,0,0,2,6V18a3,3,0,0,0,6,0V15.16l9,5.37a3.28,3.28,0,0,0,1.68.47,3.24,3.24,0,0,0,1.61-.43,3.38,3.38,0,0,0,1.72-3V6.42A3.38,3.38,0,0,0,20.28,3.43ZM6,18a1,1,0,0,1-2,0V6A1,1,0,0,1,6,6Zm14-.42a1.4,1.4,0,0,1-.71,1.25,1.23,1.23,0,0,1-1.28,0L8.68,13.23a1.45,1.45,0,0,1,0-2.46L18,5.19A1.23,1.23,0,0,1,18.67,5a1.29,1.29,0,0,1,.62.17A1.4,1.4,0,0,1,20,6.42Z' + }) + ) +} + +export default UilStepBackward \ No newline at end of file diff --git a/src/icons/uil-step-forward.ts b/src/icons/uil-step-forward.ts new file mode 100644 index 00000000..0cba232f --- /dev/null +++ b/src/icons/uil-step-forward.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStepForward = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.71,7.29A1,1,0,1,0,7.29,8.71L10.59,12l-3.3,3.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l4-4a1,1,0,0,0,0-1.42ZM16,7a1,1,0,0,0-1,1v8a1,1,0,0,0,2,0V8A1,1,0,0,0,16,7Z' + }) + ) +} + +export default UilStepForward \ No newline at end of file diff --git a/src/icons/uil-stethoscope-alt.ts b/src/icons/uil-stethoscope-alt.ts new file mode 100644 index 00000000..4e9ba220 --- /dev/null +++ b/src/icons/uil-stethoscope-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStethoscopeAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19 8a2.993 2.993 0 0 0-1 5.816V15.5a4.5 4.5 0 0 1-9 0v-1.02l3.124-2.498A4.976 4.976 0 0 0 14 8.078V3a1 1 0 0 0-1-1h-2a1 1 0 0 0 0 2h1v4.078a2.986 2.986 0 0 1-1.125 2.342L8 12.72l-2.874-2.3A2.985 2.985 0 0 1 4 8.078V4h1a1 1 0 0 0 0-2H3a1 1 0 0 0-1 1v5.078a4.975 4.975 0 0 0 1.876 3.904L7 14.48v1.02a6.5 6.5 0 0 0 13 0v-1.684A2.993 2.993 0 0 0 19 8Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' + }) + ) +} + +export default UilStethoscopeAlt \ No newline at end of file diff --git a/src/icons/uil-stethoscope.ts b/src/icons/uil-stethoscope.ts new file mode 100644 index 00000000..0f5d7312 --- /dev/null +++ b/src/icons/uil-stethoscope.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStethoscope = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19 8a2.993 2.993 0 0 0-1 5.816V15.5a4.5 4.5 0 0 1-9 0v-.59A6.004 6.004 0 0 0 14 9V3a1 1 0 0 0-1-1h-2a1 1 0 0 0 0 2h1v5a4 4 0 0 1-8 0V4h1a1 1 0 0 0 0-2H3a1 1 0 0 0-1 1v6a6.004 6.004 0 0 0 5 5.91v.59a6.5 6.5 0 0 0 13 0v-1.684A2.993 2.993 0 0 0 19 8Zm0 4a1 1 0 1 1 1-1 1.001 1.001 0 0 1-1 1Z' + }) + ) +} + +export default UilStethoscope \ No newline at end of file diff --git a/src/icons/uil-stop-circle.ts b/src/icons/uil-stop-circle.ts new file mode 100644 index 00000000..839b61be --- /dev/null +++ b/src/icons/uil-stop-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStopCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,8H9A1,1,0,0,0,8,9v6a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V9A1,1,0,0,0,15,8Zm-1,6H10V10h4ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilStopCircle \ No newline at end of file diff --git a/src/icons/uil-stopwatch-slash.ts b/src/icons/uil-stopwatch-slash.ts new file mode 100644 index 00000000..b7d3f7eb --- /dev/null +++ b/src/icons/uil-stopwatch-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStopwatchSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.6,5.63a1,1,0,0,0,.36,2,6.18,6.18,0,0,1,1-.09,6,6,0,0,1,6,6,6.18,6.18,0,0,1-.09,1,1,1,0,0,0,.8,1.16l.18,0a1,1,0,0,0,1-.82A7.45,7.45,0,0,0,20,13.5a8,8,0,0,0-1.7-4.91l.91-.9a1,1,0,0,0-1.42-1.42l-.9.91A8,8,0,0,0,12,5.5,7.45,7.45,0,0,0,10.6,5.63ZM10,4.5h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm3.49,9.08s0-.05,0-.08,0-.05,0-.08l1.34-1.33a1,1,0,1,0-1.42-1.42L12.08,12h-.16L5.71,5.79A1,1,0,0,0,4.29,7.21l.48.48h0l.91.91A8,8,0,0,0,16.9,19.82l1.39,1.39a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,19.5A6,6,0,0,1,7.11,10l3.4,3.39s0,.05,0,.08A1.5,1.5,0,0,0,12,15h.08l3.39,3.4A6,6,0,0,1,12,19.5Z' + }) + ) +} + +export default UilStopwatchSlash \ No newline at end of file diff --git a/src/icons/uil-stopwatch.ts b/src/icons/uil-stopwatch.ts new file mode 100644 index 00000000..5e45ae79 --- /dev/null +++ b/src/icons/uil-stopwatch.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStopwatch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.3,8.59l.91-.9a1,1,0,0,0-1.42-1.42l-.9.91a8,8,0,0,0-9.79,0l-.91-.92A1,1,0,0,0,4.77,7.69l.92.91A7.92,7.92,0,0,0,4,13.5,8,8,0,1,0,18.3,8.59ZM12,19.5a6,6,0,1,1,6-6A6,6,0,0,1,12,19.5Zm-2-15h4a1,1,0,0,0,0-2H10a1,1,0,0,0,0,2Zm3,6a1,1,0,0,0-2,0v1.89a1.5,1.5,0,1,0,2,0Z' + }) + ) +} + +export default UilStopwatch \ No newline at end of file diff --git a/src/icons/uil-store-alt.ts b/src/icons/uil-store-alt.ts new file mode 100644 index 00000000..d2282a97 --- /dev/null +++ b/src/icons/uil-store-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStoreAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,2H2A1,1,0,0,0,1,3V7A3,3,0,0,0,3,9.82V21a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V9.82A3,3,0,0,0,23,7V3A1,1,0,0,0,22,2ZM15,4h2V7a1,1,0,0,1-2,0ZM11,4h2V7a1,1,0,0,1-2,0ZM7,4H9V7A1,1,0,0,1,7,7ZM4,8A1,1,0,0,1,3,7V4H5V7A1,1,0,0,1,4,8ZM14,20H10V16a2,2,0,0,1,4,0Zm5,0H16V16a4,4,0,0,0-8,0v4H5V9.82a3.17,3.17,0,0,0,1-.6,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3,3,0,0,0,4,0,3.17,3.17,0,0,0,1,.6ZM21,7a1,1,0,0,1-2,0V4h2Z' + }) + ) +} + +export default UilStoreAlt \ No newline at end of file diff --git a/src/icons/uil-store-slash.ts b/src/icons/uil-store-slash.ts new file mode 100644 index 00000000..4c81e313 --- /dev/null +++ b/src/icons/uil-store-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStoreSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.7 4h9.623l1.661 4.154A1.995 1.995 0 0 1 16 8a1 1 0 0 0-2 0 1.826 1.826 0 0 1-.134.709 1 1 0 0 0 .543 1.305.947.947 0 0 0 .174.035A3.988 3.988 0 0 0 18 12v1.3a1 1 0 0 0 2 0v-1.856a3.985 3.985 0 0 0 1.996-3.405c0-.01.003-.018.003-.028L22 8a.949.949 0 0 0-.035-.171.952.952 0 0 0-.036-.2l-2-5A1 1 0 0 0 19 2H8.7a1 1 0 1 0 0 2Zm14.007 17.293-2.933-2.933a.943.943 0 0 0-.154-.154l-9.95-9.95a.973.973 0 0 0-.206-.206L5.182 3.768a.963.963 0 0 0-.128-.128L2.707 1.293a1 1 0 0 0-1.414 1.414l1.964 1.964-1.178 2.94-.007.017a.953.953 0 0 0-.035.189A.948.948 0 0 0 2 8l.001.012.003.024A3.986 3.986 0 0 0 4 11.444V21a1 1 0 0 0 1 1h14a.993.993 0 0 0 .93-.656l1.363 1.363a1 1 0 0 0 1.414-1.414ZM4.016 8.153l.778-1.945L7.67 9.084A1.972 1.972 0 0 1 6 10a1.996 1.996 0 0 1-1.984-1.846ZM9 15v5H6v-8a3.964 3.964 0 0 0 3.102-1.484L12.586 14H10a1 1 0 0 0-1 1Zm4 5h-2v-4h2Zm5 0h-3v-3.586l3 3Z' + }) + ) +} + +export default UilStoreSlash \ No newline at end of file diff --git a/src/icons/uil-store.ts b/src/icons/uil-store.ts new file mode 100644 index 00000000..71a551ca --- /dev/null +++ b/src/icons/uil-store.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStore = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,7.82a1.25,1.25,0,0,0,0-.19v0h0l-2-5A1,1,0,0,0,19,2H5a1,1,0,0,0-.93.63l-2,5h0v0a1.25,1.25,0,0,0,0,.19A.58.58,0,0,0,2,8H2V8a4,4,0,0,0,2,3.4V21a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V11.44A4,4,0,0,0,22,8V8h0A.58.58,0,0,0,22,7.82ZM13,20H11V16h2Zm5,0H15V15a1,1,0,0,0-1-1H10a1,1,0,0,0-1,1v5H6V12a4,4,0,0,0,3-1.38,4,4,0,0,0,6,0A4,4,0,0,0,18,12Zm0-10a2,2,0,0,1-2-2,1,1,0,0,0-2,0,2,2,0,0,1-4,0A1,1,0,0,0,8,8a2,2,0,0,1-4,.15L5.68,4H18.32L20,8.15A2,2,0,0,1,18,10Z' + }) + ) +} + +export default UilStore \ No newline at end of file diff --git a/src/icons/uil-streering.ts b/src/icons/uil-streering.ts new file mode 100644 index 00000000..a1bd4331 --- /dev/null +++ b/src/icons/uil-streering.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStreering = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,12a1,1,0,1,0,1,1A1,1,0,0,0,12,12Zm9.71-2.36a0,0,0,0,1,0,0,10,10,0,0,0-19.4,0,0,0,0,0,1,0,0,9.75,9.75,0,0,0,0,4.72,0,0,0,0,1,0,0A10,10,0,0,0,9.61,21.7h0a9.67,9.67,0,0,0,4.7,0h0a10,10,0,0,0,7.31-7.31,0,0,0,0,1,0,0,9.75,9.75,0,0,0,0-4.72ZM12,4a8,8,0,0,1,7.41,5H4.59A8,8,0,0,1,12,4ZM4,12a8.26,8.26,0,0,1,.07-1H6v2H4.07A8.26,8.26,0,0,1,4,12Zm5,7.41A8,8,0,0,1,4.59,15H7a2,2,0,0,1,2,2Zm4,.52A8.26,8.26,0,0,1,12,20a8.26,8.26,0,0,1-1-.07V18h2ZM13.14,16H10.86A4,4,0,0,0,8,13.14V11h8v2.14A4,4,0,0,0,13.14,16ZM15,19.41V17a2,2,0,0,1,2-2h2.41A8,8,0,0,1,15,19.41ZM19.93,13H18V11h1.93A8.26,8.26,0,0,1,20,12,8.26,8.26,0,0,1,19.93,13Z' + }) + ) +} + +export default UilStreering \ No newline at end of file diff --git a/src/icons/uil-stretcher.ts b/src/icons/uil-stretcher.ts new file mode 100644 index 00000000..cb61791e --- /dev/null +++ b/src/icons/uil-stretcher.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStretcher = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,4.5h3a1,1,0,0,0,0-2H18a1,1,0,0,0,0,2Zm3,2H3a1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H4.55l5.11,2.56L7.08,16.35A3,3,0,0,0,5,15.5a3,3,0,1,0,3,3,2.2,2.2,0,0,0,0-.36l3.94-2L16,18.24a2.3,2.3,0,0,0,0,.26,3,3,0,1,0,3-3,3,3,0,0,0-2.15.92l-2.72-1.36,5.11-2.56H21a1,1,0,0,0,1-1v-4A1,1,0,0,0,21,6.5ZM5,19.5a1,1,0,1,1,1-1A1,1,0,0,1,5,19.5Zm14-2a1,1,0,1,1-1,1A1,1,0,0,1,19,17.5Zm-7.1-3.56L9,12.5h5.75ZM20,10.5H4v-2H20Z' + }) + ) +} + +export default UilStretcher \ No newline at end of file diff --git a/src/icons/uil-stroller.ts b/src/icons/uil-stroller.ts new file mode 100644 index 00000000..05837192 --- /dev/null +++ b/src/icons/uil-stroller.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilStroller = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,16a3,3,0,1,0,3,3A3,3,0,0,0,19,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,19,20ZM9,16a3,3,0,1,0,3,3A3,3,0,0,0,9,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,9,20ZM22,8.5A6.51,6.51,0,0,0,15.5,2H15a1,1,0,0,0-1,1V8H7.52L6.27,4.65A1,1,0,0,0,5.33,4H3A1,1,0,0,0,3,6H4.64L5.89,9.37l0,0,.51,1.37,0,.09A6.44,6.44,0,0,0,12.5,15h3A6.49,6.49,0,0,0,22,8.5Zm-3.32,3.18A4.47,4.47,0,0,1,15.5,13h-3a4.47,4.47,0,0,1-4.16-2.8.14.14,0,0,1,0-.06L8.26,10H19.74A4.32,4.32,0,0,1,18.68,11.68ZM16,8V4A4.49,4.49,0,0,1,20,8Z' + }) + ) +} + +export default UilStroller \ No newline at end of file diff --git a/src/icons/uil-subject.ts b/src/icons/uil-subject.ts new file mode 100644 index 00000000..c0f372d0 --- /dev/null +++ b/src/icons/uil-subject.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSubject = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,16H3a1,1,0,0,0,0,2H13a1,1,0,0,0,0-2ZM3,8H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,8Zm18,3H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSubject \ No newline at end of file diff --git a/src/icons/uil-subway-alt.ts b/src/icons/uil-subway-alt.ts new file mode 100644 index 00000000..f874cb48 --- /dev/null +++ b/src/icons/uil-subway-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSubwayAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,17h1a1,1,0,0,0,0-2H15a1,1,0,0,0,0,2Zm6,0V9a3,3,0,0,0-3-3H13V4h4a1,1,0,0,0,0-2H7A1,1,0,0,0,7,4h4V6H6A3,3,0,0,0,3,9v8a3,3,0,0,0,1.2,2.39l-.91.9a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.41,20H17.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.91-.9A3,3,0,0,0,21,17ZM5,9A1,1,0,0,1,6,8h5v4H5Zm14,8a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H19Zm0-5H13V8h5a1,1,0,0,1,1,1ZM8,17H9a1,1,0,0,0,0-2H8a1,1,0,0,0,0,2Z' + }) + ) +} + +export default UilSubwayAlt \ No newline at end of file diff --git a/src/icons/uil-subway.ts b/src/icons/uil-subway.ts new file mode 100644 index 00000000..99c2ef3c --- /dev/null +++ b/src/icons/uil-subway.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSubway = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18.64.64,0,0,0-.06.18,1.36,1.36,0,0,0,0,.2,1,1,0,0,0,1,1ZM18,2H6A3,3,0,0,0,3,5V17a3,3,0,0,0,1.2,2.39l-.91.9a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.41,20H17.59l1.7,1.71a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.91-.9A3,3,0,0,0,21,17V5A3,3,0,0,0,18,2ZM5,8h6v4H5Zm14,9a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V14H19Zm0-5H13V8h6Zm0-6H5V5A1,1,0,0,1,6,4H18a1,1,0,0,1,1,1ZM8,17a1,1,0,0,0,1-1,1.36,1.36,0,0,0,0-.2.64.64,0,0,0-.06-.18.76.76,0,0,0-.09-.18l-.12-.15a1.15,1.15,0,0,0-.33-.21,1,1,0,0,0-.76,0,1.15,1.15,0,0,0-.33.21l-.12.15a.76.76,0,0,0-.09.18A.64.64,0,0,0,7,15.8,1.36,1.36,0,0,0,7,16a1,1,0,0,0,.29.7A1,1,0,0,0,8,17Z' + }) + ) +} + +export default UilSubway \ No newline at end of file diff --git a/src/icons/uil-suitcase-alt.ts b/src/icons/uil-suitcase-alt.ts new file mode 100644 index 00000000..597f2a2e --- /dev/null +++ b/src/icons/uil-suitcase-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSuitcaseAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6H16V5a2,2,0,0,0-2-2H10A2,2,0,0,0,8,5V6H5A3,3,0,0,0,2,9v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V9A3,3,0,0,0,19,6ZM10,5h4V6H10ZM20,18a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13H8v1a1,1,0,0,0,2,0V13h4v1a1,1,0,0,0,2,0V13h4Zm0-7H4V9A1,1,0,0,1,5,8H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilSuitcaseAlt \ No newline at end of file diff --git a/src/icons/uil-suitcase.ts b/src/icons/uil-suitcase.ts new file mode 100644 index 00000000..314d4a6f --- /dev/null +++ b/src/icons/uil-suitcase.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSuitcase = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,6.5H16v-1a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v1H5a3,3,0,0,0-3,3v9a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3v-9A3,3,0,0,0,19,6.5Zm-9-1a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1v1H10Zm10,13a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13.45H7V14.5a1,1,0,0,0,2,0V13.45h6V14.5a1,1,0,0,0,2,0V13.45h3Zm0-7H4V9.5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilSuitcase \ No newline at end of file diff --git a/src/icons/uil-sun.ts b/src/icons/uil-sun.ts new file mode 100644 index 00000000..3fd44384 --- /dev/null +++ b/src/icons/uil-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M5.64,17l-.71.71a1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0l.71-.71A1,1,0,0,0,5.64,17ZM5,12a1,1,0,0,0-1-1H3a1,1,0,0,0,0,2H4A1,1,0,0,0,5,12Zm7-7a1,1,0,0,0,1-1V3a1,1,0,0,0-2,0V4A1,1,0,0,0,12,5ZM5.64,7.05a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,6.34Zm12,.29a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,5.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,7.34ZM21,11H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Zm-9,8a1,1,0,0,0-1,1v1a1,1,0,0,0,2,0V20A1,1,0,0,0,12,19ZM18.36,17A1,1,0,0,0,17,18.36l.71.71a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41ZM12,6.5A5.5,5.5,0,1,0,17.5,12,5.51,5.51,0,0,0,12,6.5Zm0,9A3.5,3.5,0,1,1,15.5,12,3.5,3.5,0,0,1,12,15.5Z' + }) + ) +} + +export default UilSun \ No newline at end of file diff --git a/src/icons/uil-sunset.ts b/src/icons/uil-sunset.ts new file mode 100644 index 00000000..34b44b8e --- /dev/null +++ b/src/icons/uil-sunset.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSunset = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.66,8.34a1,1,0,0,0,.7-.29l.71-.71a1,1,0,1,0-1.41-1.41L17,6.64a1,1,0,0,0,0,1.41A1,1,0,0,0,17.66,8.34ZM12,6a1,1,0,0,0,1-1V4a1,1,0,0,0-2,0V5A1,1,0,0,0,12,6ZM4,12H3a1,1,0,0,0,0,2H4a1,1,0,0,0,0-2ZM5.64,8.05a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.71-.71A1,1,0,0,0,4.93,7.34ZM21,12H20a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2ZM11,19H8a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Zm7-4h-.88a5.39,5.39,0,0,0,.38-2,5.5,5.5,0,0,0-11,0,5.39,5.39,0,0,0,.38,2H6a1,1,0,0,0,0,2H18a1,1,0,0,0,0-2Zm-3.15,0H9.15a3.44,3.44,0,0,1-.65-2,3.5,3.5,0,0,1,7,0A3.44,3.44,0,0,1,14.85,15ZM16,19H15a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilSunset \ No newline at end of file diff --git a/src/icons/uil-surprise.ts b/src/icons/uil-surprise.ts new file mode 100644 index 00000000..950b0a11 --- /dev/null +++ b/src/icons/uil-surprise.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSurprise = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20ZM10,9a1,1,0,1,0-1,1A1,1,0,0,0,10,9Zm5-1a1,1,0,1,0,1,1A1,1,0,0,0,15,8Zm-3,3a3.39,3.39,0,0,0-3.25,3.5A3.39,3.39,0,0,0,12,18a3.39,3.39,0,0,0,3.25-3.5A3.39,3.39,0,0,0,12,11Zm0,5a1.39,1.39,0,0,1-1.25-1.5A1.39,1.39,0,0,1,12,13a1.39,1.39,0,0,1,1.25,1.5A1.39,1.39,0,0,1,12,16Z' + }) + ) +} + +export default UilSurprise \ No newline at end of file diff --git a/src/icons/uil-swatchbook.ts b/src/icons/uil-swatchbook.ts new file mode 100644 index 00000000..a62115e2 --- /dev/null +++ b/src/icons/uil-swatchbook.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSwatchbook = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7,16a1,1,0,1,0,1,1A1,1,0,0,0,7,16Zm12.06-4,1.23-1.23a3,3,0,0,0,0-4.24L17.46,3.71a3,3,0,0,0-4.24,0L12,4.94A3,3,0,0,0,9,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V15A3,3,0,0,0,19.06,12ZM10,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H9a1,1,0,0,1,1,1ZM12,7.76l2.64-2.64a1,1,0,0,1,1.41,0L18.88,8a1,1,0,0,1,0,1.41L16,12.29h0L12,16.24ZM20,19a1,1,0,0,1-1,1H11.82a3.12,3.12,0,0,0,.17-.92L17.07,14H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilSwatchbook \ No newline at end of file diff --git a/src/icons/uil-swiggy.ts b/src/icons/uil-swiggy.ts new file mode 100644 index 00000000..a4b918d3 --- /dev/null +++ b/src/icons/uil-swiggy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSwiggy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.878,5.92841a.297.297,0,0,1,.31378.335c.002.09192.00348.18384.0036.27575.00061.59241-.00238,1.18488.00208,1.77723.00329.43353.07947.517.49939.56909a14.83182,14.83182,0,0,0,3.14795-.04578,4.94837,4.94837,0,0,0,1.57287-.37384.50722.50722,0,0,0,.34461-.60242,6.83113,6.83113,0,0,0-5.3432-5.71106,6.60826,6.60826,0,0,0-3.64844.243A6.718,6.718,0,0,0,7.07709,4.147,6.27211,6.27211,0,0,0,5.23022,8.43164,11.18781,11.18781,0,0,0,6.7558,13.9494a1.34216,1.34216,0,0,0,1.32989.74726c.65332-.01569,1.30732-.00354,1.96106-.00354v-.00348q1.04187,0,2.08368.00048c.24927.00055.44654.06012.44458.37226-.00458.72522.00067,1.45044-.00335,2.1756-.00129.22015-.06324.432-.32612.43408-.26391.00207-.32641-.20893-.32971-.42951-.00512-.34716.00019-.69452.00061-1.04174.00049-.45105-.07342-.55677-.52319-.639a7.70231,7.70231,0,0,0-2.348-.0199,2.5959,2.5959,0,0,0-.80054.19476c-.21185.09973-.29608.24506-.19318.46729.10706.23126.20691.46728.3332.68786a43.875,43.875,0,0,0,3.42651,4.95569c.15393.19947.27313.20362.43109.0105.34869-.42639.71491-.83856,1.05994-1.26788a34.22649,34.22649,0,0,0,3.57635-5.25989,14.17129,14.17129,0,0,0,1.49451-3.87146A1.20324,1.20324,0,0,0,17.36145,9.824,6.94268,6.94268,0,0,0,15.691,9.66235c-.909-.00677-1.81812-.00348-2.72717-.00268-.24481.00024-.42688-.07007-.42707-.3573-.00048-1.01117-.00183-2.0224.00184-3.03351C12.53943,6.053,12.64349,5.92041,12.878,5.92841Z' + }) + ) +} + +export default UilSwiggy \ No newline at end of file diff --git a/src/icons/uil-swimmer.ts b/src/icons/uil-swimmer.ts new file mode 100644 index 00000000..3465837a --- /dev/null +++ b/src/icons/uil-swimmer.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSwimmer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9.28a2,2,0,1,0-2-2A2,2,0,0,0,17,9.28ZM2.71,13.92a3,3,0,0,1,.57.25,4.06,4.06,0,0,0,4.1,0,2.62,2.62,0,0,1,2.56,0l.21.1,0,0a4.14,4.14,0,0,0,3.87-.13,2.62,2.62,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,4,4,0,0,0,2-.56,3,3,0,0,1,.57-.25A1,1,0,1,0,20.71,12a4.82,4.82,0,0,0-1,.44,2.1,2.1,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.52,2.52,0,0,1-.29.12L14.34,11a.75.75,0,0,0,.09-.15,1,1,0,0,0,.12-.16,1.29,1.29,0,0,0,0-.19,1.06,1.06,0,0,0,0-.19,1.13,1.13,0,0,0,0-.18,1.06,1.06,0,0,0,0-.19,1.51,1.51,0,0,0-.1-.17.7.7,0,0,0-.1-.16L11.28,6.28s0,0,0,0A1.1,1.1,0,0,0,11,6.06a.8.8,0,0,0-.21,0,.53.53,0,0,0-.17,0A.89.89,0,0,0,10.2,6L6.66,7.32a1,1,0,0,0-.6,1.28,1,1,0,0,0,1.28.6l2.93-1.07,2,2.12-1.9,1.9a4.62,4.62,0,0,0-3.94.28,2.1,2.1,0,0,1-2.1,0,4.82,4.82,0,0,0-1-.44,1,1,0,1,0-.58,1.91Zm18,3.09a4.82,4.82,0,0,0-1,.44,2.1,2.1,0,0,1-2.1,0,4.62,4.62,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.62,4.62,0,0,0-4.54,0,2.1,2.1,0,0,1-2.1,0,4.82,4.82,0,0,0-1-.44,1,1,0,1,0-.58,1.91,3,3,0,0,1,.57.25,4.06,4.06,0,0,0,4.1,0,2.62,2.62,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.62,2.62,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,4,4,0,0,0,2-.56,3,3,0,0,1,.57-.25A1,1,0,1,0,20.71,17Z' + }) + ) +} + +export default UilSwimmer \ No newline at end of file diff --git a/src/icons/uil-sync-exclamation.ts b/src/icons/uil-sync-exclamation.ts new file mode 100644 index 00000000..38d762cb --- /dev/null +++ b/src/icons/uil-sync-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSyncExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.29,15.71A1,1,0,0,0,13,15a1.05,1.05,0,0,0-.29-.71,1,1,0,0,0-1.09-.21,1,1,0,0,0-.33.21A1.05,1.05,0,0,0,11,15,1,1,0,0,0,11.29,15.71Zm8.62-.2H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1H8.62a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Zm0,11a1,1,0,0,0,1-1V9a1,1,0,0,0-2,0v3A1,1,0,0,0,12,13Z' + }) + ) +} + +export default UilSyncExclamation \ No newline at end of file diff --git a/src/icons/uil-sync-slash.ts b/src/icons/uil-sync-slash.ts new file mode 100644 index 00000000..e051b2b9 --- /dev/null +++ b/src/icons/uil-sync-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSyncSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.88,15.5h-4.5a1,1,0,0,0,0,2h2.4A8,8,0,0,1,12,20a8.08,8.08,0,0,1-3.12-.63L7.39,20.86A9.83,9.83,0,0,0,12,22a10,10,0,0,0,6.88-2.77V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.88,15.5ZM18.31,7.1h0l1.43-1.43h0l2-2a1,1,0,1,0-1.42-1.42l-2,2A9.89,9.89,0,0,0,12,2,10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22a7.93,7.93,0,0,1,10.67-.81L5.69,16.89A7.93,7.93,0,0,1,4,12a1,1,0,0,0-2,0,9.89,9.89,0,0,0,2.27,6.32l-2,2a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l2-2h0l1.43-1.43h0Zm1.06,1.78A8.08,8.08,0,0,1,20,12a1,1,0,0,0,2,0,9.83,9.83,0,0,0-1.14-4.61Z' + }) + ) +} + +export default UilSyncSlash \ No newline at end of file diff --git a/src/icons/uil-sync.ts b/src/icons/uil-sync.ts new file mode 100644 index 00000000..545bb195 --- /dev/null +++ b/src/icons/uil-sync.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSync = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19.91,15.51H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Z' + }) + ) +} + +export default UilSync \ No newline at end of file diff --git a/src/icons/uil-syringe.ts b/src/icons/uil-syringe.ts new file mode 100644 index 00000000..9e489b0b --- /dev/null +++ b/src/icons/uil-syringe.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilSyringe = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,2.29a1,1,0,0,0-1.42,0L18.17,4.41l-.71-.7a1,1,0,0,0-1.41,0L14.64,5.12l-.71-.71a1,1,0,0,0-1.42,0L4.74,12.19,4,11.49A1,1,0,0,0,2.62,12.9l3.53,3.54L4.42,18.18l-.71-.72a1,1,0,0,0-1.42,1.42l2.83,2.83a1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42l-.71-.7,1.74-1.74,3.53,3.53a1,1,0,0,0,.71.3,1,1,0,0,0,.7-1.71l-.7-.71,7.78-7.77a1,1,0,0,0,0-1.42l-.71-.71L20.29,8a1,1,0,0,0,0-1.41l-.7-.71,2.12-2.12A1,1,0,0,0,21.71,2.29ZM7.57,15,6.15,13.61l1.41-1.42L9,13.61Zm2.82,2.83L9,16.44,10.39,15l1.42,1.42ZM13.22,15,9,10.78l4.24-4.24.71.7h0l3.53,3.54ZM17.46,8,16.05,6.54l.71-.71.7.7h0l.7.7Z' + }) + ) +} + +export default UilSyringe \ No newline at end of file diff --git a/src/icons/uil-table-tennis.ts b/src/icons/uil-table-tennis.ts new file mode 100644 index 00000000..da4fadf2 --- /dev/null +++ b/src/icons/uil-table-tennis.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTableTennis = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.71,16.1l-1.64-1.64a.94.94,0,0,1-.22-1.07A5.78,5.78,0,0,0,19.39,11a.36.36,0,0,0,0-.1,5.74,5.74,0,0,0-1.06-3.34,14.17,14.17,0,0,0-5.17-4.42,7,7,0,0,0-8,1.31l-.67.67a7,7,0,0,0-1.31,8.05l.1.17a3,3,0,0,0-.84,2.06A3,3,0,0,0,7,17.94c.18.14.34.29.52.42A5.55,5.55,0,0,0,8.74,19l.09,0c.18.07.37.13.57.19l.15,0a5.08,5.08,0,0,0,.95.15l.28,0h.12l.22,0c.21,0,.41,0,.62-.06h.17l0,0a5.46,5.46,0,0,0,1.42-.45,1,1,0,0,1,1.07.21l1.46,1.46a3.4,3.4,0,0,0,2.39,1,2.85,2.85,0,0,0,2-.85l.38-.38A3,3,0,0,0,20.71,16.1Zm-15.3.32a1,1,0,1,1,1-1A1,1,0,0,1,5.41,16.42Zm3.1.14-.26-.2a2.94,2.94,0,0,0,.16-.94,3,3,0,0,0-3-3c-.13,0-.25,0-.38,0l-.09-.16a5,5,0,0,1,.93-5.75l.67-.67A5,5,0,0,1,12.28,5a12,12,0,0,1,4.26,3.57Zm10.78,2.37-.37.38c-.42.42-1.07.34-1.61-.2l-1.46-1.45a3,3,0,0,0-3.34-.61,3.39,3.39,0,0,1-1,.31,2.84,2.84,0,0,1-.58.05l-.34,0h-.1l6.87-6.87a3.8,3.8,0,0,1-.34,2h0a3,3,0,0,0,.61,3.34l1.64,1.65A1,1,0,0,1,19.29,18.93Z' + }) + ) +} + +export default UilTableTennis \ No newline at end of file diff --git a/src/icons/uil-table.ts b/src/icons/uil-table.ts new file mode 100644 index 00000000..89af1dfd --- /dev/null +++ b/src/icons/uil-table.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTable = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V16H8Zm0-6H4V10H8ZM8,8H4V4H8Zm6,12H10V16h4Zm0-6H10V10h4Zm0-6H10V4h4Zm6,12H16V16h4Zm0-6H16V10h4Zm0-6H16V4h4Z' + }) + ) +} + +export default UilTable \ No newline at end of file diff --git a/src/icons/uil-tablet.ts b/src/icons/uil-tablet.ts new file mode 100644 index 00000000..0f72ec5f --- /dev/null +++ b/src/icons/uil-tablet.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTablet = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,2H7A3,3,0,0,0,4,5V19a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V5A3,3,0,0,0,17,2Zm1,17a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V5A1,1,0,0,1,7,4H17a1,1,0,0,1,1,1Zm-5.29-2.71A1,1,0,0,0,11.8,16l-.18.06a.76.76,0,0,0-.18.09l-.15.12a1,1,0,0,0-.21.33,1,1,0,0,0,.21,1.09,1.46,1.46,0,0,0,.33.22,1,1,0,0,0,1.09-.22A1,1,0,0,0,13,17a.84.84,0,0,0-.08-.38A1.15,1.15,0,0,0,12.71,16.29Z' + }) + ) +} + +export default UilTablet \ No newline at end of file diff --git a/src/icons/uil-tablets.ts b/src/icons/uil-tablets.ts new file mode 100644 index 00000000..25a1701c --- /dev/null +++ b/src/icons/uil-tablets.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTablets = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.54,3.46a5,5,0,1,0,0,7.08A5,5,0,0,0,20.54,3.46ZM14.88,4.88A3,3,0,0,1,17,4a3,3,0,0,1,1.28.3l-4,4A3,3,0,0,1,14.88,4.88Zm4.24,4.24a3,3,0,0,1-3.4.58l4-4A3,3,0,0,1,19.12,9.12ZM8,10a5.93,5.93,0,0,0-4.21,1.73l0,0,0,0A6,6,0,0,0,8,22a6,6,0,0,0,4.14-1.66l.12-.08a1.05,1.05,0,0,1,.07-.11A6,6,0,0,0,8,10ZM5.17,18.83A4,4,0,0,1,4.56,14L10,19.44A4,4,0,0,1,5.17,18.83ZM11.44,18,6,12.56A4,4,0,0,1,8,12a4,4,0,0,1,3.44,6Z' + }) + ) +} + +export default UilTablets \ No newline at end of file diff --git a/src/icons/uil-tachometer-fast-alt.ts b/src/icons/uil-tachometer-fast-alt.ts new file mode 100644 index 00000000..0397745b --- /dev/null +++ b/src/icons/uil-tachometer-fast-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTachometerFastAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12 5a10 10 0 0 0-8.66 15 1 1 0 0 0 1.74-1A7.92 7.92 0 0 1 4 15a8 8 0 1 1 14.93 4 1 1 0 0 0 .37 1.37 1 1 0 0 0 1.36-.37A10 10 0 0 0 12 5Zm2.84 5.76-1.55 1.54A2.91 2.91 0 0 0 12 12a3 3 0 1 0 3 3 2.9 2.9 0 0 0-.3-1.28l1.55-1.54a1 1 0 0 0 0-1.42 1 1 0 0 0-1.41 0ZM12 16a1 1 0 0 1 0-2 1 1 0 0 1 .7.28 1 1 0 0 1 .3.72 1 1 0 0 1-1 1Z' + }) + ) +} + +export default UilTachometerFastAlt \ No newline at end of file diff --git a/src/icons/uil-tachometer-fast.ts b/src/icons/uil-tachometer-fast.ts new file mode 100644 index 00000000..6eb8b5e2 --- /dev/null +++ b/src/icons/uil-tachometer-fast.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTachometerFast = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.29,10.29l-2.78,2.78A2.09,2.09,0,0,0,12,13a2,2,0,0,0-2,2,2.09,2.09,0,0,0,.07.51l-.78.78a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.78-.78A2.09,2.09,0,0,0,12,17a2,2,0,0,0,2-2,2.09,2.09,0,0,0-.07-.51l2.78-2.78a1,1,0,0,0-1.42-1.42ZM12,4A10,10,0,0,0,2,14a9.91,9.91,0,0,0,1.69,5.56,1,1,0,0,0,1.66-1.12,8,8,0,1,1,13.3,0,1,1,0,0,0,.27,1.39,1,1,0,0,0,.56.17,1,1,0,0,0,.83-.44A9.91,9.91,0,0,0,22,14,10,10,0,0,0,12,4Z' + }) + ) +} + +export default UilTachometerFast \ No newline at end of file diff --git a/src/icons/uil-tag-alt.ts b/src/icons/uil-tag-alt.ts new file mode 100644 index 00000000..72e675e3 --- /dev/null +++ b/src/icons/uil-tag-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTagAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.5,6A1.5,1.5,0,1,0,9,7.5,1.5,1.5,0,0,0,7.5,6Zm13.62,4.71L12.71,2.29A1,1,0,0,0,12,2H3A1,1,0,0,0,2,3v9a1,1,0,0,0,.29.71l8.42,8.41a3,3,0,0,0,4.24,0L21.12,15a3,3,0,0,0,0-4.24Zm-1.41,2.82h0l-6.18,6.17a1,1,0,0,1-1.41,0L4,11.59V4h7.59l8.12,8.12a1,1,0,0,1,.29.71A1,1,0,0,1,19.71,13.53Z' + }) + ) +} + +export default UilTagAlt \ No newline at end of file diff --git a/src/icons/uil-tag.ts b/src/icons/uil-tag.ts new file mode 100644 index 00000000..020a7ea4 --- /dev/null +++ b/src/icons/uil-tag.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTag = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.12,10.71,12.71,2.29A1,1,0,0,0,12,2H3A1,1,0,0,0,2,3v9a1,1,0,0,0,.29.71l8.42,8.41a3,3,0,0,0,4.24,0L21.12,15a3,3,0,0,0,0-4.24Zm-1.41,2.82h0l-6.18,6.17a1,1,0,0,1-1.41,0L4,11.59V4h7.59l8.12,8.12a1,1,0,0,1,.29.71A1,1,0,0,1,19.71,13.53Z' + }) + ) +} + +export default UilTag \ No newline at end of file diff --git a/src/icons/uil-tape.ts b/src/icons/uil-tape.ts new file mode 100644 index 00000000..251c2313 --- /dev/null +++ b/src/icons/uil-tape.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTape = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.5,7a4,4,0,1,0,4,4A4,4,0,0,0,14.5,7Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,14.5,13Zm1-10h-2a7,7,0,0,0-7,7v3h-1a1,1,0,0,0,0,2h1v2h-4a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V19h12a7,7,0,0,0,7-7V10A7,7,0,0,0,15.5,3Zm5,9a5,5,0,0,1-5,5h-7V10a5,5,0,0,1,5-5h2a5,5,0,0,1,5,5Z' + }) + ) +} + +export default UilTape \ No newline at end of file diff --git a/src/icons/uil-taxi.ts b/src/icons/uil-taxi.ts new file mode 100644 index 00000000..822bfadf --- /dev/null +++ b/src/icons/uil-taxi.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTaxi = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.38,14.58a1,1,0,0,0-.58-.06.64.64,0,0,0-.18.06.76.76,0,0,0-.18.09l-.15.12a1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.19,1.19,0,0,0,.33.22,1,1,0,0,0,1.09-.22,1.15,1.15,0,0,0,.21-.33A.84.84,0,0,0,18,15.5a1.05,1.05,0,0,0-.29-.71A.93.93,0,0,0,17.38,14.58ZM20,10.68V7.5a3,3,0,0,0-3-3h-.78l-.77-2.32a1,1,0,0,0-.95-.68h-5a1,1,0,0,0-.95.68L7.78,4.5H7a3,3,0,0,0-3,3v3.18A3,3,0,0,0,2,13.5v6a1,1,0,0,0,1,1H4v1a1,1,0,0,0,2,0v-1H18v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,1-1v-6A3,3,0,0,0,20,10.68ZM10.22,3.5h3.56l.33,1H9.89ZM6,7.5a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1v3H6Zm14,11H4v-5a1,1,0,0,1,1-1H19a1,1,0,0,1,1,1ZM6.62,14.58a1,1,0,0,0-.33.21A1.05,1.05,0,0,0,6,15.5a1,1,0,0,0,1.38.93,1.19,1.19,0,0,0,.33-.22A1,1,0,0,0,8,15.5a1.05,1.05,0,0,0-.29-.71A1,1,0,0,0,6.62,14.58ZM13,14.5H11a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTaxi \ No newline at end of file diff --git a/src/icons/uil-tear.ts b/src/icons/uil-tear.ts new file mode 100644 index 00000000..8d4d5335 --- /dev/null +++ b/src/icons/uil-tear.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTear = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.56,2.17a1,1,0,0,0-1.12,0c-.3.2-7.19,5-7.19,12.08a7.75,7.75,0,0,0,15.5,0C19.75,7.05,12.85,2.36,12.56,2.17ZM12,20a5.76,5.76,0,0,1-5.75-5.75c0-5,4.21-8.77,5.75-10,1.55,1.21,5.75,5,5.75,10A5.76,5.76,0,0,1,12,20Z' + }) + ) +} + +export default UilTear \ No newline at end of file diff --git a/src/icons/uil-telegram-alt.ts b/src/icons/uil-telegram-alt.ts new file mode 100644 index 00000000..39eacf78 --- /dev/null +++ b/src/icons/uil-telegram-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTelegramAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.26465,2.42773a2.04837,2.04837,0,0,0-2.07813-.32421L2.26562,9.33887a2.043,2.043,0,0,0,.1045,3.81836l3.625,1.26074,2.0205,6.68164A.998.998,0,0,0,8.134,21.352c.00775.012.01868.02093.02692.03259a.98844.98844,0,0,0,.21143.21576c.02307.01758.04516.03406.06982.04968a.98592.98592,0,0,0,.31073.13611l.01184.001.00671.00287a1.02183,1.02183,0,0,0,.20215.02051c.00653,0,.01233-.00312.0188-.00324a.99255.99255,0,0,0,.30109-.05231c.02258-.00769.04193-.02056.06384-.02984a.9931.9931,0,0,0,.20429-.11456,250.75993,250.75993,0,0,1,.15222-.12818L12.416,18.499l4.03027,3.12207a2.02322,2.02322,0,0,0,1.24121.42676A2.05413,2.05413,0,0,0,19.69531,20.415L22.958,4.39844A2.02966,2.02966,0,0,0,22.26465,2.42773ZM9.37012,14.73633a.99357.99357,0,0,0-.27246.50586l-.30951,1.504-.78406-2.59307,4.06525-2.11695ZM17.67188,20.04l-4.7627-3.68945a1.00134,1.00134,0,0,0-1.35352.11914l-.86541.9552.30584-1.48645,7.083-7.083a.99975.99975,0,0,0-1.16894-1.59375L6.74487,12.55432,3.02051,11.19141,20.999,3.999Z' + }) + ) +} + +export default UilTelegramAlt \ No newline at end of file diff --git a/src/icons/uil-telegram.ts b/src/icons/uil-telegram.ts new file mode 100644 index 00000000..b85e4610 --- /dev/null +++ b/src/icons/uil-telegram.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTelegram = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.99432,2a10,10,0,1,0,10,10A9.99917,9.99917,0,0,0,11.99432,2Zm3.17951,15.15247a.70547.70547,0,0,1-1.002.3515l-2.71467-2.10938L9.71484,17.002a.29969.29969,0,0,1-.285.03894l.334-2.98846.01069.00848.00683-.059s4.885-4.44751,5.084-4.637c.20147-.189.135-.23.135-.23.01147-.23053-.36152,0-.36152,0L8.16632,13.299l-2.69549-.918s-.414-.1485-.453-.475c-.041-.324.46649-.5.46649-.5l10.717-4.25751s.881-.39252.881.25751Z' + }) + ) +} + +export default UilTelegram \ No newline at end of file diff --git a/src/icons/uil-telescope.ts b/src/icons/uil-telescope.ts new file mode 100644 index 00000000..28abb6a2 --- /dev/null +++ b/src/icons/uil-telescope.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTelescope = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.9,7.59l-1-3.87A3,3,0,0,0,17.19,1.6l-1.93.52a1,1,0,0,0-.71,1.23l.26,1L4.19,7.16a1,1,0,0,0-.71,1.22l.26,1-1,.26a1,1,0,0,0,.25,2,1.09,1.09,0,0,0,.26,0l1-.27.26,1a1,1,0,0,0,.46.6,1,1,0,0,0,.5.14.75.75,0,0,0,.26,0L9,12.08v.42a2.9,2.9,0,0,0,.3,1.28l-5,5a1,1,0,0,0,1.41,1.42l5-5,.28.11V21.5a1,1,0,0,0,2,0V15.32a2.52,2.52,0,0,0,.29-.12l5,5a1,1,0,1,0,1.41-1.42l-5-5A3.09,3.09,0,0,0,15,12.5v-2l1.35-.36.25,1a1,1,0,0,0,1,.74l.26,0,1.93-.52A3,3,0,0,0,21.9,7.59ZM13,12.5a1,1,0,0,1-.28.69h0v0a1,1,0,0,1-.69.28,1,1,0,0,1-.7-.29h0a1,1,0,0,1-.29-.7v-1L13,11ZM6.19,10.76,5.67,8.83l9.66-2.59.26,1,.26,1Zm13.68-1.9a1,1,0,0,1-.61.47l-1,.26-.78-2.9L17,4.76h0l-.26-1,1-.26a1,1,0,0,1,1.23.71l1,3.87A1,1,0,0,1,19.87,8.86Z' + }) + ) +} + +export default UilTelescope \ No newline at end of file diff --git a/src/icons/uil-temperature-empty.ts b/src/icons/uil-temperature-empty.ts new file mode 100644 index 00000000..8933c39b --- /dev/null +++ b/src/icons/uil-temperature-empty.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperatureEmpty = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,15a2,2,0,1,0,2,2A2,2,0,0,0,12,15Zm4.5-2V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' + }) + ) +} + +export default UilTemperatureEmpty \ No newline at end of file diff --git a/src/icons/uil-temperature-half.ts b/src/icons/uil-temperature-half.ts new file mode 100644 index 00000000..917a91d5 --- /dev/null +++ b/src/icons/uil-temperature-half.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperatureHalf = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,15.28V10.5a1,1,0,0,0-2,0v4.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' + }) + ) +} + +export default UilTemperatureHalf \ No newline at end of file diff --git a/src/icons/uil-temperature-minus.ts b/src/icons/uil-temperature-minus.ts new file mode 100644 index 00000000..a533a3cc --- /dev/null +++ b/src/icons/uil-temperature-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperatureMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14,5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,9.49,23,6,6,0,0,0,14,13ZM12,20.11a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6ZM10.5,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,7.5,17a2,2,0,0,0,4,0A2,2,0,0,0,10.5,15.28Zm9-12.78h-3a1,1,0,0,0,0,2h3a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTemperatureMinus \ No newline at end of file diff --git a/src/icons/uil-temperature-plus.ts b/src/icons/uil-temperature-plus.ts new file mode 100644 index 00000000..5131a1f6 --- /dev/null +++ b/src/icons/uil-temperature-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperaturePlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.5,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,7.5,17a2,2,0,0,0,4,0A2,2,0,0,0,10.5,15.28Zm9-12.78H19V2a1,1,0,0,0-2,0v.5h-.5a1,1,0,0,0,0,2H17V5a1,1,0,0,0,2,0V4.5h.5a1,1,0,0,0,0-2ZM14,5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,9.49,23,6,6,0,0,0,14,13ZM12,20.11a4,4,0,0,1-6.42-2.2,4,4,0,0,1,1.1-3.76,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' + }) + ) +} + +export default UilTemperaturePlus \ No newline at end of file diff --git a/src/icons/uil-temperature-quarter.ts b/src/icons/uil-temperature-quarter.ts new file mode 100644 index 00000000..1da58bbe --- /dev/null +++ b/src/icons/uil-temperature-quarter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperatureQuarter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6ZM13,15.28V12.5a1,1,0,0,0-2,0v2.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28Z' + }) + ) +} + +export default UilTemperatureQuarter \ No newline at end of file diff --git a/src/icons/uil-temperature-three-quarter.ts b/src/icons/uil-temperature-three-quarter.ts new file mode 100644 index 00000000..c734e592 --- /dev/null +++ b/src/icons/uil-temperature-three-quarter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperatureThreeQuarter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,15.28V8.5a1,1,0,0,0-2,0v6.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-5.32-6,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' + }) + ) +} + +export default UilTemperatureThreeQuarter \ No newline at end of file diff --git a/src/icons/uil-temperature.ts b/src/icons/uil-temperature.ts new file mode 100644 index 00000000..6118a4fa --- /dev/null +++ b/src/icons/uil-temperature.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTemperature = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13,15.28V5.5a1,1,0,0,0-2,0v9.78A2,2,0,0,0,10,17a2,2,0,0,0,4,0A2,2,0,0,0,13,15.28ZM16.5,13V5.5a4.5,4.5,0,0,0-9,0V13a6,6,0,0,0,3.21,9.83A7,7,0,0,0,12,23,6,6,0,0,0,16.5,13Zm-2,7.07a4,4,0,0,1-6.42-2.2,4,4,0,0,1,1.1-3.76,1,1,0,0,0,.3-.71V5.5a2.5,2.5,0,0,1,5,0v7.94a1,1,0,0,0,.3.71,4,4,0,0,1-.28,6Z' + }) + ) +} + +export default UilTemperature \ No newline at end of file diff --git a/src/icons/uil-tennis-ball.ts b/src/icons/uil-tennis-ball.ts new file mode 100644 index 00000000..9179968f --- /dev/null +++ b/src/icons/uil-tennis-ball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTennisBall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,4.65,18.76l.09.1a10,10,0,0,0,14.52,0l.09-.1A10,10,0,0,0,12,2ZM5.61,16.79a7.93,7.93,0,0,1,0-9.58,6,6,0,0,1,0,9.58ZM12,20a7.91,7.91,0,0,1-5-1.77A8,8,0,0,0,7,5.77a7.95,7.95,0,0,1,10,0,8,8,0,0,0,0,12.46A7.91,7.91,0,0,1,12,20Zm6.39-3.21a6,6,0,0,1,0-9.58,7.93,7.93,0,0,1,0,9.58Z' + }) + ) +} + +export default UilTennisBall \ No newline at end of file diff --git a/src/icons/uil-text-fields.ts b/src/icons/uil-text-fields.ts new file mode 100644 index 00000000..16234907 --- /dev/null +++ b/src/icons/uil-text-fields.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTextFields = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,6a1,1,0,0,0-1-1H3A1,1,0,0,0,3,7H8V18a1,1,0,0,0,2,0V7h5A1,1,0,0,0,16,6Zm5,5H15a1,1,0,0,0,0,2h2v5a1,1,0,0,0,2,0V13h2a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTextFields \ No newline at end of file diff --git a/src/icons/uil-text-size.ts b/src/icons/uil-text-size.ts new file mode 100644 index 00000000..b65ed117 --- /dev/null +++ b/src/icons/uil-text-size.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTextSize = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,11H3a1,1,0,0,0,0,2H5v5a1,1,0,0,0,2,0V13H9a1,1,0,0,0,0-2ZM21,5H9A1,1,0,0,0,9,7h5V18a1,1,0,0,0,2,0V7h5a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTextSize \ No newline at end of file diff --git a/src/icons/uil-text-strike-through.ts b/src/icons/uil-text-strike-through.ts new file mode 100644 index 00000000..1f530c26 --- /dev/null +++ b/src/icons/uil-text-strike-through.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTextStrikeThrough = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15,13H9a1,1,0,0,0,0,2h2v2a1,1,0,0,0,2,0V15h2a1,1,0,0,0,0-2Zm2-7H7A1,1,0,0,0,7,8h4v2a1,1,0,0,0,2,0V8h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTextStrikeThrough \ No newline at end of file diff --git a/src/icons/uil-text.ts b/src/icons/uil-text.ts new file mode 100644 index 00000000..1b269d1b --- /dev/null +++ b/src/icons/uil-text.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilText = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,6H7A1,1,0,0,0,7,8h4v9a1,1,0,0,0,2,0V8h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilText \ No newline at end of file diff --git a/src/icons/uil-th-large.ts b/src/icons/uil-th-large.ts new file mode 100644 index 00000000..c3e4a50d --- /dev/null +++ b/src/icons/uil-th-large.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThLarge = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,3H4A1,1,0,0,0,3,4V20a1,1,0,0,0,1,1H20a1,1,0,0,0,1-1V4A1,1,0,0,0,20,3ZM11,19H5V13h6Zm0-8H5V5h6Zm8,8H13V13h6Zm0-8H13V5h6Z' + }) + ) +} + +export default UilThLarge \ No newline at end of file diff --git a/src/icons/uil-th-slash.ts b/src/icons/uil-th-slash.ts new file mode 100644 index 00000000..67542085 --- /dev/null +++ b/src/icons/uil-th-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.71,21.29l-1-1h0l-6-6h0l-6-6h0l-6-6h0l-1-1A1,1,0,0,0,1.29,2.71l.71.7V21a1,1,0,0,0,1,1H20.59l.7.71a1,1,0,0,0,1.42,0A1,1,0,0,0,22.71,21.29ZM4,5.41,6.59,8H4ZM8,20H4V16H8Zm0-6H4V10H8Zm2-2.59L12.59,14H10ZM14,20H10V16h4Zm2,0V17.41L18.59,20ZM8.67,4H14V9a1,1,0,0,0,1,1h5v5.33a1,1,0,1,0,2,0V3a1,1,0,0,0-1-1H8.67a1,1,0,0,0,0,2ZM16,4h4V8H16Z' + }) + ) +} + +export default UilThSlash \ No newline at end of file diff --git a/src/icons/uil-th.ts b/src/icons/uil-th.ts new file mode 100644 index 00000000..38141f7a --- /dev/null +++ b/src/icons/uil-th.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTh = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V13h7Zm0-9H4V4h7Zm9,9H13V13h7Zm0-9H13V4h7Z' + }) + ) +} + +export default UilTh \ No newline at end of file diff --git a/src/icons/uil-thermometer.ts b/src/icons/uil-thermometer.ts new file mode 100644 index 00000000..5374a0e4 --- /dev/null +++ b/src/icons/uil-thermometer.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThermometer = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.29,6.29l-7,7a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l7-7a1,1,0,1,0-1.42-1.42Zm4.25-2.83a5,5,0,0,0-7.08,0L5.29,11.69a1,1,0,0,0-.29.7v5.19L2.29,20.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L6.42,19h5.19a1,1,0,0,0,.7-.29l8.23-8.17A5,5,0,0,0,20.54,3.46ZM19.12,9.12,11.2,17H7V12.8l7.88-7.92a3,3,0,0,1,4.24,4.24Z' + }) + ) +} + +export default UilThermometer \ No newline at end of file diff --git a/src/icons/uil-thumbs-down.ts b/src/icons/uil-thumbs-down.ts new file mode 100644 index 00000000..51e46eee --- /dev/null +++ b/src/icons/uil-thumbs-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThumbsDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H6.27A3,3,0,0,0,3.32,4.46l-1.27,7A3,3,0,0,0,5,15H9.56L9,16.43A4.13,4.13,0,0,0,12.89,22a1,1,0,0,0,.91-.59L16.65,15H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM15,13.79l-2.72,6.12a2.13,2.13,0,0,1-1.38-2.78l.53-1.43A2,2,0,0,0,9.56,13H5a1,1,0,0,1-.77-.36A1,1,0,0,1,4,11.82l1.27-7a1,1,0,0,1,1-.82H15ZM20,12a1,1,0,0,1-1,1H17V4h2a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilThumbsDown \ No newline at end of file diff --git a/src/icons/uil-thumbs-up.ts b/src/icons/uil-thumbs-up.ts new file mode 100644 index 00000000..c84de5a3 --- /dev/null +++ b/src/icons/uil-thumbs-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThumbsUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.3,10.08A3,3,0,0,0,19,9H14.44L15,7.57A4.13,4.13,0,0,0,11.11,2a1,1,0,0,0-.91.59L7.35,9H5a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17.73a3,3,0,0,0,2.95-2.46l1.27-7A3,3,0,0,0,21.3,10.08ZM7,20H5a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H7Zm13-7.82-1.27,7a1,1,0,0,1-1,.82H9V10.21l2.72-6.12A2.11,2.11,0,0,1,13.1,6.87L12.57,8.3A2,2,0,0,0,14.44,11H19a1,1,0,0,1,.77.36A1,1,0,0,1,20,12.18Z' + }) + ) +} + +export default UilThumbsUp \ No newline at end of file diff --git a/src/icons/uil-thunderstorm-moon.ts b/src/icons/uil-thunderstorm-moon.ts new file mode 100644 index 00000000..6536aa28 --- /dev/null +++ b/src/icons/uil-thunderstorm-moon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThunderstormMoon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.58,16.5H10.32l.86-1.5a1,1,0,1,0-1.73-1L7.72,17a1,1,0,0,0,.86,1.5H9.85L9,20a1,1,0,0,0,1.74,1l1.73-3a1,1,0,0,0,0-1A1,1,0,0,0,11.58,16.5ZM21.7,7.57a1,1,0,0,0-.93-.26,3.2,3.2,0,0,1-.66.08,3,3,0,0,1-3-3,3,3,0,0,1,.08-.65A1,1,0,0,0,16,2.53a4.93,4.93,0,0,0-3.83,4.21A6.24,6.24,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.49,3.49,0,0,0-.34,6.62,1,1,0,1,0,.72-1.86A1.5,1.5,0,0,1,5.5,13.5a1,1,0,0,0,1-1,4,4,0,0,1,4-4,3.92,3.92,0,0,1,2.18.66l0,0a4,4,0,0,1,1.57,2,1,1,0,0,0,.78.67,2.33,2.33,0,0,1,.25,4.53,1,1,0,0,0,.27,2,.84.84,0,0,0,.27,0A4.33,4.33,0,0,0,19,14.17a4.23,4.23,0,0,0-.49-2A4.94,4.94,0,0,0,22,8.5,1,1,0,0,0,21.7,7.57Zm-4.59,2.82a2.61,2.61,0,0,1-.42,0A4.6,4.6,0,0,0,16,10a6,6,0,0,0-1.82-2.28c0-.12,0-.25,0-.37a3,3,0,0,1,1.05-2.28,5,5,0,0,0,4.23,4.23A3,3,0,0,1,17.11,10.39Z' + }) + ) +} + +export default UilThunderstormMoon \ No newline at end of file diff --git a/src/icons/uil-thunderstorm-sun.ts b/src/icons/uil-thunderstorm-sun.ts new file mode 100644 index 00000000..fe21a061 --- /dev/null +++ b/src/icons/uil-thunderstorm-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThunderstormSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.58,16.5H10.32l.86-1.5a1,1,0,1,0-1.73-1L7.72,17a1,1,0,0,0,.86,1.5H9.85L9,20a1,1,0,0,0,1.74,1l1.73-3a1,1,0,0,0,0-1A1,1,0,0,0,11.58,16.5ZM21,7.5h-.8a4.25,4.25,0,0,0-.52-1.27l.56-.56a1,1,0,0,0-1.41-1.41l-.56.56A4.25,4.25,0,0,0,17,4.3V3.5a1,1,0,0,0-2,0v.8a4.25,4.25,0,0,0-1.27.52l-.56-.56a1,1,0,0,0-1.41,1.41l.56.57c-.09.15-.16.32-.24.48A5.85,5.85,0,0,0,10.5,6.5a6,6,0,0,0-5.94,5.13,3.49,3.49,0,0,0-.34,6.62,1,1,0,1,0,.72-1.86A1.5,1.5,0,0,1,5.5,13.5a1,1,0,0,0,1-1,4,4,0,0,1,7.78-1.29,1,1,0,0,0,.78.67,2.33,2.33,0,0,1,.25,4.53,1,1,0,0,0,.27,2,.84.84,0,0,0,.27,0,4.3,4.3,0,0,0,2.85-5.72l.13.13a1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.41l-.56-.56A4.25,4.25,0,0,0,20.2,9.5H21a1,1,0,0,0,0-2Zm-3.34,2.65h0a2.28,2.28,0,0,1-.6.41A4.17,4.17,0,0,0,16,10a6.12,6.12,0,0,0-2.09-2.49,2.42,2.42,0,0,1,.46-.7h0a2.43,2.43,0,0,1,3.3,0h0a2.37,2.37,0,0,1,0,3.3Z' + }) + ) +} + +export default UilThunderstormSun \ No newline at end of file diff --git a/src/icons/uil-thunderstorm.ts b/src/icons/uil-thunderstorm.ts new file mode 100644 index 00000000..b76440fb --- /dev/null +++ b/src/icons/uil-thunderstorm.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilThunderstorm = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.5,15H11.23l1.45-2.5a1,1,0,1,0-1.74-1l-2.31,4a1,1,0,0,0,0,1,1,1,0,0,0,.87.5h2.27l-1.45,2.5a1,1,0,0,0,1.74,1l2.31-4a1,1,0,0,0,0-1A1,1,0,0,0,13.5,15Zm4.92-7.79A7,7,0,0,0,5.06,9.11,4,4,0,0,0,6,17a1,1,0,0,0,0-2,2,2,0,0,1,0-4,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,17,15a1,1,0,0,0,0,2,5,5,0,0,0,1.42-9.79Z' + }) + ) +} + +export default UilThunderstorm \ No newline at end of file diff --git a/src/icons/uil-ticket.ts b/src/icons/uil-ticket.ts new file mode 100644 index 00000000..6c2d40af --- /dev/null +++ b/src/icons/uil-ticket.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTicket = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9,10a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0V11A1,1,0,0,0,9,10Zm12,1a1,1,0,0,0,1-1V6a1,1,0,0,0-1-1H3A1,1,0,0,0,2,6v4a1,1,0,0,0,1,1,1,1,0,0,1,0,2,1,1,0,0,0-1,1v4a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V14a1,1,0,0,0-1-1,1,1,0,0,1,0-2ZM20,9.18a3,3,0,0,0,0,5.64V17H10a1,1,0,0,0-2,0H4V14.82A3,3,0,0,0,4,9.18V7H8a1,1,0,0,0,2,0H20Z' + }) + ) +} + +export default UilTicket \ No newline at end of file diff --git a/src/icons/uil-times-circle.ts b/src/icons/uil-times-circle.ts new file mode 100644 index 00000000..a10eb707 --- /dev/null +++ b/src/icons/uil-times-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTimesCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.71,8.29a1,1,0,0,0-1.42,0L12,10.59,9.71,8.29A1,1,0,0,0,8.29,9.71L10.59,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,12l2.3-2.29A1,1,0,0,0,15.71,8.29Zm3.36-3.36A10,10,0,1,0,4.93,19.07,10,10,0,1,0,19.07,4.93ZM17.66,17.66A8,8,0,1,1,20,12,7.95,7.95,0,0,1,17.66,17.66Z' + }) + ) +} + +export default UilTimesCircle \ No newline at end of file diff --git a/src/icons/uil-times-square.ts b/src/icons/uil-times-square.ts new file mode 100644 index 00000000..04650e0e --- /dev/null +++ b/src/icons/uil-times-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTimesSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.71,8.29a1,1,0,0,0-1.42,0L12,10.59,9.71,8.29A1,1,0,0,0,8.29,9.71L10.59,12l-2.3,2.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42L13.41,12l2.3-2.29A1,1,0,0,0,15.71,8.29ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilTimesSquare \ No newline at end of file diff --git a/src/icons/uil-times.ts b/src/icons/uil-times.ts new file mode 100644 index 00000000..a614c6ec --- /dev/null +++ b/src/icons/uil-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.41,12l4.3-4.29a1,1,0,1,0-1.42-1.42L12,10.59,7.71,6.29A1,1,0,0,0,6.29,7.71L10.59,12l-4.3,4.29a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0L12,13.41l4.29,4.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilTimes \ No newline at end of file diff --git a/src/icons/uil-toggle-off.ts b/src/icons/uil-toggle-off.ts new file mode 100644 index 00000000..90fb64c4 --- /dev/null +++ b/src/icons/uil-toggle-off.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilToggleOff = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8,8.5A3.5,3.5,0,1,0,11.5,12,3.5,3.5,0,0,0,8,8.5Zm0,5A1.5,1.5,0,1,1,9.5,12,1.5,1.5,0,0,1,8,13.5ZM16,5H8A7,7,0,0,0,8,19h8A7,7,0,0,0,16,5Zm0,12H8A5,5,0,0,1,8,7h8a5,5,0,0,1,0,10Z' + }) + ) +} + +export default UilToggleOff \ No newline at end of file diff --git a/src/icons/uil-toggle-on.ts b/src/icons/uil-toggle-on.ts new file mode 100644 index 00000000..b9cd484d --- /dev/null +++ b/src/icons/uil-toggle-on.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilToggleOn = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,8.5A3.5,3.5,0,1,0,19.5,12,3.5,3.5,0,0,0,16,8.5Zm0,5A1.5,1.5,0,1,1,17.5,12,1.5,1.5,0,0,1,16,13.5ZM16,5H8A7,7,0,0,0,8,19h8A7,7,0,0,0,16,5Zm0,12H8A5,5,0,0,1,8,7h8a5,5,0,0,1,0,10Z' + }) + ) +} + +export default UilToggleOn \ No newline at end of file diff --git a/src/icons/uil-toilet-paper.ts b/src/icons/uil-toilet-paper.ts new file mode 100644 index 00000000..bf628f8d --- /dev/null +++ b/src/icons/uil-toilet-paper.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilToiletPaper = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.26 20.357a7.523 7.523 0 0 1-1.76-4.905v-7.46c0-3.308-2.243-6-5-6h-9c-2.757 0-5 2.692-5 6s2.243 6 5 6h3v1.46a9.527 9.527 0 0 0 2.24 6.206 1.001 1.001 0 0 0 .76.35h9a1 1 0 0 0 .76-1.651ZM6.5 11.993c-1.654 0-3-1.795-3-4s1.346-4 3-4 3 1.794 3 4-1.346 4-3 4Zm6.479 8.014a7.58 7.58 0 0 1-1.479-4.555v-7c0-.028-.014-.052-.016-.08.007-.126.016-.251.016-.38a6.68 6.68 0 0 0-1.284-4H15.5c1.654 0 3 1.795 3 4v7.46a9.71 9.71 0 0 0 1.118 4.555ZM6.5 6.743a1.146 1.146 0 0 0-1 1.25 1.146 1.146 0 0 0 1 1.25 1.146 1.146 0 0 0 1-1.25 1.146 1.146 0 0 0-1-1.25Z' + }) + ) +} + +export default UilToiletPaper \ No newline at end of file diff --git a/src/icons/uil-top-arrow-from-top.ts b/src/icons/uil-top-arrow-from-top.ts new file mode 100644 index 00000000..6a93dfad --- /dev/null +++ b/src/icons/uil-top-arrow-from-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTopArrowFromTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,20H5a1,1,0,0,0,0,2H19a1,1,0,0,0,0-2ZM8.71,7.71,11,5.41V17a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71Z' + }) + ) +} + +export default UilTopArrowFromTop \ No newline at end of file diff --git a/src/icons/uil-top-arrow-to-top.ts b/src/icons/uil-top-arrow-to-top.ts new file mode 100644 index 00000000..02e17f20 --- /dev/null +++ b/src/icons/uil-top-arrow-to-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTopArrowToTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.71,6.29a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4a1,1,0,1,0,1.42,1.42L11,9.41V21a1,1,0,0,0,2,0V9.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM19,2H5A1,1,0,0,0,5,4H19a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTopArrowToTop \ No newline at end of file diff --git a/src/icons/uil-tornado.ts b/src/icons/uil-tornado.ts new file mode 100644 index 00000000..a6a935e0 --- /dev/null +++ b/src/icons/uil-tornado.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTornado = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,21H8a1,1,0,0,0,0,2h2a1,1,0,0,0,0-2Zm1-4H6a1,1,0,0,0,0,2h5a1,1,0,0,0,0-2ZM18,2a1,1,0,0,0-1-1H3A1,1,0,0,0,3,3H17A1,1,0,0,0,18,2Zm3,3H6A1,1,0,0,0,6,7H21a1,1,0,0,0,0-2ZM19,9H10a1,1,0,0,0,0,2h9a1,1,0,0,0,0-2Zm-5,4H8a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilTornado \ No newline at end of file diff --git a/src/icons/uil-trademark-circle.ts b/src/icons/uil-trademark-circle.ts new file mode 100644 index 00000000..9e554a3b --- /dev/null +++ b/src/icons/uil-trademark-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrademarkCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,9H7a1,1,0,0,0,0,2h.5v3a1,1,0,0,0,2,0V11H10a1,1,0,0,0,0-2Zm7.38.08a1,1,0,0,0-1.09.21L15,10.59l-1.29-1.3a1,1,0,0,0-1.09-.21A1,1,0,0,0,12,10v4a1,1,0,0,0,2,0V12.41l.29.3a1,1,0,0,0,1.42,0l.29-.3V14a1,1,0,0,0,2,0V10A1,1,0,0,0,17.38,9.08ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilTrademarkCircle \ No newline at end of file diff --git a/src/icons/uil-trademark.ts b/src/icons/uil-trademark.ts new file mode 100644 index 00000000..8d194314 --- /dev/null +++ b/src/icons/uil-trademark.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrademark = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.5,7h-6a1,1,0,0,0,0,2h2v7a1,1,0,0,0,2,0V9h2a1,1,0,0,0,0-2Zm11.92.62a1,1,0,0,0-.54-.54,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21L17,10.09l-2.79-2.8a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.54.54A1,1,0,0,0,12.5,8v8a1,1,0,0,0,2,0V10.41l1.79,1.8a1,1,0,0,0,1.42,0l1.79-1.8V16a1,1,0,0,0,2,0V8A1,1,0,0,0,21.42,7.62Z' + }) + ) +} + +export default UilTrademark \ No newline at end of file diff --git a/src/icons/uil-traffic-barrier.ts b/src/icons/uil-traffic-barrier.ts new file mode 100644 index 00000000..b6fa063a --- /dev/null +++ b/src/icons/uil-traffic-barrier.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrafficBarrier = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,5H20V4a1,1,0,0,0-2,0V5H6V4A1,1,0,0,0,4,4V5H3A1,1,0,0,0,2,6v6a1,1,0,0,0,1,1H4v7a1,1,0,0,0,2,0V13H18v7a1,1,0,0,0,2,0V13h1a1,1,0,0,0,1-1V6A1,1,0,0,0,21,5ZM4,9.52V7H6.52ZM5.34,11l4-4h3.33l-4,4Zm6.15,0,4-4h3.18l-4,4ZM20,11H17.49L20,8.49Z' + }) + ) +} + +export default UilTrafficBarrier \ No newline at end of file diff --git a/src/icons/uil-traffic-light.ts b/src/icons/uil-traffic-light.ts new file mode 100644 index 00000000..e4e763f5 --- /dev/null +++ b/src/icons/uil-traffic-light.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrafficLight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,5.5A1.5,1.5,0,1,0,13.5,7,1.5,1.5,0,0,0,12,5.5Zm10,3h-.54A6,6,0,0,0,23,4.5a1,1,0,0,0-1-1H17.82A3,3,0,0,0,15,1.5H9a3,3,0,0,0-2.82,2H2a1,1,0,0,0-1,1,6,6,0,0,0,1.54,4H2a1,1,0,0,0-1,1,6,6,0,0,0,1.54,4H2a1,1,0,0,0-1,1,6,6,0,0,0,5.16,5.93A3,3,0,0,0,9,22.5h6a3,3,0,0,0,2.84-2.07A6,6,0,0,0,23,14.5a1,1,0,0,0-1-1h-.54A6,6,0,0,0,23,9.5,1,1,0,0,0,22,8.5ZM6,18.37A4,4,0,0,1,3.13,15.5H6Zm0-5A4,4,0,0,1,3.13,10.5H6Zm0-5a4.09,4.09,0,0,1-1.83-1,4.09,4.09,0,0,1-1-1.83H6ZM16,19.5a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V4.5a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1Zm3.83-2.17a4.09,4.09,0,0,1-1.83,1V15.5h2.87A4.09,4.09,0,0,1,19.83,17.33Zm0-5a4.09,4.09,0,0,1-1.83,1V10.5h2.87A4.09,4.09,0,0,1,19.83,12.33Zm0-5a4.09,4.09,0,0,1-1.83,1V5.5h2.87A4.09,4.09,0,0,1,19.83,7.33ZM12,15.5A1.5,1.5,0,1,0,13.5,17,1.5,1.5,0,0,0,12,15.5Zm0-5A1.5,1.5,0,1,0,13.5,12,1.5,1.5,0,0,0,12,10.5Z' + }) + ) +} + +export default UilTrafficLight \ No newline at end of file diff --git a/src/icons/uil-transaction.ts b/src/icons/uil-transaction.ts new file mode 100644 index 00000000..f8d630ce --- /dev/null +++ b/src/icons/uil-transaction.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTransaction = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20 2H10a3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V5a3 3 0 0 0-3-3Zm1 10a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1Zm-3.5-4a1.49 1.49 0 0 0-1 .39 1.5 1.5 0 1 0 0 2.22 1.5 1.5 0 1 0 1-2.61ZM16 17a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-4h1a1 1 0 0 0 0-2H3v-1a1 1 0 0 1 1-1 1 1 0 0 0 0-2 3 3 0 0 0-3 3v7a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-1a1 1 0 0 0-1-1ZM6 18h1a1 1 0 0 0 0-2H6a1 1 0 0 0 0 2Z' + }) + ) +} + +export default UilTransaction \ No newline at end of file diff --git a/src/icons/uil-trash-alt.ts b/src/icons/uil-trash-alt.ts new file mode 100644 index 00000000..2f0b3704 --- /dev/null +++ b/src/icons/uil-trash-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrashAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,18a1,1,0,0,0,1-1V11a1,1,0,0,0-2,0v6A1,1,0,0,0,10,18ZM20,6H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H4A1,1,0,0,0,4,8H5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8h1a1,1,0,0,0,0-2ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm7,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17Zm-3-1a1,1,0,0,0,1-1V11a1,1,0,0,0-2,0v6A1,1,0,0,0,14,18Z' + }) + ) +} + +export default UilTrashAlt \ No newline at end of file diff --git a/src/icons/uil-trash.ts b/src/icons/uil-trash.ts new file mode 100644 index 00000000..5d4123d1 --- /dev/null +++ b/src/icons/uil-trash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,6H16V5a3,3,0,0,0-3-3H11A3,3,0,0,0,8,5V6H4A1,1,0,0,0,4,8H5V19a3,3,0,0,0,3,3h8a3,3,0,0,0,3-3V8h1a1,1,0,0,0,0-2ZM10,5a1,1,0,0,1,1-1h2a1,1,0,0,1,1,1V6H10Zm7,14a1,1,0,0,1-1,1H8a1,1,0,0,1-1-1V8H17Z' + }) + ) +} + +export default UilTrash \ No newline at end of file diff --git a/src/icons/uil-trees.ts b/src/icons/uil-trees.ts new file mode 100644 index 00000000..f2f8eb9e --- /dev/null +++ b/src/icons/uil-trees.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrees = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.5,5A4.86,4.86,0,0,0,14,5.69,6,6,0,0,0,2.5,8v4a6,6,0,0,0,5,5.91V21a1,1,0,0,0,2,0V17.91a6.08,6.08,0,0,0,2.78-1.26A5,5,0,0,0,15.5,18.9V21a1,1,0,0,0,2,0V18.9a5,5,0,0,0,4-4.9V10A5,5,0,0,0,16.5,5Zm-5,5v4a5.23,5.23,0,0,0,.06.57,4,4,0,0,1-2.06,1.3V13a1,1,0,0,0-2,0v2.86A4,4,0,0,1,4.5,12V8a4,4,0,0,1,6.83-2.84,3.94,3.94,0,0,1,1.06,2A5,5,0,0,0,11.5,10Zm8,4a3,3,0,0,1-2,2.82V13a1,1,0,0,0-2,0v3.82a3,3,0,0,1-2-2.82V10a3,3,0,0,1,6,0Z' + }) + ) +} + +export default UilTrees \ No newline at end of file diff --git a/src/icons/uil-triangle.ts b/src/icons/uil-triangle.ts new file mode 100644 index 00000000..efebb483 --- /dev/null +++ b/src/icons/uil-triangle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTriangle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.87,19.29l-9-15.58a1,1,0,0,0-1.74,0l-9,15.58a1,1,0,0,0,0,1,1,1,0,0,0,.87.5H21a1,1,0,0,0,.87-.5A1,1,0,0,0,21.87,19.29Zm-17.14-.5L12,6.21l7.27,12.58Z' + }) + ) +} + +export default UilTriangle \ No newline at end of file diff --git a/src/icons/uil-trophy.ts b/src/icons/uil-trophy.ts new file mode 100644 index 00000000..2eb34735 --- /dev/null +++ b/src/icons/uil-trophy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrophy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,4H18V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V4H3A1,1,0,0,0,2,5V8a4,4,0,0,0,4,4H7.54A6,6,0,0,0,11,13.91V16H10a3,3,0,0,0-3,3v2a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V19a3,3,0,0,0-3-3H13V13.91A6,6,0,0,0,16.46,12H18a4,4,0,0,0,4-4V5A1,1,0,0,0,21,4ZM6,10A2,2,0,0,1,4,8V6H6V8a6,6,0,0,0,.35,2Zm8,8a1,1,0,0,1,1,1v1H9V19a1,1,0,0,1,1-1ZM16,8A4,4,0,0,1,8,8V4h8Zm4,0a2,2,0,0,1-2,2h-.35A6,6,0,0,0,18,8V6h2Z' + }) + ) +} + +export default UilTrophy \ No newline at end of file diff --git a/src/icons/uil-trowel.ts b/src/icons/uil-trowel.ts new file mode 100644 index 00000000..493df563 --- /dev/null +++ b/src/icons/uil-trowel.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTrowel = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.12,2.88a3.08,3.08,0,0,0-4.24,0L14.46,5.29a3,3,0,0,0-.57,3.41l-2.15,2.15-2-2a3,3,0,0,0-5,1.17l-2.66,8a3,3,0,0,0,.72,3.07A3,3,0,0,0,5,22a2.87,2.87,0,0,0,1-.16l8-2.66a3,3,0,0,0,1.17-5l-2-2,2.15-2.15a3,3,0,0,0,3.41-.57l2.41-2.42A3,3,0,0,0,21.12,2.88ZM13.7,15.63a1,1,0,0,1-.4,1.65L5.32,20a1,1,0,0,1-1-.25,1,1,0,0,1-.25-1l2.67-8A1,1,0,0,1,7.44,10a1.07,1.07,0,0,1,.23,0,1,1,0,0,1,.7.29l2,2-.87.86a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.86-.87Zm6-9.92L17.29,8.12a1,1,0,0,1-1.7-.71,1,1,0,0,1,.29-.7l2.41-2.42a1,1,0,0,1,1.42,0A1,1,0,0,1,19.71,5.71Z' + }) + ) +} + +export default UilTrowel \ No newline at end of file diff --git a/src/icons/uil-truck-loading.ts b/src/icons/uil-truck-loading.ts new file mode 100644 index 00000000..928252e5 --- /dev/null +++ b/src/icons/uil-truck-loading.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTruckLoading = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,16H19.82A3,3,0,0,0,20,15V10a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v5a3,3,0,0,0,.18,1H7a1,1,0,0,1-1-1V5A3,3,0,0,0,3,2H2A1,1,0,0,0,2,4H3A1,1,0,0,1,4,5V15a3,3,0,0,0,2.22,2.88,3,3,0,1,0,5.6.12h3.36a3,3,0,1,0,5.64,0H22a1,1,0,0,0,0-2ZM9,20a1,1,0,1,1,1-1A1,1,0,0,1,9,20Zm2-4a1,1,0,0,1-1-1V10a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1Zm7,4a1,1,0,1,1,1-1A1,1,0,0,1,18,20Z' + }) + ) +} + +export default UilTruckLoading \ No newline at end of file diff --git a/src/icons/uil-truck.ts b/src/icons/uil-truck.ts new file mode 100644 index 00000000..8e7a3185 --- /dev/null +++ b/src/icons/uil-truck.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTruck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M1,12.5v5a1,1,0,0,0,1,1H3a3,3,0,0,0,6,0h6a3,3,0,0,0,6,0h1a1,1,0,0,0,1-1V5.5a3,3,0,0,0-3-3H11a3,3,0,0,0-3,3v2H6A3,3,0,0,0,3.6,8.7L1.2,11.9a.61.61,0,0,0-.07.14l-.06.11A1,1,0,0,0,1,12.5Zm16,6a1,1,0,1,1,1,1A1,1,0,0,1,17,18.5Zm-7-13a1,1,0,0,1,1-1h9a1,1,0,0,1,1,1v11h-.78a3,3,0,0,0-4.44,0H10Zm-2,6H4L5.2,9.9A1,1,0,0,1,6,9.5H8Zm-3,7a1,1,0,1,1,1,1A1,1,0,0,1,5,18.5Zm-2-5H8v2.78a3,3,0,0,0-4.22.22H3Z' + }) + ) +} + +export default UilTruck \ No newline at end of file diff --git a/src/icons/uil-tumblr-alt.ts b/src/icons/uil-tumblr-alt.ts new file mode 100644 index 00000000..e71ca179 --- /dev/null +++ b/src/icons/uil-tumblr-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTumblrAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17.43359,20.50825l-.96191-2.85351a1.00073,1.00073,0,0,0-1.37891-.583,3.7631,3.7631,0,0,1-1.209.249.93653.93653,0,0,1-.65918-.165,1.20025,1.20025,0,0,1-.23926-.80762V12.00044H16.002a.99942.99942,0,0,0,1-1V7.09517a.99942.99942,0,0,0-1-1H13V2.00044a.99942.99942,0,0,0-1-1H9.07031a1.14806,1.14806,0,0,0-1.13769,1.04A5.09342,5.09342,0,0,1,4.65234,6.59809a.99923.99923,0,0,0-.66113.94043v3.584a.99943.99943,0,0,0,1,1H6.01562v4.53516a6.41109,6.41109,0,0,0,1.88672,4.47851A6.90463,6.90463,0,0,0,12.877,22.99946c.05371,0,.1084,0,.16309-.001,1.5459-.0254,3.61816-.64747,4.27246-1.60743A.99833.99833,0,0,0,17.43359,20.50825Zm-4.42675.49024A4.87007,4.87007,0,0,1,9.30469,19.7104a4.36971,4.36971,0,0,1-1.28907-3.05273V11.12251a.99942.99942,0,0,0-1-1H5.99121v-1.917A6.95438,6.95438,0,0,0,9.80957,3.00044H11V7.09517a.99943.99943,0,0,0,1,1h3.002v1.90527h-3.0166a.99942.99942,0,0,0-1,1V16.3647a3.07681,3.07681,0,0,0,.85645,2.23535,2.76714,2.76714,0,0,0,2.0957.7207,5.90822,5.90822,0,0,0,.94727-.11328l.4248,1.25879A5.909,5.909,0,0,1,13.00684,20.99849Z' + }) + ) +} + +export default UilTumblrAlt \ No newline at end of file diff --git a/src/icons/uil-tumblr-square.ts b/src/icons/uil-tumblr-square.ts new file mode 100644 index 00000000..3ab870be --- /dev/null +++ b/src/icons/uil-tumblr-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTumblrSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2,2V22H22V2ZM13.57,17.85a3.4,3.4,0,0,1-3.75-3.33V10.44H8.56V8.83A3.83,3.83,0,0,0,11,5.47a.09.09,0,0,1,.09-.09h1.82V8.55h2.5v1.89H12.92v3.89a1.11,1.11,0,0,0,1.2,1.23,3,3,0,0,0,1-.22l.6,1.78A3.34,3.34,0,0,1,13.57,17.85Z' + }) + ) +} + +export default UilTumblrSquare \ No newline at end of file diff --git a/src/icons/uil-tumblr.ts b/src/icons/uil-tumblr.ts new file mode 100644 index 00000000..76ac977b --- /dev/null +++ b/src/icons/uil-tumblr.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTumblr = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.79,18a4.65,4.65,0,0,1-1.62.35,1.75,1.75,0,0,1-1.92-2V10.12h4v-3h-4V2H10.33a.15.15,0,0,0-.14.15A6.11,6.11,0,0,1,6.25,7.54v2.58h2v6.54c0,2.23,1.65,5.41,6,5.34,1.47,0,3.11-.64,3.47-1.17Z' + }) + ) +} + +export default UilTumblr \ No newline at end of file diff --git a/src/icons/uil-tv-retro-slash.ts b/src/icons/uil-tv-retro-slash.ts new file mode 100644 index 00000000..3d13b889 --- /dev/null +++ b/src/icons/uil-tv-retro-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTvRetroSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11.62,7.92A1,1,0,0,0,12,8h6a1,1,0,0,1,1,1v5.34a1,1,0,1,0,2,0V9a3,3,0,0,0-3-3H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42l-4,4a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76A1,1,0,0,0,11.62,7.92ZM21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71L4.83,6.24A3,3,0,0,0,3,9v8a3,3,0,0,0,3,3v1a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V20a3.07,3.07,0,0,0,.53-.06l1.76,1.77a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM6,18a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8h.59l10,10Z' + }) + ) +} + +export default UilTvRetroSlash \ No newline at end of file diff --git a/src/icons/uil-tv-retro.ts b/src/icons/uil-tv-retro.ts new file mode 100644 index 00000000..9dfd818f --- /dev/null +++ b/src/icons/uil-tv-retro.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTvRetro = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,6H14.41l2.3-2.29a1,1,0,1,0-1.42-1.42L12,5.54l-1.17-2a1,1,0,1,0-1.74,1L10,6H6A3,3,0,0,0,3,9v8a3,3,0,0,0,3,3v1a1,1,0,0,0,2,0V20h8v1a1,1,0,0,0,2,0V20a3,3,0,0,0,3-3V9A3,3,0,0,0,18,6Zm1,11a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V9A1,1,0,0,1,6,8H18a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilTvRetro \ No newline at end of file diff --git a/src/icons/uil-twitter-alt.ts b/src/icons/uil-twitter-alt.ts new file mode 100644 index 00000000..3abe09b9 --- /dev/null +++ b/src/icons/uil-twitter-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTwitterAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.99121,3.9502a.99942.99942,0,0,0-1.51074-.85938,7.47956,7.47956,0,0,1-1.873.793,5.15234,5.15234,0,0,0-3.374-1.24219,5.23238,5.23238,0,0,0-5.22363,5.06348A11.03194,11.03194,0,0,1,4.19629,3.78125,1.01154,1.01154,0,0,0,3.33887,3.416a.99852.99852,0,0,0-.78516.5,5.2755,5.2755,0,0,0-.24219,4.76855l-.00195.00195a1.0411,1.0411,0,0,0-.49512.88868,3.04174,3.04174,0,0,0,.02637.43945,5.1854,5.1854,0,0,0,1.56836,3.3125.99813.99813,0,0,0-.06641.76953,5.20436,5.20436,0,0,0,2.36231,2.92187,7.46464,7.46464,0,0,1-3.58985.44825.99975.99975,0,0,0-.665,1.833A12.94248,12.94248,0,0,0,8.46,21.36133,12.7878,12.7878,0,0,0,20.9248,11.998,12.82166,12.82166,0,0,0,21.46,8.35156c0-.06543,0-.13281-.001-.20019A5.76963,5.76963,0,0,0,22.99121,3.9502ZM19.68457,7.16211a.995.995,0,0,0-.2334.70215c.00977.165.00879.331.00879.4873a10.82371,10.82371,0,0,1-.4541,3.08106A10.68457,10.68457,0,0,1,8.46,19.36133a10.93791,10.93791,0,0,1-2.55078-.30078,9.47951,9.47951,0,0,0,2.94238-1.56348A1.00033,1.00033,0,0,0,8.25,15.71094a3.208,3.208,0,0,1-2.21387-.93457q.22413-.04248.44532-.10547a1.00026,1.00026,0,0,0-.08008-1.94336,3.19824,3.19824,0,0,1-2.25-1.72559,5.29929,5.29929,0,0,0,.54492.0459,1.02093,1.02093,0,0,0,.9834-.69629A.9998.9998,0,0,0,5.2793,9.21484,3.19559,3.19559,0,0,1,3.85547,6.542c0-.0664.00195-.13281.00586-.19824a13.01365,13.01365,0,0,0,8.209,3.47949,1.02046,1.02046,0,0,0,.81739-.3584,1.00037,1.00037,0,0,0,.206-.86816,3.15653,3.15653,0,0,1-.08691-.72852A3.23,3.23,0,0,1,16.2334,4.6416a3.18428,3.18428,0,0,1,2.34472,1.02051A.993.993,0,0,0,19.499,5.96a9.27073,9.27073,0,0,0,1.21192-.32226A6.68126,6.68126,0,0,1,19.68457,7.16211Z' + }) + ) +} + +export default UilTwitterAlt \ No newline at end of file diff --git a/src/icons/uil-twitter.ts b/src/icons/uil-twitter.ts new file mode 100644 index 00000000..d6b78aae --- /dev/null +++ b/src/icons/uil-twitter.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilTwitter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,5.8a8.49,8.49,0,0,1-2.36.64,4.13,4.13,0,0,0,1.81-2.27,8.21,8.21,0,0,1-2.61,1,4.1,4.1,0,0,0-7,3.74A11.64,11.64,0,0,1,3.39,4.62a4.16,4.16,0,0,0-.55,2.07A4.09,4.09,0,0,0,4.66,10.1,4.05,4.05,0,0,1,2.8,9.59v.05a4.1,4.1,0,0,0,3.3,4A3.93,3.93,0,0,1,5,13.81a4.9,4.9,0,0,1-.77-.07,4.11,4.11,0,0,0,3.83,2.84A8.22,8.22,0,0,1,3,18.34a7.93,7.93,0,0,1-1-.06,11.57,11.57,0,0,0,6.29,1.85A11.59,11.59,0,0,0,20,8.45c0-.17,0-.35,0-.53A8.43,8.43,0,0,0,22,5.8Z' + }) + ) +} + +export default UilTwitter \ No newline at end of file diff --git a/src/icons/uil-umbrella.ts b/src/icons/uil-umbrella.ts new file mode 100644 index 00000000..038aa7ab --- /dev/null +++ b/src/icons/uil-umbrella.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUmbrella = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11.24s0,0,0,0a.22.22,0,0,1,0-.08l0-.19c0-.23-.06-.46-.1-.69a.75.75,0,0,1,0-.16c-.05-.25-.12-.49-.19-.73v0a8.91,8.91,0,0,0-5.86-5.87l-.08,0c-.22-.07-.45-.13-.68-.18l-.18,0a5.21,5.21,0,0,0-.55-.08l-.24,0V3a1,1,0,0,0-2,0v.06a8.7,8.7,0,0,0-1,.18,4.71,4.71,0,0,0-.62.16l-.13,0c-.25.08-.48.17-.72.26l0,0A8.93,8.93,0,0,0,3.42,9.28a.31.31,0,0,0,0,.08,6.38,6.38,0,0,0-.19.72l0,.16q-.08.36-.12.75s0,.07,0,.11,0,.06,0,.09,0,0,0,.05c0,.25,0,.5,0,.76a1,1,0,0,0,1,1h7v6a1,1,0,0,1-2,0,1,1,0,0,0-2,0,3,3,0,0,0,6,0V13h7a1,1,0,0,0,1-1C21,11.74,21,11.49,21,11.24ZM8,11H5.08s0-.07,0-.11,0-.28.08-.41,0-.13,0-.19.08-.32.13-.48l0-.08A7,7,0,0,1,9.1,5.64,16.09,16.09,0,0,0,8,11Zm2,0c.19-3.91,1.44-6,2-6s1.79,2.09,2,6Zm6,0A16.09,16.09,0,0,0,14.9,5.64a7,7,0,0,1,3.73,4.12v0a4.61,4.61,0,0,1,.15.53.83.83,0,0,0,0,.15c0,.14.06.29.08.43s0,.07,0,.11Z' + }) + ) +} + +export default UilUmbrella \ No newline at end of file diff --git a/src/icons/uil-unamused.ts b/src/icons/uil-unamused.ts new file mode 100644 index 00000000..51fc59f1 --- /dev/null +++ b/src/icons/uil-unamused.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUnamused = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.66,13.56l-4.19,1.5A1,1,0,0,0,10.8,17a1,1,0,0,0,.34-.06l4.2-1.5a1,1,0,1,0-.68-1.88Zm-4-3a1,1,0,0,0,0-1.41,3.08,3.08,0,0,0-4.24,0,1,1,0,1,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0Zm7-1.41a3.08,3.08,0,0,0-4.24,0,1,1,0,0,0,1.41,1.41,1,1,0,0,1,1.42,0,1,1,0,0,0,1.41,0A1,1,0,0,0,17.62,9.13ZM12,2A10,10,0,1,0,22,12,10,10,0,0,0,12,2Zm0,18a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' + }) + ) +} + +export default UilUnamused \ No newline at end of file diff --git a/src/icons/uil-underline.ts b/src/icons/uil-underline.ts new file mode 100644 index 00000000..9ea71469 --- /dev/null +++ b/src/icons/uil-underline.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUnderline = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,15.5a5,5,0,0,0,5-5v-5a1,1,0,0,0-2,0v5a3,3,0,0,1-6,0v-5a1,1,0,0,0-2,0v5A5,5,0,0,0,12,15.5Zm5,2H7a1,1,0,0,0,0,2H17a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilUnderline \ No newline at end of file diff --git a/src/icons/uil-university.ts b/src/icons/uil-university.ts new file mode 100644 index 00000000..741032f0 --- /dev/null +++ b/src/icons/uil-university.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUniversity = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10a.99974.99974,0,0,0,1-1V6a.9989.9989,0,0,0-.68359-.94824l-9-3a1.002,1.002,0,0,0-.63282,0l-9,3A.9989.9989,0,0,0,2,6V9a.99974.99974,0,0,0,1,1H4v7.18427A2.99507,2.99507,0,0,0,2,20v2a.99974.99974,0,0,0,1,1H21a.99974.99974,0,0,0,1-1V20a2.99507,2.99507,0,0,0-2-2.81573V10ZM20,21H4V20a1.001,1.001,0,0,1,1-1H19a1.001,1.001,0,0,1,1,1ZM6,17V10H8v7Zm4,0V10h4v7Zm6,0V10h2v7ZM4,8V6.7207l8-2.667,8,2.667V8Z' + }) + ) +} + +export default UilUniversity \ No newline at end of file diff --git a/src/icons/uil-unlock-alt.ts b/src/icons/uil-unlock-alt.ts new file mode 100644 index 00000000..c34ac202 --- /dev/null +++ b/src/icons/uil-unlock-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUnlockAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13a1,1,0,0,0-1,1v3a1,1,0,0,0,2,0V14A1,1,0,0,0,12,13Zm5-4H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilUnlockAlt \ No newline at end of file diff --git a/src/icons/uil-unlock.ts b/src/icons/uil-unlock.ts new file mode 100644 index 00000000..c7f300c4 --- /dev/null +++ b/src/icons/uil-unlock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUnlock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,9H9V7a3,3,0,0,1,5.12-2.13,3.08,3.08,0,0,1,.78,1.38,1,1,0,1,0,1.94-.5,5.09,5.09,0,0,0-1.31-2.29A5,5,0,0,0,7,7V9a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H17a3,3,0,0,0,3-3V12A3,3,0,0,0,17,9Zm1,10a1,1,0,0,1-1,1H7a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H17a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilUnlock \ No newline at end of file diff --git a/src/icons/uil-upload-alt.ts b/src/icons/uil-upload-alt.ts new file mode 100644 index 00000000..a27fed2c --- /dev/null +++ b/src/icons/uil-upload-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUploadAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M9.71,6.71,11,5.41V17a1,1,0,0,0,2,0V5.41l1.29,1.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-3-3a1,1,0,0,0-1.42,0l-3,3A1,1,0,0,0,9.71,6.71ZM18,9H16a1,1,0,0,0,0,2h2a1,1,0,0,1,1,1v7a1,1,0,0,1-1,1H6a1,1,0,0,1-1-1V12a1,1,0,0,1,1-1H8A1,1,0,0,0,8,9H6a3,3,0,0,0-3,3v7a3,3,0,0,0,3,3H18a3,3,0,0,0,3-3V12A3,3,0,0,0,18,9Z' + }) + ) +} + +export default UilUploadAlt \ No newline at end of file diff --git a/src/icons/uil-upload.ts b/src/icons/uil-upload.ts new file mode 100644 index 00000000..6d183fc1 --- /dev/null +++ b/src/icons/uil-upload.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUpload = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.71,7.71,11,5.41V15a1,1,0,0,0,2,0V5.41l2.29,2.3a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4-4a1,1,0,0,0-.33-.21,1,1,0,0,0-.76,0,1,1,0,0,0-.33.21l-4,4A1,1,0,1,0,8.71,7.71ZM21,12a1,1,0,0,0-1,1v6a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V13a1,1,0,0,0-2,0v6a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V13A1,1,0,0,0,21,12Z' + }) + ) +} + +export default UilUpload \ No newline at end of file diff --git a/src/icons/uil-usd-circle.ts b/src/icons/uil-usd-circle.ts new file mode 100644 index 00000000..a9d4cd17 --- /dev/null +++ b/src/icons/uil-usd-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUsdCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,9h4a1,1,0,0,0,0-2H13V6a1,1,0,0,0-2,0V7a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2H9a1,1,0,0,0,0,2h2v1a1,1,0,0,0,2,0V17a3,3,0,0,0,0-6H11a1,1,0,0,1,0-2Zm1-8A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21Z' + }) + ) +} + +export default UilUsdCircle \ No newline at end of file diff --git a/src/icons/uil-usd-square.ts b/src/icons/uil-usd-square.ts new file mode 100644 index 00000000..c92bd772 --- /dev/null +++ b/src/icons/uil-usd-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUsdSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,9h4a1,1,0,0,0,0-2H13V6a1,1,0,0,0-2,0V7a3,3,0,0,0,0,6h2a1,1,0,0,1,0,2H9a1,1,0,0,0,0,2h2v1a1,1,0,0,0,2,0V17a3,3,0,0,0,0-6H11a1,1,0,0,1,0-2Zm8-7H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilUsdSquare \ No newline at end of file diff --git a/src/icons/uil-user-arrows.ts b/src/icons/uil-user-arrows.ts new file mode 100644 index 00000000..852824c1 --- /dev/null +++ b/src/icons/uil-user-arrows.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserArrows = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.64 15.772a3.468 3.468 0 0 0 .86-2.272 3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 13 20a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM18 15a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 18 15ZM6.793 7.707l2 2a1 1 0 0 0 1.414-1.414L9.914 8h4.172l-.293.293a1 1 0 1 0 1.414 1.414l2-2a1.004 1.004 0 0 0 0-1.414l-2-2a1 1 0 0 0-1.414 1.414l.293.293H9.914l.293-.293a1 1 0 0 0-1.414-1.414l-2 2a1.004 1.004 0 0 0 0 1.414Zm1.847 8.065A3.468 3.468 0 0 0 9.5 13.5a3.5 3.5 0 0 0-7 0 3.468 3.468 0 0 0 .86 2.272A4.988 4.988 0 0 0 1 20a1 1 0 0 0 2 0 3 3 0 0 1 6 0 1 1 0 0 0 2 0 4.988 4.988 0 0 0-2.36-4.228ZM6 15a1.5 1.5 0 1 1 1.5-1.5A1.502 1.502 0 0 1 6 15Z' + }) + ) +} + +export default UilUserArrows \ No newline at end of file diff --git a/src/icons/uil-user-check.ts b/src/icons/uil-user-check.ts new file mode 100644 index 00000000..4dc9c459 --- /dev/null +++ b/src/icons/uil-user-check.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserCheck = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.3,12.22A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5ZM21.71,9.13a1,1,0,0,0-1.42,0l-2,2-.62-.63a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l1.34,1.34a1,1,0,0,0,1.41,0l2.67-2.67A1,1,0,0,0,21.71,9.13Z' + }) + ) +} + +export default UilUserCheck \ No newline at end of file diff --git a/src/icons/uil-user-circle.ts b/src/icons/uil-user-circle.ts new file mode 100644 index 00000000..16d53359 --- /dev/null +++ b/src/icons/uil-user-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2A10,10,0,0,0,4.65,18.76h0a10,10,0,0,0,14.7,0h0A10,10,0,0,0,12,2Zm0,18a8,8,0,0,1-5.55-2.25,6,6,0,0,1,11.1,0A8,8,0,0,1,12,20ZM10,10a2,2,0,1,1,2,2A2,2,0,0,1,10,10Zm8.91,6A8,8,0,0,0,15,12.62a4,4,0,1,0-6,0A8,8,0,0,0,5.09,16,7.92,7.92,0,0,1,4,12a8,8,0,0,1,16,0A7.92,7.92,0,0,1,18.91,16Z' + }) + ) +} + +export default UilUserCircle \ No newline at end of file diff --git a/src/icons/uil-user-exclamation.ts b/src/icons/uil-user-exclamation.ts new file mode 100644 index 00000000..f880f676 --- /dev/null +++ b/src/icons/uil-user-exclamation.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserExclamation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.55,12.22a4.92,4.92,0,0,0,1.7-3.72,5,5,0,0,0-10,0A4.92,4.92,0,0,0,8,12.22a8,8,0,0,0-4.7,7.28,1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,14.55,12.22Zm-3.3-.72a3,3,0,1,1,3-3A3,3,0,0,1,11.25,11.5Zm8.5-5a1,1,0,0,0-1,1v2a1,1,0,0,0,2,0v-2A1,1,0,0,0,19.75,6.5ZM19,11.79a1.05,1.05,0,0,0-.29.71,1,1,0,0,0,.29.71,1.15,1.15,0,0,0,.33.21.94.94,0,0,0,.76,0,.9.9,0,0,0,.54-.54.84.84,0,0,0,.08-.38A1,1,0,0,0,19,11.79Z' + }) + ) +} + +export default UilUserExclamation \ No newline at end of file diff --git a/src/icons/uil-user-location.ts b/src/icons/uil-user-location.ts new file mode 100644 index 00000000..92c69c9c --- /dev/null +++ b/src/icons/uil-user-location.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserLocation = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.49,10.86a3.09,3.09,0,1,0-5,0,4.67,4.67,0,0,0-1.12,1A1,1,0,1,0,10,13.12a2.62,2.62,0,0,1,2.05-1h0a2.62,2.62,0,0,1,2.05,1,1,1,0,0,0,.78.37,1,1,0,0,0,.78-1.62A4.67,4.67,0,0,0,14.49,10.86ZM12,10.13h0A1.09,1.09,0,1,1,13.09,9,1.09,1.09,0,0,1,12,10.13Zm8.46-.5A8.5,8.5,0,0,0,7.3,3.36,8.56,8.56,0,0,0,3.54,9.63,8.46,8.46,0,0,0,6,16.46l5.3,5.31a1,1,0,0,0,1.42,0L18,16.46A8.46,8.46,0,0,0,20.46,9.63ZM16.6,15.05,12,19.65l-4.6-4.6A6.49,6.49,0,0,1,5.53,9.83,6.57,6.57,0,0,1,8.42,5a6.47,6.47,0,0,1,7.16,0,6.57,6.57,0,0,1,2.89,4.81A6.49,6.49,0,0,1,16.6,15.05Z' + }) + ) +} + +export default UilUserLocation \ No newline at end of file diff --git a/src/icons/uil-user-md.ts b/src/icons/uil-user-md.ts new file mode 100644 index 00000000..a2bef365 --- /dev/null +++ b/src/icons/uil-user-md.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserMd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'm15.899 13.229-.005-.002c-.063-.027-.124-.058-.188-.083A5.988 5.988 0 0 0 18 8.434a5.29 5.29 0 0 0-.045-.63.946.946 0 0 0 .038-.122l.281-2.397a3.006 3.006 0 0 0-2.442-3.302l-.79-.143a16.931 16.931 0 0 0-6.083 0l-.791.143a3.006 3.006 0 0 0-2.442 3.302l.28 2.397a.946.946 0 0 0 .039.122 5.29 5.29 0 0 0-.045.63 5.988 5.988 0 0 0 2.294 4.71c-.064.025-.125.056-.188.083l-.005.002a9.948 9.948 0 0 0-6.035 8.097 1 1 0 0 0 1.988.217 7.948 7.948 0 0 1 4.216-6.185l3.023 3.023a1 1 0 0 0 1.414 0l3.023-3.023a7.948 7.948 0 0 1 4.216 6.185 1 1 0 0 0 .992.892 1.048 1.048 0 0 0 .11-.006 1 1 0 0 0 .886-1.103 9.948 9.948 0 0 0-6.036-8.097ZM7.712 5.051a1.002 1.002 0 0 1 .814-1.1l.79-.143a14.93 14.93 0 0 1 5.368 0l.79.143a1.002 1.002 0 0 1 .814 1.1l-.178 1.514H7.89ZM12 16.261l-1.65-1.651a7.85 7.85 0 0 1 3.3 0Zm0-3.826a4.005 4.005 0 0 1-3.998-3.87h7.996A4.005 4.005 0 0 1 12 12.435Z' + }) + ) +} + +export default UilUserMd \ No newline at end of file diff --git a/src/icons/uil-user-minus.ts b/src/icons/uil-user-minus.ts new file mode 100644 index 00000000..603aad57 --- /dev/null +++ b/src/icons/uil-user-minus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserMinus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10.5H17a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Zm-7.7,1.72A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Z' + }) + ) +} + +export default UilUserMinus \ No newline at end of file diff --git a/src/icons/uil-user-nurse.ts b/src/icons/uil-user-nurse.ts new file mode 100644 index 00000000..3c701759 --- /dev/null +++ b/src/icons/uil-user-nurse.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserNurse = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.174 12.916c-.018-.008-.035-.017-.053-.024-.138-.062-.274-.127-.415-.183a6 6 0 1 0-7.412 0c-.14.056-.277.121-.415.183l-.054.024a9.946 9.946 0 0 0-5.76 7.976 1 1 0 1 0 1.99.216A7.945 7.945 0 0 1 8.04 15.05l3.252 3.251a1 1 0 0 0 1.414 0l3.252-3.251a7.945 7.945 0 0 1 3.987 6.058 1 1 0 0 0 .992.892 1.048 1.048 0 0 0 .11-.006 1 1 0 0 0 .886-1.102 9.946 9.946 0 0 0-5.76-7.976ZM8.041 7.594a3.977 3.977 0 0 1 7.918 0ZM12 16.18l-1.937-1.937a7.834 7.834 0 0 1 3.874 0ZM12 12a4.003 4.003 0 0 1-3.664-2.406h7.328A4.003 4.003 0 0 1 12 12Z' + }) + ) +} + +export default UilUserNurse \ No newline at end of file diff --git a/src/icons/uil-user-plus.ts b/src/icons/uil-user-plus.ts new file mode 100644 index 00000000..49119675 --- /dev/null +++ b/src/icons/uil-user-plus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserPlus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,10.5H20v-1a1,1,0,0,0-2,0v1H17a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0v-1h1a1,1,0,0,0,0-2Zm-7.7,1.72A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Z' + }) + ) +} + +export default UilUserPlus \ No newline at end of file diff --git a/src/icons/uil-user-square.ts b/src/icons/uil-user-square.ts new file mode 100644 index 00000000..fe901f92 --- /dev/null +++ b/src/icons/uil-user-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.81,12.28a3.73,3.73,0,0,0,1-2.5,3.78,3.78,0,0,0-7.56,0,3.73,3.73,0,0,0,1,2.5A5.94,5.94,0,0,0,6,16.89a1,1,0,0,0,2,.22,4,4,0,0,1,7.94,0A1,1,0,0,0,17,18h.11a1,1,0,0,0,.88-1.1A5.94,5.94,0,0,0,14.81,12.28ZM12,11.56a1.78,1.78,0,1,1,1.78-1.78A1.78,1.78,0,0,1,12,11.56ZM19,2H5A3,3,0,0,0,2,5V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2Zm1,17a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V5A1,1,0,0,1,5,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilUserSquare \ No newline at end of file diff --git a/src/icons/uil-user-times.ts b/src/icons/uil-user-times.ts new file mode 100644 index 00000000..07f48579 --- /dev/null +++ b/src/icons/uil-user-times.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUserTimes = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M13.3,12.22A4.92,4.92,0,0,0,15,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,2,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,13.3,12.22ZM10,11.5a3,3,0,1,1,3-3A3,3,0,0,1,10,11.5Zm10.91.5.8-.79a1,1,0,0,0-1.42-1.42l-.79.8-.79-.8a1,1,0,0,0-1.42,1.42l.8.79-.8.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l.79-.8.79.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilUserTimes \ No newline at end of file diff --git a/src/icons/uil-user.ts b/src/icons/uil-user.ts new file mode 100644 index 00000000..9873935b --- /dev/null +++ b/src/icons/uil-user.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUser = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.71,12.71a6,6,0,1,0-7.42,0,10,10,0,0,0-6.22,8.18,1,1,0,0,0,2,.22,8,8,0,0,1,15.9,0,1,1,0,0,0,1,.89h.11a1,1,0,0,0,.88-1.1A10,10,0,0,0,15.71,12.71ZM12,12a4,4,0,1,1,4-4A4,4,0,0,1,12,12Z' + }) + ) +} + +export default UilUser \ No newline at end of file diff --git a/src/icons/uil-users-alt.ts b/src/icons/uil-users-alt.ts new file mode 100644 index 00000000..e37f747d --- /dev/null +++ b/src/icons/uil-users-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUsersAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.3,12.22A4.92,4.92,0,0,0,14,8.5a5,5,0,0,0-10,0,4.92,4.92,0,0,0,1.7,3.72A8,8,0,0,0,1,19.5a1,1,0,0,0,2,0,6,6,0,0,1,12,0,1,1,0,0,0,2,0A8,8,0,0,0,12.3,12.22ZM9,11.5a3,3,0,1,1,3-3A3,3,0,0,1,9,11.5Zm9.74.32A5,5,0,0,0,15,3.5a1,1,0,0,0,0,2,3,3,0,0,1,3,3,3,3,0,0,1-1.5,2.59,1,1,0,0,0-.5.84,1,1,0,0,0,.45.86l.39.26.13.07a7,7,0,0,1,4,6.38,1,1,0,0,0,2,0A9,9,0,0,0,18.74,11.82Z' + }) + ) +} + +export default UilUsersAlt \ No newline at end of file diff --git a/src/icons/uil-utensils-alt.ts b/src/icons/uil-utensils-alt.ts new file mode 100644 index 00000000..ba155ff1 --- /dev/null +++ b/src/icons/uil-utensils-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUtensilsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.53,14.13a1,1,0,0,0-1.42,0,1,1,0,0,0,0,1.41l6.18,6.18a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.41Zm1.23-2.49a3,3,0,0,0,2.12-.88l2.83-2.83a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L17.46,9.35a1,1,0,0,1-1.41,0l3.54-3.54a1,1,0,0,0,0-1.41,1,1,0,0,0-1.42,0L14.64,7.93h0a1,1,0,0,1,0-1.41l2.82-2.83a1,1,0,1,0-1.41-1.41L13.22,5.11a3,3,0,0,0,0,4.24h0L12,10.59,10.44,9.05a4.16,4.16,0,0,0-.74-5C8.26,2.61,4.53,1,2.77,2.79S2.6,8.27,4,9.72A4.36,4.36,0,0,0,6.94,11h.14A3.88,3.88,0,0,0,9,10.46L10.57,12,2.29,20.28a1,1,0,1,0,1.42,1.41l9-9,0,0,0,0,1.92-1.92A3,3,0,0,0,16.76,11.64ZM8.43,8.44A1.93,1.93,0,0,1,7,9,2.26,2.26,0,0,1,5.46,8.3C4.38,7.22,3.62,4.77,4.19,4.2A1,1,0,0,1,4.85,4,5.87,5.87,0,0,1,8.29,5.47,2.12,2.12,0,0,1,8.43,8.44Z' + }) + ) +} + +export default UilUtensilsAlt \ No newline at end of file diff --git a/src/icons/uil-utensils.ts b/src/icons/uil-utensils.ts new file mode 100644 index 00000000..8a985e03 --- /dev/null +++ b/src/icons/uil-utensils.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilUtensils = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2a1,1,0,0,0-1,1V8.46l-1,.67V3a1,1,0,0,0-2,0V9.13l-1-.67V3a1,1,0,0,0-2,0V9a1,1,0,0,0,.45.83L15,11.54V21a1,1,0,0,0,2,0V11.54l2.55-1.71A1,1,0,0,0,20,9V3A1,1,0,0,0,19,2ZM9,2H9A5,5,0,0,0,4,7v6a1,1,0,0,0,1,1H8v7a1,1,0,0,0,2,0V3A1,1,0,0,0,9,2ZM8,12H6V7A3,3,0,0,1,8,4.17Z' + }) + ) +} + +export default UilUtensils \ No newline at end of file diff --git a/src/icons/uil-vector-square-alt.ts b/src/icons/uil-vector-square-alt.ts new file mode 100644 index 00000000..5878ee65 --- /dev/null +++ b/src/icons/uil-vector-square-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVectorSquareAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16,7H8A1,1,0,0,0,7,8v8a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V8A1,1,0,0,0,16,7Zm-1,8H9V9h6Zm6,3.28V5.72A2,2,0,1,0,18.28,3H5.72A2,2,0,1,0,3,5.72V18.28A2,2,0,1,0,5.72,21H18.28A2,2,0,1,0,21,18.28Zm-2,0a1.91,1.91,0,0,0-.72.72H5.72A1.91,1.91,0,0,0,5,18.28V5.72A1.91,1.91,0,0,0,5.72,5H18.28a1.91,1.91,0,0,0,.72.72Z' + }) + ) +} + +export default UilVectorSquareAlt \ No newline at end of file diff --git a/src/icons/uil-vector-square.ts b/src/icons/uil-vector-square.ts new file mode 100644 index 00000000..50cf80fa --- /dev/null +++ b/src/icons/uil-vector-square.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVectorSquare = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,16.18V7.82A3,3,0,1,0,16.18,4H7.82A3,3,0,1,0,4,7.82v8.36A3,3,0,1,0,7.82,20h8.36A3,3,0,1,0,20,16.18ZM19,4a1,1,0,1,1-1,1A1,1,0,0,1,19,4ZM5,4A1,1,0,1,1,4,5,1,1,0,0,1,5,4ZM5,20a1,1,0,1,1,1-1A1,1,0,0,1,5,20Zm11.18-2H7.82A3,3,0,0,0,6,16.18V7.82A3,3,0,0,0,7.82,6h8.36A3,3,0,0,0,18,7.82v8.36A3,3,0,0,0,16.18,18ZM19,20a1,1,0,1,1,1-1A1,1,0,0,1,19,20Z' + }) + ) +} + +export default UilVectorSquare \ No newline at end of file diff --git a/src/icons/uil-venus.ts b/src/icons/uil-venus.ts new file mode 100644 index 00000000..0c7f0112 --- /dev/null +++ b/src/icons/uil-venus.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVenus = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,9a7,7,0,1,0-8,6.92V18H10a1,1,0,0,0,0,2h1v1a1,1,0,0,0,2,0V20h1a1,1,0,0,0,0-2H13V15.92A7,7,0,0,0,19,9Zm-7,5a5,5,0,1,1,5-5A5,5,0,0,1,12,14Z' + }) + ) +} + +export default UilVenus \ No newline at end of file diff --git a/src/icons/uil-vertical-align-bottom.ts b/src/icons/uil-vertical-align-bottom.ts new file mode 100644 index 00000000..ab77ab88 --- /dev/null +++ b/src/icons/uil-vertical-align-bottom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalAlignBottom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,20H18V9a1,1,0,0,0-1-1H14V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3V20H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-9,0H8V4h4Zm4,0H14V10h2Z' + }) + ) +} + +export default UilVerticalAlignBottom \ No newline at end of file diff --git a/src/icons/uil-vertical-align-center.ts b/src/icons/uil-vertical-align-center.ts new file mode 100644 index 00000000..30959c9c --- /dev/null +++ b/src/icons/uil-vertical-align-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalAlignCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,11H18V6a1,1,0,0,0-1-1H14V3a1,1,0,0,0-1-1H7A1,1,0,0,0,6,3v8H3a1,1,0,0,0,0,2H6v8a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V19h3a1,1,0,0,0,1-1V13h3a1,1,0,0,0,0-2Zm-9,9H8V4h4Zm4-3H14V7h2Z' + }) + ) +} + +export default UilVerticalAlignCenter \ No newline at end of file diff --git a/src/icons/uil-vertical-align-top.ts b/src/icons/uil-vertical-align-top.ts new file mode 100644 index 00000000..6b5e0b63 --- /dev/null +++ b/src/icons/uil-vertical-align-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalAlignTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,3,4H6V21a1,1,0,0,0,1,1h6a1,1,0,0,0,1-1V16h3a1,1,0,0,0,1-1V4h3a1,1,0,0,0,0-2ZM12,20H8V4h4Zm4-6H14V4h2Z' + }) + ) +} + +export default UilVerticalAlignTop \ No newline at end of file diff --git a/src/icons/uil-vertical-distribute-bottom.ts b/src/icons/uil-vertical-distribute-bottom.ts new file mode 100644 index 00000000..4ae9d4c0 --- /dev/null +++ b/src/icons/uil-vertical-distribute-bottom.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalDistributeBottom = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,18H20V13a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1v5H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2Zm-3,0H6V14H18ZM3,10H21a1,1,0,0,0,0-2H19V5a1,1,0,0,0-1-1H6A1,1,0,0,0,5,5V8H3a1,1,0,0,0,0,2ZM7,6H17V8H7Z' + }) + ) +} + +export default UilVerticalDistributeBottom \ No newline at end of file diff --git a/src/icons/uil-vertical-distribution-center.ts b/src/icons/uil-vertical-distribution-center.ts new file mode 100644 index 00000000..1fbc4573 --- /dev/null +++ b/src/icons/uil-vertical-distribution-center.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalDistributionCenter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,15H20V13a1,1,0,0,0-1-1H5a1,1,0,0,0-1,1v2H3a1,1,0,0,0,0,2H4v2a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V17h1a1,1,0,0,0,0-2Zm-3,3H6V14H18ZM3,8H5V9a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V8h2a1,1,0,0,0,0-2H19V5a1,1,0,0,0-1-1H6A1,1,0,0,0,5,5V6H3A1,1,0,0,0,3,8ZM7,6H17V8H7Z' + }) + ) +} + +export default UilVerticalDistributionCenter \ No newline at end of file diff --git a/src/icons/uil-vertical-distribution-top.ts b/src/icons/uil-vertical-distribution-top.ts new file mode 100644 index 00000000..c4c4696d --- /dev/null +++ b/src/icons/uil-vertical-distribution-top.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVerticalDistributionTop = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,6H4v5a1,1,0,0,0,1,1H19a1,1,0,0,0,1-1V6h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,6ZM6,6H18v4H6Zm15,8H3a1,1,0,0,0,0,2H5v3a1,1,0,0,0,1,1H18a1,1,0,0,0,1-1V16h2a1,1,0,0,0,0-2Zm-4,4H7V16H17Z' + }) + ) +} + +export default UilVerticalDistributionTop \ No newline at end of file diff --git a/src/icons/uil-video-question.ts b/src/icons/uil-video-question.ts new file mode 100644 index 00000000..83fbcd7a --- /dev/null +++ b/src/icons/uil-video-question.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVideoQuestion = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.21,17.29a1.04667,1.04667,0,0,0-1.41992,0,1.02673,1.02673,0,0,0-.21.32959.94223.94223,0,0,0,0,.76025,1.15384,1.15384,0,0,0,.21.33008A1,1,0,0,0,10.5,18a.99993.99993,0,0,0-.08008-.38037A1.1515,1.1515,0,0,0,10.21,17.29ZM9.5,9a3.00933,3.00933,0,0,0-2.59766,1.49951.99956.99956,0,1,0,1.73047,1.001A1.00032,1.00032,0,1,1,9.5,13a.99974.99974,0,0,0-1,1v1a1,1,0,0,0,2,0v-.18427A2.99257,2.99257,0,0,0,9.5,9ZM21.52539,6.14941a.999.999,0,0,0-.97266-.04394l-3.56408,1.782A2.9975,2.9975,0,0,0,14,5H5A3.00328,3.00328,0,0,0,2,8v6a3.00328,3.00328,0,0,0,3,3H6a1,1,0,0,0,0-2H5a1.001,1.001,0,0,1-1-1V8A1.001,1.001,0,0,1,5,7h9a1.001,1.001,0,0,1,1,1v6a1.001,1.001,0,0,1-1,1h-.5a1,1,0,0,0,0,2H14a2.9975,2.9975,0,0,0,2.98865-2.88751l3.56408,1.782A1.00038,1.00038,0,0,0,22,15V7A.99976.99976,0,0,0,21.52539,6.14941ZM20,13.38184l-3-1.5V10.11816l3-1.5Z' + }) + ) +} + +export default UilVideoQuestion \ No newline at end of file diff --git a/src/icons/uil-video-slash.ts b/src/icons/uil-video-slash.ts new file mode 100644 index 00000000..be94a94b --- /dev/null +++ b/src/icons/uil-video-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVideoSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M7.71,6.29h0l-4-4A1,1,0,0,0,2.29,3.71L4.62,6A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3h9a3,3,0,0,0,1.9-.69l4.39,4.4a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM14,16H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8H6.59l7.87,7.88A1,1,0,0,1,14,16Zm7.53-8.85a1,1,0,0,0-1,0L17,8.89A3,3,0,0,0,14,6H12.66a1,1,0,0,0,0,2H14a1,1,0,0,1,1,1v1.5h0a1.62,1.62,0,0,0,0,.19.65.65,0,0,0,.05.2h0s.05.06.07.1a1,1,0,0,0,.15.21s.1.06.15.1l.17.11a.85.85,0,0,0,.23,0,.7.7,0,0,0,.14,0h0a1.62,1.62,0,0,0,.19,0,.65.65,0,0,0,.2-.05h0L20,9.62v5.72a1,1,0,1,0,2,0V8A1,1,0,0,0,21.53,7.15Z' + }) + ) +} + +export default UilVideoSlash \ No newline at end of file diff --git a/src/icons/uil-video.ts b/src/icons/uil-video.ts new file mode 100644 index 00000000..4ea2c545 --- /dev/null +++ b/src/icons/uil-video.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVideo = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.53,7.15a1,1,0,0,0-1,0L17,8.89A3,3,0,0,0,14,6H5A3,3,0,0,0,2,9v6a3,3,0,0,0,3,3h9a3,3,0,0,0,3-2.89l3.56,1.78A1,1,0,0,0,21,17a1,1,0,0,0,.53-.15A1,1,0,0,0,22,16V8A1,1,0,0,0,21.53,7.15ZM15,15a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V9A1,1,0,0,1,5,8h9a1,1,0,0,1,1,1Zm5-.62-3-1.5V11.12l3-1.5Z' + }) + ) +} + +export default UilVideo \ No newline at end of file diff --git a/src/icons/uil-virus-slash.ts b/src/icons/uil-virus-slash.ts new file mode 100644 index 00000000..ec2e014a --- /dev/null +++ b/src/icons/uil-virus-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVirusSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10.17 5.236a7.514 7.514 0 0 1 .83-.158v1.27a1 1 0 1 0 2 0V5.071a6.946 6.946 0 0 1 3.95 1.98v.001l.001.001a6.987 6.987 0 0 1 1.97 3.949H18a1 1 0 0 0 0 2h.922a7.65 7.65 0 0 1-.16.827 1 1 0 0 0 .718 1.217.983.983 0 0 0 .25.032 1 1 0 0 0 .968-.75 9.594 9.594 0 0 0 .236-1.326H22a1 1 0 0 0 0-2h-1.06a8.933 8.933 0 0 0-1.912-4.614l.75-.75a1 1 0 0 0-1.414-1.414l-.753.753A8.911 8.911 0 0 0 13 3.067V1.999a1 1 0 1 0-2 0v1.066a9.473 9.473 0 0 0-1.33.236 1 1 0 0 0 .5 1.936ZM14 9.002a1 1 0 1 0 1-1 1 1 0 0 0-1 1Zm4.377 7.963-.007-.011-.012-.008L2.707 1.295a1 1 0 0 0-1.414 1.414l3.679 3.679a8.932 8.932 0 0 0-1.913 4.614H2a1 1 0 0 0 0 2h1.06a8.948 8.948 0 0 0 1.911 4.615l-.75.75a1 1 0 1 0 1.415 1.413l.75-.75A8.946 8.946 0 0 0 11 20.94v1.063a1 1 0 0 0 2 0v-1.063a8.946 8.946 0 0 0 4.614-1.909l3.679 3.679a1 1 0 0 0 1.414-1.414ZM13 18.92v-1.917a1 1 0 0 0-2 0v1.917a6.986 6.986 0 0 1-3.945-1.96l-.005-.007-.007-.005a6.994 6.994 0 0 1-1.963-3.945H6a1 1 0 0 0 0-2h-.921a6.943 6.943 0 0 1 1.32-3.187L8.253 9.67a1.5 1.5 0 0 0 2.08 2.08l5.853 5.853A6.957 6.957 0 0 1 13 18.919Zm-4-4.917a1 1 0 1 0 1 1 1 1 0 0 0-1-1Z' + }) + ) +} + +export default UilVirusSlash \ No newline at end of file diff --git a/src/icons/uil-visual-studio.ts b/src/icons/uil-visual-studio.ts new file mode 100644 index 00000000..edee2308 --- /dev/null +++ b/src/icons/uil-visual-studio.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVisualStudio = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.85,2,9.09,9.77,4.19,5.91,2.05,7V17L4.2,18.09l4.93-3.85L16.87,22,22,19.93V4ZM4.37,14.3V9.65l2.44,2.43ZM16.7,15.59,12.05,12,16.7,8.41Z' + }) + ) +} + +export default UilVisualStudio \ No newline at end of file diff --git a/src/icons/uil-vk-alt.ts b/src/icons/uil-vk-alt.ts new file mode 100644 index 00000000..69e6f155 --- /dev/null +++ b/src/icons/uil-vk-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVkAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.74365,13.5293a5.5186,5.5186,0,0,0-.97741-.83612A7.87286,7.87286,0,0,0,17.625,8.22168a1,1,0,1,0-1.9502-.44336,5.86,5.86,0,0,1-3.0205,3.90228V8.002a.95817.95817,0,0,0-.0437-.21643,1.0238,1.0238,0,0,0-.03449-.17083.991.991,0,0,0-.16681-.24891c-.01788-.02124-.02691-.04925-.04645-.0689a1.00121,1.00121,0,0,0-.24609-.16706c-.02551-.01361-.04449-.03662-.07129-.048a1.01943,1.01943,0,0,0-.23645-.04865.94528.94528,0,0,0-.15179-.03119L11.00293,7H11a.99525.99525,0,0,0-.3501,1.92865v4.89069A11.307,11.307,0,0,1,7.64014,7.835a.99988.99988,0,1,0-1.97168.334,13.33371,13.33371,0,0,0,5.3999,8.64355.986.986,0,0,0,.12781.06445.94.94,0,0,0,.10748.0542.99383.99383,0,0,0,.35065.0708.98307.98307,0,0,0,.42382-.10186c.00995-.0047.02137-.00251.03126-.00751a.99262.99262,0,0,0,.24011-.17529c.01422-.01386.02374-.03089.03717-.04554a.98836.98836,0,0,0,.15991-.23718c.01392-.02869.02661-.05609.03778-.08624a.9878.9878,0,0,0,.06995-.34638l.00049-2.126a3.55144,3.55144,0,0,1,1.61474,1.00488l1.64795,1.79687a.99979.99979,0,1,0,1.47363-1.35156ZM15.07275,1H8.9375C2.78027,1,1,2.77832,1,8.92676V15.0625C1,21.21973,2.77783,23,8.92725,23H15.0625C21.21973,23,23,21.22168,23,15.07324V8.9375C23,2.78027,21.22217,1,15.07275,1ZM21,15.07324C21,20.11328,20.1123,21,15.0625,21H8.92725C3.88623,21,3,20.1123,3,15.0625V8.92676C3,3.88672,3.8877,3,8.9375,3h6.13525C20.11377,3,21,3.8877,21,8.9375Z' + }) + ) +} + +export default UilVkAlt \ No newline at end of file diff --git a/src/icons/uil-vk.ts b/src/icons/uil-vk.ts new file mode 100644 index 00000000..c64ecdcb --- /dev/null +++ b/src/icons/uil-vk.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVk = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M15.07294,2H8.9375C3.33331,2,2,3.33331,2,8.92706V15.0625C2,20.66663,3.32294,22,8.92706,22H15.0625C20.66669,22,22,20.67706,22,15.07288V8.9375C22,3.33331,20.67706,2,15.07294,2Zm3.07287,14.27081H16.6875c-.55206,0-.71875-.44793-1.70831-1.4375-.86463-.83331-1.22919-.9375-1.44794-.9375-.30206,0-.38544.08332-.38544.5v1.3125c0,.35419-.11456.5625-1.04162.5625a5.69214,5.69214,0,0,1-4.44794-2.66668A11.62611,11.62611,0,0,1,5.35419,8.77081c0-.21875.08331-.41668.5-.41668H7.3125c.375,0,.51044.16668.65625.55212.70831,2.08331,1.91669,3.89581,2.40625,3.89581.1875,0,.27081-.08331.27081-.55206V10.10413c-.0625-.97913-.58331-1.0625-.58331-1.41663a.36008.36008,0,0,1,.375-.33337h2.29169c.3125,0,.41662.15625.41662.53125v2.89587c0,.3125.13544.41663.22919.41663.1875,0,.33331-.10413.67706-.44788a11.99877,11.99877,0,0,0,1.79169-2.97919.62818.62818,0,0,1,.63544-.41668H17.9375c.4375,0,.53125.21875.4375.53125A18.20507,18.20507,0,0,1,16.41669,12.25c-.15625.23956-.21875.36456,0,.64581.14581.21875.65625.64582,1,1.05207a6.48553,6.48553,0,0,1,1.22912,1.70837C18.77081,16.0625,18.5625,16.27081,18.14581,16.27081Z' + }) + ) +} + +export default UilVk \ No newline at end of file diff --git a/src/icons/uil-voicemail-rectangle.ts b/src/icons/uil-voicemail-rectangle.ts new file mode 100644 index 00000000..e65d8164 --- /dev/null +++ b/src/icons/uil-voicemail-rectangle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVoicemailRectangle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,4H4A3,3,0,0,0,1,7V17a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V7A3,3,0,0,0,20,4Zm1,13a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V7A1,1,0,0,1,4,6H20a1,1,0,0,1,1,1ZM16,9a3,3,0,0,0-2.82,4H10.82A3,3,0,1,0,8,15h8a3,3,0,0,0,0-6ZM8,13a1,1,0,1,1,1-1A1,1,0,0,1,8,13Zm8,0a1,1,0,1,1,1-1A1,1,0,0,1,16,13Z' + }) + ) +} + +export default UilVoicemailRectangle \ No newline at end of file diff --git a/src/icons/uil-voicemail.ts b/src/icons/uil-voicemail.ts new file mode 100644 index 00000000..62e131c9 --- /dev/null +++ b/src/icons/uil-voicemail.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVoicemail = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18,8a4,4,0,0,0-4,4,3.91,3.91,0,0,0,.56,2H9.44A3.91,3.91,0,0,0,10,12a4,4,0,1,0-4,4H18a4,4,0,0,0,0-8ZM6,14a2,2,0,1,1,2-2A2,2,0,0,1,6,14Zm12,0a2,2,0,1,1,2-2A2,2,0,0,1,18,14Z' + }) + ) +} + +export default UilVoicemail \ No newline at end of file diff --git a/src/icons/uil-volleyball.ts b/src/icons/uil-volleyball.ts new file mode 100644 index 00000000..fb655c75 --- /dev/null +++ b/src/icons/uil-volleyball.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolleyball = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20.59,6.9a0,0,0,0,1,0,0,.86.86,0,0,0-.07-.1A10,10,0,0,0,7.6,3l0,0h0l-.07,0a10,10,0,0,0-1,17.19h0l.33.2.1.07h0A9.93,9.93,0,0,0,12,22h.21A10,10,0,0,0,20.59,6.9ZM19,8.06a7.64,7.64,0,0,1,.65,1.46,10,10,0,0,0-3-.49.81.81,0,0,0-.31,0,9.78,9.78,0,0,0-3.58.73,7.85,7.85,0,0,1-1.84-1.6A8.16,8.16,0,0,1,19,8.06ZM12,4a7.86,7.86,0,0,1,4,1.07A7.77,7.77,0,0,0,15,5,10,10,0,0,0,9.8,6.47a8,8,0,0,1-.64-1.94A7.92,7.92,0,0,1,12,4ZM6,6.71A8.26,8.26,0,0,1,7.33,5.52,9.9,9.9,0,0,0,12,11.61a7.89,7.89,0,0,1-.77,2.88A8,8,0,0,1,6,7C6,6.9,6,6.81,6,6.71ZM4,12a8.1,8.1,0,0,1,.36-2.37,10,10,0,0,0,5.7,6.56,7.84,7.84,0,0,1-2.93,2.14A8,8,0,0,1,4,12Zm7.86,8a7.8,7.8,0,0,1-2.61-.49,9.94,9.94,0,0,0,3.23-3.22l0,0A10,10,0,0,0,14,11.41a7.71,7.71,0,0,1,1.78-.36A8,8,0,0,1,11.86,20Zm4.22-1.12A9.94,9.94,0,0,0,18,13a10.69,10.69,0,0,0-.18-1.88,8.34,8.34,0,0,1,2.17.7c0,.06,0,.12,0,.18A8,8,0,0,1,16.08,18.87Z' + }) + ) +} + +export default UilVolleyball \ No newline at end of file diff --git a/src/icons/uil-volume-down.ts b/src/icons/uil-volume-down.ts new file mode 100644 index 00000000..f9f14964 --- /dev/null +++ b/src/icons/uil-volume-down.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolumeDown = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.83,9.17a1,1,0,1,0-1.42,1.42A2,2,0,0,1,18,12a2,2,0,0,1-.71,1.53,1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.12A4,4,0,0,0,20,12,4.06,4.06,0,0,0,18.83,9.17ZM14.43,4.1a1,1,0,0,0-1,.12L8.65,8H5A1,1,0,0,0,4,9v6a1,1,0,0,0,1,1H8.65l4.73,3.78A1,1,0,0,0,14,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,15,19V5A1,1,0,0,0,14.43,4.1ZM13,16.92l-3.38-2.7A1,1,0,0,0,9,14H6V10H9a1,1,0,0,0,.62-.22L13,7.08Z' + }) + ) +} + +export default UilVolumeDown \ No newline at end of file diff --git a/src/icons/uil-volume-mute.ts b/src/icons/uil-volume-mute.ts new file mode 100644 index 00000000..554aa2a3 --- /dev/null +++ b/src/icons/uil-volume-mute.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolumeMute = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM19.91,12l1.8-1.79a1,1,0,0,0-1.42-1.42l-1.79,1.8-1.79-1.8a1,1,0,0,0-1.42,1.42L17.09,12l-1.8,1.79a1,1,0,0,0,0,1.42,1,1,0,0,0,1.42,0l1.79-1.8,1.79,1.8a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42Z' + }) + ) +} + +export default UilVolumeMute \ No newline at end of file diff --git a/src/icons/uil-volume-off.ts b/src/icons/uil-volume-off.ts new file mode 100644 index 00000000..ba3850a1 --- /dev/null +++ b/src/icons/uil-volume-off.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolumeOff = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.93,4.1a1,1,0,0,0-1,.12L11.15,8H7.5a1,1,0,0,0-1,1v6a1,1,0,0,0,1,1h3.65l4.73,3.78a1,1,0,0,0,.62.22.91.91,0,0,0,.43-.1,1,1,0,0,0,.57-.9V5A1,1,0,0,0,16.93,4.1ZM15.5,16.92l-3.38-2.7A1,1,0,0,0,11.5,14h-3V10h3a1,1,0,0,0,.62-.22l3.38-2.7Z' + }) + ) +} + +export default UilVolumeOff \ No newline at end of file diff --git a/src/icons/uil-volume-up.ts b/src/icons/uil-volume-up.ts new file mode 100644 index 00000000..3225d8e2 --- /dev/null +++ b/src/icons/uil-volume-up.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolumeUp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM15.14,4.09a1,1,0,1,0-.28,2,6,6,0,0,1,0,11.86,1,1,0,0,0,.14,2h.14a8,8,0,0,0,0-15.82Zm-.46,9.78a1,1,0,0,0,.32,2,1.13,1.13,0,0,0,.32-.05,4,4,0,0,0,0-7.54,1,1,0,0,0-.64,1.9,2,2,0,0,1,0,3.74Z' + }) + ) +} + +export default UilVolumeUp \ No newline at end of file diff --git a/src/icons/uil-volume.ts b/src/icons/uil-volume.ts new file mode 100644 index 00000000..76e23414 --- /dev/null +++ b/src/icons/uil-volume.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVolume = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12.43,4.1a1,1,0,0,0-1,.12L6.65,8H3A1,1,0,0,0,2,9v6a1,1,0,0,0,1,1H6.65l4.73,3.78A1,1,0,0,0,12,20a.91.91,0,0,0,.43-.1A1,1,0,0,0,13,19V5A1,1,0,0,0,12.43,4.1ZM11,16.92l-3.38-2.7A1,1,0,0,0,7,14H4V10H7a1,1,0,0,0,.62-.22L11,7.08ZM19.66,6.34a1,1,0,0,0-1.42,1.42,6,6,0,0,1-.38,8.84,1,1,0,0,0,.64,1.76,1,1,0,0,0,.64-.23,8,8,0,0,0,.52-11.79ZM16.83,9.17a1,1,0,1,0-1.42,1.42A2,2,0,0,1,16,12a2,2,0,0,1-.71,1.53,1,1,0,0,0-.13,1.41,1,1,0,0,0,1.41.12A4,4,0,0,0,18,12,4.06,4.06,0,0,0,16.83,9.17Z' + }) + ) +} + +export default UilVolume \ No newline at end of file diff --git a/src/icons/uil-vuejs-alt.ts b/src/icons/uil-vuejs-alt.ts new file mode 100644 index 00000000..13f96523 --- /dev/null +++ b/src/icons/uil-vuejs-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVuejsAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22.86723,3.374a.99906.99906,0,0,0-.86622-.50195l-4.97064-.00391-.00738-.001-3.64356.001a1.00172,1.00172,0,0,0-.81787.42481l-.55859.7959L11.43851,3.291a.9983.9983,0,0,0-.81591-.42286l-3.646-.001H6.97611l-.00146.00018-.00147-.00018H6.96781l-4.97314.02734a.99989.99989,0,0,0-.85742,1.50586L11.15678,21.50586A1.00068,1.00068,0,0,0,12.01957,22h.001a1.00062,1.00062,0,0,0,.86328-.49609L22.8643,4.376A1.00212,1.00212,0,0,0,22.86723,3.374ZM10.10453,4.86816l1.085,1.53321a.99856.99856,0,0,0,.81641.42285h.00146a1.00252,1.00252,0,0,0,.8169-.42481l1.07519-1.53125,1.36267-.001-3.244,5.45373L8.7432,4.86719Zm1.9126,14.14942L3.7393,4.88477l2.66992-.01465,4.75342,7.918a1.00082,1.00082,0,0,0,.85742.48535H12.022l.001-.00012.001.00012h.002a1,1,0,0,0,.85742-.48926l4.708-7.916,2.66949.00293Z' + }) + ) +} + +export default UilVuejsAlt \ No newline at end of file diff --git a/src/icons/uil-vuejs.ts b/src/icons/uil-vuejs.ts new file mode 100644 index 00000000..8b7f6301 --- /dev/null +++ b/src/icons/uil-vuejs.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilVuejs = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.03079,2.44284V2.44278l-.15448.00006-.84552-.00006-.00012.00024-2.64319.00055L12.01321,6.39951,9.62961,2.44357l-2.64594-.001-.00024-.00037H2.2717v.00055L.83231,2.44266,12.029,21.55777,23.16769,2.443ZM12.02505,17.59293,4.322,4.44223H7.14566l4.88562,8.4071,4.8468-8.4071h2.80939Z' + }) + ) +} + +export default UilVuejs \ No newline at end of file diff --git a/src/icons/uil-wall.ts b/src/icons/uil-wall.ts new file mode 100644 index 00000000..484ef060 --- /dev/null +++ b/src/icons/uil-wall.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWall = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,9a1,1,0,0,0,0-2H20V5h1a1,1,0,0,0,0-2H3A1,1,0,0,0,3,5H6V7H3A1,1,0,0,0,3,9H4v2H3a1,1,0,0,0,0,2H6v2H3a1,1,0,0,0,0,2H4v2H3a1,1,0,0,0,0,2H21a1,1,0,0,0,0-2H18V17h3a1,1,0,0,0,0-2H20V13h1a1,1,0,0,0,0-2H18V9ZM8,5h4V7H8Zm8,4v2H12V9ZM6,9h4v2H6Zm6,4v2H8V13Zm-2,6H6V17h4Zm6,0H12V17h4Zm2-4H14V13h4ZM14,7V5h4V7Z' + }) + ) +} + +export default UilWall \ No newline at end of file diff --git a/src/icons/uil-wallet.ts b/src/icons/uil-wallet.ts new file mode 100644 index 00000000..212e192c --- /dev/null +++ b/src/icons/uil-wallet.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWallet = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,7H18V6a3,3,0,0,0-3-3H5A3,3,0,0,0,2,6H2V18a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V10A3,3,0,0,0,19,7ZM5,5H15a1,1,0,0,1,1,1V7H5A1,1,0,0,1,5,5ZM20,15H19a1,1,0,0,1,0-2h1Zm0-4H19a3,3,0,0,0,0,6h1v1a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V8.83A3,3,0,0,0,5,9H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilWallet \ No newline at end of file diff --git a/src/icons/uil-watch-alt.ts b/src/icons/uil-watch-alt.ts new file mode 100644 index 00000000..6e101959 --- /dev/null +++ b/src/icons/uil-watch-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWatchAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,8.61,16,2.84A1,1,0,0,0,15,2H9a1,1,0,0,0-1,.84l-1,5.77a6,6,0,0,0,0,6.78l1,5.77A1,1,0,0,0,9,22h6a1,1,0,0,0,1-.84l1-5.77a6,6,0,0,0,0-6.78ZM9.85,4h4.3l.44,2.59a6,6,0,0,0-5.18,0Zm4.3,16H9.85l-.44-2.59a6,6,0,0,0,5.18,0ZM12,16a4,4,0,1,1,4-4A4,4,0,0,1,12,16Z' + }) + ) +} + +export default UilWatchAlt \ No newline at end of file diff --git a/src/icons/uil-watch.ts b/src/icons/uil-watch.ts new file mode 100644 index 00000000..7afe6564 --- /dev/null +++ b/src/icons/uil-watch.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWatch = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,6.78V3a1,1,0,0,0-1-1H8A1,1,0,0,0,7,3V6.78A3,3,0,0,0,6,9v6a3,3,0,0,0,1,2.22V21a1,1,0,0,0,1,1h8a1,1,0,0,0,1-1V17.22A3,3,0,0,0,18,15V9A3,3,0,0,0,17,6.78ZM9,4h6V6H9Zm6,16H9V18h6Zm1-5a1,1,0,0,1-1,1H9a1,1,0,0,1-1-1V9A1,1,0,0,1,9,8h6a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilWatch \ No newline at end of file diff --git a/src/icons/uil-water-drop-slash.ts b/src/icons/uil-water-drop-slash.ts new file mode 100644 index 00000000..542abe4a --- /dev/null +++ b/src/icons/uil-water-drop-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWaterDropSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,20.29l-18-18A1,1,0,0,0,2.29,3.71l4,4a12.46,12.46,0,0,0-2,6.57A7.76,7.76,0,0,0,12,22a7.64,7.64,0,0,0,5.87-2.71l2.42,2.42a1,1,0,0,0,1.42,0A1,1,0,0,0,21.71,20.29ZM12,20a5.76,5.76,0,0,1-5.75-5.75A10.3,10.3,0,0,1,7.72,9.14l8.74,8.73A5.67,5.67,0,0,1,12,20ZM10.85,5.24c.45-.42.85-.75,1.15-1,1.43,1.12,5.13,4.43,5.68,8.88a1,1,0,0,0,1,.88h.12a1,1,0,0,0,.87-1.11c-.78-6.43-6.85-10.55-7.1-10.72a1,1,0,0,0-1.12,0A18.73,18.73,0,0,0,9.49,3.78a1,1,0,0,0,1.36,1.46Z' + }) + ) +} + +export default UilWaterDropSlash \ No newline at end of file diff --git a/src/icons/uil-water-glass.ts b/src/icons/uil-water-glass.ts new file mode 100644 index 00000000..44858c62 --- /dev/null +++ b/src/icons/uil-water-glass.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWaterGlass = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.08,7A1,1,0,0,0,17,7.92l-.35,4.55a2.67,2.67,0,0,1-1.2-.77,1,1,0,0,0-1.5,0,2.65,2.65,0,0,1-3.9,0,1,1,0,0,0-1.5,0,2.7,2.7,0,0,1-1.2.77L7,7.92A1,1,0,0,0,5.92,7,1,1,0,0,0,5,8.08l.86,11.15a3,3,0,0,0,3,2.77h6.3a3,3,0,0,0,3-2.77L19,8.08A1,1,0,0,0,18.08,7ZM16.14,19.08a1,1,0,0,1-1,.92H8.85a1,1,0,0,1-1-.92L7.5,14.5a4.77,4.77,0,0,0,1.8-.79,4.66,4.66,0,0,0,5.4,0,4.77,4.77,0,0,0,1.8.79ZM12,10a3.26,3.26,0,0,0,3.25-3.25c0-2.75-2.58-4.51-2.69-4.58a1,1,0,0,0-1.12,0C11.33,2.25,8.75,4,8.75,6.75A3.26,3.26,0,0,0,12,10Zm0-5.7a3.61,3.61,0,0,1,1.25,2.45,1.25,1.25,0,0,1-2.5,0A3.66,3.66,0,0,1,12,4.3Z' + }) + ) +} + +export default UilWaterGlass \ No newline at end of file diff --git a/src/icons/uil-water.ts b/src/icons/uil-water.ts new file mode 100644 index 00000000..9bac962d --- /dev/null +++ b/src/icons/uil-water.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWater = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M2.72,7.65a2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92,4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45,1,1,0,1,0-.56,1.92Zm18,8.08a4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45,1,1,0,1,0-.56,1.92,2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92Zm0-5a4.45,4.45,0,0,0-1,.45,2.08,2.08,0,0,1-2.1,0,4.64,4.64,0,0,0-4.54,0,2.11,2.11,0,0,1-2.12,0,4.64,4.64,0,0,0-4.54,0,2.08,2.08,0,0,1-2.1,0,4.45,4.45,0,0,0-1-.45A1,1,0,0,0,2,11.41a1,1,0,0,0,.68,1.24,2.56,2.56,0,0,1,.56.24,4,4,0,0,0,4.1,0,2.6,2.6,0,0,1,2.56,0,4.15,4.15,0,0,0,4.12,0,2.6,2.6,0,0,1,2.56,0,4.25,4.25,0,0,0,2.08.56,3.88,3.88,0,0,0,2-.56,2.56,2.56,0,0,1,.56-.24,1,1,0,0,0-.56-1.92Z' + }) + ) +} + +export default UilWater \ No newline at end of file diff --git a/src/icons/uil-web-grid-alt.ts b/src/icons/uil-web-grid-alt.ts new file mode 100644 index 00000000..56d218d7 --- /dev/null +++ b/src/icons/uil-web-grid-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWebGridAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM11,20H4V10h7Zm9,0H13V10h7ZM20,8H4V4H20Z' + }) + ) +} + +export default UilWebGridAlt \ No newline at end of file diff --git a/src/icons/uil-web-grid.ts b/src/icons/uil-web-grid.ts new file mode 100644 index 00000000..6ee2a248 --- /dev/null +++ b/src/icons/uil-web-grid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWebGrid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM14,20H4V13H14Zm0-9H4V4H14Zm6,9H16V4h4Z' + }) + ) +} + +export default UilWebGrid \ No newline at end of file diff --git a/src/icons/uil-web-section-alt.ts b/src/icons/uil-web-section-alt.ts new file mode 100644 index 00000000..445b3184 --- /dev/null +++ b/src/icons/uil-web-section-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWebSectionAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm12,0H10V4H20Z' + }) + ) +} + +export default UilWebSectionAlt \ No newline at end of file diff --git a/src/icons/uil-web-section.ts b/src/icons/uil-web-section.ts new file mode 100644 index 00000000..795fa100 --- /dev/null +++ b/src/icons/uil-web-section.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWebSection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM14,20H4V4H14Zm6,0H16V4h4Z' + }) + ) +} + +export default UilWebSection \ No newline at end of file diff --git a/src/icons/uil-webcam.ts b/src/icons/uil-webcam.ts new file mode 100644 index 00000000..0fe1cb27 --- /dev/null +++ b/src/icons/uil-webcam.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWebcam = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,13a3,3,0,1,0-3-3A3,3,0,0,0,12,13Zm0-4a1,1,0,1,1-1,1A1,1,0,0,1,12,9Zm9.59,9.16A10,10,0,0,0,19,13.89a8,8,0,1,0-14,0,9.9,9.9,0,0,0-2.6,4.27,3,3,0,0,0,.47,2.63A3,3,0,0,0,5.3,22H18.7a3,3,0,0,0,2.42-1.21A3,3,0,0,0,21.59,18.16ZM12,4a6,6,0,1,1-6,6A6,6,0,0,1,12,4Zm7.52,15.59a1,1,0,0,1-.82.41H5.3a1,1,0,0,1-.82-.41,1,1,0,0,1-.15-.87A7.85,7.85,0,0,1,6.21,15.5a8,8,0,0,0,11.58,0,7.85,7.85,0,0,1,1.88,3.22A1,1,0,0,1,19.52,19.59Z' + }) + ) +} + +export default UilWebcam \ No newline at end of file diff --git a/src/icons/uil-weight.ts b/src/icons/uil-weight.ts new file mode 100644 index 00000000..0ff3bac2 --- /dev/null +++ b/src/icons/uil-weight.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWeight = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,4H17.55A3.08,3.08,0,0,0,17,3a3,3,0,0,0-2.25-1H9.27A3,3,0,0,0,7,3a3.08,3.08,0,0,0-.57,1H5A3,3,0,0,0,2,7V19a3,3,0,0,0,3,3H19a3,3,0,0,0,3-3V7A3,3,0,0,0,19,4ZM8.52,4.34A1,1,0,0,1,9.27,4h5.46a1,1,0,0,1,.75.34,1,1,0,0,1,.25.78l-.5,4a1,1,0,0,1-1,.88H12.59l1.14-2.4a1,1,0,0,0-1.8-.86L10.37,10h-.6a1,1,0,0,1-1-.88l-.5-4A1,1,0,0,1,8.52,4.34ZM20,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V7A1,1,0,0,1,5,6H6.37l.42,3.37a3,3,0,0,0,3,2.63h4.46a3,3,0,0,0,3-2.63L17.63,6H19a1,1,0,0,1,1,1Zm-6-3H10a1,1,0,0,0,0,2h4a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilWeight \ No newline at end of file diff --git a/src/icons/uil-whatsapp-alt.ts b/src/icons/uil-whatsapp-alt.ts new file mode 100644 index 00000000..4739f504 --- /dev/null +++ b/src/icons/uil-whatsapp-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWhatsappAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22,6.55a12.61,12.61,0,0,0-.1-1.29,4.29,4.29,0,0,0-.37-1.08,3.66,3.66,0,0,0-.71-1,3.91,3.91,0,0,0-1-.71,4.28,4.28,0,0,0-1.08-.36A10.21,10.21,0,0,0,17.46,2H6.55a12.61,12.61,0,0,0-1.29.1,4.29,4.29,0,0,0-1.08.37,3.66,3.66,0,0,0-1,.71,3.91,3.91,0,0,0-.71,1,4.28,4.28,0,0,0-.36,1.08A10.21,10.21,0,0,0,2,6.54C2,6.73,2,7,2,7.08v9.84c0,.11,0,.35,0,.53a12.61,12.61,0,0,0,.1,1.29,4.29,4.29,0,0,0,.37,1.08,3.66,3.66,0,0,0,.71,1,3.91,3.91,0,0,0,1,.71,4.28,4.28,0,0,0,1.08.36A10.21,10.21,0,0,0,6.54,22H17.45a12.61,12.61,0,0,0,1.29-.1,4.29,4.29,0,0,0,1.08-.37,3.66,3.66,0,0,0,1-.71,3.91,3.91,0,0,0,.71-1,4.28,4.28,0,0,0,.36-1.08A10.21,10.21,0,0,0,22,17.46c0-.19,0-.43,0-.54V7.08C22,7,22,6.73,22,6.55ZM12.23,19h0A7.12,7.12,0,0,1,8.8,18.1L5,19.1l1-3.72a7.11,7.11,0,0,1-1-3.58A7.18,7.18,0,1,1,12.23,19Zm0-13.13A6,6,0,0,0,7.18,15l.14.23-.6,2.19L9,16.8l.22.13a6,6,0,0,0,3,.83h0a6,6,0,0,0,6-6,6,6,0,0,0-6-6Zm3.5,8.52a1.82,1.82,0,0,1-1.21.85,2.33,2.33,0,0,1-1.12-.07,8.9,8.9,0,0,1-1-.38,8,8,0,0,1-3.06-2.7,3.48,3.48,0,0,1-.73-1.85,2,2,0,0,1,.63-1.5.65.65,0,0,1,.48-.22H10c.11,0,.26,0,.4.31s.51,1.24.56,1.33a.34.34,0,0,1,0,.31,1.14,1.14,0,0,1-.18.3c-.09.11-.19.24-.27.32s-.18.18-.08.36a5.56,5.56,0,0,0,1,1.24,5,5,0,0,0,1.44.89c.18.09.29.08.39,0s.45-.52.57-.7.24-.15.4-.09,1.05.49,1.23.58.29.13.34.21A1.56,1.56,0,0,1,15.73,14.36Z' + }) + ) +} + +export default UilWhatsappAlt \ No newline at end of file diff --git a/src/icons/uil-whatsapp.ts b/src/icons/uil-whatsapp.ts new file mode 100644 index 00000000..f54b04eb --- /dev/null +++ b/src/icons/uil-whatsapp.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWhatsapp = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.2-.6.3-.6.6-.9 1.3-.9 2.1.1.9.4 1.8 1 2.6 1.1 1.6 2.5 2.9 4.2 3.7.5.2.9.4 1.4.5.5.2 1 .2 1.6.1.7-.1 1.3-.6 1.7-1.2.2-.4.2-.8.1-1.2l-.4-.2m2.5-9.1C15.2 1 8.9 1 5 4.9c-3.2 3.2-3.8 8.1-1.6 12L2 22l5.3-1.4c1.5.8 3.1 1.2 4.7 1.2 5.5 0 9.9-4.4 9.9-9.9.1-2.6-1-5.1-2.8-7m-2.7 14c-1.3.8-2.8 1.3-4.4 1.3-1.5 0-2.9-.4-4.2-1.1l-.3-.2-3.1.8.8-3-.2-.3c-2.4-4-1.2-9 2.7-11.5S16.6 3.7 19 7.5c2.4 3.9 1.3 9-2.6 11.4' + }) + ) +} + +export default UilWhatsapp \ No newline at end of file diff --git a/src/icons/uil-wheel-barrow.ts b/src/icons/uil-wheel-barrow.ts new file mode 100644 index 00000000..0422473f --- /dev/null +++ b/src/icons/uil-wheel-barrow.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWheelBarrow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H19l-.09,0-.21,0-.16.07-.17.11a.8.8,0,0,0-.13.13.86.86,0,0,0-.1.16.71.71,0,0,0-.08.18l0,.09L17.38,6H16.24L13.12,2.89a3.06,3.06,0,0,0-4.24,0L5.76,6H3a1,1,0,0,0-.87.5,1,1,0,0,0,0,1l4,7h0L5.36,16A2.2,2.2,0,0,0,5,16a3,3,0,1,0,3,3,3,3,0,0,0-.85-2.08l1-2,1.38-.14,3.94,5.91A2.93,2.93,0,0,0,16,22a3.18,3.18,0,0,0,1.13-.21A3,3,0,0,0,19,18.49L18,13l1.79-9H21a1,1,0,0,0,0-2ZM5,20a1,1,0,1,1,1-1A1,1,0,0,1,5,20ZM10.3,4.29a1,1,0,0,1,1.4,0L13.41,6H8.59ZM7.55,12.94,4.72,8H17l-.82,4.08Zm8.81,7a1,1,0,0,1-1.2-.38l-3.34-5,4.37-.43L17,18.82A1,1,0,0,1,16.36,19.93Z' + }) + ) +} + +export default UilWheelBarrow \ No newline at end of file diff --git a/src/icons/uil-wheelchair-alt.ts b/src/icons/uil-wheelchair-alt.ts new file mode 100644 index 00000000..fd9c8b23 --- /dev/null +++ b/src/icons/uil-wheelchair-alt.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWheelchairAlt = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M20,16.18V16a3,3,0,0,0-2-2.82V7h1a1,1,0,0,0,0-2H7A3,3,0,0,0,4,2H3A1,1,0,0,0,3,4H4A1,1,0,0,1,5,5v7.42A5,5,0,1,0,12,17a4.94,4.94,0,0,0-.42-2H17a1,1,0,0,1,1,1v.18a3,3,0,1,0,2,0ZM7,20a3,3,0,1,1,3-3A3,3,0,0,1,7,20Zm9-7H10a4.93,4.93,0,0,0-3-1V11h9Zm0-4H7V7h9Zm3,11a1,1,0,1,1,1-1A1,1,0,0,1,19,20ZM7,16a1,1,0,1,0,1,1A1,1,0,0,0,7,16Z' + }) + ) +} + +export default UilWheelchairAlt \ No newline at end of file diff --git a/src/icons/uil-wheelchair.ts b/src/icons/uil-wheelchair.ts new file mode 100644 index 00000000..9848b0da --- /dev/null +++ b/src/icons/uil-wheelchair.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWheelchair = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,6.5a2,2,0,1,0-2-2A2,2,0,0,0,12,6.5Zm7.5,14h-1v-5a1,1,0,0,0-1-1h-5v-2h5a1,1,0,0,0,0-2h-5v-2a1,1,0,0,0-2,0v7a1,1,0,0,0,1,1h5v5a1,1,0,0,0,1,1h2a1,1,0,0,0,0-2Zm-6.8-1.6a4,4,0,0,1-7.2-2.4,4,4,0,0,1,2.4-3.66A1,1,0,1,0,7.1,11a6,6,0,1,0,7.2,9.1,1,1,0,0,0-1.6-1.2Z' + }) + ) +} + +export default UilWheelchair \ No newline at end of file diff --git a/src/icons/uil-wifi-router.ts b/src/icons/uil-wifi-router.ts new file mode 100644 index 00000000..0d1c01d9 --- /dev/null +++ b/src/icons/uil-wifi-router.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWifiRouter = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8.9,17a1,1,0,1,0,1,1A1,1,0,0,0,8.9,17Zm-3,0a1,1,0,1,0,1,1A1,1,0,0,0,5.9,17Zm6,0a1,1,0,1,0,1,1A1,1,0,0,0,11.9,17ZM15,8.5a1,1,0,0,1,1.73,0,1,1,0,0,0,1.36.37A1,1,0,0,0,18.5,7.5a3,3,0,0,0-5.2,0A1,1,0,0,0,15,8.5ZM22,5.5a7,7,0,0,0-12.12,0,1,1,0,0,0,.37,1.37A1,1,0,0,0,10.7,7a1,1,0,0,0,.87-.5,5,5,0,0,1,8.66,0,1,1,0,0,0,1.37.37A1,1,0,0,0,22,5.5ZM17.9,14h-1V11a1,1,0,1,0-2,0v3H4.9a3,3,0,0,0-3,3v2a3,3,0,0,0,3,3h13a3,3,0,0,0,3-3V17A3,3,0,0,0,17.9,14Zm1,5a1,1,0,0,1-1,1H4.9a1,1,0,0,1-1-1V17a1,1,0,0,1,1-1h13a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilWifiRouter \ No newline at end of file diff --git a/src/icons/uil-wifi-slash.ts b/src/icons/uil-wifi-slash.ts new file mode 100644 index 00000000..54214467 --- /dev/null +++ b/src/icons/uil-wifi-slash.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWifiSlash = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M6.92,5.51h0L3.71,2.29A1,1,0,0,0,2.29,3.71L4.56,6A15.21,15.21,0,0,0,1.4,8.39a1,1,0,0,0,0,1.41,1,1,0,0,0,.71.3,1,1,0,0,0,.7-.29A13.07,13.07,0,0,1,6.05,7.46L7.54,9a10.78,10.78,0,0,0-3.32,2.27,1,1,0,1,0,1.42,1.4,8.8,8.8,0,0,1,3.45-2.12l1.62,1.61a7.07,7.07,0,0,0-3.66,1.94,1,1,0,1,0,1.42,1.4A5,5,0,0,1,12,14a4.13,4.13,0,0,1,.63.05l7.66,7.66a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42ZM12,16a3,3,0,1,0,3,3A3,3,0,0,0,12,16Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,20ZM22.61,8.39A15,15,0,0,0,10.29,4.1a1,1,0,1,0,.22,2A13.07,13.07,0,0,1,21.2,9.81a1,1,0,0,0,1.41-1.42Zm-4.25,4.24a1,1,0,0,0,1.42-1.4,10.75,10.75,0,0,0-4.84-2.82,1,1,0,1,0-.52,1.92A8.94,8.94,0,0,1,18.36,12.63Z' + }) + ) +} + +export default UilWifiSlash \ No newline at end of file diff --git a/src/icons/uil-wifi.ts b/src/icons/uil-wifi.ts new file mode 100644 index 00000000..56a13d0c --- /dev/null +++ b/src/icons/uil-wifi.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWifi = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,15a3,3,0,1,0,3,3A3,3,0,0,0,12,15Zm0,4a1,1,0,1,1,1-1A1,1,0,0,1,12,19Zm0-8a7.06,7.06,0,0,0-4.95,2.05,1,1,0,0,0,0,1.41,1,1,0,0,0,1.41,0,5,5,0,0,1,7.08,0,1,1,0,0,0,.7.3A1,1,0,0,0,17,13.05,7.06,7.06,0,0,0,12,11Zm0-4a11.08,11.08,0,0,0-7.78,3.22,1,1,0,0,0,1.42,1.42,9,9,0,0,1,12.72,0,1,1,0,0,0,.71.29,1,1,0,0,0,.71-.29,1,1,0,0,0,0-1.42A11.08,11.08,0,0,0,12,7Zm10.61.39a15,15,0,0,0-21.22,0A1,1,0,0,0,2.81,8.81a13,13,0,0,1,18.38,0,1,1,0,0,0,1.42,0A1,1,0,0,0,22.61,7.39Z' + }) + ) +} + +export default UilWifi \ No newline at end of file diff --git a/src/icons/uil-wind-moon.ts b/src/icons/uil-wind-moon.ts new file mode 100644 index 00000000..91713d26 --- /dev/null +++ b/src/icons/uil-wind-moon.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindMoon = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,19H7a1,1,0,0,0,0,2h5a1.01348,1.01348,0,0,1,1,1,1,1,0,0,0,2,0A3.00328,3.00328,0,0,0,12,19ZM14,9a1,1,0,1,0-1-1A1,1,0,0,0,14,9Zm4,0h2a3.00328,3.00328,0,0,0,3-3,1,1,0,0,0-2,0,1.01348,1.01348,0,0,1-1,1H18a1,1,0,0,0,0,2Zm2,6H17.83868a8.04287,8.04287,0,0,0,1.14667-2.9502,1.00038,1.00038,0,0,0-1.30566-1.11718,5.96932,5.96932,0,0,1-1.91992.31738A6.06179,6.06179,0,0,1,9.7002,5.2002a7.15542,7.15542,0,0,1,.09765-1.04883A.99925.99925,0,0,0,8.49023,3.05273,8.03194,8.03194,0,0,0,4.26587,15H3a1,1,0,0,0,0,2H8a1,1,0,0,0,0-2H6.83051a6.028,6.028,0,0,1,.8814-9.36035A8.06544,8.06544,0,0,0,15.75977,13.25a7.87832,7.87832,0,0,0,.78906-.03906A6.02734,6.02734,0,0,1,15.27728,15H12a1,1,0,0,0,0,2h8a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM2.62012,19.08008a1.14718,1.14718,0,0,0-.33008.21A1.02776,1.02776,0,0,0,2,20a.98979.98979,0,0,0,1.37988.91992A1.16044,1.16044,0,0,0,3.71,20.71.99349.99349,0,0,0,4,20a1.05232,1.05232,0,0,0-.29-.71A1.00157,1.00157,0,0,0,2.62012,19.08008Z' + }) + ) +} + +export default UilWindMoon \ No newline at end of file diff --git a/src/icons/uil-wind-sun.ts b/src/icons/uil-wind-sun.ts new file mode 100644 index 00000000..8ff2eeab --- /dev/null +++ b/src/icons/uil-wind-sun.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindSun = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M11,4.5a.99943.99943,0,0,0,1-1v-1a1,1,0,0,0-2,0v1A.99943.99943,0,0,0,11,4.5Zm-7,7a.99943.99943,0,0,0-1-1H2a1,1,0,0,0,0,2H3A.99943.99943,0,0,0,4,11.5Zm.63574,4.9502-.707.707a.99989.99989,0,1,0,1.41406,1.41406l.707-.707A.99989.99989,0,1,0,4.63574,16.4502Zm0-9.9004A.99989.99989,0,0,0,6.0498,5.13574l-.707-.707A.99989.99989,0,0,0,3.92871,5.84277Zm12.02149.293a.99672.99672,0,0,0,.707-.293l.707-.707a.99989.99989,0,1,0-1.41406-1.41406l-.707.707a1,1,0,0,0,.707,1.707ZM13,12a.99943.99943,0,0,0,1,1h5a3.00328,3.00328,0,0,0,3-3,1,1,0,0,0-2,0,1.01348,1.01348,0,0,1-1,1H14A.99943.99943,0,0,0,13,12Zm7,3H15a1,1,0,0,0,0,2h5a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6ZM9,19a1,1,0,1,0,1,1A1,1,0,0,0,9,19Zm6,0H13a1,1,0,0,0,0,2h2a1.01348,1.01348,0,0,1,1,1,1,1,0,0,0,2,0A3.00328,3.00328,0,0,0,15,19Zm-4-4a3.5,3.5,0,0,1,0-7,3.41539,3.41539,0,0,1,2.1875.77441,1.00008,1.00008,0,1,0,1.26562-1.54882A5.39339,5.39339,0,0,0,11,6a5.5,5.5,0,0,0,0,11,1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilWindSun \ No newline at end of file diff --git a/src/icons/uil-wind.ts b/src/icons/uil-wind.ts new file mode 100644 index 00000000..9bec18c7 --- /dev/null +++ b/src/icons/uil-wind.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWind = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.5,9a1,1,0,1,0-1-1A1,1,0,0,0,3.5,9Zm4,0h7a3,3,0,0,0,0-6,3.06,3.06,0,0,0-1.5.4,1,1,0,0,0-.37,1.37A1,1,0,0,0,14,5.13,1.09,1.09,0,0,1,14.5,5a1,1,0,0,1,0,2h-7a1,1,0,0,0,0,2Zm-4,4h7a1,1,0,0,0,0-2h-7a1,1,0,0,0,0,2Zm17-4a1,1,0,1,0-1-1A1,1,0,0,0,20.5,9Zm-2,2h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,0,2,1,1,0,0,0,0,2,3,3,0,0,0,0-6Zm-6,4h-4a1,1,0,0,0,0,2h4a1,1,0,0,1,0,2,1.09,1.09,0,0,1-.5-.13,1,1,0,1,0-1,1.73,3.06,3.06,0,0,0,1.5.4,3,3,0,0,0,0-6Zm-8,0h-1a1,1,0,0,0,0,2h1a1,1,0,0,0,0-2Z' + }) + ) +} + +export default UilWind \ No newline at end of file diff --git a/src/icons/uil-window-grid.ts b/src/icons/uil-window-grid.ts new file mode 100644 index 00000000..5cc7420c --- /dev/null +++ b/src/icons/uil-window-grid.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindowGrid = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V4H8Zm12,0H10V13H20Zm0-9H10V4H20Z' + }) + ) +} + +export default UilWindowGrid \ No newline at end of file diff --git a/src/icons/uil-window-maximize.ts b/src/icons/uil-window-maximize.ts new file mode 100644 index 00000000..3ce8ea55 --- /dev/null +++ b/src/icons/uil-window-maximize.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindowMaximize = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM20,20H4V10H20ZM20,8H4V4H20Z' + }) + ) +} + +export default UilWindowMaximize \ No newline at end of file diff --git a/src/icons/uil-window-restore.ts b/src/icons/uil-window-restore.ts new file mode 100644 index 00000000..b076f12a --- /dev/null +++ b/src/icons/uil-window-restore.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindowRestore = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M19,2H9A3,3,0,0,0,6,5V6H5A3,3,0,0,0,2,9V19a3,3,0,0,0,3,3H15a3,3,0,0,0,3-3V18h1a3,3,0,0,0,3-3V5A3,3,0,0,0,19,2ZM16,19a1,1,0,0,1-1,1H5a1,1,0,0,1-1-1V12H16Zm0-9H4V9A1,1,0,0,1,5,8H15a1,1,0,0,1,1,1Zm4,5a1,1,0,0,1-1,1H18V9a3,3,0,0,0-.18-1H20Zm0-9H8V5A1,1,0,0,1,9,4H19a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilWindowRestore \ No newline at end of file diff --git a/src/icons/uil-window-section.ts b/src/icons/uil-window-section.ts new file mode 100644 index 00000000..6bd84b2c --- /dev/null +++ b/src/icons/uil-window-section.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindowSection = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2ZM8,20H4V10H8Zm6,0H10V10h4Zm6,0H16V10h4ZM20,8H4V4H20Z' + }) + ) +} + +export default UilWindowSection \ No newline at end of file diff --git a/src/icons/uil-window.ts b/src/icons/uil-window.ts new file mode 100644 index 00000000..41253777 --- /dev/null +++ b/src/icons/uil-window.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindow = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M10,5a1,1,0,1,0,1,1A1,1,0,0,0,10,5ZM6,5A1,1,0,1,0,7,6,1,1,0,0,0,6,5Zm8,0a1,1,0,1,0,1,1A1,1,0,0,0,14,5Zm6-4H4A3,3,0,0,0,1,4V20a3,3,0,0,0,3,3H20a3,3,0,0,0,3-3V4A3,3,0,0,0,20,1Zm1,19a1,1,0,0,1-1,1H4a1,1,0,0,1-1-1V11H21ZM21,9H3V4A1,1,0,0,1,4,3H20a1,1,0,0,1,1,1Z' + }) + ) +} + +export default UilWindow \ No newline at end of file diff --git a/src/icons/uil-windows.ts b/src/icons/uil-windows.ts new file mode 100644 index 00000000..99bfe2dd --- /dev/null +++ b/src/icons/uil-windows.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindows = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M22 2 11.2 3.6v8l10.8-.1V2zM10.2 12.5 2 12.4v6.8l8.1 1.1.1-7.8zM2 4.8v6.8h8.1V3.7L2 4.8zm9.1 7.7v7.9L22 22v-9.4l-10.9-.1z' + }) + ) +} + +export default UilWindows \ No newline at end of file diff --git a/src/icons/uil-windsock.ts b/src/icons/uil-windsock.ts new file mode 100644 index 00000000..c550d786 --- /dev/null +++ b/src/icons/uil-windsock.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindsock = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.08,5,10,4.33h0L7,4.08V3A1,1,0,0,0,5,3V21a1,1,0,0,0,2,0V13.92l3-.25h0L18.08,13A1,1,0,0,0,19,12V6A1,1,0,0,0,18.08,5ZM9,11.75l-2,.16V6.09l2,.16Zm4-.34-2,.17V6.42l2,.17Zm4-.33-2,.17V6.75l2,.17Z' + }) + ) +} + +export default UilWindsock \ No newline at end of file diff --git a/src/icons/uil-windy.ts b/src/icons/uil-windy.ts new file mode 100644 index 00000000..44504dc9 --- /dev/null +++ b/src/icons/uil-windy.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWindy = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M17,15a1.73,1.73,0,0,1-.86-.23,3.11,3.11,0,0,0-3.27,0,1.73,1.73,0,0,1-1.73,0,3.11,3.11,0,0,0-3.27,0A1.74,1.74,0,0,1,7,15a1,1,0,0,0,0,2,3.72,3.72,0,0,0,1.9-.52,1.13,1.13,0,0,1,1.2,0,3.75,3.75,0,0,0,3.8,0,1.13,1.13,0,0,1,1.2,0A3.72,3.72,0,0,0,17,17a1,1,0,0,0,0-2Zm0,4a1.73,1.73,0,0,1-.86-.23,3.11,3.11,0,0,0-3.27,0,1.73,1.73,0,0,1-1.73,0,3.11,3.11,0,0,0-3.27,0A1.74,1.74,0,0,1,7,19a1,1,0,0,0,0,2,3.72,3.72,0,0,0,1.9-.52,1.13,1.13,0,0,1,1.2,0,3.75,3.75,0,0,0,3.8,0,1.13,1.13,0,0,1,1.2,0A3.72,3.72,0,0,0,17,21a1,1,0,0,0,0-2ZM18.42,7.21A7,7,0,0,0,5.06,9.11,4,4,0,0,0,2,13a4,4,0,0,0,1.34,3,1,1,0,0,0,.66.25,1,1,0,0,0,.75-.35,1,1,0,0,0-.09-1.41A1.93,1.93,0,0,1,4,13a2,2,0,0,1,2-2,1,1,0,0,0,1-1,5,5,0,0,1,9.73-1.61,1,1,0,0,0,.78.66A3,3,0,0,1,20,12a2.93,2.93,0,0,1-.74,2,1,1,0,1,0,1.48,1.33A4.91,4.91,0,0,0,22,12,5,5,0,0,0,18.42,7.21Z' + }) + ) +} + +export default UilWindy \ No newline at end of file diff --git a/src/icons/uil-wordpress-simple.ts b/src/icons/uil-wordpress-simple.ts new file mode 100644 index 00000000..46fef926 --- /dev/null +++ b/src/icons/uil-wordpress-simple.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWordpressSimple = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,2a10.00009,10.00009,0,1,0,10,9.99976A10.01117,10.01117,0,0,0,12,2ZM3.00928,11.99976a8.95547,8.95547,0,0,1,.77844-3.659L8.07654,20.09131A8.99123,8.99123,0,0,1,3.00928,11.99976ZM12,20.99121a8.98726,8.98726,0,0,1-2.54-.36633l2.69788-7.83869,2.7633,7.57135a.84386.84386,0,0,0,.06446.12391A8.97138,8.97138,0,0,1,12,20.99121ZM13.239,7.78436c.54126-.02844,1.02906-.08539,1.02906-.08539a.37165.37165,0,0,0-.05738-.741s-1.4563.11432-2.39648.11432c-.8833,0-2.3678-.11432-2.3678-.11432a.37165.37165,0,0,0-.057.741s.4585.05695.943.08539l1.40075,3.838-1.968,5.90087L6.49133,7.78436C7.033,7.75592,7.52026,7.699,7.52026,7.699a.37166.37166,0,0,0-.05749-.741s-1.45593.11432-2.39612.11432c-.1687,0-.36768-.00415-.57861-.01093A8.98815,8.98815,0,0,1,18.07117,5.36957c-.0387-.00238-.07654-.0072-.11634-.0072A1.55669,1.55669,0,0,0,16.445,6.958a4.21016,4.21016,0,0,0,.88317,2.1087,4.73577,4.73577,0,0,1,.74122,2.47955,10.88314,10.88314,0,0,1-.68409,2.9065l-.897,2.99634ZM16.52,19.771l2.74609-7.9397A8.489,8.489,0,0,0,19.94983,8.611a6.9105,6.9105,0,0,0-.06043-.92456A8.99224,8.99224,0,0,1,16.52,19.771Z' + }) + ) +} + +export default UilWordpressSimple \ No newline at end of file diff --git a/src/icons/uil-wordpress.ts b/src/icons/uil-wordpress.ts new file mode 100644 index 00000000..9062c84a --- /dev/null +++ b/src/icons/uil-wordpress.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWordpress = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3.66675,11.99976c-0.00055,3.1933,1.82367,6.10608,4.69678,7.49969L4.38818,8.60846C3.91162,9.67548,3.66583,10.83112,3.66675,11.99976z M12.14648,12.7287l-2.50073,7.2652c1.67889,0.49438,3.47076,0.44788,5.1217-0.13293c-0.02319-0.0365-0.04315-0.07489-0.05969-0.11487L12.14648,12.7287z M17.62573,11.57953c-0.01117-0.815-0.24902-1.61078-0.68701-2.29816c-0.44788-0.56354-0.7312-1.23999-0.8186-1.95453c-0.0202-0.79413,0.60535-1.45526,1.39941-1.47894c0.03699,0,0.07202,0.00446,0.10791,0.00671C14.23444,2.74658,8.96436,2.97766,5.85638,6.37061C5.55566,6.69885,5.2818,7.05066,5.03735,7.42267C5.23291,7.42889,5.41724,7.4328,5.57361,7.4328c0.87146,0,2.22107-0.10602,2.22107-0.10602C7.98462,7.3158,8.14752,7.46088,8.15851,7.65082C8.16919,7.83551,8.03204,7.99567,7.8479,8.01355c0,0-0.45166,0.05286-0.95361,0.07916l3.03442,9.02649l1.82397-5.4693l-1.29834-3.55713c-0.44897-0.02631-0.87402-0.07916-0.87402-0.07916c-0.18933-0.01831-0.328-0.18665-0.30975-0.37598c0.01782-0.18427,0.17804-0.32147,0.36279-0.31079c0,0,1.37585,0.10602,2.19458,0.10602c0.87146,0,2.22131-0.10602,2.22131-0.10602c0.18988-0.01111,0.35291,0.13385,0.36401,0.32373c0.0108,0.18494-0.12653,0.34534-0.31091,0.36304c0,0-0.45203,0.05286-0.95361,0.07916l3.01147,8.95776l0.85962-2.72406C17.35553,13.44556,17.55969,12.51996,17.62573,11.57953z M19.36877,8.85889c-0.01447,1.02673-0.2298,2.04077-0.63391,2.98474l-2.54517,7.35889c3.90363-2.27075,5.28845-7.23743,3.12299-11.20044C19.35059,8.28607,19.36932,8.57233,19.36877,8.85889z M12,2.00012c-5.52283,0-10,4.47717-10,10s4.47717,10,10,10s10-4.47717,10-10S17.52283,2.00012,12,2.00012z M15.65869,20.66162c-2.92645,1.23846-6.28082,0.91241-8.91394-0.86652c-1.51147-1.02045-2.69464-2.45721-3.40637-4.13629c-1.23877-2.92645-0.9126-6.28094,0.8667-8.91394c1.02026-1.5116,2.45703-2.69489,4.13623-3.40631c2.92645-1.23846,6.28082-0.91241,8.91394,0.86652c1.51147,1.02045,2.69464,2.45721,3.40637,4.13629c1.23877,2.92645,0.9126,6.28094-0.8667,8.91394C18.77466,18.76691,17.33789,19.9502,15.65869,20.66162z' + }) + ) +} + +export default UilWordpress \ No newline at end of file diff --git a/src/icons/uil-wrap-text.ts b/src/icons/uil-wrap-text.ts new file mode 100644 index 00000000..a03a2d4e --- /dev/null +++ b/src/icons/uil-wrap-text.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWrapText = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M3,7H21a1,1,0,0,0,0-2H3A1,1,0,0,0,3,7Zm6,8H3a1,1,0,0,0,0,2H9a1,1,0,0,0,0-2Zm9.5-5H3a1,1,0,0,0,0,2H18.5a1.5,1.5,0,0,1,0,3H15.41l.3-.29a1,1,0,0,0-1.42-1.42l-2,2a1,1,0,0,0-.21.33,1,1,0,0,0,0,.76,1,1,0,0,0,.21.33l2,2a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-.3-.29H18.5a3.5,3.5,0,0,0,0-7Z' + }) + ) +} + +export default UilWrapText \ No newline at end of file diff --git a/src/icons/uil-wrench.ts b/src/icons/uil-wrench.ts new file mode 100644 index 00000000..c287ddaa --- /dev/null +++ b/src/icons/uil-wrench.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilWrench = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M21.71,15.58l-4.52-4.51a6.85,6.85,0,0,0,.14-1.4A7.67,7.67,0,0,0,6.42,2.72a1,1,0,0,0-.57.74,1,1,0,0,0,.28.88l4.35,4.34-1.8,1.8L4.34,6.13a1,1,0,0,0-.88-.27,1,1,0,0,0-.74.56,7.67,7.67,0,0,0,7,10.91,6.85,6.85,0,0,0,1.4-.14l4.51,4.52a1,1,0,0,0,1.42,0,1,1,0,0,0,0-1.42l-4.9-4.9a1,1,0,0,0-.95-.26,5.88,5.88,0,0,1-1.48.2A5.67,5.67,0,0,1,4,9.67a6,6,0,0,1,.08-1L8,12.6a1,1,0,0,0,1.42,0L12.6,9.39A1,1,0,0,0,12.6,8L8.71,4.08a6.12,6.12,0,0,1,1-.08,5.67,5.67,0,0,1,5.66,5.67,5.88,5.88,0,0,1-.2,1.48,1,1,0,0,0,.26.95l4.9,4.9a1,1,0,0,0,1.42-1.42Z' + }) + ) +} + +export default UilWrench \ No newline at end of file diff --git a/src/icons/uil-x-add.ts b/src/icons/uil-x-add.ts new file mode 100644 index 00000000..fe43bf6a --- /dev/null +++ b/src/icons/uil-x-add.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilXAdd = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M14.71 7.29a1 1 0 0 0-1.42 0L11 9.59l-2.29-2.3a1 1 0 1 0-1.42 1.42L9.59 11l-2.3 2.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l2.29-2.3 2.29 2.3a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.42L12.41 11l2.3-2.29a1 1 0 0 0 0-1.42ZM7 18a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3 1 1 0 0 0 0-2 5 5 0 0 0-5 5v8a5 5 0 0 0 5 5 1 1 0 0 0 0-2ZM18 7v6a1 1 0 0 0 2 0V7a5 5 0 0 0-5-5 1 1 0 0 0 0 2 3 3 0 0 1 3 3Zm3 11h-1v-1a1 1 0 0 0-2 0v1h-1a1 1 0 0 0 0 2h1v1a1 1 0 0 0 2 0v-1h1a1 1 0 0 0 0-2Z' + }) + ) +} + +export default UilXAdd \ No newline at end of file diff --git a/src/icons/uil-x.ts b/src/icons/uil-x.ts new file mode 100644 index 00000000..f99eca86 --- /dev/null +++ b/src/icons/uil-x.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilX = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M8 19a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3 1 1 0 0 0 0-2 5 5 0 0 0-5 5v8a5 5 0 0 0 5 5 1 1 0 0 0 0-2Zm7.71-3.29a1 1 0 0 0 0-1.42L13.41 12l2.3-2.29a1 1 0 0 0-1.42-1.42L12 10.59l-2.29-2.3a1 1 0 0 0-1.42 1.42l2.3 2.29-2.3 2.29a1 1 0 0 0 0 1.42 1 1 0 0 0 1.42 0l2.29-2.3 2.29 2.3a1 1 0 0 0 1.42 0ZM16 3a1 1 0 0 0 0 2 3 3 0 0 1 3 3v8a3 3 0 0 1-3 3 1 1 0 0 0 0 2 5 5 0 0 0 5-5V8a5 5 0 0 0-5-5Z' + }) + ) +} + +export default UilX \ No newline at end of file diff --git a/src/icons/uil-yen-circle.ts b/src/icons/uil-yen-circle.ts new file mode 100644 index 00000000..d4bae245 --- /dev/null +++ b/src/icons/uil-yen-circle.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilYenCircle = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,20a9,9,0,1,1,9-9A9,9,0,0,1,12,21ZM14.83,6.45,12,10.7,9.17,6.45a1,1,0,0,0-1.39-.28A1,1,0,0,0,7.5,7.55l2.11,3.17H9a1,1,0,0,0,0,2H11l.05.08v.92H9a1,1,0,0,0,0,2h2V18a1,1,0,0,0,2,0V15.72h2a1,1,0,0,0,0-2H13V12.8l.05-.08H15a1,1,0,0,0,0-2h-.61L16.5,7.55a1,1,0,0,0-.28-1.38A1,1,0,0,0,14.83,6.45Z' + }) + ) +} + +export default UilYenCircle \ No newline at end of file diff --git a/src/icons/uil-yen.ts b/src/icons/uil-yen.ts new file mode 100644 index 00000000..c9b5d8d7 --- /dev/null +++ b/src/icons/uil-yen.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilYen = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M18.55,2.17a1,1,0,0,0-1.38.28L12,10.2,6.83,2.45a1,1,0,0,0-1.66,1.1l5,7.45H7a1,1,0,0,0,0,2h4v2H7a1,1,0,0,0,0,2h4v4a1,1,0,0,0,2,0V17h4a1,1,0,0,0,0-2H13V13h4a1,1,0,0,0,0-2H13.87l5-7.45A1,1,0,0,0,18.55,2.17Z' + }) + ) +} + +export default UilYen \ No newline at end of file diff --git a/src/icons/uil-yin-yang.ts b/src/icons/uil-yin-yang.ts new file mode 100644 index 00000000..51983cd0 --- /dev/null +++ b/src/icons/uil-yin-yang.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilYinYang = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M12,15.5a1,1,0,1,0,1,1A1,1,0,0,0,12,15.5ZM12,2a5.54514,5.54514,0,0,0-.56165.0285A9.99347,9.99347,0,0,0,12,22a5.54514,5.54514,0,0,0,.56165-.0285A9.99347,9.99347,0,0,0,12,2Zm0,18A7.98889,7.98889,0,0,1,6.70935,6.01538,5.48381,5.48381,0,0,0,12,13a3.5,3.5,0,0,1,0,7Zm5.29065-2.01538A5.48381,5.48381,0,0,0,12,11a3.5,3.5,0,0,1,0-7,7.98889,7.98889,0,0,1,5.29065,13.98462ZM12,6.5a1,1,0,1,0,1,1A1,1,0,0,0,12,6.5Z' + }) + ) +} + +export default UilYinYang \ No newline at end of file diff --git a/src/icons/uil-youtube.ts b/src/icons/uil-youtube.ts new file mode 100644 index 00000000..c17d4cd6 --- /dev/null +++ b/src/icons/uil-youtube.ts @@ -0,0 +1,25 @@ +import * as React from 'react' +import { IconProps } from '../index' + +const UilYoutube = ({ + color = 'currentColor', + size = 24, + ...props +}: IconProps) => { + return React.createElement( + 'svg', + { + xmlns: 'http://www.w3.org/2000/svg', + viewBox: '0 0 24 24', + width: size, + height: size, + fill: color, + ...props + }, + React.createElement('path', { + d: 'M23,9.71a8.5,8.5,0,0,0-.91-4.13,2.92,2.92,0,0,0-1.72-1A78.36,78.36,0,0,0,12,4.27a78.45,78.45,0,0,0-8.34.3,2.87,2.87,0,0,0-1.46.74c-.9.83-1,2.25-1.1,3.45a48.29,48.29,0,0,0,0,6.48,9.55,9.55,0,0,0,.3,2,3.14,3.14,0,0,0,.71,1.36,2.86,2.86,0,0,0,1.49.78,45.18,45.18,0,0,0,6.5.33c3.5.05,6.57,0,10.2-.28a2.88,2.88,0,0,0,1.53-.78,2.49,2.49,0,0,0,.61-1,10.58,10.58,0,0,0,.52-3.4C23,13.69,23,10.31,23,9.71ZM9.74,14.85V8.66l5.92,3.11C14,12.69,11.81,13.73,9.74,14.85Z' + }) + ) +} + +export default UilYoutube \ No newline at end of file diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..1ad87587 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,1213 @@ +import { SVGProps } from 'react' + +export interface IconProps extends SVGProps { + size?: string | number + color?: string +} + +export { default as Uil0Plus } from './icons/uil-0-plus' +export { default as Uil10Plus } from './icons/uil-10-plus' +export { default as Uil12Plus } from './icons/uil-12-plus' +export { default as Uil13Plus } from './icons/uil-13-plus' +export { default as Uil16Plus } from './icons/uil-16-plus' +export { default as Uil17Plus } from './icons/uil-17-plus' +export { default as Uil18Plus } from './icons/uil-18-plus' +export { default as Uil21Plus } from './icons/uil-21-plus' +export { default as Uil3Plus } from './icons/uil-3-plus' +export { default as Uil500px } from './icons/uil-500px' +export { default as Uil6Plus } from './icons/uil-6-plus' +export { default as UilAbacus } from './icons/uil-abacus' +export { default as UilAccessibleIconAlt } from './icons/uil-accessible-icon-alt' +export { default as UilAdjust } from './icons/uil-adjust' +export { default as UilAdjustAlt } from './icons/uil-adjust-alt' +export { default as UilAdjustCircle } from './icons/uil-adjust-circle' +export { default as UilAdjustHalf } from './icons/uil-adjust-half' +export { default as UilAdobe } from './icons/uil-adobe' +export { default as UilAdobeAlt } from './icons/uil-adobe-alt' +export { default as UilAirplay } from './icons/uil-airplay' +export { default as UilAlign } from './icons/uil-align' +export { default as UilAlignAlt } from './icons/uil-align-alt' +export { default as UilAlignCenter } from './icons/uil-align-center' +export { default as UilAlignCenterAlt } from './icons/uil-align-center-alt' +export { default as UilAlignCenterH } from './icons/uil-align-center-h' +export { default as UilAlignCenterJustify } from './icons/uil-align-center-justify' +export { default as UilAlignCenterV } from './icons/uil-align-center-v' +export { default as UilAlignJustify } from './icons/uil-align-justify' +export { default as UilAlignLeft } from './icons/uil-align-left' +export { default as UilAlignLeftJustify } from './icons/uil-align-left-justify' +export { default as UilAlignLetterRight } from './icons/uil-align-letter-right' +export { default as UilAlignRight } from './icons/uil-align-right' +export { default as UilAlignRightJustify } from './icons/uil-align-right-justify' +export { default as UilAmazon } from './icons/uil-amazon' +export { default as UilAmbulance } from './icons/uil-ambulance' +export { default as UilAnalysis } from './icons/uil-analysis' +export { default as UilAnalytics } from './icons/uil-analytics' +export { default as UilAnchor } from './icons/uil-anchor' +export { default as UilAndroid } from './icons/uil-android' +export { default as UilAndroidAlt } from './icons/uil-android-alt' +export { default as UilAndroidPhoneSlash } from './icons/uil-android-phone-slash' +export { default as UilAngleDoubleDown } from './icons/uil-angle-double-down' +export { default as UilAngleDoubleLeft } from './icons/uil-angle-double-left' +export { default as UilAngleDoubleRight } from './icons/uil-angle-double-right' +export { default as UilAngleDoubleUp } from './icons/uil-angle-double-up' +export { default as UilAngleDown } from './icons/uil-angle-down' +export { default as UilAngleLeft } from './icons/uil-angle-left' +export { default as UilAngleLeftB } from './icons/uil-angle-left-b' +export { default as UilAngleRight } from './icons/uil-angle-right' +export { default as UilAngleRightB } from './icons/uil-angle-right-b' +export { default as UilAngleUp } from './icons/uil-angle-up' +export { default as UilAngry } from './icons/uil-angry' +export { default as UilAnkh } from './icons/uil-ankh' +export { default as UilAnnoyed } from './icons/uil-annoyed' +export { default as UilAnnoyedAlt } from './icons/uil-annoyed-alt' +export { default as UilApple } from './icons/uil-apple' +export { default as UilAppleAlt } from './icons/uil-apple-alt' +export { default as UilApps } from './icons/uil-apps' +export { default as UilArchive } from './icons/uil-archive' +export { default as UilArchiveAlt } from './icons/uil-archive-alt' +export { default as UilArchway } from './icons/uil-archway' +export { default as UilArrow } from './icons/uil-arrow' +export { default as UilArrowBreak } from './icons/uil-arrow-break' +export { default as UilArrowCircleDown } from './icons/uil-arrow-circle-down' +export { default as UilArrowCircleLeft } from './icons/uil-arrow-circle-left' +export { default as UilArrowCircleRight } from './icons/uil-arrow-circle-right' +export { default as UilArrowCircleUp } from './icons/uil-arrow-circle-up' +export { default as UilArrowCompressH } from './icons/uil-arrow-compress-h' +export { default as UilArrowDown } from './icons/uil-arrow-down' +export { default as UilArrowDownLeft } from './icons/uil-arrow-down-left' +export { default as UilArrowDownRight } from './icons/uil-arrow-down-right' +export { default as UilArrowFromRight } from './icons/uil-arrow-from-right' +export { default as UilArrowFromTop } from './icons/uil-arrow-from-top' +export { default as UilArrowLeft } from './icons/uil-arrow-left' +export { default as UilArrowRandom } from './icons/uil-arrow-random' +export { default as UilArrowResizeDiagonal } from './icons/uil-arrow-resize-diagonal' +export { default as UilArrowRight } from './icons/uil-arrow-right' +export { default as UilArrowToBottom } from './icons/uil-arrow-to-bottom' +export { default as UilArrowToRight } from './icons/uil-arrow-to-right' +export { default as UilArrowUp } from './icons/uil-arrow-up' +export { default as UilArrowUpLeft } from './icons/uil-arrow-up-left' +export { default as UilArrowUpRight } from './icons/uil-arrow-up-right' +export { default as UilArrowsH } from './icons/uil-arrows-h' +export { default as UilArrowsHAlt } from './icons/uil-arrows-h-alt' +export { default as UilArrowsLeftDown } from './icons/uil-arrows-left-down' +export { default as UilArrowsMaximize } from './icons/uil-arrows-maximize' +export { default as UilArrowsMerge } from './icons/uil-arrows-merge' +export { default as UilArrowsResize } from './icons/uil-arrows-resize' +export { default as UilArrowsResizeH } from './icons/uil-arrows-resize-h' +export { default as UilArrowsResizeV } from './icons/uil-arrows-resize-v' +export { default as UilArrowsRightDown } from './icons/uil-arrows-right-down' +export { default as UilArrowsShrinkH } from './icons/uil-arrows-shrink-h' +export { default as UilArrowsShrinkV } from './icons/uil-arrows-shrink-v' +export { default as UilArrowsUpRight } from './icons/uil-arrows-up-right' +export { default as UilArrowsV } from './icons/uil-arrows-v' +export { default as UilArrowsVAlt } from './icons/uil-arrows-v-alt' +export { default as UilAssistiveListeningSystems } from './icons/uil-assistive-listening-systems' +export { default as UilAsterisk } from './icons/uil-asterisk' +export { default as UilAt } from './icons/uil-at' +export { default as UilAtom } from './icons/uil-atom' +export { default as UilAutoFlash } from './icons/uil-auto-flash' +export { default as UilAward } from './icons/uil-award' +export { default as UilAwardAlt } from './icons/uil-award-alt' +export { default as UilBackpack } from './icons/uil-backpack' +export { default as UilBackspace } from './icons/uil-backspace' +export { default as UilBackward } from './icons/uil-backward' +export { default as UilBag } from './icons/uil-bag' +export { default as UilBagAlt } from './icons/uil-bag-alt' +export { default as UilBagSlash } from './icons/uil-bag-slash' +export { default as UilBalanceScale } from './icons/uil-balance-scale' +export { default as UilBan } from './icons/uil-ban' +export { default as UilBandAid } from './icons/uil-band-aid' +export { default as UilBars } from './icons/uil-bars' +export { default as UilBaseballBall } from './icons/uil-baseball-ball' +export { default as UilBasketball } from './icons/uil-basketball' +export { default as UilBasketballHoop } from './icons/uil-basketball-hoop' +export { default as UilBath } from './icons/uil-bath' +export { default as UilBatteryBolt } from './icons/uil-battery-bolt' +export { default as UilBatteryEmpty } from './icons/uil-battery-empty' +export { default as UilBedDouble } from './icons/uil-bed-double' +export { default as UilBehance } from './icons/uil-behance' +export { default as UilBehanceAlt } from './icons/uil-behance-alt' +export { default as UilBell } from './icons/uil-bell' +export { default as UilBellSchool } from './icons/uil-bell-school' +export { default as UilBellSlash } from './icons/uil-bell-slash' +export { default as UilBill } from './icons/uil-bill' +export { default as UilBing } from './icons/uil-bing' +export { default as UilBitcoin } from './icons/uil-bitcoin' +export { default as UilBitcoinAlt } from './icons/uil-bitcoin-alt' +export { default as UilBitcoinCircle } from './icons/uil-bitcoin-circle' +export { default as UilBitcoinSign } from './icons/uil-bitcoin-sign' +export { default as UilBlackBerry } from './icons/uil-black-berry' +export { default as UilBlogger } from './icons/uil-blogger' +export { default as UilBloggerAlt } from './icons/uil-blogger-alt' +export { default as UilBluetoothB } from './icons/uil-bluetooth-b' +export { default as UilBold } from './icons/uil-bold' +export { default as UilBolt } from './icons/uil-bolt' +export { default as UilBoltAlt } from './icons/uil-bolt-alt' +export { default as UilBoltSlash } from './icons/uil-bolt-slash' +export { default as UilBook } from './icons/uil-book' +export { default as UilBookAlt } from './icons/uil-book-alt' +export { default as UilBookMedical } from './icons/uil-book-medical' +export { default as UilBookOpen } from './icons/uil-book-open' +export { default as UilBookReader } from './icons/uil-book-reader' +export { default as UilBookmark } from './icons/uil-bookmark' +export { default as UilBookmarkFull } from './icons/uil-bookmark-full' +export { default as UilBooks } from './icons/uil-books' +export { default as UilBoombox } from './icons/uil-boombox' +export { default as UilBorderAlt } from './icons/uil-border-alt' +export { default as UilBorderBottom } from './icons/uil-border-bottom' +export { default as UilBorderClear } from './icons/uil-border-clear' +export { default as UilBorderHorizontal } from './icons/uil-border-horizontal' +export { default as UilBorderInner } from './icons/uil-border-inner' +export { default as UilBorderLeft } from './icons/uil-border-left' +export { default as UilBorderOut } from './icons/uil-border-out' +export { default as UilBorderRight } from './icons/uil-border-right' +export { default as UilBorderTop } from './icons/uil-border-top' +export { default as UilBorderVertical } from './icons/uil-border-vertical' +export { default as UilBowlingBall } from './icons/uil-bowling-ball' +export { default as UilBox } from './icons/uil-box' +export { default as UilBracketsCurly } from './icons/uil-brackets-curly' +export { default as UilBrain } from './icons/uil-brain' +export { default as UilBriefcase } from './icons/uil-briefcase' +export { default as UilBriefcaseAlt } from './icons/uil-briefcase-alt' +export { default as UilBright } from './icons/uil-bright' +export { default as UilBrightness } from './icons/uil-brightness' +export { default as UilBrightnessEmpty } from './icons/uil-brightness-empty' +export { default as UilBrightnessHalf } from './icons/uil-brightness-half' +export { default as UilBrightnessLow } from './icons/uil-brightness-low' +export { default as UilBrightnessMinus } from './icons/uil-brightness-minus' +export { default as UilBrightnessPlus } from './icons/uil-brightness-plus' +export { default as UilBringBottom } from './icons/uil-bring-bottom' +export { default as UilBringFront } from './icons/uil-bring-front' +export { default as UilBrushAlt } from './icons/uil-brush-alt' +export { default as UilBug } from './icons/uil-bug' +export { default as UilBuilding } from './icons/uil-building' +export { default as UilBullseye } from './icons/uil-bullseye' +export { default as UilBus } from './icons/uil-bus' +export { default as UilBusAlt } from './icons/uil-bus-alt' +export { default as UilBusSchool } from './icons/uil-bus-school' +export { default as UilCalculator } from './icons/uil-calculator' +export { default as UilCalculatorAlt } from './icons/uil-calculator-alt' +export { default as UilCalendar } from './icons/uil-calendar' +export { default as UilCalendarAlt } from './icons/uil-calendar-alt' +export { default as UilCalendarSlash } from './icons/uil-calendar-slash' +export { default as UilCalling } from './icons/uil-calling' +export { default as UilCamera } from './icons/uil-camera' +export { default as UilCameraChange } from './icons/uil-camera-change' +export { default as UilCameraPlus } from './icons/uil-camera-plus' +export { default as UilCameraSlash } from './icons/uil-camera-slash' +export { default as UilCancel } from './icons/uil-cancel' +export { default as UilCapsule } from './icons/uil-capsule' +export { default as UilCapture } from './icons/uil-capture' +export { default as UilCar } from './icons/uil-car' +export { default as UilCarSideview } from './icons/uil-car-sideview' +export { default as UilCarSlash } from './icons/uil-car-slash' +export { default as UilCarWash } from './icons/uil-car-wash' +export { default as UilCardAtm } from './icons/uil-card-atm' +export { default as UilCaretRight } from './icons/uil-caret-right' +export { default as UilCell } from './icons/uil-cell' +export { default as UilCelsius } from './icons/uil-celsius' +export { default as UilChannel } from './icons/uil-channel' +export { default as UilChannelAdd } from './icons/uil-channel-add' +export { default as UilChart } from './icons/uil-chart' +export { default as UilChartBar } from './icons/uil-chart-bar' +export { default as UilChartBarAlt } from './icons/uil-chart-bar-alt' +export { default as UilChartDown } from './icons/uil-chart-down' +export { default as UilChartGrowth } from './icons/uil-chart-growth' +export { default as UilChartGrowthAlt } from './icons/uil-chart-growth-alt' +export { default as UilChartLine } from './icons/uil-chart-line' +export { default as UilChartPie } from './icons/uil-chart-pie' +export { default as UilChartPieAlt } from './icons/uil-chart-pie-alt' +export { default as UilChat } from './icons/uil-chat' +export { default as UilChatBubbleUser } from './icons/uil-chat-bubble-user' +export { default as UilChatInfo } from './icons/uil-chat-info' +export { default as UilCheck } from './icons/uil-check' +export { default as UilCheckCircle } from './icons/uil-check-circle' +export { default as UilCheckSquare } from './icons/uil-check-square' +export { default as UilCircle } from './icons/uil-circle' +export { default as UilCircleLayer } from './icons/uil-circle-layer' +export { default as UilCircuit } from './icons/uil-circuit' +export { default as UilClapperBoard } from './icons/uil-clapper-board' +export { default as UilClinicMedical } from './icons/uil-clinic-medical' +export { default as UilClipboard } from './icons/uil-clipboard' +export { default as UilClipboardAlt } from './icons/uil-clipboard-alt' +export { default as UilClipboardBlank } from './icons/uil-clipboard-blank' +export { default as UilClipboardNotes } from './icons/uil-clipboard-notes' +export { default as UilClock } from './icons/uil-clock' +export { default as UilClockEight } from './icons/uil-clock-eight' +export { default as UilClockFive } from './icons/uil-clock-five' +export { default as UilClockNine } from './icons/uil-clock-nine' +export { default as UilClockSeven } from './icons/uil-clock-seven' +export { default as UilClockTen } from './icons/uil-clock-ten' +export { default as UilClockThree } from './icons/uil-clock-three' +export { default as UilClockTwo } from './icons/uil-clock-two' +export { default as UilClosedCaptioning } from './icons/uil-closed-captioning' +export { default as UilClosedCaptioningSlash } from './icons/uil-closed-captioning-slash' +export { default as UilCloud } from './icons/uil-cloud' +export { default as UilCloudBlock } from './icons/uil-cloud-block' +export { default as UilCloudBookmark } from './icons/uil-cloud-bookmark' +export { default as UilCloudCheck } from './icons/uil-cloud-check' +export { default as UilCloudComputing } from './icons/uil-cloud-computing' +export { default as UilCloudDataConnection } from './icons/uil-cloud-data-connection' +export { default as UilCloudDatabaseTree } from './icons/uil-cloud-database-tree' +export { default as UilCloudDownload } from './icons/uil-cloud-download' +export { default as UilCloudDrizzle } from './icons/uil-cloud-drizzle' +export { default as UilCloudExclamation } from './icons/uil-cloud-exclamation' +export { default as UilCloudHail } from './icons/uil-cloud-hail' +export { default as UilCloudHeart } from './icons/uil-cloud-heart' +export { default as UilCloudInfo } from './icons/uil-cloud-info' +export { default as UilCloudLock } from './icons/uil-cloud-lock' +export { default as UilCloudMeatball } from './icons/uil-cloud-meatball' +export { default as UilCloudMoon } from './icons/uil-cloud-moon' +export { default as UilCloudMoonHail } from './icons/uil-cloud-moon-hail' +export { default as UilCloudMoonMeatball } from './icons/uil-cloud-moon-meatball' +export { default as UilCloudMoonRain } from './icons/uil-cloud-moon-rain' +export { default as UilCloudMoonShowers } from './icons/uil-cloud-moon-showers' +export { default as UilCloudMoonTear } from './icons/uil-cloud-moon-tear' +export { default as UilCloudQuestion } from './icons/uil-cloud-question' +export { default as UilCloudRain } from './icons/uil-cloud-rain' +export { default as UilCloudRainSun } from './icons/uil-cloud-rain-sun' +export { default as UilCloudRedo } from './icons/uil-cloud-redo' +export { default as UilCloudShare } from './icons/uil-cloud-share' +export { default as UilCloudShield } from './icons/uil-cloud-shield' +export { default as UilCloudShowers } from './icons/uil-cloud-showers' +export { default as UilCloudShowersAlt } from './icons/uil-cloud-showers-alt' +export { default as UilCloudShowersHeavy } from './icons/uil-cloud-showers-heavy' +export { default as UilCloudSlash } from './icons/uil-cloud-slash' +export { default as UilCloudSun } from './icons/uil-cloud-sun' +export { default as UilCloudSunHail } from './icons/uil-cloud-sun-hail' +export { default as UilCloudSunMeatball } from './icons/uil-cloud-sun-meatball' +export { default as UilCloudSunRain } from './icons/uil-cloud-sun-rain' +export { default as UilCloudSunRainAlt } from './icons/uil-cloud-sun-rain-alt' +export { default as UilCloudSunTear } from './icons/uil-cloud-sun-tear' +export { default as UilCloudTimes } from './icons/uil-cloud-times' +export { default as UilCloudUnlock } from './icons/uil-cloud-unlock' +export { default as UilCloudUpload } from './icons/uil-cloud-upload' +export { default as UilCloudWifi } from './icons/uil-cloud-wifi' +export { default as UilCloudWind } from './icons/uil-cloud-wind' +export { default as UilClouds } from './icons/uil-clouds' +export { default as UilClub } from './icons/uil-club' +export { default as UilCodeBranch } from './icons/uil-code-branch' +export { default as UilCoffee } from './icons/uil-coffee' +export { default as UilCog } from './icons/uil-cog' +export { default as UilCoins } from './icons/uil-coins' +export { default as UilColumns } from './icons/uil-columns' +export { default as UilComment } from './icons/uil-comment' +export { default as UilCommentAdd } from './icons/uil-comment-add' +export { default as UilCommentAlt } from './icons/uil-comment-alt' +export { default as UilCommentAltBlock } from './icons/uil-comment-alt-block' +export { default as UilCommentAltChartLines } from './icons/uil-comment-alt-chart-lines' +export { default as UilCommentAltCheck } from './icons/uil-comment-alt-check' +export { default as UilCommentAltDots } from './icons/uil-comment-alt-dots' +export { default as UilCommentAltDownload } from './icons/uil-comment-alt-download' +export { default as UilCommentAltEdit } from './icons/uil-comment-alt-edit' +export { default as UilCommentAltExclamation } from './icons/uil-comment-alt-exclamation' +export { default as UilCommentAltHeart } from './icons/uil-comment-alt-heart' +export { default as UilCommentAltImage } from './icons/uil-comment-alt-image' +export { default as UilCommentAltInfo } from './icons/uil-comment-alt-info' +export { default as UilCommentAltLines } from './icons/uil-comment-alt-lines' +export { default as UilCommentAltLock } from './icons/uil-comment-alt-lock' +export { default as UilCommentAltMedical } from './icons/uil-comment-alt-medical' +export { default as UilCommentAltMessage } from './icons/uil-comment-alt-message' +export { default as UilCommentAltNotes } from './icons/uil-comment-alt-notes' +export { default as UilCommentAltPlus } from './icons/uil-comment-alt-plus' +export { default as UilCommentAltQuestion } from './icons/uil-comment-alt-question' +export { default as UilCommentAltRedo } from './icons/uil-comment-alt-redo' +export { default as UilCommentAltSearch } from './icons/uil-comment-alt-search' +export { default as UilCommentAltShare } from './icons/uil-comment-alt-share' +export { default as UilCommentAltShield } from './icons/uil-comment-alt-shield' +export { default as UilCommentAltSlash } from './icons/uil-comment-alt-slash' +export { default as UilCommentAltUpload } from './icons/uil-comment-alt-upload' +export { default as UilCommentAltVerify } from './icons/uil-comment-alt-verify' +export { default as UilCommentBlock } from './icons/uil-comment-block' +export { default as UilCommentChartLine } from './icons/uil-comment-chart-line' +export { default as UilCommentCheck } from './icons/uil-comment-check' +export { default as UilCommentDots } from './icons/uil-comment-dots' +export { default as UilCommentDownload } from './icons/uil-comment-download' +export { default as UilCommentEdit } from './icons/uil-comment-edit' +export { default as UilCommentExclamation } from './icons/uil-comment-exclamation' +export { default as UilCommentHeart } from './icons/uil-comment-heart' +export { default as UilCommentImage } from './icons/uil-comment-image' +export { default as UilCommentInfo } from './icons/uil-comment-info' +export { default as UilCommentInfoAlt } from './icons/uil-comment-info-alt' +export { default as UilCommentLines } from './icons/uil-comment-lines' +export { default as UilCommentLock } from './icons/uil-comment-lock' +export { default as UilCommentMedical } from './icons/uil-comment-medical' +export { default as UilCommentMessage } from './icons/uil-comment-message' +export { default as UilCommentNotes } from './icons/uil-comment-notes' +export { default as UilCommentPlus } from './icons/uil-comment-plus' +export { default as UilCommentQuestion } from './icons/uil-comment-question' +export { default as UilCommentRedo } from './icons/uil-comment-redo' +export { default as UilCommentSearch } from './icons/uil-comment-search' +export { default as UilCommentShare } from './icons/uil-comment-share' +export { default as UilCommentShield } from './icons/uil-comment-shield' +export { default as UilCommentSlash } from './icons/uil-comment-slash' +export { default as UilCommentUpload } from './icons/uil-comment-upload' +export { default as UilCommentVerify } from './icons/uil-comment-verify' +export { default as UilComments } from './icons/uil-comments' +export { default as UilCommentsAlt } from './icons/uil-comments-alt' +export { default as UilCompactDisc } from './icons/uil-compact-disc' +export { default as UilComparison } from './icons/uil-comparison' +export { default as UilCompass } from './icons/uil-compass' +export { default as UilCompress } from './icons/uil-compress' +export { default as UilCompressAlt } from './icons/uil-compress-alt' +export { default as UilCompressAltLeft } from './icons/uil-compress-alt-left' +export { default as UilCompressArrows } from './icons/uil-compress-arrows' +export { default as UilCompressLines } from './icons/uil-compress-lines' +export { default as UilCompressPoint } from './icons/uil-compress-point' +export { default as UilCompressV } from './icons/uil-compress-v' +export { default as UilConfused } from './icons/uil-confused' +export { default as UilConstructor } from './icons/uil-constructor' +export { default as UilCopy } from './icons/uil-copy' +export { default as UilCopyAlt } from './icons/uil-copy-alt' +export { default as UilCopyLandscape } from './icons/uil-copy-landscape' +export { default as UilCopyright } from './icons/uil-copyright' +export { default as UilCornerDownLeft } from './icons/uil-corner-down-left' +export { default as UilCornerDownRight } from './icons/uil-corner-down-right' +export { default as UilCornerDownRightAlt } from './icons/uil-corner-down-right-alt' +export { default as UilCornerLeftDown } from './icons/uil-corner-left-down' +export { default as UilCornerRightDown } from './icons/uil-corner-right-down' +export { default as UilCornerUpLeft } from './icons/uil-corner-up-left' +export { default as UilCornerUpRight } from './icons/uil-corner-up-right' +export { default as UilCornerUpRightAlt } from './icons/uil-corner-up-right-alt' +export { default as UilCoronavirus } from './icons/uil-coronavirus' +export { default as UilCreateDashboard } from './icons/uil-create-dashboard' +export { default as UilCreativeCommonsPd } from './icons/uil-creative-commons-pd' +export { default as UilCreditCard } from './icons/uil-credit-card' +export { default as UilCreditCardSearch } from './icons/uil-credit-card-search' +export { default as UilCrockery } from './icons/uil-crockery' +export { default as UilCropAlt } from './icons/uil-crop-alt' +export { default as UilCropAltRotateLeft } from './icons/uil-crop-alt-rotate-left' +export { default as UilCropAltRotateRight } from './icons/uil-crop-alt-rotate-right' +export { default as UilCrosshair } from './icons/uil-crosshair' +export { default as UilCrosshairAlt } from './icons/uil-crosshair-alt' +export { default as UilCrosshairs } from './icons/uil-crosshairs' +export { default as UilCss3Simple } from './icons/uil-css3-simple' +export { default as UilCube } from './icons/uil-cube' +export { default as UilDashboard } from './icons/uil-dashboard' +export { default as UilDataSharing } from './icons/uil-data-sharing' +export { default as UilDatabase } from './icons/uil-database' +export { default as UilDatabaseAlt } from './icons/uil-database-alt' +export { default as UilDesert } from './icons/uil-desert' +export { default as UilDesktop } from './icons/uil-desktop' +export { default as UilDesktopAlt } from './icons/uil-desktop-alt' +export { default as UilDesktopAltSlash } from './icons/uil-desktop-alt-slash' +export { default as UilDesktopCloudAlt } from './icons/uil-desktop-cloud-alt' +export { default as UilDesktopSlash } from './icons/uil-desktop-slash' +export { default as UilDialpad } from './icons/uil-dialpad' +export { default as UilDialpadAlt } from './icons/uil-dialpad-alt' +export { default as UilDiamond } from './icons/uil-diamond' +export { default as UilDiary } from './icons/uil-diary' +export { default as UilDiaryAlt } from './icons/uil-diary-alt' +export { default as UilDiceFive } from './icons/uil-dice-five' +export { default as UilDiceFour } from './icons/uil-dice-four' +export { default as UilDiceOne } from './icons/uil-dice-one' +export { default as UilDiceSix } from './icons/uil-dice-six' +export { default as UilDiceThree } from './icons/uil-dice-three' +export { default as UilDiceTwo } from './icons/uil-dice-two' +export { default as UilDirection } from './icons/uil-direction' +export { default as UilDirections } from './icons/uil-directions' +export { default as UilDiscord } from './icons/uil-discord' +export { default as UilDizzyMeh } from './icons/uil-dizzy-meh' +export { default as UilDna } from './icons/uil-dna' +export { default as UilDocker } from './icons/uil-docker' +export { default as UilDocumentInfo } from './icons/uil-document-info' +export { default as UilDocumentLayoutCenter } from './icons/uil-document-layout-center' +export { default as UilDocumentLayoutLeft } from './icons/uil-document-layout-left' +export { default as UilDocumentLayoutRight } from './icons/uil-document-layout-right' +export { default as UilDollarAlt } from './icons/uil-dollar-alt' +export { default as UilDollarSign } from './icons/uil-dollar-sign' +export { default as UilDollarSignAlt } from './icons/uil-dollar-sign-alt' +export { default as UilDownloadAlt } from './icons/uil-download-alt' +export { default as UilDraggabledots } from './icons/uil-draggabledots' +export { default as UilDribbble } from './icons/uil-dribbble' +export { default as UilDrill } from './icons/uil-drill' +export { default as UilDropbox } from './icons/uil-dropbox' +export { default as UilDumbbell } from './icons/uil-dumbbell' +export { default as UilEar } from './icons/uil-ear' +export { default as UilEdit } from './icons/uil-edit' +export { default as UilEditAlt } from './icons/uil-edit-alt' +export { default as UilElipsisDoubleVAlt } from './icons/uil-elipsis-double-v-alt' +export { default as UilEllipsisH } from './icons/uil-ellipsis-h' +export { default as UilEllipsisV } from './icons/uil-ellipsis-v' +export { default as UilEmoji } from './icons/uil-emoji' +export { default as UilEnglishToChinese } from './icons/uil-english-to-chinese' +export { default as UilEnter } from './icons/uil-enter' +export { default as UilEnvelope } from './icons/uil-envelope' +export { default as UilEnvelopeAdd } from './icons/uil-envelope-add' +export { default as UilEnvelopeAlt } from './icons/uil-envelope-alt' +export { default as UilEnvelopeBlock } from './icons/uil-envelope-block' +export { default as UilEnvelopeBookmark } from './icons/uil-envelope-bookmark' +export { default as UilEnvelopeCheck } from './icons/uil-envelope-check' +export { default as UilEnvelopeDownload } from './icons/uil-envelope-download' +export { default as UilEnvelopeDownloadAlt } from './icons/uil-envelope-download-alt' +export { default as UilEnvelopeEdit } from './icons/uil-envelope-edit' +export { default as UilEnvelopeExclamation } from './icons/uil-envelope-exclamation' +export { default as UilEnvelopeHeart } from './icons/uil-envelope-heart' +export { default as UilEnvelopeInfo } from './icons/uil-envelope-info' +export { default as UilEnvelopeLock } from './icons/uil-envelope-lock' +export { default as UilEnvelopeMinus } from './icons/uil-envelope-minus' +export { default as UilEnvelopeOpen } from './icons/uil-envelope-open' +export { default as UilEnvelopeQuestion } from './icons/uil-envelope-question' +export { default as UilEnvelopeReceive } from './icons/uil-envelope-receive' +export { default as UilEnvelopeRedo } from './icons/uil-envelope-redo' +export { default as UilEnvelopeSearch } from './icons/uil-envelope-search' +export { default as UilEnvelopeSend } from './icons/uil-envelope-send' +export { default as UilEnvelopeShare } from './icons/uil-envelope-share' +export { default as UilEnvelopeShield } from './icons/uil-envelope-shield' +export { default as UilEnvelopeStar } from './icons/uil-envelope-star' +export { default as UilEnvelopeTimes } from './icons/uil-envelope-times' +export { default as UilEnvelopeUpload } from './icons/uil-envelope-upload' +export { default as UilEnvelopeUploadAlt } from './icons/uil-envelope-upload-alt' +export { default as UilEnvelopes } from './icons/uil-envelopes' +export { default as UilEqualCircle } from './icons/uil-equal-circle' +export { default as UilEstate } from './icons/uil-estate' +export { default as UilEuro } from './icons/uil-euro' +export { default as UilEuroCircle } from './icons/uil-euro-circle' +export { default as UilExchange } from './icons/uil-exchange' +export { default as UilExchangeAlt } from './icons/uil-exchange-alt' +export { default as UilExclamation } from './icons/uil-exclamation' +export { default as UilExclamationCircle } from './icons/uil-exclamation-circle' +export { default as UilExclamationOctagon } from './icons/uil-exclamation-octagon' +export { default as UilExclamationTriangle } from './icons/uil-exclamation-triangle' +export { default as UilExclude } from './icons/uil-exclude' +export { default as UilExpandAlt } from './icons/uil-expand-alt' +export { default as UilExpandArrows } from './icons/uil-expand-arrows' +export { default as UilExpandArrowsAlt } from './icons/uil-expand-arrows-alt' +export { default as UilExpandFromCorner } from './icons/uil-expand-from-corner' +export { default as UilExpandLeft } from './icons/uil-expand-left' +export { default as UilExpandRight } from './icons/uil-expand-right' +export { default as UilExport } from './icons/uil-export' +export { default as UilExposureAlt } from './icons/uil-exposure-alt' +export { default as UilExposureIncrease } from './icons/uil-exposure-increase' +export { default as UilExternalLinkAlt } from './icons/uil-external-link-alt' +export { default as UilEye } from './icons/uil-eye' +export { default as UilEyeSlash } from './icons/uil-eye-slash' +export { default as UilFacebook } from './icons/uil-facebook' +export { default as UilFacebookF } from './icons/uil-facebook-f' +export { default as UilFacebookMessenger } from './icons/uil-facebook-messenger' +export { default as UilFacebookMessengerAlt } from './icons/uil-facebook-messenger-alt' +export { default as UilFahrenheit } from './icons/uil-fahrenheit' +export { default as UilFastMail } from './icons/uil-fast-mail' +export { default as UilFastMailAlt } from './icons/uil-fast-mail-alt' +export { default as UilFavorite } from './icons/uil-favorite' +export { default as UilFeedback } from './icons/uil-feedback' +export { default as UilFidgetSpinner } from './icons/uil-fidget-spinner' +export { default as UilFile } from './icons/uil-file' +export { default as UilFileAlt } from './icons/uil-file-alt' +export { default as UilFileBlank } from './icons/uil-file-blank' +export { default as UilFileBlockAlt } from './icons/uil-file-block-alt' +export { default as UilFileBookmarkAlt } from './icons/uil-file-bookmark-alt' +export { default as UilFileCheck } from './icons/uil-file-check' +export { default as UilFileCheckAlt } from './icons/uil-file-check-alt' +export { default as UilFileContract } from './icons/uil-file-contract' +export { default as UilFileContractDollar } from './icons/uil-file-contract-dollar' +export { default as UilFileCopyAlt } from './icons/uil-file-copy-alt' +export { default as UilFileDownload } from './icons/uil-file-download' +export { default as UilFileDownloadAlt } from './icons/uil-file-download-alt' +export { default as UilFileEditAlt } from './icons/uil-file-edit-alt' +export { default as UilFileExclamation } from './icons/uil-file-exclamation' +export { default as UilFileExclamationAlt } from './icons/uil-file-exclamation-alt' +export { default as UilFileExport } from './icons/uil-file-export' +export { default as UilFileGraph } from './icons/uil-file-graph' +export { default as UilFileHeart } from './icons/uil-file-heart' +export { default as UilFileImport } from './icons/uil-file-import' +export { default as UilFileInfoAlt } from './icons/uil-file-info-alt' +export { default as UilFileLandscape } from './icons/uil-file-landscape' +export { default as UilFileLandscapeAlt } from './icons/uil-file-landscape-alt' +export { default as UilFileLanscapeSlash } from './icons/uil-file-lanscape-slash' +export { default as UilFileLockAlt } from './icons/uil-file-lock-alt' +export { default as UilFileMedical } from './icons/uil-file-medical' +export { default as UilFileMedicalAlt } from './icons/uil-file-medical-alt' +export { default as UilFileMinus } from './icons/uil-file-minus' +export { default as UilFileMinusAlt } from './icons/uil-file-minus-alt' +export { default as UilFileNetwork } from './icons/uil-file-network' +export { default as UilFilePlus } from './icons/uil-file-plus' +export { default as UilFilePlusAlt } from './icons/uil-file-plus-alt' +export { default as UilFileQuestion } from './icons/uil-file-question' +export { default as UilFileQuestionAlt } from './icons/uil-file-question-alt' +export { default as UilFileRedoAlt } from './icons/uil-file-redo-alt' +export { default as UilFileSearchAlt } from './icons/uil-file-search-alt' +export { default as UilFileShareAlt } from './icons/uil-file-share-alt' +export { default as UilFileShieldAlt } from './icons/uil-file-shield-alt' +export { default as UilFileSlash } from './icons/uil-file-slash' +export { default as UilFileTimes } from './icons/uil-file-times' +export { default as UilFileTimesAlt } from './icons/uil-file-times-alt' +export { default as UilFileUpload } from './icons/uil-file-upload' +export { default as UilFileUploadAlt } from './icons/uil-file-upload-alt' +export { default as UilFilesLandscapes } from './icons/uil-files-landscapes' +export { default as UilFilesLandscapesAlt } from './icons/uil-files-landscapes-alt' +export { default as UilFilm } from './icons/uil-film' +export { default as UilFilter } from './icons/uil-filter' +export { default as UilFilterSlash } from './icons/uil-filter-slash' +export { default as UilFire } from './icons/uil-fire' +export { default as UilFlask } from './icons/uil-flask' +export { default as UilFlaskPotion } from './icons/uil-flask-potion' +export { default as UilFlipH } from './icons/uil-flip-h' +export { default as UilFlipHAlt } from './icons/uil-flip-h-alt' +export { default as UilFlipV } from './icons/uil-flip-v' +export { default as UilFlipVAlt } from './icons/uil-flip-v-alt' +export { default as UilFlower } from './icons/uil-flower' +export { default as UilFocus } from './icons/uil-focus' +export { default as UilFocusAdd } from './icons/uil-focus-add' +export { default as UilFocusTarget } from './icons/uil-focus-target' +export { default as UilFolder } from './icons/uil-folder' +export { default as UilFolderCheck } from './icons/uil-folder-check' +export { default as UilFolderDownload } from './icons/uil-folder-download' +export { default as UilFolderExclamation } from './icons/uil-folder-exclamation' +export { default as UilFolderHeart } from './icons/uil-folder-heart' +export { default as UilFolderInfo } from './icons/uil-folder-info' +export { default as UilFolderLock } from './icons/uil-folder-lock' +export { default as UilFolderMedical } from './icons/uil-folder-medical' +export { default as UilFolderMinus } from './icons/uil-folder-minus' +export { default as UilFolderNetwork } from './icons/uil-folder-network' +export { default as UilFolderOpen } from './icons/uil-folder-open' +export { default as UilFolderPlus } from './icons/uil-folder-plus' +export { default as UilFolderQuestion } from './icons/uil-folder-question' +export { default as UilFolderSlash } from './icons/uil-folder-slash' +export { default as UilFolderTimes } from './icons/uil-folder-times' +export { default as UilFolderUpload } from './icons/uil-folder-upload' +export { default as UilFont } from './icons/uil-font' +export { default as UilFootball } from './icons/uil-football' +export { default as UilFootballAmerican } from './icons/uil-football-american' +export { default as UilFootballBall } from './icons/uil-football-ball' +export { default as UilForwadedCall } from './icons/uil-forwaded-call' +export { default as UilForward } from './icons/uil-forward' +export { default as UilFrown } from './icons/uil-frown' +export { default as UilGameStructure } from './icons/uil-game-structure' +export { default as UilGift } from './icons/uil-gift' +export { default as UilGithub } from './icons/uil-github' +export { default as UilGithubAlt } from './icons/uil-github-alt' +export { default as UilGitlab } from './icons/uil-gitlab' +export { default as UilGlass } from './icons/uil-glass' +export { default as UilGlassMartini } from './icons/uil-glass-martini' +export { default as UilGlassMartiniAlt } from './icons/uil-glass-martini-alt' +export { default as UilGlassMartiniAltSlash } from './icons/uil-glass-martini-alt-slash' +export { default as UilGlassTea } from './icons/uil-glass-tea' +export { default as UilGlobe } from './icons/uil-globe' +export { default as UilGold } from './icons/uil-gold' +export { default as UilGolfBall } from './icons/uil-golf-ball' +export { default as UilGoogle } from './icons/uil-google' +export { default as UilGoogleDrive } from './icons/uil-google-drive' +export { default as UilGoogleDriveAlt } from './icons/uil-google-drive-alt' +export { default as UilGoogleHangouts } from './icons/uil-google-hangouts' +export { default as UilGoogleHangoutsAlt } from './icons/uil-google-hangouts-alt' +export { default as UilGooglePlay } from './icons/uil-google-play' +export { default as UilGraduationCap } from './icons/uil-graduation-cap' +export { default as UilGraphBar } from './icons/uil-graph-bar' +export { default as UilGrid } from './icons/uil-grid' +export { default as UilGrids } from './icons/uil-grids' +export { default as UilGrin } from './icons/uil-grin' +export { default as UilGrinTongueWink } from './icons/uil-grin-tongue-wink' +export { default as UilGrinTongueWinkAlt } from './icons/uil-grin-tongue-wink-alt' +export { default as UilGripHorizontalLine } from './icons/uil-grip-horizontal-line' +export { default as UilHardHat } from './icons/uil-hard-hat' +export { default as UilHdd } from './icons/uil-hdd' +export { default as UilHeadSide } from './icons/uil-head-side' +export { default as UilHeadSideCough } from './icons/uil-head-side-cough' +export { default as UilHeadSideMask } from './icons/uil-head-side-mask' +export { default as UilHeadphoneSlash } from './icons/uil-headphone-slash' +export { default as UilHeadphones } from './icons/uil-headphones' +export { default as UilHeadphonesAlt } from './icons/uil-headphones-alt' +export { default as UilHeart } from './icons/uil-heart' +export { default as UilHeartAlt } from './icons/uil-heart-alt' +export { default as UilHeartBreak } from './icons/uil-heart-break' +export { default as UilHeartMedical } from './icons/uil-heart-medical' +export { default as UilHeartRate } from './icons/uil-heart-rate' +export { default as UilHeartSign } from './icons/uil-heart-sign' +export { default as UilHeartbeat } from './icons/uil-heartbeat' +export { default as UilHindiToChinese } from './icons/uil-hindi-to-chinese' +export { default as UilHipchat } from './icons/uil-hipchat' +export { default as UilHistory } from './icons/uil-history' +export { default as UilHistoryAlt } from './icons/uil-history-alt' +export { default as UilHome } from './icons/uil-home' +export { default as UilHorizontalAlignCenter } from './icons/uil-horizontal-align-center' +export { default as UilHorizontalAlignLeft } from './icons/uil-horizontal-align-left' +export { default as UilHorizontalAlignRight } from './icons/uil-horizontal-align-right' +export { default as UilHorizontalDistributionCenter } from './icons/uil-horizontal-distribution-center' +export { default as UilHorizontalDistributionLeft } from './icons/uil-horizontal-distribution-left' +export { default as UilHorizontalDistributionRight } from './icons/uil-horizontal-distribution-right' +export { default as UilHospital } from './icons/uil-hospital' +export { default as UilHospitalSquareSign } from './icons/uil-hospital-square-sign' +export { default as UilHospitalSymbol } from './icons/uil-hospital-symbol' +export { default as UilHourglass } from './icons/uil-hourglass' +export { default as UilHouseUser } from './icons/uil-house-user' +export { default as UilHtml3 } from './icons/uil-html3' +export { default as UilHtml3Alt } from './icons/uil-html3-alt' +export { default as UilHtml5 } from './icons/uil-html5' +export { default as UilHtml5Alt } from './icons/uil-html5-alt' +export { default as UilHunting } from './icons/uil-hunting' +export { default as UilIcons } from './icons/uil-icons' +export { default as UilIllustration } from './icons/uil-illustration' +export { default as UilImage } from './icons/uil-image' +export { default as UilImageAltSlash } from './icons/uil-image-alt-slash' +export { default as UilImageBlock } from './icons/uil-image-block' +export { default as UilImageBroken } from './icons/uil-image-broken' +export { default as UilImageCheck } from './icons/uil-image-check' +export { default as UilImageDownload } from './icons/uil-image-download' +export { default as UilImageEdit } from './icons/uil-image-edit' +export { default as UilImageLock } from './icons/uil-image-lock' +export { default as UilImageMinus } from './icons/uil-image-minus' +export { default as UilImagePlus } from './icons/uil-image-plus' +export { default as UilImageQuestion } from './icons/uil-image-question' +export { default as UilImageRedo } from './icons/uil-image-redo' +export { default as UilImageResizeLandscape } from './icons/uil-image-resize-landscape' +export { default as UilImageResizeSquare } from './icons/uil-image-resize-square' +export { default as UilImageSearch } from './icons/uil-image-search' +export { default as UilImageShare } from './icons/uil-image-share' +export { default as UilImageShield } from './icons/uil-image-shield' +export { default as UilImageSlash } from './icons/uil-image-slash' +export { default as UilImageTimes } from './icons/uil-image-times' +export { default as UilImageUpload } from './icons/uil-image-upload' +export { default as UilImageV } from './icons/uil-image-v' +export { default as UilImages } from './icons/uil-images' +export { default as UilImport } from './icons/uil-import' +export { default as UilInbox } from './icons/uil-inbox' +export { default as UilIncomingCall } from './icons/uil-incoming-call' +export { default as UilInfo } from './icons/uil-info' +export { default as UilInfoCircle } from './icons/uil-info-circle' +export { default as UilInstagram } from './icons/uil-instagram' +export { default as UilInstagramAlt } from './icons/uil-instagram-alt' +export { default as UilIntercom } from './icons/uil-intercom' +export { default as UilIntercomAlt } from './icons/uil-intercom-alt' +export { default as UilInvoice } from './icons/uil-invoice' +export { default as UilItalic } from './icons/uil-italic' +export { default as UilJackhammer } from './icons/uil-jackhammer' +export { default as UilJavaScript } from './icons/uil-java-script' +export { default as UilKayak } from './icons/uil-kayak' +export { default as UilKeySkeleton } from './icons/uil-key-skeleton' +export { default as UilKeySkeletonAlt } from './icons/uil-key-skeleton-alt' +export { default as UilKeyboard } from './icons/uil-keyboard' +export { default as UilKeyboardAlt } from './icons/uil-keyboard-alt' +export { default as UilKeyboardHide } from './icons/uil-keyboard-hide' +export { default as UilKeyboardShow } from './icons/uil-keyboard-show' +export { default as UilKeyholeCircle } from './icons/uil-keyhole-circle' +export { default as UilKeyholeSquare } from './icons/uil-keyhole-square' +export { default as UilKeyholeSquareFull } from './icons/uil-keyhole-square-full' +export { default as UilKid } from './icons/uil-kid' +export { default as UilLabel } from './icons/uil-label' +export { default as UilLabelAlt } from './icons/uil-label-alt' +export { default as UilLamp } from './icons/uil-lamp' +export { default as UilLanguage } from './icons/uil-language' +export { default as UilLaptop } from './icons/uil-laptop' +export { default as UilLaptopCloud } from './icons/uil-laptop-cloud' +export { default as UilLaptopConnection } from './icons/uil-laptop-connection' +export { default as UilLaughing } from './icons/uil-laughing' +export { default as UilLayerGroup } from './icons/uil-layer-group' +export { default as UilLayerGroupSlash } from './icons/uil-layer-group-slash' +export { default as UilLayers } from './icons/uil-layers' +export { default as UilLayersAlt } from './icons/uil-layers-alt' +export { default as UilLayersSlash } from './icons/uil-layers-slash' +export { default as UilLeft } from './icons/uil-left' +export { default as UilLeftArrowFromLeft } from './icons/uil-left-arrow-from-left' +export { default as UilLeftArrowToLeft } from './icons/uil-left-arrow-to-left' +export { default as UilLeftIndent } from './icons/uil-left-indent' +export { default as UilLeftIndentAlt } from './icons/uil-left-indent-alt' +export { default as UilLeftToRightTextDirection } from './icons/uil-left-to-right-text-direction' +export { default as UilLetterChineseA } from './icons/uil-letter-chinese-a' +export { default as UilLetterEnglishA } from './icons/uil-letter-english-a' +export { default as UilLetterHindiA } from './icons/uil-letter-hindi-a' +export { default as UilLetterJapaneseA } from './icons/uil-letter-japanese-a' +export { default as UilLifeRing } from './icons/uil-life-ring' +export { default as UilLightbulb } from './icons/uil-lightbulb' +export { default as UilLightbulbAlt } from './icons/uil-lightbulb-alt' +export { default as UilLine } from './icons/uil-line' +export { default as UilLineAlt } from './icons/uil-line-alt' +export { default as UilLineSpacing } from './icons/uil-line-spacing' +export { default as UilLink } from './icons/uil-link' +export { default as UilLinkAdd } from './icons/uil-link-add' +export { default as UilLinkAlt } from './icons/uil-link-alt' +export { default as UilLinkBroken } from './icons/uil-link-broken' +export { default as UilLinkH } from './icons/uil-link-h' +export { default as UilLinkedin } from './icons/uil-linkedin' +export { default as UilLinkedinAlt } from './icons/uil-linkedin-alt' +export { default as UilLinux } from './icons/uil-linux' +export { default as UilLiraSign } from './icons/uil-lira-sign' +export { default as UilListOl } from './icons/uil-list-ol' +export { default as UilListOlAlt } from './icons/uil-list-ol-alt' +export { default as UilListUiAlt } from './icons/uil-list-ui-alt' +export { default as UilListUl } from './icons/uil-list-ul' +export { default as UilLocationArrow } from './icons/uil-location-arrow' +export { default as UilLocationArrowAlt } from './icons/uil-location-arrow-alt' +export { default as UilLocationPinAlt } from './icons/uil-location-pin-alt' +export { default as UilLocationPoint } from './icons/uil-location-point' +export { default as UilLock } from './icons/uil-lock' +export { default as UilLockAccess } from './icons/uil-lock-access' +export { default as UilLockAlt } from './icons/uil-lock-alt' +export { default as UilLockOpenAlt } from './icons/uil-lock-open-alt' +export { default as UilLockSlash } from './icons/uil-lock-slash' +export { default as UilLottiefiles } from './icons/uil-lottiefiles' +export { default as UilLottiefilesAlt } from './icons/uil-lottiefiles-alt' +export { default as UilLuggageCart } from './icons/uil-luggage-cart' +export { default as UilMailbox } from './icons/uil-mailbox' +export { default as UilMailboxAlt } from './icons/uil-mailbox-alt' +export { default as UilMap } from './icons/uil-map' +export { default as UilMapMarker } from './icons/uil-map-marker' +export { default as UilMapMarkerAlt } from './icons/uil-map-marker-alt' +export { default as UilMapMarkerEdit } from './icons/uil-map-marker-edit' +export { default as UilMapMarkerInfo } from './icons/uil-map-marker-info' +export { default as UilMapMarkerMinus } from './icons/uil-map-marker-minus' +export { default as UilMapMarkerPlus } from './icons/uil-map-marker-plus' +export { default as UilMapMarkerQuestion } from './icons/uil-map-marker-question' +export { default as UilMapMarkerShield } from './icons/uil-map-marker-shield' +export { default as UilMapMarkerSlash } from './icons/uil-map-marker-slash' +export { default as UilMapPin } from './icons/uil-map-pin' +export { default as UilMapPinAlt } from './icons/uil-map-pin-alt' +export { default as UilMars } from './icons/uil-mars' +export { default as UilMasterCard } from './icons/uil-master-card' +export { default as UilMaximizeLeft } from './icons/uil-maximize-left' +export { default as UilMedal } from './icons/uil-medal' +export { default as UilMedicalDrip } from './icons/uil-medical-drip' +export { default as UilMedicalSquare } from './icons/uil-medical-square' +export { default as UilMedicalSquareFull } from './icons/uil-medical-square-full' +export { default as UilMediumM } from './icons/uil-medium-m' +export { default as UilMedkit } from './icons/uil-medkit' +export { default as UilMeetingBoard } from './icons/uil-meeting-board' +export { default as UilMegaphone } from './icons/uil-megaphone' +export { default as UilMeh } from './icons/uil-meh' +export { default as UilMehAlt } from './icons/uil-meh-alt' +export { default as UilMehClosedEye } from './icons/uil-meh-closed-eye' +export { default as UilMessage } from './icons/uil-message' +export { default as UilMetro } from './icons/uil-metro' +export { default as UilMicrophone } from './icons/uil-microphone' +export { default as UilMicrophoneSlash } from './icons/uil-microphone-slash' +export { default as UilMicroscope } from './icons/uil-microscope' +export { default as UilMicrosoft } from './icons/uil-microsoft' +export { default as UilMinus } from './icons/uil-minus' +export { default as UilMinusCircle } from './icons/uil-minus-circle' +export { default as UilMinusPath } from './icons/uil-minus-path' +export { default as UilMinusSquare } from './icons/uil-minus-square' +export { default as UilMinusSquareFull } from './icons/uil-minus-square-full' +export { default as UilMissedCall } from './icons/uil-missed-call' +export { default as UilMobileAndroid } from './icons/uil-mobile-android' +export { default as UilMobileAndroidAlt } from './icons/uil-mobile-android-alt' +export { default as UilMobileVibrate } from './icons/uil-mobile-vibrate' +export { default as UilModem } from './icons/uil-modem' +export { default as UilMoneyBill } from './icons/uil-money-bill' +export { default as UilMoneyBillSlash } from './icons/uil-money-bill-slash' +export { default as UilMoneyBillStack } from './icons/uil-money-bill-stack' +export { default as UilMoneyInsert } from './icons/uil-money-insert' +export { default as UilMoneyStack } from './icons/uil-money-stack' +export { default as UilMoneyWithdraw } from './icons/uil-money-withdraw' +export { default as UilMoneyWithdrawal } from './icons/uil-money-withdrawal' +export { default as UilMoneybag } from './icons/uil-moneybag' +export { default as UilMoneybagAlt } from './icons/uil-moneybag-alt' +export { default as UilMonitor } from './icons/uil-monitor' +export { default as UilMonitorHeartRate } from './icons/uil-monitor-heart-rate' +export { default as UilMoon } from './icons/uil-moon' +export { default as UilMoonEclipse } from './icons/uil-moon-eclipse' +export { default as UilMoonset } from './icons/uil-moonset' +export { default as UilMountains } from './icons/uil-mountains' +export { default as UilMountainsSun } from './icons/uil-mountains-sun' +export { default as UilMouse } from './icons/uil-mouse' +export { default as UilMouseAlt } from './icons/uil-mouse-alt' +export { default as UilMouseAlt2 } from './icons/uil-mouse-alt-2' +export { default as UilMultiply } from './icons/uil-multiply' +export { default as UilMusic } from './icons/uil-music' +export { default as UilMusicNote } from './icons/uil-music-note' +export { default as UilMusicTuneSlash } from './icons/uil-music-tune-slash' +export { default as UilNA } from './icons/uil-n-a' +export { default as UilNavigator } from './icons/uil-navigator' +export { default as UilNerd } from './icons/uil-nerd' +export { default as UilNewspaper } from './icons/uil-newspaper' +export { default as UilNinja } from './icons/uil-ninja' +export { default as UilNoEntry } from './icons/uil-no-entry' +export { default as UilNotebooks } from './icons/uil-notebooks' +export { default as UilNotes } from './icons/uil-notes' +export { default as UilObjectGroup } from './icons/uil-object-group' +export { default as UilObjectUngroup } from './icons/uil-object-ungroup' +export { default as UilOctagon } from './icons/uil-octagon' +export { default as UilOkta } from './icons/uil-okta' +export { default as UilOpera } from './icons/uil-opera' +export { default as UilOperaAlt } from './icons/uil-opera-alt' +export { default as UilOutgoingCall } from './icons/uil-outgoing-call' +export { default as UilOutline } from './icons/uil-outline' +export { default as UilPackage } from './icons/uil-package' +export { default as UilPadlock } from './icons/uil-padlock' +export { default as UilPagelines } from './icons/uil-pagelines' +export { default as UilPagerduty } from './icons/uil-pagerduty' +export { default as UilPaintTool } from './icons/uil-paint-tool' +export { default as UilPalette } from './icons/uil-palette' +export { default as UilPanelAdd } from './icons/uil-panel-add' +export { default as UilPanoramaH } from './icons/uil-panorama-h' +export { default as UilPanoramaHAlt } from './icons/uil-panorama-h-alt' +export { default as UilPanoramaV } from './icons/uil-panorama-v' +export { default as UilPaperclip } from './icons/uil-paperclip' +export { default as UilParagraph } from './icons/uil-paragraph' +export { default as UilParcel } from './icons/uil-parcel' +export { default as UilParkingCircle } from './icons/uil-parking-circle' +export { default as UilParkingSquare } from './icons/uil-parking-square' +export { default as UilPathfinder } from './icons/uil-pathfinder' +export { default as UilPathfinderUnite } from './icons/uil-pathfinder-unite' +export { default as UilPause } from './icons/uil-pause' +export { default as UilPauseCircle } from './icons/uil-pause-circle' +export { default as UilPaypal } from './icons/uil-paypal' +export { default as UilPen } from './icons/uil-pen' +export { default as UilPentagon } from './icons/uil-pentagon' +export { default as UilPercentage } from './icons/uil-percentage' +export { default as UilPhone } from './icons/uil-phone' +export { default as UilPhoneAlt } from './icons/uil-phone-alt' +export { default as UilPhonePause } from './icons/uil-phone-pause' +export { default as UilPhoneSlash } from './icons/uil-phone-slash' +export { default as UilPhoneTimes } from './icons/uil-phone-times' +export { default as UilPhoneVolume } from './icons/uil-phone-volume' +export { default as UilPicture } from './icons/uil-picture' +export { default as UilPizzaSlice } from './icons/uil-pizza-slice' +export { default as UilPlane } from './icons/uil-plane' +export { default as UilPlaneArrival } from './icons/uil-plane-arrival' +export { default as UilPlaneDeparture } from './icons/uil-plane-departure' +export { default as UilPlaneFly } from './icons/uil-plane-fly' +export { default as UilPlay } from './icons/uil-play' +export { default as UilPlayCircle } from './icons/uil-play-circle' +export { default as UilPlug } from './icons/uil-plug' +export { default as UilPlus } from './icons/uil-plus' +export { default as UilPlusCircle } from './icons/uil-plus-circle' +export { default as UilPlusSquare } from './icons/uil-plus-square' +export { default as UilPodium } from './icons/uil-podium' +export { default as UilPolygon } from './icons/uil-polygon' +export { default as UilPostStamp } from './icons/uil-post-stamp' +export { default as UilPostcard } from './icons/uil-postcard' +export { default as UilPound } from './icons/uil-pound' +export { default as UilPoundCircle } from './icons/uil-pound-circle' +export { default as UilPower } from './icons/uil-power' +export { default as UilPrescriptionBottle } from './icons/uil-prescription-bottle' +export { default as UilPresentation } from './icons/uil-presentation' +export { default as UilPresentationCheck } from './icons/uil-presentation-check' +export { default as UilPresentationEdit } from './icons/uil-presentation-edit' +export { default as UilPresentationLine } from './icons/uil-presentation-line' +export { default as UilPresentationLinesAlt } from './icons/uil-presentation-lines-alt' +export { default as UilPresentationMinus } from './icons/uil-presentation-minus' +export { default as UilPresentationPlay } from './icons/uil-presentation-play' +export { default as UilPresentationPlus } from './icons/uil-presentation-plus' +export { default as UilPresentationTimes } from './icons/uil-presentation-times' +export { default as UilPrevious } from './icons/uil-previous' +export { default as UilPricetagAlt } from './icons/uil-pricetag-alt' +export { default as UilPrint } from './icons/uil-print' +export { default as UilPrintSlash } from './icons/uil-print-slash' +export { default as UilProcess } from './icons/uil-process' +export { default as UilProcessor } from './icons/uil-processor' +export { default as UilProgrammingLanguage } from './icons/uil-programming-language' +export { default as UilPump } from './icons/uil-pump' +export { default as UilPuzzlePiece } from './icons/uil-puzzle-piece' +export { default as UilQrcodeScan } from './icons/uil-qrcode-scan' +export { default as UilQuestion } from './icons/uil-question' +export { default as UilQuestionCircle } from './icons/uil-question-circle' +export { default as UilRainbow } from './icons/uil-rainbow' +export { default as UilRaindrops } from './icons/uil-raindrops' +export { default as UilRaindropsAlt } from './icons/uil-raindrops-alt' +export { default as UilReact } from './icons/uil-react' +export { default as UilReceipt } from './icons/uil-receipt' +export { default as UilReceiptAlt } from './icons/uil-receipt-alt' +export { default as UilRecordAudio } from './icons/uil-record-audio' +export { default as UilRedditAlienAlt } from './icons/uil-reddit-alien-alt' +export { default as UilRedo } from './icons/uil-redo' +export { default as UilRefresh } from './icons/uil-refresh' +export { default as UilRegistered } from './icons/uil-registered' +export { default as UilRepeat } from './icons/uil-repeat' +export { default as UilRestaurant } from './icons/uil-restaurant' +export { default as UilRightIndentAlt } from './icons/uil-right-indent-alt' +export { default as UilRightToLeftTextDirection } from './icons/uil-right-to-left-text-direction' +export { default as UilRobot } from './icons/uil-robot' +export { default as UilRocket } from './icons/uil-rocket' +export { default as UilRopeWay } from './icons/uil-rope-way' +export { default as UilRotate360 } from './icons/uil-rotate-360' +export { default as UilRss } from './icons/uil-rss' +export { default as UilRssAlt } from './icons/uil-rss-alt' +export { default as UilRssInterface } from './icons/uil-rss-interface' +export { default as UilRuler } from './icons/uil-ruler' +export { default as UilRulerCombined } from './icons/uil-ruler-combined' +export { default as UilRupeeSign } from './icons/uil-rupee-sign' +export { default as UilSad } from './icons/uil-sad' +export { default as UilSadCry } from './icons/uil-sad-cry' +export { default as UilSadCrying } from './icons/uil-sad-crying' +export { default as UilSadDizzy } from './icons/uil-sad-dizzy' +export { default as UilSadSquint } from './icons/uil-sad-squint' +export { default as UilSanitizer } from './icons/uil-sanitizer' +export { default as UilSanitizerAlt } from './icons/uil-sanitizer-alt' +export { default as UilSave } from './icons/uil-save' +export { default as UilScalingLeft } from './icons/uil-scaling-left' +export { default as UilScalingRight } from './icons/uil-scaling-right' +export { default as UilScenery } from './icons/uil-scenery' +export { default as UilSchedule } from './icons/uil-schedule' +export { default as UilScrew } from './icons/uil-screw' +export { default as UilScroll } from './icons/uil-scroll' +export { default as UilScrollH } from './icons/uil-scroll-h' +export { default as UilSearch } from './icons/uil-search' +export { default as UilSearchAlt } from './icons/uil-search-alt' +export { default as UilSearchMinus } from './icons/uil-search-minus' +export { default as UilSearchPlus } from './icons/uil-search-plus' +export { default as UilSelfie } from './icons/uil-selfie' +export { default as UilServer } from './icons/uil-server' +export { default as UilServerAlt } from './icons/uil-server-alt' +export { default as UilServerConnection } from './icons/uil-server-connection' +export { default as UilServerNetwork } from './icons/uil-server-network' +export { default as UilServerNetworkAlt } from './icons/uil-server-network-alt' +export { default as UilServers } from './icons/uil-servers' +export { default as UilServicemark } from './icons/uil-servicemark' +export { default as UilSetting } from './icons/uil-setting' +export { default as UilShare } from './icons/uil-share' +export { default as UilShareAlt } from './icons/uil-share-alt' +export { default as UilShield } from './icons/uil-shield' +export { default as UilShieldCheck } from './icons/uil-shield-check' +export { default as UilShieldExclamation } from './icons/uil-shield-exclamation' +export { default as UilShieldPlus } from './icons/uil-shield-plus' +export { default as UilShieldQuestion } from './icons/uil-shield-question' +export { default as UilShieldSlash } from './icons/uil-shield-slash' +export { default as UilShip } from './icons/uil-ship' +export { default as UilShop } from './icons/uil-shop' +export { default as UilShoppingBag } from './icons/uil-shopping-bag' +export { default as UilShoppingBasket } from './icons/uil-shopping-basket' +export { default as UilShoppingCart } from './icons/uil-shopping-cart' +export { default as UilShoppingCartAlt } from './icons/uil-shopping-cart-alt' +export { default as UilShovel } from './icons/uil-shovel' +export { default as UilShrink } from './icons/uil-shrink' +export { default as UilShuffle } from './icons/uil-shuffle' +export { default as UilShutter } from './icons/uil-shutter' +export { default as UilShutterAlt } from './icons/uil-shutter-alt' +export { default as UilSick } from './icons/uil-sick' +export { default as UilSigma } from './icons/uil-sigma' +export { default as UilSignAlt } from './icons/uil-sign-alt' +export { default as UilSignInAlt } from './icons/uil-sign-in-alt' +export { default as UilSignLeft } from './icons/uil-sign-left' +export { default as UilSignOutAlt } from './icons/uil-sign-out-alt' +export { default as UilSignRight } from './icons/uil-sign-right' +export { default as UilSignal } from './icons/uil-signal' +export { default as UilSignalAlt } from './icons/uil-signal-alt' +export { default as UilSignalAlt3 } from './icons/uil-signal-alt-3' +export { default as UilSignin } from './icons/uil-signin' +export { default as UilSignout } from './icons/uil-signout' +export { default as UilSilence } from './icons/uil-silence' +export { default as UilSilentSquint } from './icons/uil-silent-squint' +export { default as UilSimCard } from './icons/uil-sim-card' +export { default as UilSitemap } from './icons/uil-sitemap' +export { default as UilSkipForward } from './icons/uil-skip-forward' +export { default as UilSkipForwardAlt } from './icons/uil-skip-forward-alt' +export { default as UilSkipForwardCircle } from './icons/uil-skip-forward-circle' +export { default as UilSkype } from './icons/uil-skype' +export { default as UilSkypeAlt } from './icons/uil-skype-alt' +export { default as UilSlack } from './icons/uil-slack' +export { default as UilSlackAlt } from './icons/uil-slack-alt' +export { default as UilSleep } from './icons/uil-sleep' +export { default as UilSliderH } from './icons/uil-slider-h' +export { default as UilSliderHRange } from './icons/uil-slider-h-range' +export { default as UilSlidersV } from './icons/uil-sliders-v' +export { default as UilSlidersVAlt } from './icons/uil-sliders-v-alt' +export { default as UilSmile } from './icons/uil-smile' +export { default as UilSmileBeam } from './icons/uil-smile-beam' +export { default as UilSmileDizzy } from './icons/uil-smile-dizzy' +export { default as UilSmileSquintWink } from './icons/uil-smile-squint-wink' +export { default as UilSmileSquintWinkAlt } from './icons/uil-smile-squint-wink-alt' +export { default as UilSmileWink } from './icons/uil-smile-wink' +export { default as UilSmileWinkAlt } from './icons/uil-smile-wink-alt' +export { default as UilSnapchatAlt } from './icons/uil-snapchat-alt' +export { default as UilSnapchatGhost } from './icons/uil-snapchat-ghost' +export { default as UilSnapchatSquare } from './icons/uil-snapchat-square' +export { default as UilSnowFlake } from './icons/uil-snow-flake' +export { default as UilSnowflake } from './icons/uil-snowflake' +export { default as UilSnowflakeAlt } from './icons/uil-snowflake-alt' +export { default as UilSocialDistancing } from './icons/uil-social-distancing' +export { default as UilSolid } from './icons/uil-solid' +export { default as UilSort } from './icons/uil-sort' +export { default as UilSortAmountDown } from './icons/uil-sort-amount-down' +export { default as UilSortAmountUp } from './icons/uil-sort-amount-up' +export { default as UilSorting } from './icons/uil-sorting' +export { default as UilSpaceKey } from './icons/uil-space-key' +export { default as UilSpade } from './icons/uil-spade' +export { default as UilSperms } from './icons/uil-sperms' +export { default as UilSpin } from './icons/uil-spin' +export { default as UilSpinner } from './icons/uil-spinner' +export { default as UilSpinnerAlt } from './icons/uil-spinner-alt' +export { default as UilSquare } from './icons/uil-square' +export { default as UilSquareFull } from './icons/uil-square-full' +export { default as UilSquareShape } from './icons/uil-square-shape' +export { default as UilSquint } from './icons/uil-squint' +export { default as UilStar } from './icons/uil-star' +export { default as UilStarHalfAlt } from './icons/uil-star-half-alt' +export { default as UilStatistics } from './icons/uil-statistics' +export { default as UilStepBackward } from './icons/uil-step-backward' +export { default as UilStepBackwardAlt } from './icons/uil-step-backward-alt' +export { default as UilStepBackwardCircle } from './icons/uil-step-backward-circle' +export { default as UilStepForward } from './icons/uil-step-forward' +export { default as UilStethoscope } from './icons/uil-stethoscope' +export { default as UilStethoscopeAlt } from './icons/uil-stethoscope-alt' +export { default as UilStopCircle } from './icons/uil-stop-circle' +export { default as UilStopwatch } from './icons/uil-stopwatch' +export { default as UilStopwatchSlash } from './icons/uil-stopwatch-slash' +export { default as UilStore } from './icons/uil-store' +export { default as UilStoreAlt } from './icons/uil-store-alt' +export { default as UilStoreSlash } from './icons/uil-store-slash' +export { default as UilStreering } from './icons/uil-streering' +export { default as UilStretcher } from './icons/uil-stretcher' +export { default as UilStroller } from './icons/uil-stroller' +export { default as UilSubject } from './icons/uil-subject' +export { default as UilSubway } from './icons/uil-subway' +export { default as UilSubwayAlt } from './icons/uil-subway-alt' +export { default as UilSuitcase } from './icons/uil-suitcase' +export { default as UilSuitcaseAlt } from './icons/uil-suitcase-alt' +export { default as UilSun } from './icons/uil-sun' +export { default as UilSunset } from './icons/uil-sunset' +export { default as UilSurprise } from './icons/uil-surprise' +export { default as UilSwatchbook } from './icons/uil-swatchbook' +export { default as UilSwiggy } from './icons/uil-swiggy' +export { default as UilSwimmer } from './icons/uil-swimmer' +export { default as UilSync } from './icons/uil-sync' +export { default as UilSyncExclamation } from './icons/uil-sync-exclamation' +export { default as UilSyncSlash } from './icons/uil-sync-slash' +export { default as UilSyringe } from './icons/uil-syringe' +export { default as UilTable } from './icons/uil-table' +export { default as UilTableTennis } from './icons/uil-table-tennis' +export { default as UilTablet } from './icons/uil-tablet' +export { default as UilTablets } from './icons/uil-tablets' +export { default as UilTachometerFast } from './icons/uil-tachometer-fast' +export { default as UilTachometerFastAlt } from './icons/uil-tachometer-fast-alt' +export { default as UilTag } from './icons/uil-tag' +export { default as UilTagAlt } from './icons/uil-tag-alt' +export { default as UilTape } from './icons/uil-tape' +export { default as UilTaxi } from './icons/uil-taxi' +export { default as UilTear } from './icons/uil-tear' +export { default as UilTelegram } from './icons/uil-telegram' +export { default as UilTelegramAlt } from './icons/uil-telegram-alt' +export { default as UilTelescope } from './icons/uil-telescope' +export { default as UilTemperature } from './icons/uil-temperature' +export { default as UilTemperatureEmpty } from './icons/uil-temperature-empty' +export { default as UilTemperatureHalf } from './icons/uil-temperature-half' +export { default as UilTemperatureMinus } from './icons/uil-temperature-minus' +export { default as UilTemperaturePlus } from './icons/uil-temperature-plus' +export { default as UilTemperatureQuarter } from './icons/uil-temperature-quarter' +export { default as UilTemperatureThreeQuarter } from './icons/uil-temperature-three-quarter' +export { default as UilTennisBall } from './icons/uil-tennis-ball' +export { default as UilText } from './icons/uil-text' +export { default as UilTextFields } from './icons/uil-text-fields' +export { default as UilTextSize } from './icons/uil-text-size' +export { default as UilTextStrikeThrough } from './icons/uil-text-strike-through' +export { default as UilTh } from './icons/uil-th' +export { default as UilThLarge } from './icons/uil-th-large' +export { default as UilThSlash } from './icons/uil-th-slash' +export { default as UilThermometer } from './icons/uil-thermometer' +export { default as UilThumbsDown } from './icons/uil-thumbs-down' +export { default as UilThumbsUp } from './icons/uil-thumbs-up' +export { default as UilThunderstorm } from './icons/uil-thunderstorm' +export { default as UilThunderstormMoon } from './icons/uil-thunderstorm-moon' +export { default as UilThunderstormSun } from './icons/uil-thunderstorm-sun' +export { default as UilTicket } from './icons/uil-ticket' +export { default as UilTimes } from './icons/uil-times' +export { default as UilTimesCircle } from './icons/uil-times-circle' +export { default as UilTimesSquare } from './icons/uil-times-square' +export { default as UilToggleOff } from './icons/uil-toggle-off' +export { default as UilToggleOn } from './icons/uil-toggle-on' +export { default as UilToiletPaper } from './icons/uil-toilet-paper' +export { default as UilTopArrowFromTop } from './icons/uil-top-arrow-from-top' +export { default as UilTopArrowToTop } from './icons/uil-top-arrow-to-top' +export { default as UilTornado } from './icons/uil-tornado' +export { default as UilTrademark } from './icons/uil-trademark' +export { default as UilTrademarkCircle } from './icons/uil-trademark-circle' +export { default as UilTrafficBarrier } from './icons/uil-traffic-barrier' +export { default as UilTrafficLight } from './icons/uil-traffic-light' +export { default as UilTransaction } from './icons/uil-transaction' +export { default as UilTrash } from './icons/uil-trash' +export { default as UilTrashAlt } from './icons/uil-trash-alt' +export { default as UilTrees } from './icons/uil-trees' +export { default as UilTriangle } from './icons/uil-triangle' +export { default as UilTrophy } from './icons/uil-trophy' +export { default as UilTrowel } from './icons/uil-trowel' +export { default as UilTruck } from './icons/uil-truck' +export { default as UilTruckLoading } from './icons/uil-truck-loading' +export { default as UilTumblr } from './icons/uil-tumblr' +export { default as UilTumblrAlt } from './icons/uil-tumblr-alt' +export { default as UilTumblrSquare } from './icons/uil-tumblr-square' +export { default as UilTvRetro } from './icons/uil-tv-retro' +export { default as UilTvRetroSlash } from './icons/uil-tv-retro-slash' +export { default as UilTwitter } from './icons/uil-twitter' +export { default as UilTwitterAlt } from './icons/uil-twitter-alt' +export { default as UilUmbrella } from './icons/uil-umbrella' +export { default as UilUnamused } from './icons/uil-unamused' +export { default as UilUnderline } from './icons/uil-underline' +export { default as UilUniversity } from './icons/uil-university' +export { default as UilUnlock } from './icons/uil-unlock' +export { default as UilUnlockAlt } from './icons/uil-unlock-alt' +export { default as UilUpload } from './icons/uil-upload' +export { default as UilUploadAlt } from './icons/uil-upload-alt' +export { default as UilUsdCircle } from './icons/uil-usd-circle' +export { default as UilUsdSquare } from './icons/uil-usd-square' +export { default as UilUser } from './icons/uil-user' +export { default as UilUserArrows } from './icons/uil-user-arrows' +export { default as UilUserCheck } from './icons/uil-user-check' +export { default as UilUserCircle } from './icons/uil-user-circle' +export { default as UilUserExclamation } from './icons/uil-user-exclamation' +export { default as UilUserLocation } from './icons/uil-user-location' +export { default as UilUserMd } from './icons/uil-user-md' +export { default as UilUserMinus } from './icons/uil-user-minus' +export { default as UilUserNurse } from './icons/uil-user-nurse' +export { default as UilUserPlus } from './icons/uil-user-plus' +export { default as UilUserSquare } from './icons/uil-user-square' +export { default as UilUserTimes } from './icons/uil-user-times' +export { default as UilUsersAlt } from './icons/uil-users-alt' +export { default as UilUtensils } from './icons/uil-utensils' +export { default as UilUtensilsAlt } from './icons/uil-utensils-alt' +export { default as UilVectorSquare } from './icons/uil-vector-square' +export { default as UilVectorSquareAlt } from './icons/uil-vector-square-alt' +export { default as UilVenus } from './icons/uil-venus' +export { default as UilVerticalAlignBottom } from './icons/uil-vertical-align-bottom' +export { default as UilVerticalAlignCenter } from './icons/uil-vertical-align-center' +export { default as UilVerticalAlignTop } from './icons/uil-vertical-align-top' +export { default as UilVerticalDistributeBottom } from './icons/uil-vertical-distribute-bottom' +export { default as UilVerticalDistributionCenter } from './icons/uil-vertical-distribution-center' +export { default as UilVerticalDistributionTop } from './icons/uil-vertical-distribution-top' +export { default as UilVideo } from './icons/uil-video' +export { default as UilVideoQuestion } from './icons/uil-video-question' +export { default as UilVideoSlash } from './icons/uil-video-slash' +export { default as UilVirusSlash } from './icons/uil-virus-slash' +export { default as UilVisualStudio } from './icons/uil-visual-studio' +export { default as UilVk } from './icons/uil-vk' +export { default as UilVkAlt } from './icons/uil-vk-alt' +export { default as UilVoicemail } from './icons/uil-voicemail' +export { default as UilVoicemailRectangle } from './icons/uil-voicemail-rectangle' +export { default as UilVolleyball } from './icons/uil-volleyball' +export { default as UilVolume } from './icons/uil-volume' +export { default as UilVolumeDown } from './icons/uil-volume-down' +export { default as UilVolumeMute } from './icons/uil-volume-mute' +export { default as UilVolumeOff } from './icons/uil-volume-off' +export { default as UilVolumeUp } from './icons/uil-volume-up' +export { default as UilVuejs } from './icons/uil-vuejs' +export { default as UilVuejsAlt } from './icons/uil-vuejs-alt' +export { default as UilWall } from './icons/uil-wall' +export { default as UilWallet } from './icons/uil-wallet' +export { default as UilWatch } from './icons/uil-watch' +export { default as UilWatchAlt } from './icons/uil-watch-alt' +export { default as UilWater } from './icons/uil-water' +export { default as UilWaterDropSlash } from './icons/uil-water-drop-slash' +export { default as UilWaterGlass } from './icons/uil-water-glass' +export { default as UilWebGrid } from './icons/uil-web-grid' +export { default as UilWebGridAlt } from './icons/uil-web-grid-alt' +export { default as UilWebSection } from './icons/uil-web-section' +export { default as UilWebSectionAlt } from './icons/uil-web-section-alt' +export { default as UilWebcam } from './icons/uil-webcam' +export { default as UilWeight } from './icons/uil-weight' +export { default as UilWhatsapp } from './icons/uil-whatsapp' +export { default as UilWhatsappAlt } from './icons/uil-whatsapp-alt' +export { default as UilWheelBarrow } from './icons/uil-wheel-barrow' +export { default as UilWheelchair } from './icons/uil-wheelchair' +export { default as UilWheelchairAlt } from './icons/uil-wheelchair-alt' +export { default as UilWifi } from './icons/uil-wifi' +export { default as UilWifiRouter } from './icons/uil-wifi-router' +export { default as UilWifiSlash } from './icons/uil-wifi-slash' +export { default as UilWind } from './icons/uil-wind' +export { default as UilWindMoon } from './icons/uil-wind-moon' +export { default as UilWindSun } from './icons/uil-wind-sun' +export { default as UilWindow } from './icons/uil-window' +export { default as UilWindowGrid } from './icons/uil-window-grid' +export { default as UilWindowMaximize } from './icons/uil-window-maximize' +export { default as UilWindowRestore } from './icons/uil-window-restore' +export { default as UilWindowSection } from './icons/uil-window-section' +export { default as UilWindows } from './icons/uil-windows' +export { default as UilWindsock } from './icons/uil-windsock' +export { default as UilWindy } from './icons/uil-windy' +export { default as UilWordpress } from './icons/uil-wordpress' +export { default as UilWordpressSimple } from './icons/uil-wordpress-simple' +export { default as UilWrapText } from './icons/uil-wrap-text' +export { default as UilWrench } from './icons/uil-wrench' +export { default as UilX } from './icons/uil-x' +export { default as UilXAdd } from './icons/uil-x-add' +export { default as UilYen } from './icons/uil-yen' +export { default as UilYenCircle } from './icons/uil-yen-circle' +export { default as UilYinYang } from './icons/uil-yin-yang' +export { default as UilYoutube } from './icons/uil-youtube' \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..8cf3a410 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "es2016", + "module": "esnext", + "moduleResolution": "node", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true, + "declaration": true, + "outDir": "dist" + }, + "include": ["src"], + "exclude": ["node_modules", "dist"] +} diff --git a/tsup.config.ts b/tsup.config.ts new file mode 100644 index 00000000..07f7ca78 --- /dev/null +++ b/tsup.config.ts @@ -0,0 +1,13 @@ +import { defineConfig } from 'tsup' + +export default defineConfig({ + entry: ['src/index.ts', 'src/icons/*.ts'], + format: ['cjs', 'esm'], + dts: true, + splitting: false, + sourcemap: true, + clean: true, + treeshake: true, + external: ['react'], + minify: true, +}) diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index eb54966a..00000000 --- a/webpack.config.js +++ /dev/null @@ -1,22 +0,0 @@ -const path = require("path"); - -module.exports = { - entry: "./index.js", - output: { - path: path.resolve(__dirname, "lib", "cjs"), - filename: "index.js", - globalObject: "this", - library: { - type: "umd", - }, - clean: true, - }, - externals: { - react: "react", - }, - mode: "production", - optimization: { - minimize: true, - }, - target: "web", -};