From 8d366d87de92633d3e18d8b0fa469158a5fbb4a3 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Sep 2022 08:31:23 +0200 Subject: [PATCH 1/8] update generator script to support all variants of icons --- generator.js | 109 ++++++++++++++++++++++++--------------------------- 1 file changed, 51 insertions(+), 58 deletions(-) diff --git a/generator.js b/generator.js index cc7a39486..725c32db9 100644 --- a/generator.js +++ b/generator.js @@ -2,10 +2,18 @@ const fs = require('fs') const path = require('path') const axios = require('axios') -// Base url for icons -const iconURL = 'https://fonts.google.com/metadata/icons' +// This is the number of icons each thread will be downloading +const DOWNLOAD_CHUNK_SIZE = 500 +const GOOGLE_FONTS_URL = 'https://fonts.google.com/metadata/icons' +const ICON_FAMILTIES = [ + { id: 'materialicons', namePostfix: '' }, + { id: 'materialiconsoutlined', namePostfix: 'Outlined' }, + { id: 'materialiconsround', namePostfix: 'Round' }, + { id: 'materialiconssharp', namePostfix: 'Sharp' }, + { id: 'materialiconstwotone', namePostfix: 'TwoTone' }, +] -function setup() { +function generateIconPropsFile() { const typesFile = ` import React from 'react' export interface IconProps extends React.SVGProps { @@ -13,34 +21,20 @@ function setup() { } ` - // Create types file fs.writeFileSync(path.join(__dirname, 'src', 'types.ts'), typesFile) } -/** - * Format name. - * Covert from snake case to camel case and prevent numbers at the beginning - * - * @param string - String to format - * @returns {string} - Formatted string - */ -function formatName(string) { +function formatName(string, familyName) { const formattedString = string .replace(/_/g, ' ') .replace(/\w\S*/g, (txt) => { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase() }) .replace(/ /g, '') - return 'Icon' + formattedString + + return 'Icon' + formattedString + familyName } -/** - * Component template for functional react icon component - * - * @param name - Component name - * @param svg - Icon SVG - * @returns {string} - Component - */ function componentTemplate(name, svg) { return ` import React from 'react' @@ -54,34 +48,12 @@ function componentTemplate(name, svg) { ` } -/** - * Generate React Icon components - * - * @param icon - Icon object - */ -function generateComponent(icon) { - icon.forEach(async (c) => { - const name = formatName(c.name) - const svg = await getSVGFile(c.name, c.version) - - fs.writeFileSync( - path.join(__dirname, 'src', `${name}.tsx`), - componentTemplate(name, svg) +async function getSVGFile(icon, familyId, version) { + const svg = await axios + .get( + `https://fonts.gstatic.com/s/i/${familyId}/${icon}/v${version}/24px.svg` ) - }) -} - -/** - * Get SVG data form google static fonts api - * - * @param icon - Icon name - * @param version - Icon Version - * @returns {Promise} - SVG Data - */ -async function getSVGFile(icon, version) { - const svg = await axios.get( - `https://fonts.gstatic.com/s/i/materialicons/${icon}/v${version}/24px.svg` - ) + .catch((err) => console.log(err)) return svg.data .replace('height="24"', '') @@ -95,21 +67,42 @@ async function getSVGFile(icon, version) { .replace(/style="fill:(.*?);?"/g, 'fill="$1"') } -/** - * Main function - */ +async function generateComponent(icons) { + for (let i = 0; i < icons.length; i++) { + const icon = icons[i] + + for (let j = 0; j < ICON_FAMILTIES.length; j++) { + const family = ICON_FAMILTIES[j] + + const name = formatName(icon.name, family.namePostfix) + const svg = await getSVGFile(icon.name, family.id, icon.version) + + console.log(`Downloading ${name} (${i + 1}/${icons.length})`) + + await fs.writeFileSync( + path.join(__dirname, 'src', `${name}.tsx`), + componentTemplate(name, svg) + ) + } + } +} + ;(async () => { - // Setup source folder - setup() + generateIconPropsFile() + + const res = await axios.get(GOOGLE_FONTS_URL) - // Get icon information from google fonts - const res = await axios.get(iconURL) // remove )]}' from the response const data = res.data.substring(4) - - // Parse response from json to js object const icons = await JSON.parse(data) - // Generate icon components and Index - await generateComponent(icons.icons) + const iconChunks = new Array( + Math.ceil(icons.icons.length / DOWNLOAD_CHUNK_SIZE) + ) + .fill() + .map(() => icons.icons.splice(0, DOWNLOAD_CHUNK_SIZE)) + + for (let i = 0; i < iconChunks.length; i++) { + generateComponent(iconChunks[i]) + } })() From c4b8d0b7b2dc701a050e9612c7f90ff07b760874 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Sep 2022 08:31:31 +0200 Subject: [PATCH 2/8] update readme --- readme.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 268ad7357..177682582 100644 --- a/readme.md +++ b/readme.md @@ -29,13 +29,21 @@ import IconCached from '@aboutbits/react-material-icons/dist/IconCached' const MyCommponent = () => { return ( - - ); + + ); } ``` SVG related parameters like height and width can be passed as props. +To import the different variants of an icon you can add the variants as a postfix: + +- `Icon10k` > Default filled +- `Icon10kOutlined` > Outlined +- `Icon10kRound` > Rounded +- `Icon10kSharp` > Sharp +- `Icon10kTwoTone` > Tow tone + ## Generate Components To generate the components, simply run the following command: From 4d1530cefc67fb37266311ec1f1d6cc99d816d2e Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Sep 2022 08:31:59 +0200 Subject: [PATCH 3/8] split generate and clear script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 15e1741f9..b094ac616 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ }, "scripts": { "build": "tsc", - "generate": "rm -rf src/* && node generator.js", + "clear": "rm -rf src/*", + "generate": "node generator.js", "lint": "eslint --ext js,ts,tsx src ./generator.js", "lint:fix": "npm run lint -- --fix", "typecheck": "tsc --noEmit", From cbdc09ecae03fe0bb32702f0a28f2ff0a29e67c7 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Sep 2022 12:42:59 +0200 Subject: [PATCH 4/8] add handler for xlink --- generator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/generator.js b/generator.js index 725c32db9..82a969a98 100644 --- a/generator.js +++ b/generator.js @@ -65,6 +65,8 @@ async function getSVGFile(icon, familyId, version) { .replace('>', '>{props.title && {props.title}}') .replace(/style="enableBackground:(.*?);?"/g, 'enableBackground="$1"') .replace(/style="fill:(.*?);?"/g, 'fill="$1"') + .replace(/xmlns:xlink/g, 'xmlnsXlink') + .replace(/xlink:href/g, 'xlinkHref') } async function generateComponent(icons) { From a838ca7042e394183ef7493c64d82664555d1519 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Sep 2022 12:46:51 +0200 Subject: [PATCH 5/8] fix typo --- generator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generator.js b/generator.js index 82a969a98..09c5d01a2 100644 --- a/generator.js +++ b/generator.js @@ -5,7 +5,7 @@ const axios = require('axios') // This is the number of icons each thread will be downloading const DOWNLOAD_CHUNK_SIZE = 500 const GOOGLE_FONTS_URL = 'https://fonts.google.com/metadata/icons' -const ICON_FAMILTIES = [ +const ICON_FAMILIES = [ { id: 'materialicons', namePostfix: '' }, { id: 'materialiconsoutlined', namePostfix: 'Outlined' }, { id: 'materialiconsround', namePostfix: 'Round' }, @@ -73,8 +73,8 @@ async function generateComponent(icons) { for (let i = 0; i < icons.length; i++) { const icon = icons[i] - for (let j = 0; j < ICON_FAMILTIES.length; j++) { - const family = ICON_FAMILTIES[j] + for (let j = 0; j < ICON_FAMILIES.length; j++) { + const family = ICON_FAMILIES[j] const name = formatName(icon.name, family.namePostfix) const svg = await getSVGFile(icon.name, family.id, icon.version) From 79e6ca2c1df3d01f4e704bfd242ee01e7f10483c Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Wed, 7 Sep 2022 16:42:43 +0200 Subject: [PATCH 6/8] cleanup script --- generator.js | 116 ++++++++++++++++++++++++--------------------------- 1 file changed, 55 insertions(+), 61 deletions(-) diff --git a/generator.js b/generator.js index 09c5d01a2..cad7e36e0 100644 --- a/generator.js +++ b/generator.js @@ -2,17 +2,29 @@ const fs = require('fs') const path = require('path') const axios = require('axios') -// This is the number of icons each thread will be downloading -const DOWNLOAD_CHUNK_SIZE = 500 const GOOGLE_FONTS_URL = 'https://fonts.google.com/metadata/icons' const ICON_FAMILIES = [ - { id: 'materialicons', namePostfix: '' }, - { id: 'materialiconsoutlined', namePostfix: 'Outlined' }, - { id: 'materialiconsround', namePostfix: 'Round' }, - { id: 'materialiconssharp', namePostfix: 'Sharp' }, - { id: 'materialiconstwotone', namePostfix: 'TwoTone' }, + { id: 'materialicons', postfix: '' }, + { id: 'materialiconsoutlined', postfix: 'Outlined' }, + { id: 'materialiconsround', postfix: 'Round' }, + { id: 'materialiconssharp', postfix: 'Sharp' }, + { id: 'materialiconstwotone', postfix: 'TwoTone' }, ] +;(async () => { + generateIconPropsFile() + + const res = await axios.get(GOOGLE_FONTS_URL) + + // remove )]}' from the response + const data = res.data.substring(4) + const icons = await JSON.parse(data) + + for (let i = 0; i < icons.icons.length; i++) { + generateComponents(icons.icons[i]) + } +})() + function generateIconPropsFile() { const typesFile = ` import React from 'react' @@ -24,7 +36,29 @@ function generateIconPropsFile() { fs.writeFileSync(path.join(__dirname, 'src', 'types.ts'), typesFile) } -function formatName(string, familyName) { +async function generateComponents(icon) { + for (let i = 0; i < ICON_FAMILIES.length; i++) { + await generateComponent(icon, ICON_FAMILIES[i]) + } +} + +async function generateComponent(icon, family) { + try { + const name = formatName(icon.name, family.postfix) + const svg = await downloadSVG(icon.name, family.id, icon.version) + + console.log(`Downloading ${name}`) + + await fs.writeFileSync( + path.join(__dirname, 'src', `${name}.tsx`), + mapSVGToTemplate(name, svg) + ) + } catch { + process.abort() + } +} + +function formatName(string, familyPostfix) { const formattedString = string .replace(/_/g, ' ') .replace(/\w\S*/g, (txt) => { @@ -32,23 +66,10 @@ function formatName(string, familyName) { }) .replace(/ /g, '') - return 'Icon' + formattedString + familyName -} - -function componentTemplate(name, svg) { - return ` - import React from 'react' - import { IconProps } from './types' - - const ${name}: React.FC = ({ ...props }) => ( - ${svg} - ) - - export { ${name} as default } - ` + return 'Icon' + formattedString + familyPostfix } -async function getSVGFile(icon, familyId, version) { +async function downloadSVG(icon, familyId, version) { const svg = await axios .get( `https://fonts.gstatic.com/s/i/${familyId}/${icon}/v${version}/24px.svg` @@ -69,42 +90,15 @@ async function getSVGFile(icon, familyId, version) { .replace(/xlink:href/g, 'xlinkHref') } -async function generateComponent(icons) { - for (let i = 0; i < icons.length; i++) { - const icon = icons[i] - - for (let j = 0; j < ICON_FAMILIES.length; j++) { - const family = ICON_FAMILIES[j] - - const name = formatName(icon.name, family.namePostfix) - const svg = await getSVGFile(icon.name, family.id, icon.version) - - console.log(`Downloading ${name} (${i + 1}/${icons.length})`) - - await fs.writeFileSync( - path.join(__dirname, 'src', `${name}.tsx`), - componentTemplate(name, svg) - ) - } - } +function mapSVGToTemplate(name, svg) { + return ` + import React from 'react' + import { IconProps } from './types' + + const ${name}: React.FC = ({ ...props }) => ( + ${svg} + ) + + export { ${name} as default } + ` } - -;(async () => { - generateIconPropsFile() - - const res = await axios.get(GOOGLE_FONTS_URL) - - // remove )]}' from the response - const data = res.data.substring(4) - const icons = await JSON.parse(data) - - const iconChunks = new Array( - Math.ceil(icons.icons.length / DOWNLOAD_CHUNK_SIZE) - ) - .fill() - .map(() => icons.icons.splice(0, DOWNLOAD_CHUNK_SIZE)) - - for (let i = 0; i < iconChunks.length; i++) { - generateComponent(iconChunks[i]) - } -})() From a5bacb4289d6e005937a5aaed3a640fecba69fed Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Wed, 7 Sep 2022 17:00:08 +0200 Subject: [PATCH 7/8] renaming --- generator.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/generator.js b/generator.js index cad7e36e0..3f60b3d4a 100644 --- a/generator.js +++ b/generator.js @@ -12,7 +12,7 @@ const ICON_FAMILIES = [ ] ;(async () => { - generateIconPropsFile() + generatePropsFile() const res = await axios.get(GOOGLE_FONTS_URL) @@ -21,11 +21,11 @@ const ICON_FAMILIES = [ const icons = await JSON.parse(data) for (let i = 0; i < icons.icons.length; i++) { - generateComponents(icons.icons[i]) + generateComponentsForAllFamilies(icons.icons[i]) } })() -function generateIconPropsFile() { +function generatePropsFile() { const typesFile = ` import React from 'react' export interface IconProps extends React.SVGProps { @@ -36,7 +36,7 @@ function generateIconPropsFile() { fs.writeFileSync(path.join(__dirname, 'src', 'types.ts'), typesFile) } -async function generateComponents(icon) { +async function generateComponentsForAllFamilies(icon) { for (let i = 0; i < ICON_FAMILIES.length; i++) { await generateComponent(icon, ICON_FAMILIES[i]) } From 935cd7af4ee5e24a9ee7f3723896cbc91644db39 Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Wed, 7 Sep 2022 17:03:19 +0200 Subject: [PATCH 8/8] add icons --- src/Icon10kOutlined.tsx | 27 +++++++++ src/Icon10kRound.tsx | 21 +++++++ src/Icon10kSharp.tsx | 21 +++++++ src/Icon10kTwoTone.tsx | 31 ++++++++++ src/Icon10mpOutlined.tsx | 37 ++++++++++++ src/Icon10mpRound.tsx | 23 ++++++++ src/Icon10mpSharp.tsx | 23 ++++++++ src/Icon10mpTwoTone.tsx | 46 +++++++++++++++ src/Icon11mpOutlined.tsx | 37 ++++++++++++ src/Icon11mpRound.tsx | 24 ++++++++ src/Icon11mpSharp.tsx | 24 ++++++++ src/Icon11mpTwoTone.tsx | 36 ++++++++++++ src/Icon123Outlined.tsx | 21 +++++++ src/Icon123Round.tsx | 22 ++++++++ src/Icon123Sharp.tsx | 21 +++++++ src/Icon123TwoTone.tsx | 21 +++++++ src/Icon12mpOutlined.tsx | 27 +++++++++ src/Icon12mpRound.tsx | 24 ++++++++ src/Icon12mpSharp.tsx | 24 ++++++++ src/Icon12mpTwoTone.tsx | 32 +++++++++++ src/Icon13mpOutlined.tsx | 27 +++++++++ src/Icon13mpRound.tsx | 24 ++++++++ src/Icon13mpSharp.tsx | 24 ++++++++ src/Icon13mpTwoTone.tsx | 40 +++++++++++++ src/Icon14mpOutlined.tsx | 27 +++++++++ src/Icon14mpRound.tsx | 24 ++++++++ src/Icon14mpSharp.tsx | 24 ++++++++ src/Icon14mpTwoTone.tsx | 32 +++++++++++ src/Icon15mpOutlined.tsx | 27 +++++++++ src/Icon15mpRound.tsx | 24 ++++++++ src/Icon15mpSharp.tsx | 24 ++++++++ src/Icon15mpTwoTone.tsx | 32 +++++++++++ src/Icon16mpOutlined.tsx | 27 +++++++++ src/Icon16mpRound.tsx | 25 +++++++++ src/Icon16mpSharp.tsx | 25 +++++++++ src/Icon16mpTwoTone.tsx | 33 +++++++++++ src/Icon17mpOutlined.tsx | 27 +++++++++ src/Icon17mpRound.tsx | 24 ++++++++ src/Icon17mpSharp.tsx | 24 ++++++++ src/Icon17mpTwoTone.tsx | 32 +++++++++++ src/Icon18UpRatingOutlined.tsx | 25 +++++++++ src/Icon18UpRatingRound.tsx | 26 +++++++++ src/Icon18UpRatingSharp.tsx | 25 +++++++++ src/Icon18UpRatingTwoTone.tsx | 31 ++++++++++ src/Icon18mpOutlined.tsx | 27 +++++++++ src/Icon18mpRound.tsx | 26 +++++++++ src/Icon18mpSharp.tsx | 26 +++++++++ src/Icon18mpTwoTone.tsx | 34 +++++++++++ src/Icon19mpOutlined.tsx | 27 +++++++++ src/Icon19mpRound.tsx | 25 +++++++++ src/Icon19mpSharp.tsx | 25 +++++++++ src/Icon19mpTwoTone.tsx | 33 +++++++++++ src/Icon1kOutlined.tsx | 27 +++++++++ src/Icon1kPlusOutlined.tsx | 27 +++++++++ src/Icon1kPlusRound.tsx | 21 +++++++ src/Icon1kPlusSharp.tsx | 21 +++++++ src/Icon1kPlusTwoTone.tsx | 29 ++++++++++ src/Icon1kRound.tsx | 21 +++++++ src/Icon1kSharp.tsx | 21 +++++++ src/Icon1kTwoTone.tsx | 29 ++++++++++ src/Icon1xMobiledataOutlined.tsx | 23 ++++++++ src/Icon1xMobiledataRound.tsx | 23 ++++++++ src/Icon1xMobiledataSharp.tsx | 23 ++++++++ src/Icon1xMobiledataTwoTone.tsx | 23 ++++++++ src/Icon20mpOutlined.tsx | 27 +++++++++ src/Icon20mpRound.tsx | 25 +++++++++ src/Icon20mpSharp.tsx | 25 +++++++++ src/Icon20mpTwoTone.tsx | 33 +++++++++++ src/Icon21mpOutlined.tsx | 27 +++++++++ src/Icon21mpRound.tsx | 24 ++++++++ src/Icon21mpSharp.tsx | 24 ++++++++ src/Icon21mpTwoTone.tsx | 32 +++++++++++ src/Icon22mpOutlined.tsx | 27 +++++++++ src/Icon22mpRound.tsx | 24 ++++++++ src/Icon22mpSharp.tsx | 24 ++++++++ src/Icon22mpTwoTone.tsx | 32 +++++++++++ src/Icon23mpOutlined.tsx | 27 +++++++++ src/Icon23mpRound.tsx | 24 ++++++++ src/Icon23mpSharp.tsx | 24 ++++++++ src/Icon23mpTwoTone.tsx | 32 +++++++++++ src/Icon24mpOutlined.tsx | 27 +++++++++ src/Icon24mpRound.tsx | 24 ++++++++ src/Icon24mpSharp.tsx | 24 ++++++++ src/Icon24mpTwoTone.tsx | 32 +++++++++++ src/Icon2kOutlined.tsx | 27 +++++++++ src/Icon2kPlusOutlined.tsx | 27 +++++++++ src/Icon2kPlusRound.tsx | 21 +++++++ src/Icon2kPlusSharp.tsx | 21 +++++++ src/Icon2kPlusTwoTone.tsx | 29 ++++++++++ src/Icon2kRound.tsx | 21 +++++++ src/Icon2kSharp.tsx | 21 +++++++ src/Icon2kTwoTone.tsx | 29 ++++++++++ src/Icon2mpOutlined.tsx | 26 +++++++++ src/Icon2mpRound.tsx | 24 ++++++++ src/Icon2mpSharp.tsx | 24 ++++++++ src/Icon2mpTwoTone.tsx | 31 ++++++++++ src/Icon30fpsOutlined.tsx | 23 ++++++++ src/Icon30fpsRound.tsx | 23 ++++++++ src/Icon30fpsSelectOutlined.tsx | 23 ++++++++ src/Icon30fpsSelectRound.tsx | 23 ++++++++ src/Icon30fpsSelectSharp.tsx | 23 ++++++++ src/Icon30fpsSelectTwoTone.tsx | 23 ++++++++ src/Icon30fpsSharp.tsx | 23 ++++++++ src/Icon30fpsTwoTone.tsx | 23 ++++++++ src/Icon360Outlined.tsx | 12 ++++ src/Icon360Round.tsx | 12 ++++ src/Icon360Sharp.tsx | 12 ++++ src/Icon360TwoTone.tsx | 12 ++++ src/Icon3dRotationOutlined.tsx | 12 ++++ src/Icon3dRotationRound.tsx | 12 ++++ src/Icon3dRotationSharp.tsx | 12 ++++ src/Icon3dRotationTwoTone.tsx | 12 ++++ src/Icon3gMobiledataOutlined.tsx | 23 ++++++++ src/Icon3gMobiledataRound.tsx | 23 ++++++++ src/Icon3gMobiledataSharp.tsx | 23 ++++++++ src/Icon3gMobiledataTwoTone.tsx | 23 ++++++++ src/Icon3kOutlined.tsx | 27 +++++++++ src/Icon3kPlusOutlined.tsx | 27 +++++++++ src/Icon3kPlusRound.tsx | 21 +++++++ src/Icon3kPlusSharp.tsx | 21 +++++++ src/Icon3kPlusTwoTone.tsx | 29 ++++++++++ src/Icon3kRound.tsx | 21 +++++++ src/Icon3kSharp.tsx | 21 +++++++ src/Icon3kTwoTone.tsx | 29 ++++++++++ src/Icon3mpOutlined.tsx | 26 +++++++++ src/Icon3mpRound.tsx | 24 ++++++++ src/Icon3mpSharp.tsx | 24 ++++++++ src/Icon3mpTwoTone.tsx | 31 ++++++++++ src/Icon3pOutlined.tsx | 21 +++++++ src/Icon3pRound.tsx | 21 +++++++ src/Icon3pSharp.tsx | 21 +++++++ src/Icon3pTwoTone.tsx | 25 +++++++++ src/Icon4gMobiledataOutlined.tsx | 23 ++++++++ src/Icon4gMobiledataRound.tsx | 23 ++++++++ src/Icon4gMobiledataSharp.tsx | 23 ++++++++ src/Icon4gMobiledataTwoTone.tsx | 23 ++++++++ src/Icon4gPlusMobiledataOutlined.tsx | 23 ++++++++ src/Icon4gPlusMobiledataRound.tsx | 25 +++++++++ src/Icon4gPlusMobiledataSharp.tsx | 23 ++++++++ src/Icon4gPlusMobiledataTwoTone.tsx | 23 ++++++++ src/Icon4kOutlined.tsx | 12 ++++ src/Icon4kPlusOutlined.tsx | 27 +++++++++ src/Icon4kPlusRound.tsx | 21 +++++++ src/Icon4kPlusSharp.tsx | 21 +++++++ src/Icon4kPlusTwoTone.tsx | 30 ++++++++++ src/Icon4kRound.tsx | 11 ++++ src/Icon4kSharp.tsx | 12 ++++ src/Icon4kTwoTone.tsx | 16 ++++++ src/Icon4mpOutlined.tsx | 26 +++++++++ src/Icon4mpRound.tsx | 24 ++++++++ src/Icon4mpSharp.tsx | 24 ++++++++ src/Icon4mpTwoTone.tsx | 31 ++++++++++ src/Icon5gOutlined.tsx | 24 ++++++++ src/Icon5gRound.tsx | 25 +++++++++ src/Icon5gSharp.tsx | 24 ++++++++ src/Icon5gTwoTone.tsx | 24 ++++++++ src/Icon5kOutlined.tsx | 27 +++++++++ src/Icon5kPlusOutlined.tsx | 27 +++++++++ src/Icon5kPlusRound.tsx | 21 +++++++ src/Icon5kPlusSharp.tsx | 21 +++++++ src/Icon5kPlusTwoTone.tsx | 30 ++++++++++ src/Icon5kRound.tsx | 21 +++++++ src/Icon5kSharp.tsx | 21 +++++++ src/Icon5kTwoTone.tsx | 30 ++++++++++ src/Icon5mpOutlined.tsx | 26 +++++++++ src/Icon5mpRound.tsx | 24 ++++++++ src/Icon5mpSharp.tsx | 24 ++++++++ src/Icon5mpTwoTone.tsx | 31 ++++++++++ src/Icon60fpsOutlined.tsx | 23 ++++++++ src/Icon60fpsRound.tsx | 23 ++++++++ src/Icon60fpsSelectOutlined.tsx | 23 ++++++++ src/Icon60fpsSelectRound.tsx | 23 ++++++++ src/Icon60fpsSelectSharp.tsx | 23 ++++++++ src/Icon60fpsSelectTwoTone.tsx | 23 ++++++++ src/Icon60fpsSharp.tsx | 23 ++++++++ src/Icon60fpsTwoTone.tsx | 23 ++++++++ src/Icon6FtApartOutlined.tsx | 17 ++++++ src/Icon6FtApartRound.tsx | 17 ++++++ src/Icon6FtApartSharp.tsx | 17 ++++++ src/Icon6FtApartTwoTone.tsx | 17 ++++++ src/Icon6kOutlined.tsx | 27 +++++++++ src/Icon6kPlusOutlined.tsx | 27 +++++++++ src/Icon6kPlusRound.tsx | 21 +++++++ src/Icon6kPlusSharp.tsx | 21 +++++++ src/Icon6kPlusTwoTone.tsx | 30 ++++++++++ src/Icon6kRound.tsx | 21 +++++++ src/Icon6kSharp.tsx | 21 +++++++ src/Icon6kTwoTone.tsx | 38 +++++++++++++ src/Icon6mpOutlined.tsx | 26 +++++++++ src/Icon6mpRound.tsx | 25 +++++++++ src/Icon6mpSharp.tsx | 25 +++++++++ src/Icon6mpTwoTone.tsx | 32 +++++++++++ src/Icon7kOutlined.tsx | 27 +++++++++ src/Icon7kPlusOutlined.tsx | 27 +++++++++ src/Icon7kPlusRound.tsx | 21 +++++++ src/Icon7kPlusSharp.tsx | 21 +++++++ src/Icon7kPlusTwoTone.tsx | 29 ++++++++++ src/Icon7kRound.tsx | 21 +++++++ src/Icon7kSharp.tsx | 21 +++++++ src/Icon7kTwoTone.tsx | 29 ++++++++++ src/Icon7mpOutlined.tsx | 26 +++++++++ src/Icon7mpRound.tsx | 24 ++++++++ src/Icon7mpSharp.tsx | 24 ++++++++ src/Icon7mpTwoTone.tsx | 31 ++++++++++ src/Icon8kOutlined.tsx | 27 +++++++++ src/Icon8kPlusOutlined.tsx | 27 +++++++++ src/Icon8kPlusRound.tsx | 25 +++++++++ src/Icon8kPlusSharp.tsx | 21 +++++++ src/Icon8kPlusTwoTone.tsx | 31 ++++++++++ src/Icon8kRound.tsx | 21 +++++++ src/Icon8kSharp.tsx | 21 +++++++ src/Icon8kTwoTone.tsx | 31 ++++++++++ src/Icon8mpOutlined.tsx | 26 +++++++++ src/Icon8mpRound.tsx | 26 +++++++++ src/Icon8mpSharp.tsx | 26 +++++++++ src/Icon8mpTwoTone.tsx | 33 +++++++++++ src/Icon9kOutlined.tsx | 27 +++++++++ src/Icon9kPlusOutlined.tsx | 27 +++++++++ src/Icon9kPlusRound.tsx | 21 +++++++ src/Icon9kPlusSharp.tsx | 21 +++++++ src/Icon9kPlusTwoTone.tsx | 30 ++++++++++ src/Icon9kRound.tsx | 21 +++++++ src/Icon9kSharp.tsx | 21 +++++++ src/Icon9kTwoTone.tsx | 30 ++++++++++ src/Icon9mpOutlined.tsx | 26 +++++++++ src/Icon9mpRound.tsx | 25 +++++++++ src/Icon9mpSharp.tsx | 25 +++++++++ src/Icon9mpTwoTone.tsx | 32 +++++++++++ src/IconAbcOutlined.tsx | 21 +++++++ src/IconAbcRound.tsx | 22 ++++++++ src/IconAbcSharp.tsx | 21 +++++++ src/IconAbcTwoTone.tsx | 21 +++++++ src/IconAcUnitOutlined.tsx | 12 ++++ src/IconAcUnitRound.tsx | 12 ++++ src/IconAcUnitSharp.tsx | 12 ++++ src/IconAcUnitTwoTone.tsx | 12 ++++ src/IconAccessAlarmOutlined.tsx | 12 ++++ src/IconAccessAlarmRound.tsx | 12 ++++ src/IconAccessAlarmSharp.tsx | 12 ++++ src/IconAccessAlarmTwoTone.tsx | 16 ++++++ src/IconAccessAlarmsOutlined.tsx | 12 ++++ src/IconAccessAlarmsRound.tsx | 12 ++++ src/IconAccessAlarmsSharp.tsx | 12 ++++ src/IconAccessAlarmsTwoTone.tsx | 16 ++++++ src/IconAccessTimeFilledOutlined.tsx | 21 +++++++ src/IconAccessTimeFilledRound.tsx | 21 +++++++ src/IconAccessTimeFilledSharp.tsx | 21 +++++++ src/IconAccessTimeFilledTwoTone.tsx | 21 +++++++ src/IconAccessTimeOutlined.tsx | 12 ++++ src/IconAccessTimeRound.tsx | 12 ++++ src/IconAccessTimeSharp.tsx | 12 ++++ src/IconAccessTimeTwoTone.tsx | 16 ++++++ src/IconAccessibilityNewOutlined.tsx | 12 ++++ src/IconAccessibilityNewRound.tsx | 12 ++++ src/IconAccessibilityNewSharp.tsx | 12 ++++ src/IconAccessibilityNewTwoTone.tsx | 12 ++++ src/IconAccessibilityOutlined.tsx | 12 ++++ src/IconAccessibilityRound.tsx | 12 ++++ src/IconAccessibilitySharp.tsx | 12 ++++ src/IconAccessibilityTwoTone.tsx | 12 ++++ src/IconAccessibleForwardOutlined.tsx | 13 +++++ src/IconAccessibleForwardRound.tsx | 13 +++++ src/IconAccessibleForwardSharp.tsx | 13 +++++ src/IconAccessibleForwardTwoTone.tsx | 13 +++++ src/IconAccessibleOutlined.tsx | 13 +++++ src/IconAccessibleRound.tsx | 13 +++++ src/IconAccessibleSharp.tsx | 13 +++++ src/IconAccessibleTwoTone.tsx | 13 +++++ src/IconAccountBalanceOutlined.tsx | 12 ++++ src/IconAccountBalanceRound.tsx | 12 ++++ src/IconAccountBalanceSharp.tsx | 12 ++++ src/IconAccountBalanceTwoTone.tsx | 13 +++++ src/IconAccountBalanceWalletOutlined.tsx | 15 +++++ src/IconAccountBalanceWalletRound.tsx | 12 ++++ src/IconAccountBalanceWalletSharp.tsx | 12 ++++ src/IconAccountBalanceWalletTwoTone.tsx | 17 ++++++ src/IconAccountBoxOutlined.tsx | 21 +++++++ src/IconAccountBoxRound.tsx | 22 ++++++++ src/IconAccountBoxSharp.tsx | 21 +++++++ src/IconAccountBoxTwoTone.tsx | 29 ++++++++++ src/IconAccountCircleOutlined.tsx | 24 ++++++++ src/IconAccountCircleRound.tsx | 22 ++++++++ src/IconAccountCircleSharp.tsx | 21 +++++++ src/IconAccountCircleTwoTone.tsx | 29 ++++++++++ src/IconAccountTreeOutlined.tsx | 17 ++++++ src/IconAccountTreeRound.tsx | 17 ++++++ src/IconAccountTreeSharp.tsx | 19 +++++++ src/IconAccountTreeTwoTone.tsx | 22 ++++++++ src/IconAdUnitsOutlined.tsx | 26 +++++++++ src/IconAdUnitsRound.tsx | 22 ++++++++ src/IconAdUnitsSharp.tsx | 22 ++++++++ src/IconAdUnitsTwoTone.tsx | 28 ++++++++++ src/IconAdbOutlined.tsx | 12 ++++ src/IconAdbRound.tsx | 12 ++++ src/IconAdbSharp.tsx | 12 ++++ src/IconAdbTwoTone.tsx | 12 ++++ src/IconAddAPhotoOutlined.tsx | 12 ++++ src/IconAddAPhotoRound.tsx | 14 +++++ src/IconAddAPhotoSharp.tsx | 12 ++++ src/IconAddAPhotoTwoTone.tsx | 16 ++++++ src/IconAddAlarmOutlined.tsx | 12 ++++ src/IconAddAlarmRound.tsx | 12 ++++ src/IconAddAlarmSharp.tsx | 12 ++++ src/IconAddAlarmTwoTone.tsx | 16 ++++++ src/IconAddAlertOutlined.tsx | 11 ++++ src/IconAddAlertRound.tsx | 28 ++++++++++ src/IconAddAlertSharp.tsx | 11 ++++ src/IconAddAlertTwoTone.tsx | 15 +++++ src/IconAddBoxOutlined.tsx | 12 ++++ src/IconAddBoxRound.tsx | 12 ++++ src/IconAddBoxSharp.tsx | 12 ++++ src/IconAddBoxTwoTone.tsx | 13 +++++ src/IconAddBusinessOutlined.tsx | 25 +++++++++ src/IconAddBusinessRound.tsx | 26 +++++++++ src/IconAddBusinessSharp.tsx | 25 +++++++++ src/IconAddBusinessTwoTone.tsx | 26 +++++++++ src/IconAddCardOutlined.tsx | 21 +++++++ src/IconAddCardRound.tsx | 22 ++++++++ src/IconAddCardSharp.tsx | 21 +++++++ src/IconAddCardTwoTone.tsx | 21 +++++++ src/IconAddChartOutlined.tsx | 19 +++++++ src/IconAddChartRound.tsx | 19 +++++++ src/IconAddChartSharp.tsx | 20 +++++++ src/IconAddChartTwoTone.tsx | 19 +++++++ src/IconAddCircleOutlineOutlined.tsx | 12 ++++ src/IconAddCircleOutlineRound.tsx | 12 ++++ src/IconAddCircleOutlineSharp.tsx | 12 ++++ src/IconAddCircleOutlineTwoTone.tsx | 12 ++++ src/IconAddCircleOutlined.tsx | 12 ++++ src/IconAddCircleRound.tsx | 12 ++++ src/IconAddCircleSharp.tsx | 12 ++++ src/IconAddCircleTwoTone.tsx | 16 ++++++ src/IconAddCommentOutlined.tsx | 12 ++++ src/IconAddCommentRound.tsx | 12 ++++ src/IconAddCommentSharp.tsx | 11 ++++ src/IconAddCommentTwoTone.tsx | 16 ++++++ src/IconAddHomeOutlined.tsx | 28 ++++++++++ src/IconAddHomeRound.tsx | 29 ++++++++++ src/IconAddHomeSharp.tsx | 28 ++++++++++ src/IconAddHomeTwoTone.tsx | 29 ++++++++++ src/IconAddHomeWorkOutlined.tsx | 28 ++++++++++ src/IconAddHomeWorkRound.tsx | 28 ++++++++++ src/IconAddHomeWorkSharp.tsx | 27 +++++++++ src/IconAddHomeWorkTwoTone.tsx | 36 ++++++++++++ src/IconAddIcCallOutlined.tsx | 12 ++++ src/IconAddIcCallRound.tsx | 12 ++++ src/IconAddIcCallSharp.tsx | 12 ++++ src/IconAddIcCallTwoTone.tsx | 16 ++++++ src/IconAddLinkOutlined.tsx | 21 +++++++ src/IconAddLinkRound.tsx | 21 +++++++ src/IconAddLinkSharp.tsx | 21 +++++++ src/IconAddLinkTwoTone.tsx | 21 +++++++ src/IconAddLocationAltOutlined.tsx | 12 ++++ src/IconAddLocationAltRound.tsx | 21 +++++++ src/IconAddLocationAltSharp.tsx | 12 ++++ src/IconAddLocationAltTwoTone.tsx | 21 +++++++ src/IconAddLocationOutlined.tsx | 27 +++++++++ src/IconAddLocationRound.tsx | 25 +++++++++ src/IconAddLocationSharp.tsx | 22 ++++++++ src/IconAddLocationTwoTone.tsx | 26 +++++++++ src/IconAddModeratorOutlined.tsx | 24 ++++++++ src/IconAddModeratorRound.tsx | 24 ++++++++ src/IconAddModeratorSharp.tsx | 24 ++++++++ src/IconAddModeratorTwoTone.tsx | 30 ++++++++++ src/IconAddOutlined.tsx | 12 ++++ src/IconAddPhotoAlternateOutlined.tsx | 12 ++++ src/IconAddPhotoAlternateRound.tsx | 12 ++++ src/IconAddPhotoAlternateSharp.tsx | 12 ++++ src/IconAddPhotoAlternateTwoTone.tsx | 17 ++++++ src/IconAddReactionOutlined.tsx | 17 ++++++ src/IconAddReactionRound.tsx | 17 ++++++ src/IconAddReactionSharp.tsx | 17 ++++++ src/IconAddReactionTwoTone.tsx | 21 +++++++ src/IconAddRoadOutlined.tsx | 28 ++++++++++ src/IconAddRoadRound.tsx | 29 ++++++++++ src/IconAddRoadSharp.tsx | 28 ++++++++++ src/IconAddRoadTwoTone.tsx | 28 ++++++++++ src/IconAddRound.tsx | 12 ++++ src/IconAddSharp.tsx | 12 ++++ src/IconAddShoppingCartOutlined.tsx | 12 ++++ src/IconAddShoppingCartRound.tsx | 17 ++++++ src/IconAddShoppingCartSharp.tsx | 12 ++++ src/IconAddShoppingCartTwoTone.tsx | 12 ++++ src/IconAddTaskOutlined.tsx | 17 ++++++ src/IconAddTaskRound.tsx | 17 ++++++ src/IconAddTaskSharp.tsx | 17 ++++++ src/IconAddTaskTwoTone.tsx | 17 ++++++ src/IconAddToDriveOutlined.tsx | 26 +++++++++ src/IconAddToDriveRound.tsx | 26 +++++++++ src/IconAddToDriveSharp.tsx | 26 +++++++++ src/IconAddToDriveTwoTone.tsx | 26 +++++++++ src/IconAddToHomeScreenOutlined.tsx | 12 ++++ src/IconAddToHomeScreenRound.tsx | 12 ++++ src/IconAddToHomeScreenSharp.tsx | 12 ++++ src/IconAddToHomeScreenTwoTone.tsx | 12 ++++ src/IconAddToPhotosOutlined.tsx | 12 ++++ src/IconAddToPhotosRound.tsx | 12 ++++ src/IconAddToPhotosSharp.tsx | 12 ++++ src/IconAddToPhotosTwoTone.tsx | 13 +++++ src/IconAddToQueueOutlined.tsx | 12 ++++ src/IconAddToQueueRound.tsx | 11 ++++ src/IconAddToQueueSharp.tsx | 12 ++++ src/IconAddToQueueTwoTone.tsx | 13 +++++ src/IconAddTwoTone.tsx | 12 ++++ src/IconAdfScannerOutlined.tsx | 24 ++++++++ src/IconAdfScannerRound.tsx | 22 ++++++++ src/IconAdfScannerSharp.tsx | 21 +++++++ src/IconAdfScannerTwoTone.tsx | 29 ++++++++++ src/IconAdjustOutlined.tsx | 12 ++++ src/IconAdjustRound.tsx | 12 ++++ src/IconAdjustSharp.tsx | 12 ++++ src/IconAdjustTwoTone.tsx | 12 ++++ src/IconAdminPanelSettingsOutlined.tsx | 31 ++++++++++ src/IconAdminPanelSettingsRound.tsx | 25 +++++++++ src/IconAdminPanelSettingsSharp.tsx | 24 ++++++++ src/IconAdminPanelSettingsTwoTone.tsx | 33 +++++++++++ src/IconAdsClickOutlined.tsx | 17 ++++++ src/IconAdsClickRound.tsx | 17 ++++++ src/IconAdsClickSharp.tsx | 17 ++++++ src/IconAdsClickTwoTone.tsx | 17 ++++++ src/IconAgricultureOutlined.tsx | 24 ++++++++ src/IconAgricultureRound.tsx | 27 +++++++++ src/IconAgricultureSharp.tsx | 26 +++++++++ src/IconAgricultureTwoTone.tsx | 30 ++++++++++ src/IconAirOutlined.tsx | 23 ++++++++ src/IconAirRound.tsx | 23 ++++++++ src/IconAirSharp.tsx | 23 ++++++++ src/IconAirTwoTone.tsx | 23 ++++++++ src/IconAirlineSeatFlatAngledOutlined.tsx | 14 +++++ src/IconAirlineSeatFlatAngledRound.tsx | 12 ++++ src/IconAirlineSeatFlatAngledSharp.tsx | 12 ++++ src/IconAirlineSeatFlatAngledTwoTone.tsx | 18 ++++++ src/IconAirlineSeatFlatOutlined.tsx | 12 ++++ src/IconAirlineSeatFlatRound.tsx | 12 ++++ src/IconAirlineSeatFlatSharp.tsx | 12 ++++ src/IconAirlineSeatFlatTwoTone.tsx | 16 ++++++ ...IconAirlineSeatIndividualSuiteOutlined.tsx | 14 +++++ src/IconAirlineSeatIndividualSuiteRound.tsx | 14 +++++ src/IconAirlineSeatIndividualSuiteSharp.tsx | 14 +++++ src/IconAirlineSeatIndividualSuiteTwoTone.tsx | 16 ++++++ src/IconAirlineSeatLegroomExtraOutlined.tsx | 14 +++++ src/IconAirlineSeatLegroomExtraRound.tsx | 14 +++++ src/IconAirlineSeatLegroomExtraSharp.tsx | 14 +++++ src/IconAirlineSeatLegroomExtraTwoTone.tsx | 14 +++++ src/IconAirlineSeatLegroomNormalOutlined.tsx | 14 +++++ src/IconAirlineSeatLegroomNormalRound.tsx | 14 +++++ src/IconAirlineSeatLegroomNormalSharp.tsx | 14 +++++ src/IconAirlineSeatLegroomNormalTwoTone.tsx | 14 +++++ src/IconAirlineSeatLegroomReducedOutlined.tsx | 14 +++++ src/IconAirlineSeatLegroomReducedRound.tsx | 14 +++++ src/IconAirlineSeatLegroomReducedSharp.tsx | 14 +++++ src/IconAirlineSeatLegroomReducedTwoTone.tsx | 14 +++++ src/IconAirlineSeatReclineExtraOutlined.tsx | 14 +++++ src/IconAirlineSeatReclineExtraRound.tsx | 14 +++++ src/IconAirlineSeatReclineExtraSharp.tsx | 14 +++++ src/IconAirlineSeatReclineExtraTwoTone.tsx | 14 +++++ src/IconAirlineSeatReclineNormalOutlined.tsx | 14 +++++ src/IconAirlineSeatReclineNormalRound.tsx | 14 +++++ src/IconAirlineSeatReclineNormalSharp.tsx | 14 +++++ src/IconAirlineSeatReclineNormalTwoTone.tsx | 14 +++++ src/IconAirlineStopsOutlined.tsx | 17 ++++++ src/IconAirlineStopsRound.tsx | 17 ++++++ src/IconAirlineStopsSharp.tsx | 17 ++++++ src/IconAirlineStopsTwoTone.tsx | 17 ++++++ src/IconAirlinesOutlined.tsx | 17 ++++++ src/IconAirlinesRound.tsx | 17 ++++++ src/IconAirlinesSharp.tsx | 17 ++++++ src/IconAirlinesTwoTone.tsx | 21 +++++++ src/IconAirplaneTicketOutlined.tsx | 23 ++++++++ src/IconAirplaneTicketRound.tsx | 21 +++++++ src/IconAirplaneTicketSharp.tsx | 21 +++++++ src/IconAirplaneTicketTwoTone.tsx | 28 ++++++++++ src/IconAirplanemodeActiveOutlined.tsx | 19 +++++++ src/IconAirplanemodeActiveRound.tsx | 19 +++++++ src/IconAirplanemodeActiveSharp.tsx | 19 +++++++ src/IconAirplanemodeActiveTwoTone.tsx | 19 +++++++ src/IconAirplanemodeInactiveOutlined.tsx | 21 +++++++ src/IconAirplanemodeInactiveRound.tsx | 19 +++++++ src/IconAirplanemodeInactiveSharp.tsx | 19 +++++++ src/IconAirplanemodeInactiveTwoTone.tsx | 19 +++++++ src/IconAirplayOutlined.tsx | 27 +++++++++ src/IconAirplayRound.tsx | 11 ++++ src/IconAirplaySharp.tsx | 23 ++++++++ src/IconAirplayTwoTone.tsx | 27 +++++++++ src/IconAirportShuttleOutlined.tsx | 12 ++++ src/IconAirportShuttleRound.tsx | 12 ++++ src/IconAirportShuttleSharp.tsx | 12 ++++ src/IconAirportShuttleTwoTone.tsx | 16 ++++++ src/IconAlarmAddOutlined.tsx | 12 ++++ src/IconAlarmAddRound.tsx | 12 ++++ src/IconAlarmAddSharp.tsx | 12 ++++ src/IconAlarmAddTwoTone.tsx | 16 ++++++ src/IconAlarmOffOutlined.tsx | 12 ++++ src/IconAlarmOffRound.tsx | 12 ++++ src/IconAlarmOffSharp.tsx | 12 ++++ src/IconAlarmOffTwoTone.tsx | 12 ++++ src/IconAlarmOnOutlined.tsx | 12 ++++ src/IconAlarmOnRound.tsx | 12 ++++ src/IconAlarmOnSharp.tsx | 12 ++++ src/IconAlarmOnTwoTone.tsx | 16 ++++++ src/IconAlarmOutlined.tsx | 12 ++++ src/IconAlarmRound.tsx | 12 ++++ src/IconAlarmSharp.tsx | 12 ++++ src/IconAlarmTwoTone.tsx | 16 ++++++ src/IconAlbumOutlined.tsx | 12 ++++ src/IconAlbumRound.tsx | 11 ++++ src/IconAlbumSharp.tsx | 12 ++++ src/IconAlbumTwoTone.tsx | 16 ++++++ src/IconAlignHorizontalCenterOutlined.tsx | 19 +++++++ src/IconAlignHorizontalCenterRound.tsx | 17 ++++++ src/IconAlignHorizontalCenterSharp.tsx | 17 ++++++ src/IconAlignHorizontalCenterTwoTone.tsx | 19 +++++++ src/IconAlignHorizontalLeftOutlined.tsx | 17 ++++++ src/IconAlignHorizontalLeftRound.tsx | 17 ++++++ src/IconAlignHorizontalLeftSharp.tsx | 17 ++++++ src/IconAlignHorizontalLeftTwoTone.tsx | 17 ++++++ src/IconAlignHorizontalRightOutlined.tsx | 19 +++++++ src/IconAlignHorizontalRightRound.tsx | 17 ++++++ src/IconAlignHorizontalRightSharp.tsx | 17 ++++++ src/IconAlignHorizontalRightTwoTone.tsx | 17 ++++++ src/IconAlignVerticalBottomOutlined.tsx | 17 ++++++ src/IconAlignVerticalBottomRound.tsx | 17 ++++++ src/IconAlignVerticalBottomSharp.tsx | 17 ++++++ src/IconAlignVerticalBottomTwoTone.tsx | 17 ++++++ src/IconAlignVerticalCenterOutlined.tsx | 17 ++++++ src/IconAlignVerticalCenterRound.tsx | 17 ++++++ src/IconAlignVerticalCenterSharp.tsx | 17 ++++++ src/IconAlignVerticalCenterTwoTone.tsx | 17 ++++++ src/IconAlignVerticalTopOutlined.tsx | 17 ++++++ src/IconAlignVerticalTopRound.tsx | 17 ++++++ src/IconAlignVerticalTopSharp.tsx | 17 ++++++ src/IconAlignVerticalTopTwoTone.tsx | 17 ++++++ src/IconAllInboxOutlined.tsx | 12 ++++ src/IconAllInboxRound.tsx | 12 ++++ src/IconAllInboxSharp.tsx | 12 ++++ src/IconAllInboxTwoTone.tsx | 16 ++++++ src/IconAllInclusiveOutlined.tsx | 12 ++++ src/IconAllInclusiveRound.tsx | 12 ++++ src/IconAllInclusiveSharp.tsx | 12 ++++ src/IconAllInclusiveTwoTone.tsx | 12 ++++ src/IconAllOutOutlined.tsx | 12 ++++ src/IconAllOutRound.tsx | 12 ++++ src/IconAllOutSharp.tsx | 12 ++++ src/IconAllOutTwoTone.tsx | 13 +++++ src/IconAltRouteOutlined.tsx | 19 +++++++ src/IconAltRouteRound.tsx | 19 +++++++ src/IconAltRouteSharp.tsx | 19 +++++++ src/IconAltRouteTwoTone.tsx | 19 +++++++ src/IconAlternateEmailOutlined.tsx | 12 ++++ src/IconAlternateEmailRound.tsx | 12 ++++ src/IconAlternateEmailSharp.tsx | 12 ++++ src/IconAlternateEmailTwoTone.tsx | 15 +++++ src/IconAnalyticsOutlined.tsx | 25 +++++++++ src/IconAnalyticsRound.tsx | 19 +++++++ src/IconAnalyticsSharp.tsx | 20 +++++++ src/IconAnalyticsTwoTone.tsx | 28 ++++++++++ src/IconAnchorOutlined.tsx | 19 +++++++ src/IconAnchorRound.tsx | 19 +++++++ src/IconAnchorSharp.tsx | 19 +++++++ src/IconAnchorTwoTone.tsx | 19 +++++++ src/IconAndroidOutlined.tsx | 23 ++++++++ src/IconAndroidRound.tsx | 23 ++++++++ src/IconAndroidSharp.tsx | 23 ++++++++ src/IconAndroidTwoTone.tsx | 23 ++++++++ src/IconAnimationOutlined.tsx | 23 ++++++++ src/IconAnimationRound.tsx | 23 ++++++++ src/IconAnimationSharp.tsx | 23 ++++++++ src/IconAnimationTwoTone.tsx | 39 +++++++++++++ src/IconAnnouncementOutlined.tsx | 12 ++++ src/IconAnnouncementRound.tsx | 12 ++++ src/IconAnnouncementSharp.tsx | 12 ++++ src/IconAnnouncementTwoTone.tsx | 16 ++++++ src/IconAodOutlined.tsx | 23 ++++++++ src/IconAodRound.tsx | 23 ++++++++ src/IconAodSharp.tsx | 23 ++++++++ src/IconAodTwoTone.tsx | 26 +++++++++ src/IconApartmentOutlined.tsx | 21 +++++++ src/IconApartmentRound.tsx | 22 ++++++++ src/IconApartmentSharp.tsx | 21 +++++++ src/IconApartmentTwoTone.tsx | 21 +++++++ src/IconApiOutlined.tsx | 19 +++++++ src/IconApiRound.tsx | 19 +++++++ src/IconApiSharp.tsx | 19 +++++++ src/IconApiTwoTone.tsx | 19 +++++++ src/IconAppBlockingOutlined.tsx | 22 ++++++++ src/IconAppBlockingRound.tsx | 22 ++++++++ src/IconAppBlockingSharp.tsx | 22 ++++++++ src/IconAppBlockingTwoTone.tsx | 26 +++++++++ src/IconAppRegistrationOutlined.tsx | 30 ++++++++++ src/IconAppRegistrationRound.tsx | 30 ++++++++++ src/IconAppRegistrationSharp.tsx | 36 ++++++++++++ src/IconAppRegistrationTwoTone.tsx | 30 ++++++++++ src/IconAppSettingsAltOutlined.tsx | 21 +++++++ src/IconAppSettingsAltRound.tsx | 21 +++++++ src/IconAppSettingsAltSharp.tsx | 19 +++++++ src/IconAppSettingsAltTwoTone.tsx | 25 +++++++++ src/IconAppShortcutOutlined.tsx | 26 +++++++++ src/IconAppShortcutRound.tsx | 27 +++++++++ src/IconAppShortcutSharp.tsx | 26 +++++++++ src/IconAppShortcutTwoTone.tsx | 28 ++++++++++ src/IconApprovalOutlined.tsx | 23 ++++++++ src/IconApprovalRound.tsx | 23 ++++++++ src/IconApprovalSharp.tsx | 23 ++++++++ src/IconApprovalTwoTone.tsx | 29 ++++++++++ src/IconAppsOutageOutlined.tsx | 17 ++++++ src/IconAppsOutageRound.tsx | 17 ++++++ src/IconAppsOutageSharp.tsx | 17 ++++++ src/IconAppsOutageTwoTone.tsx | 17 ++++++ src/IconAppsOutlined.tsx | 12 ++++ src/IconAppsRound.tsx | 12 ++++ src/IconAppsSharp.tsx | 12 ++++ src/IconAppsTwoTone.tsx | 12 ++++ src/IconArchitectureOutlined.tsx | 25 +++++++++ src/IconArchitectureRound.tsx | 26 +++++++++ src/IconArchitectureSharp.tsx | 25 +++++++++ src/IconArchitectureTwoTone.tsx | 25 +++++++++ src/IconArchiveOutlined.tsx | 12 ++++ src/IconArchiveRound.tsx | 12 ++++ src/IconArchiveSharp.tsx | 12 ++++ src/IconArchiveTwoTone.tsx | 16 ++++++ src/IconAreaChartOutlined.tsx | 17 ++++++ src/IconAreaChartRound.tsx | 17 ++++++ src/IconAreaChartSharp.tsx | 17 ++++++ src/IconAreaChartTwoTone.tsx | 21 +++++++ src/IconArrowBackIosNewOutlined.tsx | 19 +++++++ src/IconArrowBackIosNewRound.tsx | 19 +++++++ src/IconArrowBackIosNewSharp.tsx | 19 +++++++ src/IconArrowBackIosNewTwoTone.tsx | 19 +++++++ src/IconArrowBackIosOutlined.tsx | 12 ++++ src/IconArrowBackIosRound.tsx | 12 ++++ src/IconArrowBackIosSharp.tsx | 12 ++++ src/IconArrowBackIosTwoTone.tsx | 12 ++++ src/IconArrowBackOutlined.tsx | 12 ++++ src/IconArrowBackRound.tsx | 12 ++++ src/IconArrowBackSharp.tsx | 12 ++++ src/IconArrowBackTwoTone.tsx | 12 ++++ src/IconArrowCircleDownOutlined.tsx | 19 +++++++ src/IconArrowCircleDownRound.tsx | 19 +++++++ src/IconArrowCircleDownSharp.tsx | 19 +++++++ src/IconArrowCircleDownTwoTone.tsx | 23 ++++++++ src/IconArrowCircleLeftOutlined.tsx | 21 +++++++ src/IconArrowCircleLeftRound.tsx | 22 ++++++++ src/IconArrowCircleLeftSharp.tsx | 21 +++++++ src/IconArrowCircleLeftTwoTone.tsx | 27 +++++++++ src/IconArrowCircleRightOutlined.tsx | 21 +++++++ src/IconArrowCircleRightRound.tsx | 22 ++++++++ src/IconArrowCircleRightSharp.tsx | 21 +++++++ src/IconArrowCircleRightTwoTone.tsx | 27 +++++++++ src/IconArrowCircleUpOutlined.tsx | 19 +++++++ src/IconArrowCircleUpRound.tsx | 19 +++++++ src/IconArrowCircleUpSharp.tsx | 19 +++++++ src/IconArrowCircleUpTwoTone.tsx | 23 ++++++++ src/IconArrowDownwardOutlined.tsx | 12 ++++ src/IconArrowDownwardRound.tsx | 12 ++++ src/IconArrowDownwardSharp.tsx | 12 ++++ src/IconArrowDownwardTwoTone.tsx | 12 ++++ src/IconArrowDropDownCircleOutlined.tsx | 12 ++++ src/IconArrowDropDownCircleRound.tsx | 12 ++++ src/IconArrowDropDownCircleSharp.tsx | 12 ++++ src/IconArrowDropDownCircleTwoTone.tsx | 16 ++++++ src/IconArrowDropDownOutlined.tsx | 12 ++++ src/IconArrowDropDownRound.tsx | 12 ++++ src/IconArrowDropDownSharp.tsx | 12 ++++ src/IconArrowDropDownTwoTone.tsx | 12 ++++ src/IconArrowDropUpOutlined.tsx | 12 ++++ src/IconArrowDropUpRound.tsx | 12 ++++ src/IconArrowDropUpSharp.tsx | 12 ++++ src/IconArrowDropUpTwoTone.tsx | 12 ++++ src/IconArrowForwardIosOutlined.tsx | 21 +++++++ src/IconArrowForwardIosRound.tsx | 12 ++++ src/IconArrowForwardIosSharp.tsx | 21 +++++++ src/IconArrowForwardIosTwoTone.tsx | 21 +++++++ src/IconArrowForwardOutlined.tsx | 12 ++++ src/IconArrowForwardRound.tsx | 12 ++++ src/IconArrowForwardSharp.tsx | 12 ++++ src/IconArrowForwardTwoTone.tsx | 12 ++++ src/IconArrowLeftOutlined.tsx | 12 ++++ src/IconArrowLeftRound.tsx | 12 ++++ src/IconArrowLeftSharp.tsx | 12 ++++ src/IconArrowLeftTwoTone.tsx | 12 ++++ src/IconArrowOutwardOutlined.tsx | 21 +++++++ src/IconArrowOutwardRound.tsx | 22 ++++++++ src/IconArrowOutwardSharp.tsx | 21 +++++++ src/IconArrowOutwardTwoTone.tsx | 21 +++++++ src/IconArrowRightAltOutlined.tsx | 12 ++++ src/IconArrowRightAltRound.tsx | 12 ++++ src/IconArrowRightAltSharp.tsx | 12 ++++ src/IconArrowRightAltTwoTone.tsx | 12 ++++ src/IconArrowRightOutlined.tsx | 12 ++++ src/IconArrowRightRound.tsx | 12 ++++ src/IconArrowRightSharp.tsx | 12 ++++ src/IconArrowRightTwoTone.tsx | 12 ++++ src/IconArrowUpwardOutlined.tsx | 12 ++++ src/IconArrowUpwardRound.tsx | 12 ++++ src/IconArrowUpwardSharp.tsx | 12 ++++ src/IconArrowUpwardTwoTone.tsx | 12 ++++ src/IconArtTrackOutlined.tsx | 12 ++++ src/IconArtTrackRound.tsx | 11 ++++ src/IconArtTrackSharp.tsx | 12 ++++ src/IconArtTrackTwoTone.tsx | 12 ++++ src/IconArticleOutlined.tsx | 22 ++++++++ src/IconArticleRound.tsx | 19 +++++++ src/IconArticleSharp.tsx | 19 +++++++ src/IconArticleTwoTone.tsx | 23 ++++++++ src/IconAspectRatioOutlined.tsx | 12 ++++ src/IconAspectRatioRound.tsx | 12 ++++ src/IconAspectRatioSharp.tsx | 12 ++++ src/IconAspectRatioTwoTone.tsx | 16 ++++++ src/IconAssessmentOutlined.tsx | 12 ++++ src/IconAssessmentRound.tsx | 12 ++++ src/IconAssessmentSharp.tsx | 12 ++++ src/IconAssessmentTwoTone.tsx | 16 ++++++ src/IconAssignmentIndOutlined.tsx | 12 ++++ src/IconAssignmentIndRound.tsx | 12 ++++ src/IconAssignmentIndSharp.tsx | 12 ++++ src/IconAssignmentIndTwoTone.tsx | 16 ++++++ src/IconAssignmentLateOutlined.tsx | 12 ++++ src/IconAssignmentLateRound.tsx | 23 ++++++++ src/IconAssignmentLateSharp.tsx | 12 ++++ src/IconAssignmentLateTwoTone.tsx | 13 +++++ src/IconAssignmentOutlined.tsx | 12 ++++ src/IconAssignmentReturnOutlined.tsx | 12 ++++ src/IconAssignmentReturnRound.tsx | 12 ++++ src/IconAssignmentReturnSharp.tsx | 12 ++++ src/IconAssignmentReturnTwoTone.tsx | 13 +++++ src/IconAssignmentReturnedOutlined.tsx | 12 ++++ src/IconAssignmentReturnedRound.tsx | 12 ++++ src/IconAssignmentReturnedSharp.tsx | 12 ++++ src/IconAssignmentReturnedTwoTone.tsx | 13 +++++ src/IconAssignmentRound.tsx | 12 ++++ src/IconAssignmentSharp.tsx | 12 ++++ src/IconAssignmentTurnedInOutlined.tsx | 12 ++++ src/IconAssignmentTurnedInRound.tsx | 12 ++++ src/IconAssignmentTurnedInSharp.tsx | 12 ++++ src/IconAssignmentTurnedInTwoTone.tsx | 16 ++++++ src/IconAssignmentTwoTone.tsx | 16 ++++++ src/IconAssistWalkerOutlined.tsx | 24 ++++++++ src/IconAssistWalkerRound.tsx | 25 +++++++++ src/IconAssistWalkerSharp.tsx | 24 ++++++++ src/IconAssistWalkerTwoTone.tsx | 24 ++++++++ src/IconAssistantDirectionOutlined.tsx | 24 ++++++++ src/IconAssistantDirectionRound.tsx | 23 ++++++++ src/IconAssistantDirectionSharp.tsx | 23 ++++++++ src/IconAssistantDirectionTwoTone.tsx | 28 ++++++++++ src/IconAssistantOutlined.tsx | 12 ++++ src/IconAssistantPhotoOutlined.tsx | 12 ++++ src/IconAssistantPhotoRound.tsx | 12 ++++ src/IconAssistantPhotoSharp.tsx | 12 ++++ src/IconAssistantPhotoTwoTone.tsx | 13 +++++ src/IconAssistantRound.tsx | 12 ++++ src/IconAssistantSharp.tsx | 12 ++++ src/IconAssistantTwoTone.tsx | 16 ++++++ src/IconAssuredWorkloadOutlined.tsx | 28 ++++++++++ src/IconAssuredWorkloadRound.tsx | 29 ++++++++++ src/IconAssuredWorkloadSharp.tsx | 28 ++++++++++ src/IconAssuredWorkloadTwoTone.tsx | 29 ++++++++++ src/IconAtmOutlined.tsx | 12 ++++ src/IconAtmRound.tsx | 12 ++++ src/IconAtmSharp.tsx | 12 ++++ src/IconAtmTwoTone.tsx | 12 ++++ src/IconAttachEmailOutlined.tsx | 24 ++++++++ src/IconAttachEmailRound.tsx | 28 ++++++++++ src/IconAttachEmailSharp.tsx | 24 ++++++++ src/IconAttachEmailTwoTone.tsx | 24 ++++++++ src/IconAttachFileOutlined.tsx | 12 ++++ src/IconAttachFileRound.tsx | 12 ++++ src/IconAttachFileSharp.tsx | 11 ++++ src/IconAttachFileTwoTone.tsx | 12 ++++ src/IconAttachMoneyOutlined.tsx | 12 ++++ src/IconAttachMoneyRound.tsx | 12 ++++ src/IconAttachMoneySharp.tsx | 11 ++++ src/IconAttachMoneyTwoTone.tsx | 12 ++++ src/IconAttachmentOutlined.tsx | 12 ++++ src/IconAttachmentRound.tsx | 12 ++++ src/IconAttachmentSharp.tsx | 12 ++++ src/IconAttachmentTwoTone.tsx | 12 ++++ src/IconAttractionsOutlined.tsx | 25 +++++++++ src/IconAttractionsRound.tsx | 23 ++++++++ src/IconAttractionsSharp.tsx | 23 ++++++++ src/IconAttractionsTwoTone.tsx | 24 ++++++++ src/IconAttributionOutlined.tsx | 13 +++++ src/IconAttributionRound.tsx | 13 +++++ src/IconAttributionSharp.tsx | 13 +++++ src/IconAttributionTwoTone.tsx | 17 ++++++ src/IconAudioFileOutlined.tsx | 21 +++++++ src/IconAudioFileRound.tsx | 22 ++++++++ src/IconAudioFileSharp.tsx | 21 +++++++ src/IconAudioFileTwoTone.tsx | 28 ++++++++++ src/IconAudiotrackOutlined.tsx | 12 ++++ src/IconAudiotrackRound.tsx | 12 ++++ src/IconAudiotrackSharp.tsx | 12 ++++ src/IconAudiotrackTwoTone.tsx | 13 +++++ src/IconAutoAwesomeMosaicOutlined.tsx | 25 +++++++++ src/IconAutoAwesomeMosaicRound.tsx | 23 ++++++++ src/IconAutoAwesomeMosaicSharp.tsx | 23 ++++++++ src/IconAutoAwesomeMosaicTwoTone.tsx | 28 ++++++++++ src/IconAutoAwesomeMotionOutlined.tsx | 23 ++++++++ src/IconAutoAwesomeMotionRound.tsx | 23 ++++++++ src/IconAutoAwesomeMotionSharp.tsx | 23 ++++++++ src/IconAutoAwesomeMotionTwoTone.tsx | 26 +++++++++ src/IconAutoAwesomeOutlined.tsx | 25 +++++++++ src/IconAutoAwesomeRound.tsx | 23 ++++++++ src/IconAutoAwesomeSharp.tsx | 23 ++++++++ src/IconAutoAwesomeTwoTone.tsx | 29 ++++++++++ src/IconAutoDeleteOutlined.tsx | 25 +++++++++ src/IconAutoDeleteRound.tsx | 26 +++++++++ src/IconAutoDeleteSharp.tsx | 25 +++++++++ src/IconAutoDeleteTwoTone.tsx | 29 ++++++++++ src/IconAutoFixHighOutlined.tsx | 26 +++++++++ src/IconAutoFixHighRound.tsx | 26 +++++++++ src/IconAutoFixHighSharp.tsx | 26 +++++++++ src/IconAutoFixHighTwoTone.tsx | 34 +++++++++++ src/IconAutoFixNormalOutlined.tsx | 24 ++++++++ src/IconAutoFixNormalRound.tsx | 24 ++++++++ src/IconAutoFixNormalSharp.tsx | 24 ++++++++ src/IconAutoFixNormalTwoTone.tsx | 32 +++++++++++ src/IconAutoFixOffOutlined.tsx | 25 +++++++++ src/IconAutoFixOffRound.tsx | 25 +++++++++ src/IconAutoFixOffSharp.tsx | 25 +++++++++ src/IconAutoFixOffTwoTone.tsx | 33 +++++++++++ src/IconAutoGraphOutlined.tsx | 19 +++++++ src/IconAutoGraphRound.tsx | 19 +++++++ src/IconAutoGraphSharp.tsx | 19 +++++++ src/IconAutoGraphTwoTone.tsx | 19 +++++++ src/IconAutoModeOutlined.tsx | 28 ++++++++++ src/IconAutoModeRound.tsx | 29 ++++++++++ src/IconAutoModeSharp.tsx | 28 ++++++++++ src/IconAutoModeTwoTone.tsx | 28 ++++++++++ src/IconAutoStoriesOutlined.tsx | 21 +++++++ src/IconAutoStoriesRound.tsx | 21 +++++++ src/IconAutoStoriesSharp.tsx | 22 ++++++++ src/IconAutoStoriesTwoTone.tsx | 28 ++++++++++ src/IconAutofpsSelectOutlined.tsx | 28 ++++++++++ src/IconAutofpsSelectRound.tsx | 28 ++++++++++ src/IconAutofpsSelectSharp.tsx | 28 ++++++++++ src/IconAutofpsSelectTwoTone.tsx | 28 ++++++++++ src/IconAutorenewOutlined.tsx | 12 ++++ src/IconAutorenewRound.tsx | 12 ++++ src/IconAutorenewSharp.tsx | 12 ++++ src/IconAutorenewTwoTone.tsx | 12 ++++ src/IconAvTimerOutlined.tsx | 12 ++++ src/IconAvTimerRound.tsx | 14 +++++ src/IconAvTimerSharp.tsx | 12 ++++ src/IconAvTimerTwoTone.tsx | 15 +++++ src/IconBabyChangingStationOutlined.tsx | 19 +++++++ src/IconBabyChangingStationRound.tsx | 19 +++++++ src/IconBabyChangingStationSharp.tsx | 19 +++++++ src/IconBabyChangingStationTwoTone.tsx | 19 +++++++ src/IconBackHandOutlined.tsx | 17 ++++++ src/IconBackHandRound.tsx | 17 ++++++ src/IconBackHandSharp.tsx | 17 ++++++ src/IconBackHandTwoTone.tsx | 21 +++++++ src/IconBackpackOutlined.tsx | 19 +++++++ src/IconBackpackRound.tsx | 23 ++++++++ src/IconBackpackSharp.tsx | 23 ++++++++ src/IconBackpackTwoTone.tsx | 23 ++++++++ src/IconBackspaceOutlined.tsx | 12 ++++ src/IconBackspaceRound.tsx | 12 ++++ src/IconBackspaceSharp.tsx | 12 ++++ src/IconBackspaceTwoTone.tsx | 16 ++++++ src/IconBackupOutlined.tsx | 12 ++++ src/IconBackupRound.tsx | 21 +++++++ src/IconBackupSharp.tsx | 12 ++++ src/IconBackupTableOutlined.tsx | 24 ++++++++ src/IconBackupTableRound.tsx | 29 ++++++++++ src/IconBackupTableSharp.tsx | 24 ++++++++ src/IconBackupTableTwoTone.tsx | 27 +++++++++ src/IconBackupTwoTone.tsx | 16 ++++++ src/IconBadgeOutlined.tsx | 27 +++++++++ src/IconBadgeRound.tsx | 21 +++++++ src/IconBadgeSharp.tsx | 21 +++++++ src/IconBadgeTwoTone.tsx | 27 +++++++++ src/IconBakeryDiningOutlined.tsx | 23 ++++++++ src/IconBakeryDiningRound.tsx | 37 ++++++++++++ src/IconBakeryDiningSharp.tsx | 37 ++++++++++++ src/IconBakeryDiningTwoTone.tsx | 43 ++++++++++++++ src/IconBalanceOutlined.tsx | 21 +++++++ src/IconBalanceRound.tsx | 21 +++++++ src/IconBalanceSharp.tsx | 21 +++++++ src/IconBalanceTwoTone.tsx | 22 ++++++++ src/IconBalconyOutlined.tsx | 17 ++++++ src/IconBalconyRound.tsx | 17 ++++++ src/IconBalconySharp.tsx | 17 ++++++ src/IconBalconyTwoTone.tsx | 21 +++++++ src/IconBallotOutlined.tsx | 12 ++++ src/IconBallotRound.tsx | 12 ++++ src/IconBallotSharp.tsx | 12 ++++ src/IconBallotTwoTone.tsx | 16 ++++++ src/IconBarChart.tsx | 19 ++++++- src/IconBarChartOutlined.tsx | 25 +++++++++ src/IconBarChartRound.tsx | 26 +++++++++ src/IconBarChartSharp.tsx | 25 +++++++++ src/IconBarChartTwoTone.tsx | 25 +++++++++ src/IconBatchPredictionOutlined.tsx | 19 +++++++ src/IconBatchPredictionRound.tsx | 19 +++++++ src/IconBatchPredictionSharp.tsx | 19 +++++++ src/IconBatchPredictionTwoTone.tsx | 23 ++++++++ src/IconBathroomOutlined.tsx | 21 +++++++ src/IconBathroomRound.tsx | 21 +++++++ src/IconBathroomSharp.tsx | 21 +++++++ src/IconBathroomTwoTone.tsx | 34 +++++++++++ src/IconBathtubOutlined.tsx | 24 ++++++++ src/IconBathtubRound.tsx | 29 ++++++++++ src/IconBathtubSharp.tsx | 28 ++++++++++ src/IconBathtubTwoTone.tsx | 25 +++++++++ src/IconBattery0BarOutlined.tsx | 21 +++++++ src/IconBattery0BarRound.tsx | 22 ++++++++ src/IconBattery0BarSharp.tsx | 21 +++++++ src/IconBattery0BarTwoTone.tsx | 22 ++++++++ src/IconBattery1BarOutlined.tsx | 21 +++++++ src/IconBattery1BarRound.tsx | 22 ++++++++ src/IconBattery1BarSharp.tsx | 21 +++++++ src/IconBattery1BarTwoTone.tsx | 22 ++++++++ src/IconBattery2BarOutlined.tsx | 21 +++++++ src/IconBattery2BarRound.tsx | 22 ++++++++ src/IconBattery2BarSharp.tsx | 21 +++++++ src/IconBattery2BarTwoTone.tsx | 22 ++++++++ src/IconBattery3BarOutlined.tsx | 21 +++++++ src/IconBattery3BarRound.tsx | 22 ++++++++ src/IconBattery3BarSharp.tsx | 21 +++++++ src/IconBattery3BarTwoTone.tsx | 22 ++++++++ src/IconBattery4BarOutlined.tsx | 21 +++++++ src/IconBattery4BarRound.tsx | 22 ++++++++ src/IconBattery4BarSharp.tsx | 21 +++++++ src/IconBattery4BarTwoTone.tsx | 22 ++++++++ src/IconBattery5BarOutlined.tsx | 21 +++++++ src/IconBattery5BarRound.tsx | 22 ++++++++ src/IconBattery5BarSharp.tsx | 21 +++++++ src/IconBattery5BarTwoTone.tsx | 22 ++++++++ src/IconBattery6BarOutlined.tsx | 21 +++++++ src/IconBattery6BarRound.tsx | 22 ++++++++ src/IconBattery6BarSharp.tsx | 21 +++++++ src/IconBattery6BarTwoTone.tsx | 22 ++++++++ src/IconBatteryAlertOutlined.tsx | 12 ++++ src/IconBatteryAlertRound.tsx | 12 ++++ src/IconBatteryAlertSharp.tsx | 12 ++++ src/IconBatteryAlertTwoTone.tsx | 12 ++++ src/IconBatteryChargingFullOutlined.tsx | 12 ++++ src/IconBatteryChargingFullRound.tsx | 12 ++++ src/IconBatteryChargingFullSharp.tsx | 12 ++++ src/IconBatteryChargingFullTwoTone.tsx | 12 ++++ src/IconBatteryFullOutlined.tsx | 12 ++++ src/IconBatteryFullRound.tsx | 12 ++++ src/IconBatteryFullSharp.tsx | 12 ++++ src/IconBatteryFullTwoTone.tsx | 12 ++++ src/IconBatterySaverOutlined.tsx | 23 ++++++++ src/IconBatterySaverRound.tsx | 23 ++++++++ src/IconBatterySaverSharp.tsx | 23 ++++++++ src/IconBatterySaverTwoTone.tsx | 23 ++++++++ src/IconBatteryStdOutlined.tsx | 12 ++++ src/IconBatteryStdRound.tsx | 12 ++++ src/IconBatteryStdSharp.tsx | 12 ++++ src/IconBatteryStdTwoTone.tsx | 12 ++++ src/IconBatteryUnknownOutlined.tsx | 12 ++++ src/IconBatteryUnknownRound.tsx | 12 ++++ src/IconBatteryUnknownSharp.tsx | 12 ++++ src/IconBatteryUnknownTwoTone.tsx | 12 ++++ src/IconBeachAccessOutlined.tsx | 12 ++++ src/IconBeachAccessRound.tsx | 12 ++++ src/IconBeachAccessSharp.tsx | 12 ++++ src/IconBeachAccessTwoTone.tsx | 16 ++++++ src/IconBed.tsx | 4 +- src/IconBedOutlined.tsx | 21 +++++++ src/IconBedRound.tsx | 21 +++++++ src/IconBedSharp.tsx | 21 +++++++ src/IconBedTwoTone.tsx | 27 +++++++++ src/IconBedroomBabyOutlined.tsx | 21 +++++++ src/IconBedroomBabyRound.tsx | 24 ++++++++ src/IconBedroomBabySharp.tsx | 24 ++++++++ src/IconBedroomBabyTwoTone.tsx | 32 +++++++++++ src/IconBedroomChildOutlined.tsx | 21 +++++++ src/IconBedroomChildRound.tsx | 25 +++++++++ src/IconBedroomChildSharp.tsx | 25 +++++++++ src/IconBedroomChildTwoTone.tsx | 26 +++++++++ src/IconBedroomParentOutlined.tsx | 21 +++++++ src/IconBedroomParentRound.tsx | 26 +++++++++ src/IconBedroomParentSharp.tsx | 26 +++++++++ src/IconBedroomParentTwoTone.tsx | 28 ++++++++++ src/IconBedtime.tsx | 2 +- src/IconBedtimeOff.tsx | 4 +- src/IconBedtimeOffOutlined.tsx | 23 ++++++++ src/IconBedtimeOffRound.tsx | 24 ++++++++ src/IconBedtimeOffSharp.tsx | 28 ++++++++++ src/IconBedtimeOffTwoTone.tsx | 29 ++++++++++ src/IconBedtimeOutlined.tsx | 21 +++++++ src/IconBedtimeRound.tsx | 24 ++++++++ src/IconBedtimeSharp.tsx | 23 ++++++++ src/IconBedtimeTwoTone.tsx | 26 +++++++++ src/IconBeenhereOutlined.tsx | 12 ++++ src/IconBeenhereRound.tsx | 12 ++++ src/IconBeenhereSharp.tsx | 12 ++++ src/IconBeenhereTwoTone.tsx | 16 ++++++ src/IconBentoOutlined.tsx | 19 +++++++ src/IconBentoRound.tsx | 19 +++++++ src/IconBentoSharp.tsx | 19 +++++++ src/IconBentoTwoTone.tsx | 22 ++++++++ src/IconBikeScooterOutlined.tsx | 25 +++++++++ src/IconBikeScooterRound.tsx | 26 +++++++++ src/IconBikeScooterSharp.tsx | 25 +++++++++ src/IconBikeScooterTwoTone.tsx | 25 +++++++++ src/IconBiotechOutlined.tsx | 21 +++++++ src/IconBiotechRound.tsx | 26 +++++++++ src/IconBiotechSharp.tsx | 25 +++++++++ src/IconBiotechTwoTone.tsx | 32 +++++++++++ src/IconBlenderOutlined.tsx | 24 ++++++++ src/IconBlenderRound.tsx | 23 ++++++++ src/IconBlenderSharp.tsx | 23 ++++++++ src/IconBlenderTwoTone.tsx | 28 ++++++++++ src/IconBlindOutlined.tsx | 24 ++++++++ src/IconBlindRound.tsx | 25 +++++++++ src/IconBlindSharp.tsx | 24 ++++++++ src/IconBlindTwoTone.tsx | 24 ++++++++ src/IconBlindsClosedOutlined.tsx | 21 +++++++ src/IconBlindsClosedRound.tsx | 22 ++++++++ src/IconBlindsClosedSharp.tsx | 21 +++++++ src/IconBlindsClosedTwoTone.tsx | 31 ++++++++++ src/IconBlindsOutlined.tsx | 21 +++++++ src/IconBlindsRound.tsx | 22 ++++++++ src/IconBlindsSharp.tsx | 21 +++++++ src/IconBlindsTwoTone.tsx | 27 +++++++++ src/IconBlockOutlined.tsx | 12 ++++ src/IconBlockRound.tsx | 12 ++++ src/IconBlockSharp.tsx | 12 ++++ src/IconBlockTwoTone.tsx | 12 ++++ src/IconBloodtypeOutlined.tsx | 25 +++++++++ src/IconBloodtypeRound.tsx | 21 +++++++ src/IconBloodtypeSharp.tsx | 21 +++++++ src/IconBloodtypeTwoTone.tsx | 29 ++++++++++ src/IconBluetoothAudioOutlined.tsx | 12 ++++ src/IconBluetoothAudioRound.tsx | 12 ++++ src/IconBluetoothAudioSharp.tsx | 12 ++++ src/IconBluetoothAudioTwoTone.tsx | 12 ++++ src/IconBluetoothConnectedOutlined.tsx | 12 ++++ src/IconBluetoothConnectedRound.tsx | 12 ++++ src/IconBluetoothConnectedSharp.tsx | 12 ++++ src/IconBluetoothConnectedTwoTone.tsx | 12 ++++ src/IconBluetoothDisabledOutlined.tsx | 12 ++++ src/IconBluetoothDisabledRound.tsx | 12 ++++ src/IconBluetoothDisabledSharp.tsx | 12 ++++ src/IconBluetoothDisabledTwoTone.tsx | 12 ++++ src/IconBluetoothDriveOutlined.tsx | 26 +++++++++ src/IconBluetoothDriveRound.tsx | 24 ++++++++ src/IconBluetoothDriveSharp.tsx | 24 ++++++++ src/IconBluetoothDriveTwoTone.tsx | 32 +++++++++++ src/IconBluetoothOutlined.tsx | 12 ++++ src/IconBluetoothRound.tsx | 12 ++++ src/IconBluetoothSearchingOutlined.tsx | 12 ++++ src/IconBluetoothSearchingRound.tsx | 12 ++++ src/IconBluetoothSearchingSharp.tsx | 12 ++++ src/IconBluetoothSearchingTwoTone.tsx | 12 ++++ src/IconBluetoothSharp.tsx | 12 ++++ src/IconBluetoothTwoTone.tsx | 12 ++++ src/IconBlurCircularOutlined.tsx | 12 ++++ src/IconBlurCircularRound.tsx | 12 ++++ src/IconBlurCircularSharp.tsx | 12 ++++ src/IconBlurCircularTwoTone.tsx | 19 +++++++ src/IconBlurLinearOutlined.tsx | 12 ++++ src/IconBlurLinearRound.tsx | 12 ++++ src/IconBlurLinearSharp.tsx | 12 ++++ src/IconBlurLinearTwoTone.tsx | 25 +++++++++ src/IconBlurOffOutlined.tsx | 24 ++++++++ src/IconBlurOffRound.tsx | 24 ++++++++ src/IconBlurOffSharp.tsx | 24 ++++++++ src/IconBlurOffTwoTone.tsx | 24 ++++++++ src/IconBlurOnOutlined.tsx | 12 ++++ src/IconBlurOnRound.tsx | 12 ++++ src/IconBlurOnSharp.tsx | 12 ++++ src/IconBlurOnTwoTone.tsx | 32 +++++++++++ src/IconBoltOutlined.tsx | 21 +++++++ src/IconBoltRound.tsx | 21 +++++++ src/IconBoltSharp.tsx | 21 +++++++ src/IconBoltTwoTone.tsx | 21 +++++++ src/IconBookOnlineOutlined.tsx | 17 ++++++ src/IconBookOnlineRound.tsx | 17 ++++++ src/IconBookOnlineSharp.tsx | 19 +++++++ src/IconBookOnlineTwoTone.tsx | 18 ++++++ src/IconBookOutlined.tsx | 12 ++++ src/IconBookRound.tsx | 12 ++++ src/IconBookSharp.tsx | 12 ++++ src/IconBookTwoTone.tsx | 13 +++++ src/IconBookmarkAddOutlined.tsx | 17 ++++++ src/IconBookmarkAddRound.tsx | 17 ++++++ src/IconBookmarkAddSharp.tsx | 17 ++++++ src/IconBookmarkAddTwoTone.tsx | 21 +++++++ src/IconBookmarkAddedOutlined.tsx | 17 ++++++ src/IconBookmarkAddedRound.tsx | 17 ++++++ src/IconBookmarkAddedSharp.tsx | 17 ++++++ src/IconBookmarkAddedTwoTone.tsx | 21 +++++++ src/IconBookmarkBorderOutlined.tsx | 12 ++++ src/IconBookmarkBorderRound.tsx | 12 ++++ src/IconBookmarkBorderSharp.tsx | 12 ++++ src/IconBookmarkBorderTwoTone.tsx | 12 ++++ src/IconBookmarkOutlined.tsx | 12 ++++ src/IconBookmarkRemoveOutlined.tsx | 17 ++++++ src/IconBookmarkRemoveRound.tsx | 17 ++++++ src/IconBookmarkRemoveSharp.tsx | 17 ++++++ src/IconBookmarkRemoveTwoTone.tsx | 21 +++++++ src/IconBookmarkRound.tsx | 12 ++++ src/IconBookmarkSharp.tsx | 12 ++++ src/IconBookmarkTwoTone.tsx | 13 +++++ src/IconBookmarksOutlined.tsx | 12 ++++ src/IconBookmarksRound.tsx | 12 ++++ src/IconBookmarksSharp.tsx | 12 ++++ src/IconBookmarksTwoTone.tsx | 13 +++++ src/IconBorderAllOutlined.tsx | 12 ++++ src/IconBorderAllRound.tsx | 12 ++++ src/IconBorderAllSharp.tsx | 11 ++++ src/IconBorderAllTwoTone.tsx | 12 ++++ src/IconBorderBottomOutlined.tsx | 12 ++++ src/IconBorderBottomRound.tsx | 12 ++++ src/IconBorderBottomSharp.tsx | 11 ++++ src/IconBorderBottomTwoTone.tsx | 12 ++++ src/IconBorderClearOutlined.tsx | 12 ++++ src/IconBorderClearRound.tsx | 12 ++++ src/IconBorderClearSharp.tsx | 11 ++++ src/IconBorderClearTwoTone.tsx | 12 ++++ src/IconBorderColorOutlined.tsx | 25 +++++++++ src/IconBorderColorRound.tsx | 24 ++++++++ src/IconBorderColorSharp.tsx | 24 ++++++++ src/IconBorderColorTwoTone.tsx | 25 +++++++++ src/IconBorderHorizontalOutlined.tsx | 12 ++++ src/IconBorderHorizontalRound.tsx | 12 ++++ src/IconBorderHorizontalSharp.tsx | 11 ++++ src/IconBorderHorizontalTwoTone.tsx | 12 ++++ src/IconBorderInnerOutlined.tsx | 12 ++++ src/IconBorderInnerRound.tsx | 12 ++++ src/IconBorderInnerSharp.tsx | 11 ++++ src/IconBorderInnerTwoTone.tsx | 12 ++++ src/IconBorderLeftOutlined.tsx | 12 ++++ src/IconBorderLeftRound.tsx | 12 ++++ src/IconBorderLeftSharp.tsx | 11 ++++ src/IconBorderLeftTwoTone.tsx | 12 ++++ src/IconBorderOuterOutlined.tsx | 12 ++++ src/IconBorderOuterRound.tsx | 12 ++++ src/IconBorderOuterSharp.tsx | 11 ++++ src/IconBorderOuterTwoTone.tsx | 12 ++++ src/IconBorderRightOutlined.tsx | 12 ++++ src/IconBorderRightRound.tsx | 12 ++++ src/IconBorderRightSharp.tsx | 11 ++++ src/IconBorderRightTwoTone.tsx | 12 ++++ src/IconBorderStyleOutlined.tsx | 12 ++++ src/IconBorderStyleRound.tsx | 12 ++++ src/IconBorderStyleSharp.tsx | 11 ++++ src/IconBorderStyleTwoTone.tsx | 12 ++++ src/IconBorderTopOutlined.tsx | 12 ++++ src/IconBorderTopRound.tsx | 12 ++++ src/IconBorderTopSharp.tsx | 11 ++++ src/IconBorderTopTwoTone.tsx | 12 ++++ src/IconBorderVerticalOutlined.tsx | 12 ++++ src/IconBorderVerticalRound.tsx | 12 ++++ src/IconBorderVerticalSharp.tsx | 11 ++++ src/IconBorderVerticalTwoTone.tsx | 12 ++++ src/IconBoyOutlined.tsx | 23 ++++++++ src/IconBoyRound.tsx | 23 ++++++++ src/IconBoySharp.tsx | 23 ++++++++ src/IconBoyTwoTone.tsx | 23 ++++++++ src/IconBrandingWatermarkOutlined.tsx | 12 ++++ src/IconBrandingWatermarkRound.tsx | 11 ++++ src/IconBrandingWatermarkSharp.tsx | 12 ++++ src/IconBrandingWatermarkTwoTone.tsx | 13 +++++ src/IconBreakfastDiningOutlined.tsx | 24 ++++++++ src/IconBreakfastDiningRound.tsx | 21 +++++++ src/IconBreakfastDiningSharp.tsx | 21 +++++++ src/IconBreakfastDiningTwoTone.tsx | 28 ++++++++++ src/IconBrightness1Outlined.tsx | 12 ++++ src/IconBrightness1Round.tsx | 27 +++++++++ src/IconBrightness1Sharp.tsx | 12 ++++ src/IconBrightness1TwoTone.tsx | 16 ++++++ src/IconBrightness2Outlined.tsx | 12 ++++ src/IconBrightness2Round.tsx | 12 ++++ src/IconBrightness2Sharp.tsx | 12 ++++ src/IconBrightness2TwoTone.tsx | 16 ++++++ src/IconBrightness3Outlined.tsx | 12 ++++ src/IconBrightness3Round.tsx | 25 +++++++++ src/IconBrightness3Sharp.tsx | 12 ++++ src/IconBrightness3TwoTone.tsx | 16 ++++++ src/IconBrightness4Outlined.tsx | 12 ++++ src/IconBrightness4Round.tsx | 25 +++++++++ src/IconBrightness4Sharp.tsx | 12 ++++ src/IconBrightness4TwoTone.tsx | 16 ++++++ src/IconBrightness5Outlined.tsx | 12 ++++ src/IconBrightness5Round.tsx | 12 ++++ src/IconBrightness5Sharp.tsx | 12 ++++ src/IconBrightness5TwoTone.tsx | 16 ++++++ src/IconBrightness6Outlined.tsx | 12 ++++ src/IconBrightness6Round.tsx | 12 ++++ src/IconBrightness6Sharp.tsx | 12 ++++ src/IconBrightness6TwoTone.tsx | 16 ++++++ src/IconBrightness7Outlined.tsx | 13 +++++ src/IconBrightness7Round.tsx | 12 ++++ src/IconBrightness7Sharp.tsx | 12 ++++ src/IconBrightness7TwoTone.tsx | 17 ++++++ src/IconBrightnessAutoOutlined.tsx | 12 ++++ src/IconBrightnessAutoRound.tsx | 12 ++++ src/IconBrightnessAutoSharp.tsx | 12 ++++ src/IconBrightnessAutoTwoTone.tsx | 16 ++++++ src/IconBrightnessHighOutlined.tsx | 13 +++++ src/IconBrightnessHighRound.tsx | 12 ++++ src/IconBrightnessHighSharp.tsx | 12 ++++ src/IconBrightnessHighTwoTone.tsx | 17 ++++++ src/IconBrightnessLowOutlined.tsx | 12 ++++ src/IconBrightnessLowRound.tsx | 12 ++++ src/IconBrightnessLowSharp.tsx | 12 ++++ src/IconBrightnessLowTwoTone.tsx | 16 ++++++ src/IconBrightnessMediumOutlined.tsx | 12 ++++ src/IconBrightnessMediumRound.tsx | 12 ++++ src/IconBrightnessMediumSharp.tsx | 12 ++++ src/IconBrightnessMediumTwoTone.tsx | 16 ++++++ src/IconBroadcastOnHomeOutlined.tsx | 27 +++++++++ src/IconBroadcastOnHomeRound.tsx | 28 ++++++++++ src/IconBroadcastOnHomeSharp.tsx | 27 +++++++++ src/IconBroadcastOnHomeTwoTone.tsx | 28 ++++++++++ src/IconBroadcastOnPersonalOutlined.tsx | 26 +++++++++ src/IconBroadcastOnPersonalRound.tsx | 27 +++++++++ src/IconBroadcastOnPersonalSharp.tsx | 26 +++++++++ src/IconBroadcastOnPersonalTwoTone.tsx | 30 ++++++++++ src/IconBrokenImageOutlined.tsx | 12 ++++ src/IconBrokenImageRound.tsx | 12 ++++ src/IconBrokenImageSharp.tsx | 12 ++++ src/IconBrokenImageTwoTone.tsx | 16 ++++++ src/IconBrowseGalleryOutlined.tsx | 25 +++++++++ src/IconBrowseGalleryRound.tsx | 25 +++++++++ src/IconBrowseGallerySharp.tsx | 24 ++++++++ src/IconBrowseGalleryTwoTone.tsx | 29 ++++++++++ src/IconBrowserNotSupportedOutlined.tsx | 24 ++++++++ src/IconBrowserNotSupportedRound.tsx | 25 +++++++++ src/IconBrowserNotSupportedSharp.tsx | 24 ++++++++ src/IconBrowserNotSupportedTwoTone.tsx | 24 ++++++++ src/IconBrowserUpdatedOutlined.tsx | 17 ++++++ src/IconBrowserUpdatedRound.tsx | 17 ++++++ src/IconBrowserUpdatedSharp.tsx | 17 ++++++ src/IconBrowserUpdatedTwoTone.tsx | 17 ++++++ src/IconBrunchDiningOutlined.tsx | 25 +++++++++ src/IconBrunchDiningRound.tsx | 23 ++++++++ src/IconBrunchDiningSharp.tsx | 23 ++++++++ src/IconBrunchDiningTwoTone.tsx | 29 ++++++++++ src/IconBrushOutlined.tsx | 12 ++++ src/IconBrushRound.tsx | 12 ++++ src/IconBrushSharp.tsx | 12 ++++ src/IconBrushTwoTone.tsx | 16 ++++++ src/IconBubbleChartOutlined.tsx | 12 ++++ src/IconBubbleChartRound.tsx | 14 +++++ src/IconBubbleChartSharp.tsx | 13 +++++ src/IconBubbleChartTwoTone.tsx | 18 ++++++ src/IconBugReportOutlined.tsx | 12 ++++ src/IconBugReportRound.tsx | 12 ++++ src/IconBugReportSharp.tsx | 12 ++++ src/IconBugReportTwoTone.tsx | 16 ++++++ src/IconBuildCircleOutlined.tsx | 30 ++++++++++ src/IconBuildCircleRound.tsx | 27 +++++++++ src/IconBuildCircleSharp.tsx | 26 +++++++++ src/IconBuildCircleTwoTone.tsx | 28 ++++++++++ src/IconBuildOutlined.tsx | 12 ++++ src/IconBuildRound.tsx | 12 ++++ src/IconBuildSharp.tsx | 12 ++++ src/IconBuildTwoTone.tsx | 16 ++++++ src/IconBungalowOutlined.tsx | 17 ++++++ src/IconBungalowRound.tsx | 17 ++++++ src/IconBungalowSharp.tsx | 17 ++++++ src/IconBungalowTwoTone.tsx | 21 +++++++ src/IconBurstModeOutlined.tsx | 12 ++++ src/IconBurstModeRound.tsx | 12 ++++ src/IconBurstModeSharp.tsx | 12 ++++ src/IconBurstModeTwoTone.tsx | 16 ++++++ src/IconBusAlertOutlined.tsx | 34 +++++++++++ src/IconBusAlertRound.tsx | 28 ++++++++++ src/IconBusAlertSharp.tsx | 28 ++++++++++ src/IconBusAlertTwoTone.tsx | 34 +++++++++++ src/IconBusinessCenterOutlined.tsx | 12 ++++ src/IconBusinessCenterRound.tsx | 12 ++++ src/IconBusinessCenterSharp.tsx | 12 ++++ src/IconBusinessCenterTwoTone.tsx | 13 +++++ src/IconBusinessOutlined.tsx | 12 ++++ src/IconBusinessRound.tsx | 12 ++++ src/IconBusinessSharp.tsx | 12 ++++ src/IconBusinessTwoTone.tsx | 16 ++++++ src/IconCabinOutlined.tsx | 17 ++++++ src/IconCabinRound.tsx | 17 ++++++ src/IconCabinSharp.tsx | 17 ++++++ src/IconCabinTwoTone.tsx | 21 +++++++ src/IconCableOutlined.tsx | 23 ++++++++ src/IconCableRound.tsx | 23 ++++++++ src/IconCableSharp.tsx | 23 ++++++++ src/IconCableTwoTone.tsx | 23 ++++++++ src/IconCachedOutlined.tsx | 12 ++++ src/IconCachedRound.tsx | 12 ++++ src/IconCachedSharp.tsx | 12 ++++ src/IconCachedTwoTone.tsx | 12 ++++ src/IconCakeOutlined.tsx | 12 ++++ src/IconCakeRound.tsx | 12 ++++ src/IconCakeSharp.tsx | 12 ++++ src/IconCakeTwoTone.tsx | 16 ++++++ src/IconCalculateOutlined.tsx | 28 ++++++++++ src/IconCalculateRound.tsx | 22 ++++++++ src/IconCalculateSharp.tsx | 21 +++++++ src/IconCalculateTwoTone.tsx | 32 +++++++++++ src/IconCalendarMonthOutlined.tsx | 21 +++++++ src/IconCalendarMonthRound.tsx | 22 ++++++++ src/IconCalendarMonthSharp.tsx | 21 +++++++ src/IconCalendarMonthTwoTone.tsx | 22 ++++++++ src/IconCalendarTodayOutlined.tsx | 12 ++++ src/IconCalendarTodayRound.tsx | 12 ++++ src/IconCalendarTodaySharp.tsx | 12 ++++ src/IconCalendarTodayTwoTone.tsx | 13 +++++ src/IconCalendarViewDayOutlined.tsx | 12 ++++ src/IconCalendarViewDayRound.tsx | 17 ++++++ src/IconCalendarViewDaySharp.tsx | 12 ++++ src/IconCalendarViewDayTwoTone.tsx | 13 +++++ src/IconCalendarViewMonthOutlined.tsx | 21 +++++++ src/IconCalendarViewMonthRound.tsx | 21 +++++++ src/IconCalendarViewMonthSharp.tsx | 21 +++++++ src/IconCalendarViewMonthTwoTone.tsx | 29 ++++++++++ src/IconCalendarViewWeekOutlined.tsx | 21 +++++++ src/IconCalendarViewWeekRound.tsx | 21 +++++++ src/IconCalendarViewWeekSharp.tsx | 21 +++++++ src/IconCalendarViewWeekTwoTone.tsx | 27 +++++++++ src/IconCallEndOutlined.tsx | 12 ++++ src/IconCallEndRound.tsx | 12 ++++ src/IconCallEndSharp.tsx | 12 ++++ src/IconCallEndTwoTone.tsx | 16 ++++++ src/IconCallMadeOutlined.tsx | 12 ++++ src/IconCallMadeRound.tsx | 12 ++++ src/IconCallMadeSharp.tsx | 12 ++++ src/IconCallMadeTwoTone.tsx | 12 ++++ src/IconCallMergeOutlined.tsx | 12 ++++ src/IconCallMergeRound.tsx | 12 ++++ src/IconCallMergeSharp.tsx | 12 ++++ src/IconCallMergeTwoTone.tsx | 12 ++++ src/IconCallMissedOutgoingOutlined.tsx | 12 ++++ src/IconCallMissedOutgoingRound.tsx | 12 ++++ src/IconCallMissedOutgoingSharp.tsx | 12 ++++ src/IconCallMissedOutgoingTwoTone.tsx | 12 ++++ src/IconCallMissedOutlined.tsx | 12 ++++ src/IconCallMissedRound.tsx | 12 ++++ src/IconCallMissedSharp.tsx | 12 ++++ src/IconCallMissedTwoTone.tsx | 12 ++++ src/IconCallOutlined.tsx | 12 ++++ src/IconCallReceivedOutlined.tsx | 12 ++++ src/IconCallReceivedRound.tsx | 12 ++++ src/IconCallReceivedSharp.tsx | 12 ++++ src/IconCallReceivedTwoTone.tsx | 12 ++++ src/IconCallRound.tsx | 12 ++++ src/IconCallSharp.tsx | 12 ++++ src/IconCallSplitOutlined.tsx | 12 ++++ src/IconCallSplitRound.tsx | 12 ++++ src/IconCallSplitSharp.tsx | 12 ++++ src/IconCallSplitTwoTone.tsx | 12 ++++ src/IconCallToActionOutlined.tsx | 12 ++++ src/IconCallToActionRound.tsx | 11 ++++ src/IconCallToActionSharp.tsx | 12 ++++ src/IconCallToActionTwoTone.tsx | 13 +++++ src/IconCallTwoTone.tsx | 16 ++++++ src/IconCameraAltOutlined.tsx | 12 ++++ src/IconCameraAltRound.tsx | 13 +++++ src/IconCameraAltSharp.tsx | 13 +++++ src/IconCameraAltTwoTone.tsx | 16 ++++++ src/IconCameraEnhanceOutlined.tsx | 12 ++++ src/IconCameraEnhanceRound.tsx | 12 ++++ src/IconCameraEnhanceSharp.tsx | 12 ++++ src/IconCameraEnhanceTwoTone.tsx | 16 ++++++ src/IconCameraFrontOutlined.tsx | 12 ++++ src/IconCameraFrontRound.tsx | 12 ++++ src/IconCameraFrontSharp.tsx | 12 ++++ src/IconCameraFrontTwoTone.tsx | 13 +++++ src/IconCameraIndoorOutlined.tsx | 21 +++++++ src/IconCameraIndoorRound.tsx | 21 +++++++ src/IconCameraIndoorSharp.tsx | 21 +++++++ src/IconCameraIndoorTwoTone.tsx | 28 ++++++++++ src/IconCameraOutdoorOutlined.tsx | 21 +++++++ src/IconCameraOutdoorRound.tsx | 21 +++++++ src/IconCameraOutdoorSharp.tsx | 21 +++++++ src/IconCameraOutdoorTwoTone.tsx | 21 +++++++ src/IconCameraOutlined.tsx | 12 ++++ src/IconCameraRearOutlined.tsx | 12 ++++ src/IconCameraRearRound.tsx | 12 ++++ src/IconCameraRearSharp.tsx | 12 ++++ src/IconCameraRearTwoTone.tsx | 16 ++++++ src/IconCameraRollOutlined.tsx | 12 ++++ src/IconCameraRollRound.tsx | 12 ++++ src/IconCameraRollSharp.tsx | 12 ++++ src/IconCameraRollTwoTone.tsx | 16 ++++++ src/IconCameraRound.tsx | 12 ++++ src/IconCameraSharp.tsx | 12 ++++ src/IconCameraTwoTone.tsx | 16 ++++++ src/IconCameraswitchOutlined.tsx | 26 +++++++++ src/IconCameraswitchRound.tsx | 25 +++++++++ src/IconCameraswitchSharp.tsx | 25 +++++++++ src/IconCameraswitchTwoTone.tsx | 30 ++++++++++ src/IconCampaignOutlined.tsx | 23 ++++++++ src/IconCampaignRound.tsx | 23 ++++++++ src/IconCampaignSharp.tsx | 23 ++++++++ src/IconCampaignTwoTone.tsx | 27 +++++++++ src/IconCancelOutlined.tsx | 12 ++++ src/IconCancelPresentationOutlined.tsx | 12 ++++ src/IconCancelPresentationRound.tsx | 12 ++++ src/IconCancelPresentationSharp.tsx | 12 ++++ src/IconCancelPresentationTwoTone.tsx | 16 ++++++ src/IconCancelRound.tsx | 12 ++++ src/IconCancelScheduleSendOutlined.tsx | 24 ++++++++ src/IconCancelScheduleSendRound.tsx | 25 +++++++++ src/IconCancelScheduleSendSharp.tsx | 24 ++++++++ src/IconCancelScheduleSendTwoTone.tsx | 33 +++++++++++ src/IconCancelSharp.tsx | 12 ++++ src/IconCancelTwoTone.tsx | 16 ++++++ src/IconCandlestickChartOutlined.tsx | 24 ++++++++ src/IconCandlestickChartRound.tsx | 29 ++++++++++ src/IconCandlestickChartSharp.tsx | 28 ++++++++++ src/IconCandlestickChartTwoTone.tsx | 26 +++++++++ src/IconCarCrashOutlined.tsx | 23 ++++++++ src/IconCarCrashRound.tsx | 24 ++++++++ src/IconCarCrashSharp.tsx | 23 ++++++++ src/IconCarCrashTwoTone.tsx | 28 ++++++++++ src/IconCarRentalOutlined.tsx | 28 ++++++++++ src/IconCarRentalRound.tsx | 21 +++++++ src/IconCarRentalSharp.tsx | 21 +++++++ src/IconCarRentalTwoTone.tsx | 30 ++++++++++ src/IconCarRepairOutlined.tsx | 28 ++++++++++ src/IconCarRepairRound.tsx | 24 ++++++++ src/IconCarRepairSharp.tsx | 21 +++++++ src/IconCarRepairTwoTone.tsx | 30 ++++++++++ src/IconCardGiftcardOutlined.tsx | 12 ++++ src/IconCardGiftcardRound.tsx | 12 ++++ src/IconCardGiftcardSharp.tsx | 12 ++++ src/IconCardGiftcardTwoTone.tsx | 16 ++++++ src/IconCardMembershipOutlined.tsx | 12 ++++ src/IconCardMembershipRound.tsx | 12 ++++ src/IconCardMembershipSharp.tsx | 12 ++++ src/IconCardMembershipTwoTone.tsx | 13 +++++ src/IconCardTravelOutlined.tsx | 12 ++++ src/IconCardTravelRound.tsx | 12 ++++ src/IconCardTravelSharp.tsx | 12 ++++ src/IconCardTravelTwoTone.tsx | 13 +++++ src/IconCarpenterOutlined.tsx | 17 ++++++ src/IconCarpenterRound.tsx | 17 ++++++ src/IconCarpenterSharp.tsx | 17 ++++++ src/IconCarpenterTwoTone.tsx | 18 ++++++ src/IconCasesOutlined.tsx | 24 ++++++++ src/IconCasesRound.tsx | 21 +++++++ src/IconCasesSharp.tsx | 21 +++++++ src/IconCasesTwoTone.tsx | 25 +++++++++ src/IconCasinoOutlined.tsx | 17 ++++++ src/IconCasinoRound.tsx | 12 ++++ src/IconCasinoSharp.tsx | 12 ++++ src/IconCasinoTwoTone.tsx | 21 +++++++ src/IconCastConnectedOutlined.tsx | 12 ++++ src/IconCastConnectedRound.tsx | 11 ++++ src/IconCastConnectedSharp.tsx | 12 ++++ src/IconCastConnectedTwoTone.tsx | 13 +++++ src/IconCastForEducationOutlined.tsx | 12 ++++ src/IconCastForEducationRound.tsx | 11 ++++ src/IconCastForEducationSharp.tsx | 12 ++++ src/IconCastForEducationTwoTone.tsx | 12 ++++ src/IconCastOutlined.tsx | 12 ++++ src/IconCastRound.tsx | 11 ++++ src/IconCastSharp.tsx | 12 ++++ src/IconCastTwoTone.tsx | 12 ++++ src/IconCastleOutlined.tsx | 31 ++++++++++ src/IconCastleRound.tsx | 24 ++++++++ src/IconCastleSharp.tsx | 23 ++++++++ src/IconCastleTwoTone.tsx | 35 ++++++++++++ src/IconCatchingPokemonOutlined.tsx | 17 ++++++ src/IconCatchingPokemonRound.tsx | 17 ++++++ src/IconCatchingPokemonSharp.tsx | 17 ++++++ src/IconCatchingPokemonTwoTone.tsx | 21 +++++++ src/IconCategoryOutlined.tsx | 12 ++++ src/IconCategoryRound.tsx | 14 +++++ src/IconCategorySharp.tsx | 14 +++++ src/IconCategoryTwoTone.tsx | 14 +++++ src/IconCelebrationOutlined.tsx | 29 ++++++++++ src/IconCelebrationRound.tsx | 29 ++++++++++ src/IconCelebrationSharp.tsx | 29 ++++++++++ src/IconCelebrationTwoTone.tsx | 32 +++++++++++ src/IconCellTowerOutlined.tsx | 27 +++++++++ src/IconCellTowerRound.tsx | 28 ++++++++++ src/IconCellTowerSharp.tsx | 27 +++++++++ src/IconCellTowerTwoTone.tsx | 27 +++++++++ src/IconCellWifiOutlined.tsx | 21 +++++++ src/IconCellWifiRound.tsx | 26 +++++++++ src/IconCellWifiSharp.tsx | 21 +++++++ src/IconCellWifiTwoTone.tsx | 21 +++++++ src/IconCenterFocusStrongOutlined.tsx | 12 ++++ src/IconCenterFocusStrongRound.tsx | 12 ++++ src/IconCenterFocusStrongSharp.tsx | 12 ++++ src/IconCenterFocusStrongTwoTone.tsx | 13 +++++ src/IconCenterFocusWeakOutlined.tsx | 12 ++++ src/IconCenterFocusWeakRound.tsx | 12 ++++ src/IconCenterFocusWeakSharp.tsx | 12 ++++ src/IconCenterFocusWeakTwoTone.tsx | 13 +++++ src/IconChairAltOutlined.tsx | 21 +++++++ src/IconChairAltRound.tsx | 21 +++++++ src/IconChairAltSharp.tsx | 21 +++++++ src/IconChairAltTwoTone.tsx | 25 +++++++++ src/IconChairOutlined.tsx | 21 +++++++ src/IconChairRound.tsx | 24 ++++++++ src/IconChairSharp.tsx | 24 ++++++++ src/IconChairTwoTone.tsx | 33 +++++++++++ src/IconChaletOutlined.tsx | 17 ++++++ src/IconChaletRound.tsx | 17 ++++++ src/IconChaletSharp.tsx | 17 ++++++ src/IconChaletTwoTone.tsx | 21 +++++++ src/IconChangeCircleOutlined.tsx | 17 ++++++ src/IconChangeCircleRound.tsx | 17 ++++++ src/IconChangeCircleSharp.tsx | 17 ++++++ src/IconChangeCircleTwoTone.tsx | 21 +++++++ src/IconChangeHistoryOutlined.tsx | 12 ++++ src/IconChangeHistoryRound.tsx | 12 ++++ src/IconChangeHistorySharp.tsx | 12 ++++ src/IconChangeHistoryTwoTone.tsx | 13 +++++ src/IconChargingStationOutlined.tsx | 19 +++++++ src/IconChargingStationRound.tsx | 19 +++++++ src/IconChargingStationSharp.tsx | 19 +++++++ src/IconChargingStationTwoTone.tsx | 20 +++++++ src/IconChatBubbleOutlineOutlined.tsx | 12 ++++ src/IconChatBubbleOutlineRound.tsx | 23 ++++++++ src/IconChatBubbleOutlineSharp.tsx | 12 ++++ src/IconChatBubbleOutlineTwoTone.tsx | 12 ++++ src/IconChatBubbleOutlined.tsx | 12 ++++ src/IconChatBubbleRound.tsx | 12 ++++ src/IconChatBubbleSharp.tsx | 12 ++++ src/IconChatBubbleTwoTone.tsx | 13 +++++ src/IconChatOutlined.tsx | 12 ++++ src/IconChatRound.tsx | 12 ++++ src/IconChatSharp.tsx | 12 ++++ src/IconChatTwoTone.tsx | 16 ++++++ src/IconCheckBoxOutlineBlankOutlined.tsx | 14 +++++ src/IconCheckBoxOutlineBlankRound.tsx | 12 ++++ src/IconCheckBoxOutlineBlankSharp.tsx | 12 ++++ src/IconCheckBoxOutlineBlankTwoTone.tsx | 12 ++++ src/IconCheckBoxOutlined.tsx | 12 ++++ src/IconCheckBoxRound.tsx | 12 ++++ src/IconCheckBoxSharp.tsx | 12 ++++ src/IconCheckBoxTwoTone.tsx | 16 ++++++ src/IconCheckCircleOutlineOutlined.tsx | 12 ++++ src/IconCheckCircleOutlineRound.tsx | 12 ++++ src/IconCheckCircleOutlineSharp.tsx | 12 ++++ src/IconCheckCircleOutlineTwoTone.tsx | 12 ++++ src/IconCheckCircleOutlined.tsx | 12 ++++ src/IconCheckCircleRound.tsx | 12 ++++ src/IconCheckCircleSharp.tsx | 12 ++++ src/IconCheckCircleTwoTone.tsx | 16 ++++++ src/IconCheckOutlined.tsx | 12 ++++ src/IconCheckRound.tsx | 12 ++++ src/IconCheckSharp.tsx | 12 ++++ src/IconCheckTwoTone.tsx | 12 ++++ src/IconChecklistOutlined.tsx | 17 ++++++ src/IconChecklistRound.tsx | 19 +++++++ src/IconChecklistRtlOutlined.tsx | 17 ++++++ src/IconChecklistRtlRound.tsx | 17 ++++++ src/IconChecklistRtlSharp.tsx | 17 ++++++ src/IconChecklistRtlTwoTone.tsx | 17 ++++++ src/IconChecklistSharp.tsx | 17 ++++++ src/IconChecklistTwoTone.tsx | 17 ++++++ src/IconCheckroomOutlined.tsx | 19 +++++++ src/IconCheckroomRound.tsx | 19 +++++++ src/IconCheckroomSharp.tsx | 19 +++++++ src/IconCheckroomTwoTone.tsx | 19 +++++++ src/IconChevronLeftOutlined.tsx | 12 ++++ src/IconChevronLeftRound.tsx | 12 ++++ src/IconChevronLeftSharp.tsx | 12 ++++ src/IconChevronLeftTwoTone.tsx | 12 ++++ src/IconChevronRightOutlined.tsx | 12 ++++ src/IconChevronRightRound.tsx | 12 ++++ src/IconChevronRightSharp.tsx | 12 ++++ src/IconChevronRightTwoTone.tsx | 12 ++++ src/IconChildCareOutlined.tsx | 14 +++++ src/IconChildCareRound.tsx | 14 +++++ src/IconChildCareSharp.tsx | 14 +++++ src/IconChildCareTwoTone.tsx | 18 ++++++ src/IconChildFriendlyOutlined.tsx | 12 ++++ src/IconChildFriendlyRound.tsx | 12 ++++ src/IconChildFriendlySharp.tsx | 12 ++++ src/IconChildFriendlyTwoTone.tsx | 16 ++++++ src/IconChromeReaderModeOutlined.tsx | 12 ++++ src/IconChromeReaderModeRound.tsx | 12 ++++ src/IconChromeReaderModeSharp.tsx | 12 ++++ src/IconChromeReaderModeTwoTone.tsx | 13 +++++ src/IconChurchOutlined.tsx | 24 ++++++++ src/IconChurchRound.tsx | 24 ++++++++ src/IconChurchSharp.tsx | 23 ++++++++ src/IconChurchTwoTone.tsx | 28 ++++++++++ src/IconCircleNotificationsOutlined.tsx | 21 +++++++ src/IconCircleNotificationsRound.tsx | 21 +++++++ src/IconCircleNotificationsSharp.tsx | 21 +++++++ src/IconCircleNotificationsTwoTone.tsx | 26 +++++++++ src/IconCircleOutlined.tsx | 21 +++++++ src/IconCircleRound.tsx | 23 ++++++++ src/IconCircleSharp.tsx | 23 ++++++++ src/IconCircleTwoTone.tsx | 24 ++++++++ src/IconClassOutlined.tsx | 12 ++++ src/IconClassRound.tsx | 12 ++++ src/IconClassSharp.tsx | 12 ++++ src/IconClassTwoTone.tsx | 13 +++++ src/IconCleanHandsOutlined.tsx | 17 ++++++ src/IconCleanHandsRound.tsx | 19 +++++++ src/IconCleanHandsSharp.tsx | 19 +++++++ src/IconCleanHandsTwoTone.tsx | 21 +++++++ src/IconCleaningServicesOutlined.tsx | 23 ++++++++ src/IconCleaningServicesRound.tsx | 22 ++++++++ src/IconCleaningServicesSharp.tsx | 21 +++++++ src/IconCleaningServicesTwoTone.tsx | 28 ++++++++++ src/IconClearAllOutlined.tsx | 12 ++++ src/IconClearAllRound.tsx | 12 ++++ src/IconClearAllSharp.tsx | 12 ++++ src/IconClearAllTwoTone.tsx | 12 ++++ src/IconClearOutlined.tsx | 12 ++++ src/IconClearRound.tsx | 12 ++++ src/IconClearSharp.tsx | 12 ++++ src/IconClearTwoTone.tsx | 12 ++++ src/IconCloseFullscreenOutlined.tsx | 17 ++++++ src/IconCloseFullscreenRound.tsx | 17 ++++++ src/IconCloseFullscreenSharp.tsx | 17 ++++++ src/IconCloseFullscreenTwoTone.tsx | 17 ++++++ src/IconCloseOutlined.tsx | 12 ++++ src/IconCloseRound.tsx | 12 ++++ src/IconCloseSharp.tsx | 12 ++++ src/IconCloseTwoTone.tsx | 12 ++++ src/IconClosedCaptionDisabledOutlined.tsx | 19 +++++++ src/IconClosedCaptionDisabledRound.tsx | 17 ++++++ src/IconClosedCaptionDisabledSharp.tsx | 17 ++++++ src/IconClosedCaptionDisabledTwoTone.tsx | 24 ++++++++ src/IconClosedCaptionOffOutlined.tsx | 27 +++++++++ src/IconClosedCaptionOffRound.tsx | 23 ++++++++ src/IconClosedCaptionOffSharp.tsx | 23 ++++++++ src/IconClosedCaptionOffTwoTone.tsx | 32 +++++++++++ src/IconClosedCaptionOutlined.tsx | 12 ++++ src/IconClosedCaptionRound.tsx | 11 ++++ src/IconClosedCaptionSharp.tsx | 12 ++++ src/IconClosedCaptionTwoTone.tsx | 16 ++++++ src/IconCloudCircleOutlined.tsx | 12 ++++ src/IconCloudCircleRound.tsx | 12 ++++ src/IconCloudCircleSharp.tsx | 12 ++++ src/IconCloudCircleTwoTone.tsx | 16 ++++++ src/IconCloudDoneOutlined.tsx | 12 ++++ src/IconCloudDoneRound.tsx | 12 ++++ src/IconCloudDoneSharp.tsx | 12 ++++ src/IconCloudDoneTwoTone.tsx | 16 ++++++ src/IconCloudDownloadOutlined.tsx | 12 ++++ src/IconCloudDownloadRound.tsx | 12 ++++ src/IconCloudDownloadSharp.tsx | 12 ++++ src/IconCloudDownloadTwoTone.tsx | 16 ++++++ src/IconCloudOffOutlined.tsx | 12 ++++ src/IconCloudOffRound.tsx | 12 ++++ src/IconCloudOffSharp.tsx | 12 ++++ src/IconCloudOffTwoTone.tsx | 16 ++++++ src/IconCloudOutlined.tsx | 12 ++++ src/IconCloudQueueOutlined.tsx | 12 ++++ src/IconCloudQueueRound.tsx | 12 ++++ src/IconCloudQueueSharp.tsx | 12 ++++ src/IconCloudQueueTwoTone.tsx | 16 ++++++ src/IconCloudRound.tsx | 12 ++++ src/IconCloudSharp.tsx | 12 ++++ src/IconCloudSyncOutlined.tsx | 23 ++++++++ src/IconCloudSyncRound.tsx | 23 ++++++++ src/IconCloudSyncSharp.tsx | 23 ++++++++ src/IconCloudSyncTwoTone.tsx | 26 +++++++++ src/IconCloudTwoTone.tsx | 16 ++++++ src/IconCloudUploadOutlined.tsx | 12 ++++ src/IconCloudUploadRound.tsx | 12 ++++ src/IconCloudUploadSharp.tsx | 12 ++++ src/IconCloudUploadTwoTone.tsx | 16 ++++++ src/IconCo2Outlined.tsx | 17 ++++++ src/IconCo2Round.tsx | 17 ++++++ src/IconCo2Sharp.tsx | 17 ++++++ src/IconCo2TwoTone.tsx | 17 ++++++ src/IconCoPresentOutlined.tsx | 31 ++++++++++ src/IconCoPresentRound.tsx | 32 +++++++++++ src/IconCoPresentSharp.tsx | 31 ++++++++++ src/IconCoPresentTwoTone.tsx | 37 ++++++++++++ src/IconCodeOffOutlined.tsx | 17 ++++++ src/IconCodeOffRound.tsx | 17 ++++++ src/IconCodeOffSharp.tsx | 17 ++++++ src/IconCodeOffTwoTone.tsx | 17 ++++++ src/IconCodeOutlined.tsx | 12 ++++ src/IconCodeRound.tsx | 12 ++++ src/IconCodeSharp.tsx | 12 ++++ src/IconCodeTwoTone.tsx | 12 ++++ src/IconCoffeeMakerOutlined.tsx | 24 ++++++++ src/IconCoffeeMakerRound.tsx | 24 ++++++++ src/IconCoffeeMakerSharp.tsx | 24 ++++++++ src/IconCoffeeMakerTwoTone.tsx | 30 ++++++++++ src/IconCoffeeOutlined.tsx | 21 +++++++ src/IconCoffeeRound.tsx | 21 +++++++ src/IconCoffeeSharp.tsx | 21 +++++++ src/IconCoffeeTwoTone.tsx | 25 +++++++++ src/IconCollectionsBookmarkOutlined.tsx | 12 ++++ src/IconCollectionsBookmarkRound.tsx | 12 ++++ src/IconCollectionsBookmarkSharp.tsx | 12 ++++ src/IconCollectionsBookmarkTwoTone.tsx | 13 +++++ src/IconCollectionsOutlined.tsx | 12 ++++ src/IconCollectionsRound.tsx | 12 ++++ src/IconCollectionsSharp.tsx | 12 ++++ src/IconCollectionsTwoTone.tsx | 16 ++++++ src/IconColorLensOutlined.tsx | 16 ++++++ src/IconColorLensRound.tsx | 12 ++++ src/IconColorLensSharp.tsx | 12 ++++ src/IconColorLensTwoTone.tsx | 20 +++++++ src/IconColorizeOutlined.tsx | 12 ++++ src/IconColorizeRound.tsx | 12 ++++ src/IconColorizeSharp.tsx | 12 ++++ src/IconColorizeTwoTone.tsx | 13 +++++ src/IconCommentBankOutlined.tsx | 24 ++++++++ src/IconCommentBankRound.tsx | 26 +++++++++ src/IconCommentBankSharp.tsx | 21 +++++++ src/IconCommentBankTwoTone.tsx | 28 ++++++++++ src/IconCommentOutlined.tsx | 12 ++++ src/IconCommentRound.tsx | 12 ++++ src/IconCommentSharp.tsx | 12 ++++ src/IconCommentTwoTone.tsx | 16 ++++++ src/IconCommentsDisabledOutlined.tsx | 17 ++++++ src/IconCommentsDisabledRound.tsx | 17 ++++++ src/IconCommentsDisabledSharp.tsx | 17 ++++++ src/IconCommentsDisabledTwoTone.tsx | 21 +++++++ src/IconCommitOutlined.tsx | 21 +++++++ src/IconCommitRound.tsx | 21 +++++++ src/IconCommitSharp.tsx | 21 +++++++ src/IconCommitTwoTone.tsx | 21 +++++++ src/IconCommuteOutlined.tsx | 12 ++++ src/IconCommuteRound.tsx | 12 ++++ src/IconCommuteSharp.tsx | 12 ++++ src/IconCommuteTwoTone.tsx | 12 ++++ src/IconCompareArrowsOutlined.tsx | 12 ++++ src/IconCompareArrowsRound.tsx | 12 ++++ src/IconCompareArrowsSharp.tsx | 12 ++++ src/IconCompareArrowsTwoTone.tsx | 12 ++++ src/IconCompareOutlined.tsx | 12 ++++ src/IconCompareRound.tsx | 12 ++++ src/IconCompareSharp.tsx | 12 ++++ src/IconCompareTwoTone.tsx | 13 +++++ src/IconCompassCalibrationOutlined.tsx | 12 ++++ src/IconCompassCalibrationRound.tsx | 13 +++++ src/IconCompassCalibrationSharp.tsx | 13 +++++ src/IconCompassCalibrationTwoTone.tsx | 17 ++++++ src/IconCompostOutlined.tsx | 17 ++++++ src/IconCompostRound.tsx | 17 ++++++ src/IconCompostSharp.tsx | 17 ++++++ src/IconCompostTwoTone.tsx | 17 ++++++ src/IconCompressOutlined.tsx | 21 +++++++ src/IconCompressRound.tsx | 26 +++++++++ src/IconCompressSharp.tsx | 26 +++++++++ src/IconCompressTwoTone.tsx | 26 +++++++++ src/IconComputerOutlined.tsx | 12 ++++ src/IconComputerRound.tsx | 11 ++++ src/IconComputerSharp.tsx | 12 ++++ src/IconComputerTwoTone.tsx | 13 +++++ src/IconConfirmationNumberOutlined.tsx | 12 ++++ src/IconConfirmationNumberRound.tsx | 12 ++++ src/IconConfirmationNumberSharp.tsx | 12 ++++ src/IconConfirmationNumberTwoTone.tsx | 16 ++++++ src/IconConnectWithoutContactOutlined.tsx | 19 +++++++ src/IconConnectWithoutContactRound.tsx | 17 ++++++ src/IconConnectWithoutContactSharp.tsx | 17 ++++++ src/IconConnectWithoutContactTwoTone.tsx | 19 +++++++ src/IconConnectedTvOutlined.tsx | 23 ++++++++ src/IconConnectedTvRound.tsx | 21 +++++++ src/IconConnectedTvSharp.tsx | 26 +++++++++ src/IconConnectedTvTwoTone.tsx | 24 ++++++++ src/IconConnectingAirportsOutlined.tsx | 17 ++++++ src/IconConnectingAirportsRound.tsx | 17 ++++++ src/IconConnectingAirportsSharp.tsx | 17 ++++++ src/IconConnectingAirportsTwoTone.tsx | 17 ++++++ src/IconConstructionOutlined.tsx | 30 ++++++++++ src/IconConstructionRound.tsx | 25 +++++++++ src/IconConstructionSharp.tsx | 30 ++++++++++ src/IconConstructionTwoTone.tsx | 30 ++++++++++ src/IconContactEmergencyOutlined.tsx | 25 +++++++++ src/IconContactEmergencyRound.tsx | 22 ++++++++ src/IconContactEmergencySharp.tsx | 21 +++++++ src/IconContactEmergencyTwoTone.tsx | 29 ++++++++++ src/IconContactMailOutlined.tsx | 12 ++++ src/IconContactMailRound.tsx | 12 ++++ src/IconContactMailSharp.tsx | 12 ++++ src/IconContactMailTwoTone.tsx | 16 ++++++ src/IconContactPageOutlined.tsx | 17 ++++++ src/IconContactPageRound.tsx | 17 ++++++ src/IconContactPageSharp.tsx | 17 ++++++ src/IconContactPageTwoTone.tsx | 21 +++++++ src/IconContactPhoneOutlined.tsx | 12 ++++ src/IconContactPhoneRound.tsx | 12 ++++ src/IconContactPhoneSharp.tsx | 12 ++++ src/IconContactPhoneTwoTone.tsx | 16 ++++++ src/IconContactSupportOutlined.tsx | 12 ++++ src/IconContactSupportRound.tsx | 12 ++++ src/IconContactSupportSharp.tsx | 12 ++++ src/IconContactSupportTwoTone.tsx | 16 ++++++ src/IconContactlessOutlined.tsx | 26 +++++++++ src/IconContactlessRound.tsx | 22 ++++++++ src/IconContactlessSharp.tsx | 21 +++++++ src/IconContactlessTwoTone.tsx | 30 ++++++++++ src/IconContactsOutlined.tsx | 12 ++++ src/IconContactsRound.tsx | 12 ++++ src/IconContactsSharp.tsx | 12 ++++ src/IconContactsTwoTone.tsx | 16 ++++++ src/IconContentCopyOutlined.tsx | 12 ++++ src/IconContentCopyRound.tsx | 21 +++++++ src/IconContentCopySharp.tsx | 12 ++++ src/IconContentCopyTwoTone.tsx | 13 +++++ src/IconContentCutOutlined.tsx | 12 ++++ src/IconContentCutRound.tsx | 12 ++++ src/IconContentCutSharp.tsx | 12 ++++ src/IconContentCutTwoTone.tsx | 12 ++++ src/IconContentPasteGoOutlined.tsx | 24 ++++++++ src/IconContentPasteGoRound.tsx | 25 +++++++++ src/IconContentPasteGoSharp.tsx | 24 ++++++++ src/IconContentPasteGoTwoTone.tsx | 28 ++++++++++ src/IconContentPasteOffOutlined.tsx | 17 ++++++ src/IconContentPasteOffRound.tsx | 17 ++++++ src/IconContentPasteOffSharp.tsx | 17 ++++++ src/IconContentPasteOffTwoTone.tsx | 21 +++++++ src/IconContentPasteOutlined.tsx | 12 ++++ src/IconContentPasteRound.tsx | 12 ++++ src/IconContentPasteSearchOutlined.tsx | 24 ++++++++ src/IconContentPasteSearchRound.tsx | 25 +++++++++ src/IconContentPasteSearchSharp.tsx | 24 ++++++++ src/IconContentPasteSearchTwoTone.tsx | 28 ++++++++++ src/IconContentPasteSharp.tsx | 12 ++++ src/IconContentPasteTwoTone.tsx | 13 +++++ src/IconContrastOutlined.tsx | 21 +++++++ src/IconContrastRound.tsx | 21 +++++++ src/IconContrastSharp.tsx | 21 +++++++ src/IconContrastTwoTone.tsx | 23 ++++++++ src/IconControlCameraOutlined.tsx | 13 +++++ src/IconControlCameraRound.tsx | 12 ++++ src/IconControlCameraSharp.tsx | 13 +++++ src/IconControlCameraTwoTone.tsx | 13 +++++ src/IconControlPointDuplicateOutlined.tsx | 14 +++++ src/IconControlPointDuplicateRound.tsx | 12 ++++ src/IconControlPointDuplicateSharp.tsx | 12 ++++ src/IconControlPointDuplicateTwoTone.tsx | 18 ++++++ src/IconControlPointOutlined.tsx | 12 ++++ src/IconControlPointRound.tsx | 12 ++++ src/IconControlPointSharp.tsx | 12 ++++ src/IconControlPointTwoTone.tsx | 16 ++++++ src/IconCookieOutlined.tsx | 26 +++++++++ src/IconCookieRound.tsx | 24 ++++++++ src/IconCookieSharp.tsx | 23 ++++++++ src/IconCookieTwoTone.tsx | 30 ++++++++++ src/IconCopyAllOutlined.tsx | 17 ++++++ src/IconCopyAllRound.tsx | 17 ++++++ src/IconCopyAllSharp.tsx | 17 ++++++ src/IconCopyAllTwoTone.tsx | 18 ++++++ src/IconCopyrightOutlined.tsx | 12 ++++ src/IconCopyrightRound.tsx | 12 ++++ src/IconCopyrightSharp.tsx | 12 ++++ src/IconCopyrightTwoTone.tsx | 16 ++++++ src/IconCoronavirusOutlined.tsx | 17 ++++++ src/IconCoronavirusRound.tsx | 17 ++++++ src/IconCoronavirusSharp.tsx | 17 ++++++ src/IconCoronavirusTwoTone.tsx | 21 +++++++ src/IconCorporateFareOutlined.tsx | 17 ++++++ src/IconCorporateFareRound.tsx | 17 ++++++ src/IconCorporateFareSharp.tsx | 17 ++++++ src/IconCorporateFareTwoTone.tsx | 21 +++++++ src/IconCottageOutlined.tsx | 17 ++++++ src/IconCottageRound.tsx | 17 ++++++ src/IconCottageSharp.tsx | 17 ++++++ src/IconCottageTwoTone.tsx | 21 +++++++ src/IconCountertopsOutlined.tsx | 17 ++++++ src/IconCountertopsRound.tsx | 17 ++++++ src/IconCountertopsSharp.tsx | 17 ++++++ src/IconCountertopsTwoTone.tsx | 18 ++++++ src/IconCreateNewFolderOutlined.tsx | 12 ++++ src/IconCreateNewFolderRound.tsx | 12 ++++ src/IconCreateNewFolderSharp.tsx | 12 ++++ src/IconCreateNewFolderTwoTone.tsx | 16 ++++++ src/IconCreateOutlined.tsx | 12 ++++ src/IconCreateRound.tsx | 12 ++++ src/IconCreateSharp.tsx | 12 ++++ src/IconCreateTwoTone.tsx | 13 +++++ src/IconCreditCardOffOutlined.tsx | 20 +++++++ src/IconCreditCardOffRound.tsx | 17 ++++++ src/IconCreditCardOffSharp.tsx | 17 ++++++ src/IconCreditCardOffTwoTone.tsx | 25 +++++++++ src/IconCreditCardOutlined.tsx | 12 ++++ src/IconCreditCardRound.tsx | 12 ++++ src/IconCreditCardSharp.tsx | 12 ++++ src/IconCreditCardTwoTone.tsx | 13 +++++ src/IconCreditScoreOutlined.tsx | 21 +++++++ src/IconCreditScoreRound.tsx | 21 +++++++ src/IconCreditScoreSharp.tsx | 21 +++++++ src/IconCreditScoreTwoTone.tsx | 21 +++++++ src/IconCribOutlined.tsx | 17 ++++++ src/IconCribRound.tsx | 17 ++++++ src/IconCribSharp.tsx | 17 ++++++ src/IconCribTwoTone.tsx | 18 ++++++ src/IconCrisisAlertOutlined.tsx | 21 +++++++ src/IconCrisisAlertRound.tsx | 22 ++++++++ src/IconCrisisAlertSharp.tsx | 21 +++++++ src/IconCrisisAlertTwoTone.tsx | 21 +++++++ src/IconCrop169.tsx | 19 ++++++- src/IconCrop169Outlined.tsx | 25 +++++++++ src/IconCrop169Round.tsx | 25 +++++++++ src/IconCrop169Sharp.tsx | 25 +++++++++ src/IconCrop169TwoTone.tsx | 25 +++++++++ src/IconCrop32.tsx | 19 ++++++- src/IconCrop32Outlined.tsx | 25 +++++++++ src/IconCrop32Round.tsx | 25 +++++++++ src/IconCrop32Sharp.tsx | 25 +++++++++ src/IconCrop32TwoTone.tsx | 25 +++++++++ src/IconCrop54.tsx | 19 ++++++- src/IconCrop54Outlined.tsx | 25 +++++++++ src/IconCrop54Round.tsx | 25 +++++++++ src/IconCrop54Sharp.tsx | 25 +++++++++ src/IconCrop54TwoTone.tsx | 25 +++++++++ src/IconCrop75.tsx | 19 ++++++- src/IconCrop75Outlined.tsx | 25 +++++++++ src/IconCrop75Round.tsx | 25 +++++++++ src/IconCrop75Sharp.tsx | 25 +++++++++ src/IconCrop75TwoTone.tsx | 25 +++++++++ src/IconCropDinOutlined.tsx | 12 ++++ src/IconCropDinRound.tsx | 12 ++++ src/IconCropDinSharp.tsx | 12 ++++ src/IconCropDinTwoTone.tsx | 12 ++++ src/IconCropFreeOutlined.tsx | 12 ++++ src/IconCropFreeRound.tsx | 12 ++++ src/IconCropFreeSharp.tsx | 12 ++++ src/IconCropFreeTwoTone.tsx | 12 ++++ src/IconCropLandscapeOutlined.tsx | 12 ++++ src/IconCropLandscapeRound.tsx | 12 ++++ src/IconCropLandscapeSharp.tsx | 12 ++++ src/IconCropLandscapeTwoTone.tsx | 12 ++++ src/IconCropOriginalOutlined.tsx | 12 ++++ src/IconCropOriginalRound.tsx | 12 ++++ src/IconCropOriginalSharp.tsx | 12 ++++ src/IconCropOriginalTwoTone.tsx | 12 ++++ src/IconCropOutlined.tsx | 12 ++++ src/IconCropPortraitOutlined.tsx | 12 ++++ src/IconCropPortraitRound.tsx | 12 ++++ src/IconCropPortraitSharp.tsx | 12 ++++ src/IconCropPortraitTwoTone.tsx | 12 ++++ src/IconCropRotateOutlined.tsx | 12 ++++ src/IconCropRotateRound.tsx | 12 ++++ src/IconCropRotateSharp.tsx | 12 ++++ src/IconCropRotateTwoTone.tsx | 12 ++++ src/IconCropRound.tsx | 12 ++++ src/IconCropSharp.tsx | 12 ++++ src/IconCropSquareOutlined.tsx | 12 ++++ src/IconCropSquareRound.tsx | 12 ++++ src/IconCropSquareSharp.tsx | 12 ++++ src/IconCropSquareTwoTone.tsx | 12 ++++ src/IconCropTwoTone.tsx | 12 ++++ src/IconCrueltyFreeOutlined.tsx | 17 ++++++ src/IconCrueltyFreeRound.tsx | 17 ++++++ src/IconCrueltyFreeSharp.tsx | 17 ++++++ src/IconCrueltyFreeTwoTone.tsx | 21 +++++++ src/IconCssOutlined.tsx | 21 +++++++ src/IconCssRound.tsx | 22 ++++++++ src/IconCssSharp.tsx | 21 +++++++ src/IconCssTwoTone.tsx | 21 +++++++ src/IconCurrencyBitcoinOutlined.tsx | 21 +++++++ src/IconCurrencyBitcoinRound.tsx | 22 ++++++++ src/IconCurrencyBitcoinSharp.tsx | 21 +++++++ src/IconCurrencyBitcoinTwoTone.tsx | 21 +++++++ src/IconCurrencyExchangeOutlined.tsx | 21 +++++++ src/IconCurrencyExchangeRound.tsx | 21 +++++++ src/IconCurrencyExchangeSharp.tsx | 21 +++++++ src/IconCurrencyExchangeTwoTone.tsx | 21 +++++++ src/IconCurrencyFrancOutlined.tsx | 21 +++++++ src/IconCurrencyFrancRound.tsx | 21 +++++++ src/IconCurrencyFrancSharp.tsx | 21 +++++++ src/IconCurrencyFrancTwoTone.tsx | 21 +++++++ src/IconCurrencyLiraOutlined.tsx | 21 +++++++ src/IconCurrencyLiraRound.tsx | 21 +++++++ src/IconCurrencyLiraSharp.tsx | 21 +++++++ src/IconCurrencyLiraTwoTone.tsx | 21 +++++++ src/IconCurrencyPoundOutlined.tsx | 21 +++++++ src/IconCurrencyPoundRound.tsx | 21 +++++++ src/IconCurrencyPoundSharp.tsx | 21 +++++++ src/IconCurrencyPoundTwoTone.tsx | 21 +++++++ src/IconCurrencyRubleOutlined.tsx | 21 +++++++ src/IconCurrencyRubleRound.tsx | 21 +++++++ src/IconCurrencyRubleSharp.tsx | 21 +++++++ src/IconCurrencyRubleTwoTone.tsx | 21 +++++++ src/IconCurrencyRupeeOutlined.tsx | 23 ++++++++ src/IconCurrencyRupeeRound.tsx | 21 +++++++ src/IconCurrencyRupeeSharp.tsx | 23 ++++++++ src/IconCurrencyRupeeTwoTone.tsx | 23 ++++++++ src/IconCurrencyYenOutlined.tsx | 21 +++++++ src/IconCurrencyYenRound.tsx | 21 +++++++ src/IconCurrencyYenSharp.tsx | 21 +++++++ src/IconCurrencyYenTwoTone.tsx | 21 +++++++ src/IconCurrencyYuanOutlined.tsx | 21 +++++++ src/IconCurrencyYuanRound.tsx | 21 +++++++ src/IconCurrencyYuanSharp.tsx | 21 +++++++ src/IconCurrencyYuanTwoTone.tsx | 21 +++++++ src/IconCurtainsClosedOutlined.tsx | 21 +++++++ src/IconCurtainsClosedRound.tsx | 22 ++++++++ src/IconCurtainsClosedSharp.tsx | 21 +++++++ src/IconCurtainsClosedTwoTone.tsx | 25 +++++++++ src/IconCurtainsOutlined.tsx | 21 +++++++ src/IconCurtainsRound.tsx | 22 ++++++++ src/IconCurtainsSharp.tsx | 21 +++++++ src/IconCurtainsTwoTone.tsx | 36 ++++++++++++ src/IconCycloneOutlined.tsx | 24 ++++++++ src/IconCycloneRound.tsx | 25 +++++++++ src/IconCycloneSharp.tsx | 24 ++++++++ src/IconCycloneTwoTone.tsx | 29 ++++++++++ src/IconDangerousOutlined.tsx | 21 +++++++ src/IconDangerousRound.tsx | 21 +++++++ src/IconDangerousSharp.tsx | 21 +++++++ src/IconDangerousTwoTone.tsx | 26 +++++++++ src/IconDarkModeOutlined.tsx | 17 ++++++ src/IconDarkModeRound.tsx | 17 ++++++ src/IconDarkModeSharp.tsx | 17 ++++++ src/IconDarkModeTwoTone.tsx | 21 +++++++ src/IconDashboardCustomizeOutlined.tsx | 26 +++++++++ src/IconDashboardCustomizeRound.tsx | 21 +++++++ src/IconDashboardCustomizeSharp.tsx | 21 +++++++ src/IconDashboardCustomizeTwoTone.tsx | 50 +++++++++++++++++ src/IconDashboardOutlined.tsx | 12 ++++ src/IconDashboardRound.tsx | 12 ++++ src/IconDashboardSharp.tsx | 12 ++++ src/IconDashboardTwoTone.tsx | 13 +++++ src/IconDataArrayOutlined.tsx | 24 ++++++++ src/IconDataArrayRound.tsx | 25 +++++++++ src/IconDataArraySharp.tsx | 24 ++++++++ src/IconDataArrayTwoTone.tsx | 24 ++++++++ src/IconDataExplorationOutlined.tsx | 17 ++++++ src/IconDataExplorationRound.tsx | 17 ++++++ src/IconDataExplorationSharp.tsx | 17 ++++++ src/IconDataExplorationTwoTone.tsx | 21 +++++++ src/IconDataObjectOutlined.tsx | 24 ++++++++ src/IconDataObjectRound.tsx | 25 +++++++++ src/IconDataObjectSharp.tsx | 24 ++++++++ src/IconDataObjectTwoTone.tsx | 24 ++++++++ src/IconDataSaverOffOutlined.tsx | 23 ++++++++ src/IconDataSaverOffRound.tsx | 23 ++++++++ src/IconDataSaverOffSharp.tsx | 23 ++++++++ src/IconDataSaverOffTwoTone.tsx | 23 ++++++++ src/IconDataSaverOnOutlined.tsx | 23 ++++++++ src/IconDataSaverOnRound.tsx | 21 +++++++ src/IconDataSaverOnSharp.tsx | 23 ++++++++ src/IconDataSaverOnTwoTone.tsx | 23 ++++++++ src/IconDataThresholdingOutlined.tsx | 24 ++++++++ src/IconDataThresholdingRound.tsx | 22 ++++++++ src/IconDataThresholdingSharp.tsx | 21 +++++++ src/IconDataThresholdingTwoTone.tsx | 29 ++++++++++ src/IconDataUsageOutlined.tsx | 12 ++++ src/IconDataUsageRound.tsx | 12 ++++ src/IconDataUsageSharp.tsx | 12 ++++ src/IconDataUsageTwoTone.tsx | 12 ++++ src/IconDatasetLinkedOutlined.tsx | 37 ++++++++++++ src/IconDatasetLinkedRound.tsx | 27 +++++++++ src/IconDatasetLinkedSharp.tsx | 26 +++++++++ src/IconDatasetLinkedTwoTone.tsx | 38 +++++++++++++ src/IconDatasetOutlined.tsx | 37 ++++++++++++ src/IconDatasetRound.tsx | 24 ++++++++ src/IconDatasetSharp.tsx | 23 ++++++++ src/IconDatasetTwoTone.tsx | 38 +++++++++++++ src/IconDateRangeOutlined.tsx | 12 ++++ src/IconDateRangeRound.tsx | 12 ++++ src/IconDateRangeSharp.tsx | 12 ++++ src/IconDateRangeTwoTone.tsx | 13 +++++ src/IconDeblurOutlined.tsx | 35 ++++++++++++ src/IconDeblurRound.tsx | 36 ++++++++++++ src/IconDeblurSharp.tsx | 35 ++++++++++++ src/IconDeblurTwoTone.tsx | 36 ++++++++++++ src/IconDeckOutlined.tsx | 25 +++++++++ src/IconDeckRound.tsx | 26 +++++++++ src/IconDeckSharp.tsx | 25 +++++++++ src/IconDeckTwoTone.tsx | 26 +++++++++ src/IconDehazeOutlined.tsx | 12 ++++ src/IconDehazeRound.tsx | 12 ++++ src/IconDehazeSharp.tsx | 12 ++++ src/IconDehazeTwoTone.tsx | 12 ++++ src/IconDeleteForeverOutlined.tsx | 12 ++++ src/IconDeleteForeverRound.tsx | 21 +++++++ src/IconDeleteForeverSharp.tsx | 12 ++++ src/IconDeleteForeverTwoTone.tsx | 16 ++++++ src/IconDeleteOutlineOutlined.tsx | 12 ++++ src/IconDeleteOutlineRound.tsx | 12 ++++ src/IconDeleteOutlineSharp.tsx | 12 ++++ src/IconDeleteOutlineTwoTone.tsx | 12 ++++ src/IconDeleteOutlined.tsx | 12 ++++ src/IconDeleteRound.tsx | 12 ++++ src/IconDeleteSharp.tsx | 12 ++++ src/IconDeleteSweepOutlined.tsx | 12 ++++ src/IconDeleteSweepRound.tsx | 12 ++++ src/IconDeleteSweepSharp.tsx | 12 ++++ src/IconDeleteSweepTwoTone.tsx | 13 +++++ src/IconDeleteTwoTone.tsx | 13 +++++ src/IconDeliveryDiningOutlined.tsx | 27 +++++++++ src/IconDeliveryDiningRound.tsx | 27 +++++++++ src/IconDeliveryDiningSharp.tsx | 27 +++++++++ src/IconDeliveryDiningTwoTone.tsx | 30 ++++++++++ src/IconDensityLargeOutlined.tsx | 24 ++++++++ src/IconDensityLargeRound.tsx | 25 +++++++++ src/IconDensityLargeSharp.tsx | 24 ++++++++ src/IconDensityLargeTwoTone.tsx | 24 ++++++++ src/IconDensityMediumOutlined.tsx | 25 +++++++++ src/IconDensityMediumRound.tsx | 26 +++++++++ src/IconDensityMediumSharp.tsx | 25 +++++++++ src/IconDensityMediumTwoTone.tsx | 25 +++++++++ src/IconDensitySmallOutlined.tsx | 26 +++++++++ src/IconDensitySmallRound.tsx | 27 +++++++++ src/IconDensitySmallSharp.tsx | 26 +++++++++ src/IconDensitySmallTwoTone.tsx | 26 +++++++++ src/IconDepartureBoardOutlined.tsx | 14 +++++ src/IconDepartureBoardRound.tsx | 12 ++++ src/IconDepartureBoardSharp.tsx | 12 ++++ src/IconDepartureBoardTwoTone.tsx | 18 ++++++ src/IconDescriptionOutlined.tsx | 12 ++++ src/IconDescriptionRound.tsx | 12 ++++ src/IconDescriptionSharp.tsx | 12 ++++ src/IconDescriptionTwoTone.tsx | 13 +++++ src/IconDeselectOutlined.tsx | 21 +++++++ src/IconDeselectRound.tsx | 22 ++++++++ src/IconDeselectSharp.tsx | 21 +++++++ src/IconDeselectTwoTone.tsx | 21 +++++++ src/IconDesignServicesOutlined.tsx | 24 ++++++++ src/IconDesignServicesRound.tsx | 26 +++++++++ src/IconDesignServicesSharp.tsx | 31 ++++++++++ src/IconDesignServicesTwoTone.tsx | 44 +++++++++++++++ src/IconDeskOutlined.tsx | 21 +++++++ src/IconDeskRound.tsx | 22 ++++++++ src/IconDeskSharp.tsx | 21 +++++++ src/IconDeskTwoTone.tsx | 25 +++++++++ src/IconDesktopAccessDisabledOutlined.tsx | 14 +++++ src/IconDesktopAccessDisabledRound.tsx | 12 ++++ src/IconDesktopAccessDisabledSharp.tsx | 12 ++++ src/IconDesktopAccessDisabledTwoTone.tsx | 15 +++++ src/IconDesktopMac.tsx | 15 ++++- src/IconDesktopMacOutlined.tsx | 12 ++++ src/IconDesktopMacRound.tsx | 11 ++++ src/IconDesktopMacSharp.tsx | 12 ++++ src/IconDesktopMacTwoTone.tsx | 13 +++++ src/IconDesktopWindows.tsx | 15 ++++- src/IconDesktopWindowsOutlined.tsx | 12 ++++ src/IconDesktopWindowsRound.tsx | 11 ++++ src/IconDesktopWindowsSharp.tsx | 12 ++++ src/IconDesktopWindowsTwoTone.tsx | 13 +++++ src/IconDetailsOutlined.tsx | 17 ++++++ src/IconDetailsRound.tsx | 22 ++++++++ src/IconDetailsSharp.tsx | 17 ++++++ src/IconDetailsTwoTone.tsx | 18 ++++++ src/IconDeveloperBoardOffOutlined.tsx | 17 ++++++ src/IconDeveloperBoardOffRound.tsx | 19 +++++++ src/IconDeveloperBoardOffSharp.tsx | 17 ++++++ src/IconDeveloperBoardOffTwoTone.tsx | 21 +++++++ src/IconDeveloperBoardOutlined.tsx | 12 ++++ src/IconDeveloperBoardRound.tsx | 11 ++++ src/IconDeveloperBoardSharp.tsx | 12 ++++ src/IconDeveloperBoardTwoTone.tsx | 16 ++++++ src/IconDeveloperModeOutlined.tsx | 12 ++++ src/IconDeveloperModeRound.tsx | 12 ++++ src/IconDeveloperModeSharp.tsx | 12 ++++ src/IconDeveloperModeTwoTone.tsx | 12 ++++ src/IconDeviceHubOutlined.tsx | 12 ++++ src/IconDeviceHubRound.tsx | 11 ++++ src/IconDeviceHubSharp.tsx | 12 ++++ src/IconDeviceHubTwoTone.tsx | 12 ++++ src/IconDeviceThermostatOutlined.tsx | 23 ++++++++ src/IconDeviceThermostatRound.tsx | 23 ++++++++ src/IconDeviceThermostatSharp.tsx | 23 ++++++++ src/IconDeviceThermostatTwoTone.tsx | 23 ++++++++ src/IconDeviceUnknownOutlined.tsx | 12 ++++ src/IconDeviceUnknownRound.tsx | 11 ++++ src/IconDeviceUnknownSharp.tsx | 12 ++++ src/IconDeviceUnknownTwoTone.tsx | 16 ++++++ src/IconDevicesFoldOutlined.tsx | 44 +++++++++++++++ src/IconDevicesFoldRound.tsx | 47 ++++++++++++++++ src/IconDevicesFoldSharp.tsx | 46 +++++++++++++++ src/IconDevicesFoldTwoTone.tsx | 45 +++++++++++++++ src/IconDevicesOtherOutlined.tsx | 12 ++++ src/IconDevicesOtherRound.tsx | 11 ++++ src/IconDevicesOtherSharp.tsx | 12 ++++ src/IconDevicesOtherTwoTone.tsx | 14 +++++ src/IconDevicesOutlined.tsx | 12 ++++ src/IconDevicesRound.tsx | 12 ++++ src/IconDevicesSharp.tsx | 12 ++++ src/IconDevicesTwoTone.tsx | 13 +++++ src/IconDialerSipOutlined.tsx | 12 ++++ src/IconDialerSipRound.tsx | 12 ++++ src/IconDialerSipSharp.tsx | 12 ++++ src/IconDialerSipTwoTone.tsx | 16 ++++++ src/IconDialpadOutlined.tsx | 12 ++++ src/IconDialpadRound.tsx | 12 ++++ src/IconDialpadSharp.tsx | 12 ++++ src/IconDialpadTwoTone.tsx | 12 ++++ src/IconDiamondOutlined.tsx | 21 +++++++ src/IconDiamondRound.tsx | 38 +++++++++++++ src/IconDiamondSharp.tsx | 37 ++++++++++++ src/IconDiamondTwoTone.tsx | 28 ++++++++++ src/IconDifferenceOutlined.tsx | 21 +++++++ src/IconDifferenceRound.tsx | 22 ++++++++ src/IconDifferenceSharp.tsx | 21 +++++++ src/IconDifferenceTwoTone.tsx | 25 +++++++++ src/IconDiningOutlined.tsx | 21 +++++++ src/IconDiningRound.tsx | 21 +++++++ src/IconDiningSharp.tsx | 21 +++++++ src/IconDiningTwoTone.tsx | 29 ++++++++++ src/IconDinnerDiningOutlined.tsx | 24 ++++++++ src/IconDinnerDiningRound.tsx | 24 ++++++++ src/IconDinnerDiningSharp.tsx | 24 ++++++++ src/IconDinnerDiningTwoTone.tsx | 29 ++++++++++ src/IconDirections.tsx | 15 ++++- src/IconDirectionsBikeOutlined.tsx | 12 ++++ src/IconDirectionsBikeRound.tsx | 12 ++++ src/IconDirectionsBikeSharp.tsx | 12 ++++ src/IconDirectionsBikeTwoTone.tsx | 12 ++++ src/IconDirectionsBoatFilledOutlined.tsx | 19 +++++++ src/IconDirectionsBoatFilledRound.tsx | 23 ++++++++ src/IconDirectionsBoatFilledSharp.tsx | 23 ++++++++ src/IconDirectionsBoatFilledTwoTone.tsx | 21 +++++++ src/IconDirectionsBoatOutlined.tsx | 12 ++++ src/IconDirectionsBoatRound.tsx | 23 ++++++++ src/IconDirectionsBoatSharp.tsx | 12 ++++ src/IconDirectionsBoatTwoTone.tsx | 16 ++++++ src/IconDirectionsBusFilledOutlined.tsx | 25 +++++++++ src/IconDirectionsBusFilledRound.tsx | 24 ++++++++ src/IconDirectionsBusFilledSharp.tsx | 24 ++++++++ src/IconDirectionsBusFilledTwoTone.tsx | 35 ++++++++++++ src/IconDirectionsBusOutlined.tsx | 14 +++++ src/IconDirectionsBusRound.tsx | 12 ++++ src/IconDirectionsBusSharp.tsx | 12 ++++ src/IconDirectionsBusTwoTone.tsx | 18 ++++++ src/IconDirectionsCarFilledOutlined.tsx | 25 +++++++++ src/IconDirectionsCarFilledRound.tsx | 21 +++++++ src/IconDirectionsCarFilledSharp.tsx | 21 +++++++ src/IconDirectionsCarFilledTwoTone.tsx | 30 ++++++++++ src/IconDirectionsCarOutlined.tsx | 14 +++++ src/IconDirectionsCarRound.tsx | 12 ++++ src/IconDirectionsCarSharp.tsx | 12 ++++ src/IconDirectionsCarTwoTone.tsx | 18 ++++++ src/IconDirectionsOff.tsx | 10 +--- src/IconDirectionsOffOutlined.tsx | 25 +++++++++ src/IconDirectionsOffRound.tsx | 29 ++++++++++ src/IconDirectionsOffSharp.tsx | 24 ++++++++ src/IconDirectionsOffTwoTone.tsx | 25 +++++++++ src/IconDirectionsOutlined.tsx | 12 ++++ src/IconDirectionsRailwayFilledOutlined.tsx | 26 +++++++++ src/IconDirectionsRailwayFilledRound.tsx | 26 +++++++++ src/IconDirectionsRailwayFilledSharp.tsx | 26 +++++++++ src/IconDirectionsRailwayFilledTwoTone.tsx | 36 ++++++++++++ src/IconDirectionsRailwayOutlined.tsx | 12 ++++ src/IconDirectionsRailwayRound.tsx | 12 ++++ src/IconDirectionsRailwaySharp.tsx | 12 ++++ src/IconDirectionsRailwayTwoTone.tsx | 16 ++++++ src/IconDirectionsRound.tsx | 12 ++++ src/IconDirectionsRunOutlined.tsx | 12 ++++ src/IconDirectionsRunRound.tsx | 12 ++++ src/IconDirectionsRunSharp.tsx | 12 ++++ src/IconDirectionsRunTwoTone.tsx | 12 ++++ src/IconDirectionsSharp.tsx | 12 ++++ src/IconDirectionsSubwayFilledOutlined.tsx | 27 +++++++++ src/IconDirectionsSubwayFilledRound.tsx | 21 +++++++ src/IconDirectionsSubwayFilledSharp.tsx | 21 +++++++ src/IconDirectionsSubwayFilledTwoTone.tsx | 37 ++++++++++++ src/IconDirectionsSubwayOutlined.tsx | 14 +++++ src/IconDirectionsSubwayRound.tsx | 12 ++++ src/IconDirectionsSubwaySharp.tsx | 12 ++++ src/IconDirectionsSubwayTwoTone.tsx | 18 ++++++ src/IconDirectionsTransitFilledOutlined.tsx | 27 +++++++++ src/IconDirectionsTransitFilledRound.tsx | 23 ++++++++ src/IconDirectionsTransitFilledSharp.tsx | 23 ++++++++ src/IconDirectionsTransitFilledTwoTone.tsx | 37 ++++++++++++ src/IconDirectionsTransitOutlined.tsx | 14 +++++ src/IconDirectionsTransitRound.tsx | 12 ++++ src/IconDirectionsTransitSharp.tsx | 12 ++++ src/IconDirectionsTransitTwoTone.tsx | 18 ++++++ src/IconDirectionsTwoTone.tsx | 16 ++++++ src/IconDirectionsWalkOutlined.tsx | 12 ++++ src/IconDirectionsWalkRound.tsx | 12 ++++ src/IconDirectionsWalkSharp.tsx | 12 ++++ src/IconDirectionsWalkTwoTone.tsx | 12 ++++ src/IconDirtyLensOutlined.tsx | 24 ++++++++ src/IconDirtyLensRound.tsx | 21 +++++++ src/IconDirtyLensSharp.tsx | 21 +++++++ src/IconDirtyLensTwoTone.tsx | 28 ++++++++++ src/IconDisabledByDefaultOutlined.tsx | 17 ++++++ src/IconDisabledByDefaultRound.tsx | 17 ++++++ src/IconDisabledByDefaultSharp.tsx | 17 ++++++ src/IconDisabledByDefaultTwoTone.tsx | 21 +++++++ src/IconDisabledVisibleOutlined.tsx | 17 ++++++ src/IconDisabledVisibleRound.tsx | 17 ++++++ src/IconDisabledVisibleSharp.tsx | 17 ++++++ src/IconDisabledVisibleTwoTone.tsx | 21 +++++++ src/IconDiscFullOutlined.tsx | 12 ++++ src/IconDiscFullRound.tsx | 12 ++++ src/IconDiscFullSharp.tsx | 12 ++++ src/IconDiscFullTwoTone.tsx | 16 ++++++ src/IconDiscountOutlined.tsx | 25 +++++++++ src/IconDiscountRound.tsx | 29 ++++++++++ src/IconDiscountSharp.tsx | 28 ++++++++++ src/IconDiscountTwoTone.tsx | 28 ++++++++++ src/IconDisplaySettingsOutlined.tsx | 27 +++++++++ src/IconDisplaySettingsRound.tsx | 28 ++++++++++ src/IconDisplaySettingsSharp.tsx | 27 +++++++++ src/IconDisplaySettingsTwoTone.tsx | 31 ++++++++++ src/IconDiversity1Outlined.tsx | 29 ++++++++++ src/IconDiversity1Round.tsx | 30 ++++++++++ src/IconDiversity1Sharp.tsx | 29 ++++++++++ src/IconDiversity1TwoTone.tsx | 38 +++++++++++++ src/IconDiversity2Outlined.tsx | 25 +++++++++ src/IconDiversity2Round.tsx | 26 +++++++++ src/IconDiversity2Sharp.tsx | 25 +++++++++ src/IconDiversity2TwoTone.tsx | 34 +++++++++++ src/IconDiversity3Outlined.tsx | 27 +++++++++ src/IconDiversity3Round.tsx | 28 ++++++++++ src/IconDiversity3Sharp.tsx | 27 +++++++++ src/IconDiversity3TwoTone.tsx | 27 +++++++++ src/IconDnsOutlined.tsx | 12 ++++ src/IconDnsRound.tsx | 12 ++++ src/IconDnsSharp.tsx | 12 ++++ src/IconDnsTwoTone.tsx | 16 ++++++ src/IconDoDisturbAltOutlined.tsx | 12 ++++ src/IconDoDisturbAltRound.tsx | 12 ++++ src/IconDoDisturbAltSharp.tsx | 12 ++++ src/IconDoDisturbAltTwoTone.tsx | 12 ++++ src/IconDoDisturbOffOutlined.tsx | 12 ++++ src/IconDoDisturbOffRound.tsx | 12 ++++ src/IconDoDisturbOffSharp.tsx | 12 ++++ src/IconDoDisturbOffTwoTone.tsx | 16 ++++++ src/IconDoDisturbOnOutlined.tsx | 12 ++++ src/IconDoDisturbOnRound.tsx | 12 ++++ src/IconDoDisturbOnSharp.tsx | 12 ++++ src/IconDoDisturbOnTwoTone.tsx | 16 ++++++ src/IconDoDisturbOutlined.tsx | 12 ++++ src/IconDoDisturbRound.tsx | 12 ++++ src/IconDoDisturbSharp.tsx | 12 ++++ src/IconDoDisturbTwoTone.tsx | 12 ++++ src/IconDoNotDisturbAltOutlined.tsx | 25 +++++++++ src/IconDoNotDisturbAltRound.tsx | 25 +++++++++ src/IconDoNotDisturbAltSharp.tsx | 25 +++++++++ src/IconDoNotDisturbAltTwoTone.tsx | 25 +++++++++ src/IconDoNotDisturbOffOutlined.tsx | 25 +++++++++ src/IconDoNotDisturbOffRound.tsx | 21 +++++++ src/IconDoNotDisturbOffSharp.tsx | 21 +++++++ src/IconDoNotDisturbOffTwoTone.tsx | 25 +++++++++ src/IconDoNotDisturbOnOutlined.tsx | 23 ++++++++ src/IconDoNotDisturbOnRound.tsx | 23 ++++++++ src/IconDoNotDisturbOnSharp.tsx | 23 ++++++++ ...IconDoNotDisturbOnTotalSilenceOutlined.tsx | 25 +++++++++ src/IconDoNotDisturbOnTotalSilenceRound.tsx | 25 +++++++++ src/IconDoNotDisturbOnTotalSilenceSharp.tsx | 25 +++++++++ src/IconDoNotDisturbOnTotalSilenceTwoTone.tsx | 25 +++++++++ src/IconDoNotDisturbOnTwoTone.tsx | 31 ++++++++++ src/IconDoNotDisturbOutlined.tsx | 25 +++++++++ src/IconDoNotDisturbRound.tsx | 25 +++++++++ src/IconDoNotDisturbSharp.tsx | 25 +++++++++ src/IconDoNotDisturbTwoTone.tsx | 25 +++++++++ src/IconDoNotStepOutlined.tsx | 19 +++++++ src/IconDoNotStepRound.tsx | 19 +++++++ src/IconDoNotStepSharp.tsx | 19 +++++++ src/IconDoNotStepTwoTone.tsx | 23 ++++++++ src/IconDoNotTouchOutlined.tsx | 19 +++++++ src/IconDoNotTouchRound.tsx | 19 +++++++ src/IconDoNotTouchSharp.tsx | 19 +++++++ src/IconDoNotTouchTwoTone.tsx | 23 ++++++++ src/IconDockOutlined.tsx | 12 ++++ src/IconDockRound.tsx | 11 ++++ src/IconDockSharp.tsx | 12 ++++ src/IconDockTwoTone.tsx | 13 +++++ src/IconDocumentScannerOutlined.tsx | 17 ++++++ src/IconDocumentScannerRound.tsx | 17 ++++++ src/IconDocumentScannerSharp.tsx | 17 ++++++ src/IconDocumentScannerTwoTone.tsx | 21 +++++++ src/IconDomainAddOutlined.tsx | 21 +++++++ src/IconDomainAddRound.tsx | 21 +++++++ src/IconDomainAddSharp.tsx | 21 +++++++ src/IconDomainAddTwoTone.tsx | 25 +++++++++ src/IconDomainDisabledOutlined.tsx | 12 ++++ src/IconDomainDisabledRound.tsx | 12 ++++ src/IconDomainDisabledSharp.tsx | 12 ++++ src/IconDomainDisabledTwoTone.tsx | 13 +++++ src/IconDomainOutlined.tsx | 12 ++++ src/IconDomainRound.tsx | 12 ++++ src/IconDomainSharp.tsx | 12 ++++ src/IconDomainTwoTone.tsx | 16 ++++++ src/IconDomainVerificationOutlined.tsx | 24 ++++++++ src/IconDomainVerificationRound.tsx | 25 +++++++++ src/IconDomainVerificationSharp.tsx | 24 ++++++++ src/IconDomainVerificationTwoTone.tsx | 28 ++++++++++ src/IconDoneAllOutlined.tsx | 12 ++++ src/IconDoneAllRound.tsx | 12 ++++ src/IconDoneAllSharp.tsx | 12 ++++ src/IconDoneAllTwoTone.tsx | 12 ++++ src/IconDoneOutlineOutlined.tsx | 12 ++++ src/IconDoneOutlineRound.tsx | 12 ++++ src/IconDoneOutlineSharp.tsx | 12 ++++ src/IconDoneOutlineTwoTone.tsx | 12 ++++ src/IconDoneOutlined.tsx | 12 ++++ src/IconDoneRound.tsx | 12 ++++ src/IconDoneSharp.tsx | 12 ++++ src/IconDoneTwoTone.tsx | 12 ++++ src/IconDonutLargeOutlined.tsx | 12 ++++ src/IconDonutLargeRound.tsx | 12 ++++ src/IconDonutLargeSharp.tsx | 12 ++++ src/IconDonutLargeTwoTone.tsx | 12 ++++ src/IconDonutSmallOutlined.tsx | 12 ++++ src/IconDonutSmallRound.tsx | 12 ++++ src/IconDonutSmallSharp.tsx | 12 ++++ src/IconDonutSmallTwoTone.tsx | 16 ++++++ src/IconDoorBackOutlined.tsx | 24 ++++++++ src/IconDoorBackRound.tsx | 21 +++++++ src/IconDoorBackSharp.tsx | 21 +++++++ src/IconDoorBackTwoTone.tsx | 25 +++++++++ src/IconDoorFrontOutlined.tsx | 21 +++++++ src/IconDoorFrontRound.tsx | 21 +++++++ src/IconDoorFrontSharp.tsx | 21 +++++++ src/IconDoorFrontTwoTone.tsx | 25 +++++++++ src/IconDoorSlidingOutlined.tsx | 21 +++++++ src/IconDoorSlidingRound.tsx | 21 +++++++ src/IconDoorSlidingSharp.tsx | 21 +++++++ src/IconDoorSlidingTwoTone.tsx | 27 +++++++++ src/IconDoorbellOutlined.tsx | 21 +++++++ src/IconDoorbellRound.tsx | 21 +++++++ src/IconDoorbellSharp.tsx | 21 +++++++ src/IconDoorbellTwoTone.tsx | 29 ++++++++++ src/IconDoubleArrowOutlined.tsx | 24 ++++++++ src/IconDoubleArrowRound.tsx | 25 +++++++++ src/IconDoubleArrowSharp.tsx | 24 ++++++++ src/IconDoubleArrowTwoTone.tsx | 24 ++++++++ src/IconDownhillSkiingOutlined.tsx | 17 ++++++ src/IconDownhillSkiingRound.tsx | 17 ++++++ src/IconDownhillSkiingSharp.tsx | 17 ++++++ src/IconDownhillSkiingTwoTone.tsx | 17 ++++++ src/IconDownloadDoneOutlined.tsx | 12 ++++ src/IconDownloadDoneRound.tsx | 12 ++++ src/IconDownloadDoneSharp.tsx | 12 ++++ src/IconDownloadDoneTwoTone.tsx | 12 ++++ src/IconDownloadForOfflineOutlined.tsx | 23 ++++++++ src/IconDownloadForOfflineRound.tsx | 21 +++++++ src/IconDownloadForOfflineSharp.tsx | 21 +++++++ src/IconDownloadForOfflineTwoTone.tsx | 29 ++++++++++ src/IconDownloadOutlined.tsx | 12 ++++ src/IconDownloadRound.tsx | 12 ++++ src/IconDownloadSharp.tsx | 12 ++++ src/IconDownloadTwoTone.tsx | 13 +++++ src/IconDownloadingOutlined.tsx | 23 ++++++++ src/IconDownloadingRound.tsx | 23 ++++++++ src/IconDownloadingSharp.tsx | 23 ++++++++ src/IconDownloadingTwoTone.tsx | 23 ++++++++ src/IconDraftsOutlined.tsx | 12 ++++ src/IconDraftsRound.tsx | 12 ++++ src/IconDraftsSharp.tsx | 12 ++++ src/IconDraftsTwoTone.tsx | 13 +++++ src/IconDragHandleOutlined.tsx | 12 ++++ src/IconDragHandleRound.tsx | 12 ++++ src/IconDragHandleSharp.tsx | 11 ++++ src/IconDragHandleTwoTone.tsx | 12 ++++ src/IconDragIndicatorOutlined.tsx | 12 ++++ src/IconDragIndicatorRound.tsx | 12 ++++ src/IconDragIndicatorSharp.tsx | 12 ++++ src/IconDragIndicatorTwoTone.tsx | 12 ++++ src/IconDrawOutlined.tsx | 17 ++++++ src/IconDrawRound.tsx | 17 ++++++ src/IconDrawSharp.tsx | 17 ++++++ src/IconDrawTwoTone.tsx | 21 +++++++ src/IconDriveEtaOutlined.tsx | 14 +++++ src/IconDriveEtaRound.tsx | 12 ++++ src/IconDriveEtaSharp.tsx | 12 ++++ src/IconDriveEtaTwoTone.tsx | 18 ++++++ src/IconDriveFileMoveOutlined.tsx | 21 +++++++ src/IconDriveFileMoveRound.tsx | 21 +++++++ src/IconDriveFileMoveRtlOutlined.tsx | 17 ++++++ src/IconDriveFileMoveRtlRound.tsx | 17 ++++++ src/IconDriveFileMoveRtlSharp.tsx | 17 ++++++ src/IconDriveFileMoveRtlTwoTone.tsx | 21 +++++++ src/IconDriveFileMoveSharp.tsx | 21 +++++++ src/IconDriveFileMoveTwoTone.tsx | 28 ++++++++++ src/IconDriveFileRenameOutlineOutlined.tsx | 27 +++++++++ src/IconDriveFileRenameOutlineRound.tsx | 25 +++++++++ src/IconDriveFileRenameOutlineSharp.tsx | 31 ++++++++++ src/IconDriveFileRenameOutlineTwoTone.tsx | 31 ++++++++++ src/IconDriveFolderUploadOutlined.tsx | 21 +++++++ src/IconDriveFolderUploadRound.tsx | 21 +++++++ src/IconDriveFolderUploadSharp.tsx | 21 +++++++ src/IconDriveFolderUploadTwoTone.tsx | 28 ++++++++++ src/IconDryCleaningOutlined.tsx | 23 ++++++++ src/IconDryCleaningRound.tsx | 21 +++++++ src/IconDryCleaningSharp.tsx | 23 ++++++++ src/IconDryCleaningTwoTone.tsx | 31 ++++++++++ src/IconDryOutlined.tsx | 19 +++++++ src/IconDryRound.tsx | 19 +++++++ src/IconDrySharp.tsx | 19 +++++++ src/IconDryTwoTone.tsx | 23 ++++++++ src/IconDuoOutlined.tsx | 12 ++++ src/IconDuoRound.tsx | 12 ++++ src/IconDuoSharp.tsx | 12 ++++ src/IconDuoTwoTone.tsx | 12 ++++ src/IconDvrOutlined.tsx | 12 ++++ src/IconDvrRound.tsx | 12 ++++ src/IconDvrSharp.tsx | 12 ++++ src/IconDvrTwoTone.tsx | 16 ++++++ src/IconDynamicFeedOutlined.tsx | 34 +++++++++++ src/IconDynamicFeedRound.tsx | 27 +++++++++ src/IconDynamicFeedSharp.tsx | 34 +++++++++++ src/IconDynamicFeedTwoTone.tsx | 36 ++++++++++++ src/IconDynamicFormOutlined.tsx | 19 +++++++ src/IconDynamicFormRound.tsx | 19 +++++++ src/IconDynamicFormSharp.tsx | 19 +++++++ src/IconDynamicFormTwoTone.tsx | 20 +++++++ src/IconEMobiledataOutlined.tsx | 23 ++++++++ src/IconEMobiledataRound.tsx | 23 ++++++++ src/IconEMobiledataSharp.tsx | 23 ++++++++ src/IconEMobiledataTwoTone.tsx | 23 ++++++++ src/IconEarbudsBatteryOutlined.tsx | 23 ++++++++ src/IconEarbudsBatteryRound.tsx | 23 ++++++++ src/IconEarbudsBatterySharp.tsx | 24 ++++++++ src/IconEarbudsBatteryTwoTone.tsx | 25 +++++++++ src/IconEarbudsOutlined.tsx | 21 +++++++ src/IconEarbudsRound.tsx | 23 ++++++++ src/IconEarbudsSharp.tsx | 25 +++++++++ src/IconEarbudsTwoTone.tsx | 31 ++++++++++ src/IconEastOutlined.tsx | 17 ++++++ src/IconEastRound.tsx | 17 ++++++ src/IconEastSharp.tsx | 17 ++++++ src/IconEastTwoTone.tsx | 17 ++++++ src/IconEdgesensorHighOutlined.tsx | 23 ++++++++ src/IconEdgesensorHighRound.tsx | 23 ++++++++ src/IconEdgesensorHighSharp.tsx | 23 ++++++++ src/IconEdgesensorHighTwoTone.tsx | 29 ++++++++++ src/IconEdgesensorLowOutlined.tsx | 23 ++++++++ src/IconEdgesensorLowRound.tsx | 23 ++++++++ src/IconEdgesensorLowSharp.tsx | 23 ++++++++ src/IconEdgesensorLowTwoTone.tsx | 27 +++++++++ src/IconEditAttributesOutlined.tsx | 12 ++++ src/IconEditAttributesRound.tsx | 12 ++++ src/IconEditAttributesSharp.tsx | 12 ++++ src/IconEditAttributesTwoTone.tsx | 16 ++++++ src/IconEditCalendarOutlined.tsx | 17 ++++++ src/IconEditCalendarRound.tsx | 17 ++++++ src/IconEditCalendarSharp.tsx | 19 +++++++ src/IconEditCalendarTwoTone.tsx | 18 ++++++ src/IconEditLocationAltOutlined.tsx | 21 +++++++ src/IconEditLocationAltRound.tsx | 27 +++++++++ src/IconEditLocationAltSharp.tsx | 21 +++++++ src/IconEditLocationAltTwoTone.tsx | 28 ++++++++++ src/IconEditLocationOutlined.tsx | 12 ++++ src/IconEditLocationRound.tsx | 21 +++++++ src/IconEditLocationSharp.tsx | 12 ++++ src/IconEditLocationTwoTone.tsx | 25 +++++++++ src/IconEditNoteOutlined.tsx | 17 ++++++ src/IconEditNoteRound.tsx | 17 ++++++ src/IconEditNoteSharp.tsx | 17 ++++++ src/IconEditNoteTwoTone.tsx | 17 ++++++ src/IconEditNotificationsOutlined.tsx | 19 +++++++ src/IconEditNotificationsRound.tsx | 19 +++++++ src/IconEditNotificationsSharp.tsx | 19 +++++++ src/IconEditNotificationsTwoTone.tsx | 22 ++++++++ src/IconEditOffOutlined.tsx | 23 ++++++++ src/IconEditOffRound.tsx | 37 ++++++++++++ src/IconEditOffSharp.tsx | 23 ++++++++ src/IconEditOffTwoTone.tsx | 27 +++++++++ src/IconEditOutlined.tsx | 12 ++++ src/IconEditRoadOutlined.tsx | 28 ++++++++++ src/IconEditRoadRound.tsx | 29 ++++++++++ src/IconEditRoadSharp.tsx | 28 ++++++++++ src/IconEditRoadTwoTone.tsx | 32 +++++++++++ src/IconEditRound.tsx | 12 ++++ src/IconEditSharp.tsx | 12 ++++ src/IconEditTwoTone.tsx | 13 +++++ src/IconEggAltOutlined.tsx | 28 ++++++++++ src/IconEggAltRound.tsx | 24 ++++++++ src/IconEggAltSharp.tsx | 23 ++++++++ src/IconEggAltTwoTone.tsx | 31 ++++++++++ src/IconEggOutlined.tsx | 24 ++++++++ src/IconEggRound.tsx | 24 ++++++++ src/IconEggSharp.tsx | 23 ++++++++ src/IconEggTwoTone.tsx | 28 ++++++++++ src/IconEjectOutlined.tsx | 12 ++++ src/IconEjectRound.tsx | 12 ++++ src/IconEjectSharp.tsx | 12 ++++ src/IconEjectTwoTone.tsx | 13 +++++ src/IconElderlyOutlined.tsx | 17 ++++++ src/IconElderlyRound.tsx | 17 ++++++ src/IconElderlySharp.tsx | 17 ++++++ src/IconElderlyTwoTone.tsx | 17 ++++++ src/IconElderlyWomanOutlined.tsx | 24 ++++++++ src/IconElderlyWomanRound.tsx | 24 ++++++++ src/IconElderlyWomanSharp.tsx | 24 ++++++++ src/IconElderlyWomanTwoTone.tsx | 24 ++++++++ src/IconElectricBikeOutlined.tsx | 24 ++++++++ src/IconElectricBikeRound.tsx | 25 +++++++++ src/IconElectricBikeSharp.tsx | 24 ++++++++ src/IconElectricBikeTwoTone.tsx | 24 ++++++++ src/IconElectricBoltOutlined.tsx | 23 ++++++++ src/IconElectricBoltRound.tsx | 24 ++++++++ src/IconElectricBoltSharp.tsx | 23 ++++++++ src/IconElectricBoltTwoTone.tsx | 23 ++++++++ src/IconElectricCarOutlined.tsx | 26 +++++++++ src/IconElectricCarRound.tsx | 23 ++++++++ src/IconElectricCarSharp.tsx | 22 ++++++++ src/IconElectricCarTwoTone.tsx | 30 ++++++++++ src/IconElectricMeterOutlined.tsx | 25 +++++++++ src/IconElectricMeterRound.tsx | 22 ++++++++ src/IconElectricMeterSharp.tsx | 21 +++++++ src/IconElectricMeterTwoTone.tsx | 29 ++++++++++ src/IconElectricMopedOutlined.tsx | 26 +++++++++ src/IconElectricMopedRound.tsx | 27 +++++++++ src/IconElectricMopedSharp.tsx | 26 +++++++++ src/IconElectricMopedTwoTone.tsx | 27 +++++++++ src/IconElectricRickshawOutlined.tsx | 26 +++++++++ src/IconElectricRickshawRound.tsx | 23 ++++++++ src/IconElectricRickshawSharp.tsx | 24 ++++++++ src/IconElectricRickshawTwoTone.tsx | 36 ++++++++++++ src/IconElectricScooterOutlined.tsx | 25 +++++++++ src/IconElectricScooterRound.tsx | 26 +++++++++ src/IconElectricScooterSharp.tsx | 25 +++++++++ src/IconElectricScooterTwoTone.tsx | 25 +++++++++ src/IconElectricalServicesOutlined.tsx | 26 +++++++++ src/IconElectricalServicesRound.tsx | 27 +++++++++ src/IconElectricalServicesSharp.tsx | 26 +++++++++ src/IconElectricalServicesTwoTone.tsx | 24 ++++++++ src/IconElevatorOutlined.tsx | 19 +++++++ src/IconElevatorRound.tsx | 19 +++++++ src/IconElevatorSharp.tsx | 19 +++++++ src/IconElevatorTwoTone.tsx | 23 ++++++++ src/IconEmailOutlined.tsx | 12 ++++ src/IconEmailRound.tsx | 12 ++++ src/IconEmailSharp.tsx | 12 ++++ src/IconEmailTwoTone.tsx | 13 +++++ src/IconEmergencyOutlined.tsx | 17 ++++++ src/IconEmergencyRecordingOutlined.tsx | 21 +++++++ src/IconEmergencyRecordingRound.tsx | 22 ++++++++ src/IconEmergencyRecordingSharp.tsx | 21 +++++++ src/IconEmergencyRecordingTwoTone.tsx | 25 +++++++++ src/IconEmergencyRound.tsx | 17 ++++++ src/IconEmergencyShareOutlined.tsx | 21 +++++++ src/IconEmergencyShareRound.tsx | 22 ++++++++ src/IconEmergencyShareSharp.tsx | 21 +++++++ src/IconEmergencyShareTwoTone.tsx | 25 +++++++++ src/IconEmergencySharp.tsx | 17 ++++++ src/IconEmergencyTwoTone.tsx | 21 +++++++ src/IconEmojiEmotionsOutlined.tsx | 27 +++++++++ src/IconEmojiEmotionsRound.tsx | 23 ++++++++ src/IconEmojiEmotionsSharp.tsx | 22 ++++++++ src/IconEmojiEmotionsTwoTone.tsx | 31 ++++++++++ src/IconEmojiEventsOutlined.tsx | 17 ++++++ src/IconEmojiEventsRound.tsx | 17 ++++++ src/IconEmojiEventsSharp.tsx | 17 ++++++ src/IconEmojiEventsTwoTone.tsx | 21 +++++++ src/IconEmojiFoodBeverageOutlined.tsx | 25 +++++++++ src/IconEmojiFoodBeverageRound.tsx | 26 +++++++++ src/IconEmojiFoodBeverageSharp.tsx | 25 +++++++++ src/IconEmojiFoodBeverageTwoTone.tsx | 29 ++++++++++ src/IconEmojiNatureOutlined.tsx | 25 +++++++++ src/IconEmojiNatureRound.tsx | 26 +++++++++ src/IconEmojiNatureSharp.tsx | 25 +++++++++ src/IconEmojiNatureTwoTone.tsx | 37 ++++++++++++ src/IconEmojiObjectsOutlined.tsx | 41 ++++++++++++++ src/IconEmojiObjectsRound.tsx | 25 +++++++++ src/IconEmojiObjectsSharp.tsx | 24 ++++++++ src/IconEmojiObjectsTwoTone.tsx | 43 ++++++++++++++ src/IconEmojiPeopleOutlined.tsx | 25 +++++++++ src/IconEmojiPeopleRound.tsx | 26 +++++++++ src/IconEmojiPeopleSharp.tsx | 25 +++++++++ src/IconEmojiPeopleTwoTone.tsx | 25 +++++++++ src/IconEmojiSymbolsOutlined.tsx | 36 ++++++++++++ src/IconEmojiSymbolsRound.tsx | 31 ++++++++++ src/IconEmojiSymbolsSharp.tsx | 36 ++++++++++++ src/IconEmojiSymbolsTwoTone.tsx | 36 ++++++++++++ src/IconEmojiTransportationOutlined.tsx | 29 ++++++++++ src/IconEmojiTransportationRound.tsx | 30 ++++++++++ src/IconEmojiTransportationSharp.tsx | 29 ++++++++++ src/IconEmojiTransportationTwoTone.tsx | 29 ++++++++++ src/IconEnergySavingsLeafOutlined.tsx | 24 ++++++++ src/IconEnergySavingsLeafRound.tsx | 24 ++++++++ src/IconEnergySavingsLeafSharp.tsx | 23 ++++++++ src/IconEnergySavingsLeafTwoTone.tsx | 27 +++++++++ src/IconEngineeringOutlined.tsx | 26 +++++++++ src/IconEngineeringRound.tsx | 28 ++++++++++ src/IconEngineeringSharp.tsx | 27 +++++++++ src/IconEngineeringTwoTone.tsx | 39 +++++++++++++ src/IconEnhancedEncryptionOutlined.tsx | 12 ++++ src/IconEnhancedEncryptionRound.tsx | 12 ++++ src/IconEnhancedEncryptionSharp.tsx | 12 ++++ src/IconEnhancedEncryptionTwoTone.tsx | 16 ++++++ src/IconEqualizerOutlined.tsx | 12 ++++ src/IconEqualizerRound.tsx | 11 ++++ src/IconEqualizerSharp.tsx | 12 ++++ src/IconEqualizerTwoTone.tsx | 12 ++++ src/IconErrorOutlineOutlined.tsx | 11 ++++ src/IconErrorOutlineRound.tsx | 11 ++++ src/IconErrorOutlineSharp.tsx | 11 ++++ src/IconErrorOutlineTwoTone.tsx | 11 ++++ src/IconErrorOutlined.tsx | 11 ++++ src/IconErrorRound.tsx | 11 ++++ src/IconErrorSharp.tsx | 11 ++++ src/IconErrorTwoTone.tsx | 15 +++++ src/IconEscalatorOutlined.tsx | 19 +++++++ src/IconEscalatorRound.tsx | 21 +++++++ src/IconEscalatorSharp.tsx | 21 +++++++ src/IconEscalatorTwoTone.tsx | 23 ++++++++ src/IconEscalatorWarningOutlined.tsx | 19 +++++++ src/IconEscalatorWarningRound.tsx | 19 +++++++ src/IconEscalatorWarningSharp.tsx | 19 +++++++ src/IconEscalatorWarningTwoTone.tsx | 19 +++++++ src/IconEuroOutlined.tsx | 22 ++++++++ src/IconEuroRound.tsx | 23 ++++++++ src/IconEuroSharp.tsx | 22 ++++++++ src/IconEuroSymbolOutlined.tsx | 12 ++++ src/IconEuroSymbolRound.tsx | 12 ++++ src/IconEuroSymbolSharp.tsx | 12 ++++ src/IconEuroSymbolTwoTone.tsx | 12 ++++ src/IconEuroTwoTone.tsx | 22 ++++++++ src/IconEvStationOutlined.tsx | 12 ++++ src/IconEvStationRound.tsx | 12 ++++ src/IconEvStationSharp.tsx | 12 ++++ src/IconEvStationTwoTone.tsx | 13 +++++ src/IconEventAvailableOutlined.tsx | 12 ++++ src/IconEventAvailableRound.tsx | 12 ++++ src/IconEventAvailableSharp.tsx | 12 ++++ src/IconEventAvailableTwoTone.tsx | 13 +++++ src/IconEventBusyOutlined.tsx | 12 ++++ src/IconEventBusyRound.tsx | 12 ++++ src/IconEventBusySharp.tsx | 12 ++++ src/IconEventBusyTwoTone.tsx | 13 +++++ src/IconEventNoteOutlined.tsx | 12 ++++ src/IconEventNoteRound.tsx | 12 ++++ src/IconEventNoteSharp.tsx | 12 ++++ src/IconEventNoteTwoTone.tsx | 13 +++++ src/IconEventOutlined.tsx | 12 ++++ src/IconEventRepeatOutlined.tsx | 21 +++++++ src/IconEventRepeatRound.tsx | 21 +++++++ src/IconEventRepeatSharp.tsx | 21 +++++++ src/IconEventRepeatTwoTone.tsx | 22 ++++++++ src/IconEventRound.tsx | 12 ++++ src/IconEventSeatOutlined.tsx | 12 ++++ src/IconEventSeatRound.tsx | 12 ++++ src/IconEventSeatSharp.tsx | 12 ++++ src/IconEventSeatTwoTone.tsx | 13 +++++ src/IconEventSharp.tsx | 12 ++++ src/IconEventTwoTone.tsx | 13 +++++ src/IconExitToAppOutlined.tsx | 12 ++++ src/IconExitToAppRound.tsx | 12 ++++ src/IconExitToAppSharp.tsx | 12 ++++ src/IconExitToAppTwoTone.tsx | 12 ++++ src/IconExpandCircleDownOutlined.tsx | 17 ++++++ src/IconExpandCircleDownRound.tsx | 17 ++++++ src/IconExpandCircleDownSharp.tsx | 17 ++++++ src/IconExpandCircleDownTwoTone.tsx | 21 +++++++ src/IconExpandLessOutlined.tsx | 12 ++++ src/IconExpandLessRound.tsx | 12 ++++ src/IconExpandLessSharp.tsx | 12 ++++ src/IconExpandLessTwoTone.tsx | 12 ++++ src/IconExpandMoreOutlined.tsx | 12 ++++ src/IconExpandMoreRound.tsx | 12 ++++ src/IconExpandMoreSharp.tsx | 12 ++++ src/IconExpandMoreTwoTone.tsx | 12 ++++ src/IconExpandOutlined.tsx | 25 +++++++++ src/IconExpandRound.tsx | 21 +++++++ src/IconExpandSharp.tsx | 21 +++++++ src/IconExpandTwoTone.tsx | 21 +++++++ src/IconExplicitOutlined.tsx | 12 ++++ src/IconExplicitRound.tsx | 11 ++++ src/IconExplicitSharp.tsx | 12 ++++ src/IconExplicitTwoTone.tsx | 13 +++++ src/IconExploreOffOutlined.tsx | 12 ++++ src/IconExploreOffRound.tsx | 12 ++++ src/IconExploreOffSharp.tsx | 12 ++++ src/IconExploreOffTwoTone.tsx | 16 ++++++ src/IconExploreOutlined.tsx | 12 ++++ src/IconExploreRound.tsx | 12 ++++ src/IconExploreSharp.tsx | 12 ++++ src/IconExploreTwoTone.tsx | 16 ++++++ src/IconExposureNeg1Outlined.tsx | 12 ++++ src/IconExposureNeg1Round.tsx | 12 ++++ src/IconExposureNeg1Sharp.tsx | 12 ++++ src/IconExposureNeg1TwoTone.tsx | 12 ++++ src/IconExposureNeg2Outlined.tsx | 12 ++++ src/IconExposureNeg2Round.tsx | 12 ++++ src/IconExposureNeg2Sharp.tsx | 12 ++++ src/IconExposureNeg2TwoTone.tsx | 12 ++++ src/IconExposureOutlined.tsx | 12 ++++ src/IconExposurePlus1Outlined.tsx | 12 ++++ src/IconExposurePlus1Round.tsx | 12 ++++ src/IconExposurePlus1Sharp.tsx | 12 ++++ src/IconExposurePlus1TwoTone.tsx | 12 ++++ src/IconExposurePlus2Outlined.tsx | 12 ++++ src/IconExposurePlus2Round.tsx | 12 ++++ src/IconExposurePlus2Sharp.tsx | 12 ++++ src/IconExposurePlus2TwoTone.tsx | 12 ++++ src/IconExposureRound.tsx | 12 ++++ src/IconExposureSharp.tsx | 12 ++++ src/IconExposureTwoTone.tsx | 16 ++++++ src/IconExposureZeroOutlined.tsx | 12 ++++ src/IconExposureZeroRound.tsx | 12 ++++ src/IconExposureZeroSharp.tsx | 12 ++++ src/IconExposureZeroTwoTone.tsx | 12 ++++ src/IconExtensionOffOutlined.tsx | 17 ++++++ src/IconExtensionOffRound.tsx | 17 ++++++ src/IconExtensionOffSharp.tsx | 17 ++++++ src/IconExtensionOffTwoTone.tsx | 22 ++++++++ src/IconExtensionOutlined.tsx | 12 ++++ src/IconExtensionRound.tsx | 12 ++++ src/IconExtensionSharp.tsx | 12 ++++ src/IconExtensionTwoTone.tsx | 16 ++++++ src/IconFace2Outlined.tsx | 25 +++++++++ src/IconFace2Round.tsx | 26 +++++++++ src/IconFace2Sharp.tsx | 25 +++++++++ src/IconFace2TwoTone.tsx | 49 ++++++++++++++++ src/IconFace3Outlined.tsx | 25 +++++++++ src/IconFace3Round.tsx | 26 +++++++++ src/IconFace3Sharp.tsx | 25 +++++++++ src/IconFace3TwoTone.tsx | 41 ++++++++++++++ src/IconFace4Outlined.tsx | 25 +++++++++ src/IconFace4Round.tsx | 26 +++++++++ src/IconFace4Sharp.tsx | 25 +++++++++ src/IconFace4TwoTone.tsx | 37 ++++++++++++ src/IconFace5Outlined.tsx | 45 +++++++++++++++ src/IconFace5Round.tsx | 46 +++++++++++++++ src/IconFace5Sharp.tsx | 45 +++++++++++++++ src/IconFace5TwoTone.tsx | 45 +++++++++++++++ src/IconFace6Outlined.tsx | 25 +++++++++ src/IconFace6Round.tsx | 26 +++++++++ src/IconFace6Sharp.tsx | 25 +++++++++ src/IconFace6TwoTone.tsx | 29 ++++++++++ src/IconFaceOutlined.tsx | 12 ++++ src/IconFaceRetouchingNaturalOutlined.tsx | 28 ++++++++++ src/IconFaceRetouchingNaturalRound.tsx | 26 +++++++++ src/IconFaceRetouchingNaturalSharp.tsx | 26 +++++++++ src/IconFaceRetouchingNaturalTwoTone.tsx | 36 ++++++++++++ src/IconFaceRetouchingOffOutlined.tsx | 25 +++++++++ src/IconFaceRetouchingOffRound.tsx | 25 +++++++++ src/IconFaceRetouchingOffSharp.tsx | 25 +++++++++ src/IconFaceRetouchingOffTwoTone.tsx | 27 +++++++++ src/IconFaceRound.tsx | 21 +++++++ src/IconFaceSharp.tsx | 12 ++++ src/IconFaceTwoTone.tsx | 18 ++++++ src/IconFactCheckOutlined.tsx | 33 +++++++++++ src/IconFactCheckRound.tsx | 27 +++++++++ src/IconFactCheckSharp.tsx | 26 +++++++++ src/IconFactCheckTwoTone.tsx | 31 ++++++++++ src/IconFactoryOutlined.tsx | 21 +++++++ src/IconFactoryRound.tsx | 25 +++++++++ src/IconFactorySharp.tsx | 21 +++++++ src/IconFactoryTwoTone.tsx | 25 +++++++++ src/IconFamilyRestroomOutlined.tsx | 19 +++++++ src/IconFamilyRestroomRound.tsx | 19 +++++++ src/IconFamilyRestroomSharp.tsx | 19 +++++++ src/IconFamilyRestroomTwoTone.tsx | 19 +++++++ src/IconFastForwardOutlined.tsx | 24 ++++++++ src/IconFastForwardRound.tsx | 11 ++++ src/IconFastForwardSharp.tsx | 23 ++++++++ src/IconFastForwardTwoTone.tsx | 29 ++++++++++ src/IconFastRewindOutlined.tsx | 12 ++++ src/IconFastRewindRound.tsx | 11 ++++ src/IconFastRewindSharp.tsx | 12 ++++ src/IconFastRewindTwoTone.tsx | 13 +++++ src/IconFastfoodOutlined.tsx | 12 ++++ src/IconFastfoodRound.tsx | 12 ++++ src/IconFastfoodSharp.tsx | 12 ++++ src/IconFastfoodTwoTone.tsx | 17 ++++++ src/IconFavoriteBorderOutlined.tsx | 12 ++++ src/IconFavoriteBorderRound.tsx | 12 ++++ src/IconFavoriteBorderSharp.tsx | 12 ++++ src/IconFavoriteBorderTwoTone.tsx | 12 ++++ src/IconFavoriteOutlined.tsx | 12 ++++ src/IconFavoriteRound.tsx | 12 ++++ src/IconFavoriteSharp.tsx | 12 ++++ src/IconFavoriteTwoTone.tsx | 16 ++++++ src/IconFaxOutlined.tsx | 30 ++++++++++ src/IconFaxRound.tsx | 25 +++++++++ src/IconFaxSharp.tsx | 24 ++++++++ src/IconFaxTwoTone.tsx | 39 +++++++++++++ src/IconFeaturedPlayListOutlined.tsx | 12 ++++ src/IconFeaturedPlayListRound.tsx | 11 ++++ src/IconFeaturedPlayListSharp.tsx | 12 ++++ src/IconFeaturedPlayListTwoTone.tsx | 13 +++++ src/IconFeaturedVideoOutlined.tsx | 12 ++++ src/IconFeaturedVideoRound.tsx | 11 ++++ src/IconFeaturedVideoSharp.tsx | 12 ++++ src/IconFeaturedVideoTwoTone.tsx | 13 +++++ src/IconFeedOutlined.tsx | 21 +++++++ src/IconFeedRound.tsx | 21 +++++++ src/IconFeedSharp.tsx | 21 +++++++ src/IconFeedTwoTone.tsx | 25 +++++++++ src/IconFeedbackOutlined.tsx | 12 ++++ src/IconFeedbackRound.tsx | 12 ++++ src/IconFeedbackSharp.tsx | 12 ++++ src/IconFeedbackTwoTone.tsx | 16 ++++++ src/IconFemaleOutlined.tsx | 17 ++++++ src/IconFemaleRound.tsx | 17 ++++++ src/IconFemaleSharp.tsx | 21 +++++++ src/IconFemaleTwoTone.tsx | 17 ++++++ src/IconFenceOutlined.tsx | 21 +++++++ src/IconFenceRound.tsx | 21 +++++++ src/IconFenceSharp.tsx | 21 +++++++ src/IconFenceTwoTone.tsx | 24 ++++++++ src/IconFestivalOutlined.tsx | 21 +++++++ src/IconFestivalRound.tsx | 21 +++++++ src/IconFestivalSharp.tsx | 21 +++++++ src/IconFestivalTwoTone.tsx | 48 ++++++++++++++++ src/IconFiberDvrOutlined.tsx | 12 ++++ src/IconFiberDvrRound.tsx | 11 ++++ src/IconFiberDvrSharp.tsx | 12 ++++ src/IconFiberDvrTwoTone.tsx | 14 +++++ src/IconFiberManualRecordOutlined.tsx | 12 ++++ src/IconFiberManualRecordRound.tsx | 11 ++++ src/IconFiberManualRecordSharp.tsx | 12 ++++ src/IconFiberManualRecordTwoTone.tsx | 16 ++++++ src/IconFiberNewOutlined.tsx | 12 ++++ src/IconFiberNewRound.tsx | 11 ++++ src/IconFiberNewSharp.tsx | 12 ++++ src/IconFiberNewTwoTone.tsx | 14 +++++ src/IconFiberPinOutlined.tsx | 12 ++++ src/IconFiberPinRound.tsx | 11 ++++ src/IconFiberPinSharp.tsx | 12 ++++ src/IconFiberPinTwoTone.tsx | 14 +++++ src/IconFiberSmartRecordOutlined.tsx | 12 ++++ src/IconFiberSmartRecordRound.tsx | 12 ++++ src/IconFiberSmartRecordSharp.tsx | 13 +++++ src/IconFiberSmartRecordTwoTone.tsx | 16 ++++++ src/IconFileCopyOutlined.tsx | 12 ++++ src/IconFileCopyRound.tsx | 12 ++++ src/IconFileCopySharp.tsx | 12 ++++ src/IconFileCopyTwoTone.tsx | 13 +++++ src/IconFileDownloadDoneOutlined.tsx | 24 ++++++++ src/IconFileDownloadDoneRound.tsx | 24 ++++++++ src/IconFileDownloadDoneSharp.tsx | 24 ++++++++ src/IconFileDownloadDoneTwoTone.tsx | 24 ++++++++ src/IconFileDownloadOffOutlined.tsx | 17 ++++++ src/IconFileDownloadOffRound.tsx | 17 ++++++ src/IconFileDownloadOffSharp.tsx | 17 ++++++ src/IconFileDownloadOffTwoTone.tsx | 18 ++++++ src/IconFileDownloadOutlined.tsx | 21 +++++++ src/IconFileDownloadRound.tsx | 21 +++++++ src/IconFileDownloadSharp.tsx | 21 +++++++ src/IconFileDownloadTwoTone.tsx | 28 ++++++++++ src/IconFileOpenOutlined.tsx | 21 +++++++ src/IconFileOpenRound.tsx | 21 +++++++ src/IconFileOpenSharp.tsx | 21 +++++++ src/IconFileOpenTwoTone.tsx | 25 +++++++++ src/IconFilePresentOutlined.tsx | 21 +++++++ src/IconFilePresentRound.tsx | 21 +++++++ src/IconFilePresentSharp.tsx | 21 +++++++ src/IconFilePresentTwoTone.tsx | 28 ++++++++++ src/IconFileUploadOutlined.tsx | 21 +++++++ src/IconFileUploadRound.tsx | 21 +++++++ src/IconFileUploadSharp.tsx | 21 +++++++ src/IconFileUploadTwoTone.tsx | 28 ++++++++++ src/IconFilter1Outlined.tsx | 12 ++++ src/IconFilter1Round.tsx | 12 ++++ src/IconFilter1Sharp.tsx | 12 ++++ src/IconFilter1TwoTone.tsx | 13 +++++ src/IconFilter2Outlined.tsx | 12 ++++ src/IconFilter2Round.tsx | 12 ++++ src/IconFilter2Sharp.tsx | 12 ++++ src/IconFilter2TwoTone.tsx | 16 ++++++ src/IconFilter3Outlined.tsx | 12 ++++ src/IconFilter3Round.tsx | 12 ++++ src/IconFilter3Sharp.tsx | 12 ++++ src/IconFilter3TwoTone.tsx | 16 ++++++ src/IconFilter4Outlined.tsx | 12 ++++ src/IconFilter4Round.tsx | 12 ++++ src/IconFilter4Sharp.tsx | 12 ++++ src/IconFilter4TwoTone.tsx | 13 +++++ src/IconFilter5Outlined.tsx | 12 ++++ src/IconFilter5Round.tsx | 12 ++++ src/IconFilter5Sharp.tsx | 12 ++++ src/IconFilter5TwoTone.tsx | 16 ++++++ src/IconFilter6Outlined.tsx | 12 ++++ src/IconFilter6Round.tsx | 12 ++++ src/IconFilter6Sharp.tsx | 12 ++++ src/IconFilter6TwoTone.tsx | 16 ++++++ src/IconFilter7Outlined.tsx | 12 ++++ src/IconFilter7Round.tsx | 12 ++++ src/IconFilter7Sharp.tsx | 12 ++++ src/IconFilter7TwoTone.tsx | 13 +++++ src/IconFilter8Outlined.tsx | 12 ++++ src/IconFilter8Round.tsx | 12 ++++ src/IconFilter8Sharp.tsx | 12 ++++ src/IconFilter8TwoTone.tsx | 16 ++++++ src/IconFilter9Outlined.tsx | 12 ++++ src/IconFilter9PlusOutlined.tsx | 12 ++++ src/IconFilter9PlusRound.tsx | 12 ++++ src/IconFilter9PlusSharp.tsx | 12 ++++ src/IconFilter9PlusTwoTone.tsx | 18 ++++++ src/IconFilter9Round.tsx | 12 ++++ src/IconFilter9Sharp.tsx | 12 ++++ src/IconFilter9TwoTone.tsx | 16 ++++++ src/IconFilterAltOffOutlined.tsx | 24 ++++++++ src/IconFilterAltOffRound.tsx | 24 ++++++++ src/IconFilterAltOffSharp.tsx | 24 ++++++++ src/IconFilterAltOffTwoTone.tsx | 25 +++++++++ src/IconFilterAltOutlined.tsx | 20 +++++++ src/IconFilterAltRound.tsx | 20 +++++++ src/IconFilterAltSharp.tsx | 20 +++++++ src/IconFilterAltTwoTone.tsx | 21 +++++++ src/IconFilterBAndWOutlined.tsx | 12 ++++ src/IconFilterBAndWRound.tsx | 12 ++++ src/IconFilterBAndWSharp.tsx | 12 ++++ src/IconFilterBAndWTwoTone.tsx | 13 +++++ src/IconFilterCenterFocusOutlined.tsx | 12 ++++ src/IconFilterCenterFocusRound.tsx | 12 ++++ src/IconFilterCenterFocusSharp.tsx | 12 ++++ src/IconFilterCenterFocusTwoTone.tsx | 12 ++++ src/IconFilterDramaOutlined.tsx | 12 ++++ src/IconFilterDramaRound.tsx | 12 ++++ src/IconFilterDramaSharp.tsx | 12 ++++ src/IconFilterDramaTwoTone.tsx | 16 ++++++ src/IconFilterFramesOutlined.tsx | 12 ++++ src/IconFilterFramesRound.tsx | 12 ++++ src/IconFilterFramesSharp.tsx | 12 ++++ src/IconFilterFramesTwoTone.tsx | 13 +++++ src/IconFilterHdrOutlined.tsx | 12 ++++ src/IconFilterHdrRound.tsx | 12 ++++ src/IconFilterHdrSharp.tsx | 12 ++++ src/IconFilterHdrTwoTone.tsx | 13 +++++ src/IconFilterListOffOutlined.tsx | 21 +++++++ src/IconFilterListOffRound.tsx | 21 +++++++ src/IconFilterListOffSharp.tsx | 21 +++++++ src/IconFilterListOffTwoTone.tsx | 21 +++++++ src/IconFilterListOutlined.tsx | 12 ++++ src/IconFilterListRound.tsx | 12 ++++ src/IconFilterListSharp.tsx | 12 ++++ src/IconFilterListTwoTone.tsx | 12 ++++ src/IconFilterNoneOutlined.tsx | 12 ++++ src/IconFilterNoneRound.tsx | 12 ++++ src/IconFilterNoneSharp.tsx | 12 ++++ src/IconFilterNoneTwoTone.tsx | 13 +++++ src/IconFilterOutlined.tsx | 12 ++++ src/IconFilterRound.tsx | 12 ++++ src/IconFilterSharp.tsx | 12 ++++ src/IconFilterTiltShiftOutlined.tsx | 12 ++++ src/IconFilterTiltShiftRound.tsx | 12 ++++ src/IconFilterTiltShiftSharp.tsx | 12 ++++ src/IconFilterTiltShiftTwoTone.tsx | 12 ++++ src/IconFilterTwoTone.tsx | 16 ++++++ src/IconFilterVintageOutlined.tsx | 12 ++++ src/IconFilterVintageRound.tsx | 12 ++++ src/IconFilterVintageSharp.tsx | 12 ++++ src/IconFilterVintageTwoTone.tsx | 16 ++++++ src/IconFindInPageOutlined.tsx | 12 ++++ src/IconFindInPageRound.tsx | 12 ++++ src/IconFindInPageSharp.tsx | 12 ++++ src/IconFindInPageTwoTone.tsx | 16 ++++++ src/IconFindReplaceOutlined.tsx | 12 ++++ src/IconFindReplaceRound.tsx | 12 ++++ src/IconFindReplaceSharp.tsx | 12 ++++ src/IconFindReplaceTwoTone.tsx | 12 ++++ src/IconFingerprintOutlined.tsx | 12 ++++ src/IconFingerprintRound.tsx | 12 ++++ src/IconFingerprintSharp.tsx | 12 ++++ src/IconFingerprintTwoTone.tsx | 12 ++++ src/IconFireExtinguisherOutlined.tsx | 19 +++++++ src/IconFireExtinguisherRound.tsx | 19 +++++++ src/IconFireExtinguisherSharp.tsx | 19 +++++++ src/IconFireExtinguisherTwoTone.tsx | 19 +++++++ src/IconFireHydrantAltOutlined.tsx | 24 ++++++++ src/IconFireHydrantAltRound.tsx | 25 +++++++++ src/IconFireHydrantAltSharp.tsx | 24 ++++++++ src/IconFireHydrantAltTwoTone.tsx | 33 +++++++++++ src/IconFireTruckOutlined.tsx | 24 ++++++++ src/IconFireTruckRound.tsx | 25 +++++++++ src/IconFireTruckSharp.tsx | 24 ++++++++ src/IconFireTruckTwoTone.tsx | 32 +++++++++++ src/IconFireplaceOutlined.tsx | 24 ++++++++ src/IconFireplaceRound.tsx | 22 ++++++++ src/IconFireplaceSharp.tsx | 21 +++++++ src/IconFireplaceTwoTone.tsx | 28 ++++++++++ src/IconFirstPageOutlined.tsx | 12 ++++ src/IconFirstPageRound.tsx | 12 ++++ src/IconFirstPageSharp.tsx | 12 ++++ src/IconFirstPageTwoTone.tsx | 12 ++++ src/IconFitScreenOutlined.tsx | 21 +++++++ src/IconFitScreenRound.tsx | 21 +++++++ src/IconFitScreenSharp.tsx | 21 +++++++ src/IconFitScreenTwoTone.tsx | 22 ++++++++ src/IconFitbitOutlined.tsx | 17 ++++++ src/IconFitbitRound.tsx | 17 ++++++ src/IconFitbitSharp.tsx | 17 ++++++ src/IconFitbitTwoTone.tsx | 17 ++++++ src/IconFitnessCenterOutlined.tsx | 12 ++++ src/IconFitnessCenterRound.tsx | 12 ++++ src/IconFitnessCenterSharp.tsx | 12 ++++ src/IconFitnessCenterTwoTone.tsx | 12 ++++ src/IconFlagCircleOutlined.tsx | 24 ++++++++ src/IconFlagCircleRound.tsx | 24 ++++++++ src/IconFlagCircleSharp.tsx | 23 ++++++++ src/IconFlagCircleTwoTone.tsx | 27 +++++++++ src/IconFlagOutlined.tsx | 12 ++++ src/IconFlagRound.tsx | 12 ++++ src/IconFlagSharp.tsx | 12 ++++ src/IconFlagTwoTone.tsx | 13 +++++ src/IconFlakyOutlined.tsx | 24 ++++++++ src/IconFlakyRound.tsx | 25 +++++++++ src/IconFlakySharp.tsx | 24 ++++++++ src/IconFlakyTwoTone.tsx | 24 ++++++++ src/IconFlareOutlined.tsx | 12 ++++ src/IconFlareRound.tsx | 12 ++++ src/IconFlareSharp.tsx | 12 ++++ src/IconFlareTwoTone.tsx | 12 ++++ src/IconFlashAutoOutlined.tsx | 12 ++++ src/IconFlashAutoRound.tsx | 12 ++++ src/IconFlashAutoSharp.tsx | 12 ++++ src/IconFlashAutoTwoTone.tsx | 12 ++++ src/IconFlashOffOutlined.tsx | 12 ++++ src/IconFlashOffRound.tsx | 12 ++++ src/IconFlashOffSharp.tsx | 12 ++++ src/IconFlashOffTwoTone.tsx | 12 ++++ src/IconFlashOnOutlined.tsx | 12 ++++ src/IconFlashOnRound.tsx | 12 ++++ src/IconFlashOnSharp.tsx | 12 ++++ src/IconFlashOnTwoTone.tsx | 12 ++++ src/IconFlashlightOffOutlined.tsx | 24 ++++++++ src/IconFlashlightOffRound.tsx | 25 +++++++++ src/IconFlashlightOffSharp.tsx | 25 +++++++++ src/IconFlashlightOffTwoTone.tsx | 31 ++++++++++ src/IconFlashlightOnOutlined.tsx | 24 ++++++++ src/IconFlashlightOnRound.tsx | 24 ++++++++ src/IconFlashlightOnSharp.tsx | 24 ++++++++ src/IconFlashlightOnTwoTone.tsx | 29 ++++++++++ src/IconFlatwareOutlined.tsx | 21 +++++++ src/IconFlatwareRound.tsx | 21 +++++++ src/IconFlatwareSharp.tsx | 21 +++++++ src/IconFlatwareTwoTone.tsx | 21 +++++++ src/IconFlightClassOutlined.tsx | 17 ++++++ src/IconFlightClassRound.tsx | 17 ++++++ src/IconFlightClassSharp.tsx | 17 ++++++ src/IconFlightClassTwoTone.tsx | 18 ++++++ src/IconFlightLandOutlined.tsx | 12 ++++ src/IconFlightLandRound.tsx | 12 ++++ src/IconFlightLandSharp.tsx | 12 ++++ src/IconFlightLandTwoTone.tsx | 12 ++++ src/IconFlightOutlined.tsx | 12 ++++ src/IconFlightRound.tsx | 12 ++++ src/IconFlightSharp.tsx | 12 ++++ src/IconFlightTakeoffOutlined.tsx | 12 ++++ src/IconFlightTakeoffRound.tsx | 12 ++++ src/IconFlightTakeoffSharp.tsx | 12 ++++ src/IconFlightTakeoffTwoTone.tsx | 12 ++++ src/IconFlightTwoTone.tsx | 12 ++++ src/IconFlipCameraAndroidOutlined.tsx | 25 +++++++++ src/IconFlipCameraAndroidRound.tsx | 26 +++++++++ src/IconFlipCameraAndroidSharp.tsx | 25 +++++++++ src/IconFlipCameraAndroidTwoTone.tsx | 26 +++++++++ src/IconFlipCameraIosOutlined.tsx | 31 ++++++++++ src/IconFlipCameraIosRound.tsx | 24 ++++++++ src/IconFlipCameraIosSharp.tsx | 23 ++++++++ src/IconFlipCameraIosTwoTone.tsx | 33 +++++++++++ src/IconFlipOutlined.tsx | 12 ++++ src/IconFlipRound.tsx | 12 ++++ src/IconFlipSharp.tsx | 12 ++++ src/IconFlipToBackOutlined.tsx | 12 ++++ src/IconFlipToBackRound.tsx | 12 ++++ src/IconFlipToBackSharp.tsx | 12 ++++ src/IconFlipToBackTwoTone.tsx | 12 ++++ src/IconFlipToFrontOutlined.tsx | 12 ++++ src/IconFlipToFrontRound.tsx | 12 ++++ src/IconFlipToFrontSharp.tsx | 12 ++++ src/IconFlipToFrontTwoTone.tsx | 12 ++++ src/IconFlipTwoTone.tsx | 12 ++++ src/IconFloodOutlined.tsx | 24 ++++++++ src/IconFloodRound.tsx | 25 +++++++++ src/IconFloodSharp.tsx | 24 ++++++++ src/IconFloodTwoTone.tsx | 28 ++++++++++ src/IconFluorescentOutlined.tsx | 47 ++++++++++++++++ src/IconFluorescentRound.tsx | 29 ++++++++++ src/IconFluorescentSharp.tsx | 47 ++++++++++++++++ src/IconFluorescentTwoTone.tsx | 48 ++++++++++++++++ src/IconFlutterDashOutlined.tsx | 19 +++++++ src/IconFlutterDashRound.tsx | 19 +++++++ src/IconFlutterDashSharp.tsx | 19 +++++++ src/IconFlutterDashTwoTone.tsx | 22 ++++++++ src/IconFmdBadOutlined.tsx | 25 +++++++++ src/IconFmdBadRound.tsx | 21 +++++++ src/IconFmdBadSharp.tsx | 21 +++++++ src/IconFmdBadTwoTone.tsx | 27 +++++++++ src/IconFmdGoodOutlined.tsx | 21 +++++++ src/IconFmdGoodRound.tsx | 21 +++++++ src/IconFmdGoodSharp.tsx | 21 +++++++ src/IconFmdGoodTwoTone.tsx | 28 ++++++++++ src/IconFolderCopyOutlined.tsx | 21 +++++++ src/IconFolderCopyRound.tsx | 25 +++++++++ src/IconFolderCopySharp.tsx | 24 ++++++++ src/IconFolderCopyTwoTone.tsx | 25 +++++++++ src/IconFolderDeleteOutlined.tsx | 21 +++++++ src/IconFolderDeleteRound.tsx | 21 +++++++ src/IconFolderDeleteSharp.tsx | 21 +++++++ src/IconFolderDeleteTwoTone.tsx | 25 +++++++++ src/IconFolderOffOutlined.tsx | 24 ++++++++ src/IconFolderOffRound.tsx | 25 +++++++++ src/IconFolderOffSharp.tsx | 24 ++++++++ src/IconFolderOffTwoTone.tsx | 36 ++++++++++++ src/IconFolderOpenOutlined.tsx | 12 ++++ src/IconFolderOpenRound.tsx | 12 ++++ src/IconFolderOpenSharp.tsx | 12 ++++ src/IconFolderOpenTwoTone.tsx | 13 +++++ src/IconFolderOutlined.tsx | 12 ++++ src/IconFolderRound.tsx | 12 ++++ src/IconFolderSharedOutlined.tsx | 12 ++++ src/IconFolderSharedRound.tsx | 12 ++++ src/IconFolderSharedSharp.tsx | 12 ++++ src/IconFolderSharedTwoTone.tsx | 16 ++++++ src/IconFolderSharp.tsx | 12 ++++ src/IconFolderSpecialOutlined.tsx | 12 ++++ src/IconFolderSpecialRound.tsx | 12 ++++ src/IconFolderSpecialSharp.tsx | 12 ++++ src/IconFolderSpecialTwoTone.tsx | 16 ++++++ src/IconFolderTwoTone.tsx | 13 +++++ src/IconFolderZipOutlined.tsx | 21 +++++++ src/IconFolderZipRound.tsx | 21 +++++++ src/IconFolderZipSharp.tsx | 21 +++++++ src/IconFolderZipTwoTone.tsx | 25 +++++++++ src/IconFollowTheSignsOutlined.tsx | 17 ++++++ src/IconFollowTheSignsRound.tsx | 17 ++++++ src/IconFollowTheSignsSharp.tsx | 17 ++++++ src/IconFollowTheSignsTwoTone.tsx | 21 +++++++ src/IconFontDownloadOffOutlined.tsx | 17 ++++++ src/IconFontDownloadOffRound.tsx | 17 ++++++ src/IconFontDownloadOffSharp.tsx | 17 ++++++ src/IconFontDownloadOffTwoTone.tsx | 21 +++++++ src/IconFontDownloadOutlined.tsx | 12 ++++ src/IconFontDownloadRound.tsx | 12 ++++ src/IconFontDownloadSharp.tsx | 12 ++++ src/IconFontDownloadTwoTone.tsx | 16 ++++++ src/IconFoodBankOutlined.tsx | 17 ++++++ src/IconFoodBankRound.tsx | 17 ++++++ src/IconFoodBankSharp.tsx | 17 ++++++ src/IconFoodBankTwoTone.tsx | 21 +++++++ src/IconForestOutlined.tsx | 23 ++++++++ src/IconForestRound.tsx | 26 +++++++++ src/IconForestSharp.tsx | 25 +++++++++ src/IconForestTwoTone.tsx | 31 ++++++++++ src/IconForkLeftOutlined.tsx | 21 +++++++ src/IconForkLeftRound.tsx | 22 ++++++++ src/IconForkLeftSharp.tsx | 21 +++++++ src/IconForkLeftTwoTone.tsx | 21 +++++++ src/IconForkRightOutlined.tsx | 21 +++++++ src/IconForkRightRound.tsx | 22 ++++++++ src/IconForkRightSharp.tsx | 21 +++++++ src/IconForkRightTwoTone.tsx | 21 +++++++ src/IconFormatAlignCenterOutlined.tsx | 12 ++++ src/IconFormatAlignCenterRound.tsx | 12 ++++ src/IconFormatAlignCenterSharp.tsx | 11 ++++ src/IconFormatAlignCenterTwoTone.tsx | 12 ++++ src/IconFormatAlignJustifyOutlined.tsx | 12 ++++ src/IconFormatAlignJustifyRound.tsx | 12 ++++ src/IconFormatAlignJustifySharp.tsx | 11 ++++ src/IconFormatAlignJustifyTwoTone.tsx | 12 ++++ src/IconFormatAlignLeftOutlined.tsx | 12 ++++ src/IconFormatAlignLeftRound.tsx | 12 ++++ src/IconFormatAlignLeftSharp.tsx | 11 ++++ src/IconFormatAlignLeftTwoTone.tsx | 12 ++++ src/IconFormatAlignRightOutlined.tsx | 12 ++++ src/IconFormatAlignRightRound.tsx | 12 ++++ src/IconFormatAlignRightSharp.tsx | 11 ++++ src/IconFormatAlignRightTwoTone.tsx | 12 ++++ src/IconFormatBoldOutlined.tsx | 12 ++++ src/IconFormatBoldRound.tsx | 12 ++++ src/IconFormatBoldSharp.tsx | 11 ++++ src/IconFormatBoldTwoTone.tsx | 12 ++++ src/IconFormatClearOutlined.tsx | 12 ++++ src/IconFormatClearRound.tsx | 12 ++++ src/IconFormatClearSharp.tsx | 11 ++++ src/IconFormatClearTwoTone.tsx | 12 ++++ src/IconFormatColorFillOutlined.tsx | 21 +++++++ src/IconFormatColorFillRound.tsx | 34 +++++++++++ src/IconFormatColorFillSharp.tsx | 31 ++++++++++ src/IconFormatColorFillTwoTone.tsx | 21 +++++++ src/IconFormatColorResetOutlined.tsx | 12 ++++ src/IconFormatColorResetRound.tsx | 12 ++++ src/IconFormatColorResetSharp.tsx | 11 ++++ src/IconFormatColorResetTwoTone.tsx | 16 ++++++ src/IconFormatColorTextOutlined.tsx | 21 +++++++ src/IconFormatColorTextRound.tsx | 24 ++++++++ src/IconFormatColorTextSharp.tsx | 21 +++++++ src/IconFormatColorTextTwoTone.tsx | 21 +++++++ src/IconFormatIndentDecreaseOutlined.tsx | 14 +++++ src/IconFormatIndentDecreaseRound.tsx | 12 ++++ src/IconFormatIndentDecreaseSharp.tsx | 11 ++++ src/IconFormatIndentDecreaseTwoTone.tsx | 12 ++++ src/IconFormatIndentIncreaseOutlined.tsx | 14 +++++ src/IconFormatIndentIncreaseRound.tsx | 12 ++++ src/IconFormatIndentIncreaseSharp.tsx | 11 ++++ src/IconFormatIndentIncreaseTwoTone.tsx | 12 ++++ src/IconFormatItalicOutlined.tsx | 12 ++++ src/IconFormatItalicRound.tsx | 12 ++++ src/IconFormatItalicSharp.tsx | 11 ++++ src/IconFormatItalicTwoTone.tsx | 12 ++++ src/IconFormatLineSpacingOutlined.tsx | 12 ++++ src/IconFormatLineSpacingRound.tsx | 12 ++++ src/IconFormatLineSpacingSharp.tsx | 11 ++++ src/IconFormatLineSpacingTwoTone.tsx | 12 ++++ src/IconFormatListBulletedOutlined.tsx | 12 ++++ src/IconFormatListBulletedRound.tsx | 12 ++++ src/IconFormatListBulletedSharp.tsx | 11 ++++ src/IconFormatListBulletedTwoTone.tsx | 15 +++++ src/IconFormatListNumberedOutlined.tsx | 12 ++++ src/IconFormatListNumberedRound.tsx | 12 ++++ src/IconFormatListNumberedRtlOutlined.tsx | 14 +++++ src/IconFormatListNumberedRtlRound.tsx | 12 ++++ src/IconFormatListNumberedRtlSharp.tsx | 11 ++++ src/IconFormatListNumberedRtlTwoTone.tsx | 14 +++++ src/IconFormatListNumberedSharp.tsx | 11 ++++ src/IconFormatListNumberedTwoTone.tsx | 12 ++++ src/IconFormatOverlineOutlined.tsx | 21 +++++++ src/IconFormatOverlineRound.tsx | 21 +++++++ src/IconFormatOverlineSharp.tsx | 21 +++++++ src/IconFormatOverlineTwoTone.tsx | 21 +++++++ src/IconFormatPaintOutlined.tsx | 12 ++++ src/IconFormatPaintRound.tsx | 12 ++++ src/IconFormatPaintSharp.tsx | 11 ++++ src/IconFormatPaintTwoTone.tsx | 13 +++++ src/IconFormatQuoteOutlined.tsx | 12 ++++ src/IconFormatQuoteRound.tsx | 12 ++++ src/IconFormatQuoteSharp.tsx | 11 ++++ src/IconFormatQuoteTwoTone.tsx | 16 ++++++ src/IconFormatShapesOutlined.tsx | 12 ++++ src/IconFormatShapesRound.tsx | 12 ++++ src/IconFormatShapesSharp.tsx | 11 ++++ src/IconFormatShapesTwoTone.tsx | 13 +++++ src/IconFormatSizeOutlined.tsx | 12 ++++ src/IconFormatSizeRound.tsx | 12 ++++ src/IconFormatSizeSharp.tsx | 11 ++++ src/IconFormatSizeTwoTone.tsx | 12 ++++ src/IconFormatStrikethroughOutlined.tsx | 12 ++++ src/IconFormatStrikethroughRound.tsx | 12 ++++ src/IconFormatStrikethroughSharp.tsx | 11 ++++ src/IconFormatStrikethroughTwoTone.tsx | 12 ++++ src/IconFormatTextdirectionLToROutlined.tsx | 14 +++++ src/IconFormatTextdirectionLToRRound.tsx | 14 +++++ src/IconFormatTextdirectionLToRSharp.tsx | 13 +++++ src/IconFormatTextdirectionLToRTwoTone.tsx | 15 +++++ src/IconFormatTextdirectionRToLOutlined.tsx | 14 +++++ src/IconFormatTextdirectionRToLRound.tsx | 14 +++++ src/IconFormatTextdirectionRToLSharp.tsx | 13 +++++ src/IconFormatTextdirectionRToLTwoTone.tsx | 15 +++++ src/IconFormatUnderlinedOutlined.tsx | 12 ++++ src/IconFormatUnderlinedRound.tsx | 12 ++++ src/IconFormatUnderlinedSharp.tsx | 11 ++++ src/IconFormatUnderlinedTwoTone.tsx | 12 ++++ src/IconFortOutlined.tsx | 21 +++++++ src/IconFortRound.tsx | 24 ++++++++ src/IconFortSharp.tsx | 23 ++++++++ src/IconFortTwoTone.tsx | 27 +++++++++ src/IconForumOutlined.tsx | 12 ++++ src/IconForumRound.tsx | 12 ++++ src/IconForumSharp.tsx | 12 ++++ src/IconForumTwoTone.tsx | 13 +++++ src/IconForward10Outlined.tsx | 28 ++++++++++ src/IconForward10Round.tsx | 11 ++++ src/IconForward10Sharp.tsx | 27 +++++++++ src/IconForward10TwoTone.tsx | 28 ++++++++++ src/IconForward30Outlined.tsx | 12 ++++ src/IconForward30Round.tsx | 11 ++++ src/IconForward30Sharp.tsx | 12 ++++ src/IconForward30TwoTone.tsx | 12 ++++ src/IconForward5Outlined.tsx | 12 ++++ src/IconForward5Round.tsx | 11 ++++ src/IconForward5Sharp.tsx | 12 ++++ src/IconForward5TwoTone.tsx | 12 ++++ src/IconForwardOutlined.tsx | 12 ++++ src/IconForwardRound.tsx | 12 ++++ src/IconForwardSharp.tsx | 12 ++++ src/IconForwardToInboxOutlined.tsx | 19 +++++++ src/IconForwardToInboxRound.tsx | 19 +++++++ src/IconForwardToInboxSharp.tsx | 19 +++++++ src/IconForwardToInboxTwoTone.tsx | 23 ++++++++ src/IconForwardTwoTone.tsx | 13 +++++ src/IconFoundationOutlined.tsx | 17 ++++++ src/IconFoundationRound.tsx | 17 ++++++ src/IconFoundationSharp.tsx | 17 ++++++ src/IconFoundationTwoTone.tsx | 18 ++++++ src/IconFreeBreakfastOutlined.tsx | 12 ++++ src/IconFreeBreakfastRound.tsx | 12 ++++ src/IconFreeBreakfastSharp.tsx | 12 ++++ src/IconFreeBreakfastTwoTone.tsx | 13 +++++ src/IconFreeCancellationOutlined.tsx | 17 ++++++ src/IconFreeCancellationRound.tsx | 17 ++++++ src/IconFreeCancellationSharp.tsx | 17 ++++++ src/IconFreeCancellationTwoTone.tsx | 18 ++++++ src/IconFrontHandOutlined.tsx | 17 ++++++ src/IconFrontHandRound.tsx | 17 ++++++ src/IconFrontHandSharp.tsx | 17 ++++++ src/IconFrontHandTwoTone.tsx | 21 +++++++ src/IconFullscreenExitOutlined.tsx | 12 ++++ src/IconFullscreenExitRound.tsx | 12 ++++ src/IconFullscreenExitSharp.tsx | 12 ++++ src/IconFullscreenExitTwoTone.tsx | 12 ++++ src/IconFullscreenOutlined.tsx | 12 ++++ src/IconFullscreenRound.tsx | 12 ++++ src/IconFullscreenSharp.tsx | 12 ++++ src/IconFullscreenTwoTone.tsx | 12 ++++ src/IconFunctionsOutlined.tsx | 12 ++++ src/IconFunctionsRound.tsx | 12 ++++ src/IconFunctionsSharp.tsx | 11 ++++ src/IconFunctionsTwoTone.tsx | 12 ++++ src/IconGMobiledataOutlined.tsx | 23 ++++++++ src/IconGMobiledataRound.tsx | 23 ++++++++ src/IconGMobiledataSharp.tsx | 23 ++++++++ src/IconGMobiledataTwoTone.tsx | 23 ++++++++ src/IconGTranslateOutlined.tsx | 12 ++++ src/IconGTranslateRound.tsx | 12 ++++ src/IconGTranslateSharp.tsx | 12 ++++ src/IconGTranslateTwoTone.tsx | 12 ++++ src/IconGamepadOutlined.tsx | 12 ++++ src/IconGamepadRound.tsx | 11 ++++ src/IconGamepadSharp.tsx | 12 ++++ src/IconGamepadTwoTone.tsx | 16 ++++++ src/IconGamesOutlined.tsx | 12 ++++ src/IconGamesRound.tsx | 11 ++++ src/IconGamesSharp.tsx | 12 ++++ src/IconGamesTwoTone.tsx | 16 ++++++ src/IconGarageOutlined.tsx | 26 +++++++++ src/IconGarageRound.tsx | 26 +++++++++ src/IconGarageSharp.tsx | 26 +++++++++ src/IconGarageTwoTone.tsx | 34 +++++++++++ src/IconGasMeterOutlined.tsx | 25 +++++++++ src/IconGasMeterRound.tsx | 22 ++++++++ src/IconGasMeterSharp.tsx | 21 +++++++ src/IconGasMeterTwoTone.tsx | 29 ++++++++++ src/IconGavelOutlined.tsx | 12 ++++ src/IconGavelRound.tsx | 12 ++++ src/IconGavelSharp.tsx | 12 ++++ src/IconGavelTwoTone.tsx | 12 ++++ src/IconGeneratingTokensOutlined.tsx | 17 ++++++ src/IconGeneratingTokensRound.tsx | 17 ++++++ src/IconGeneratingTokensSharp.tsx | 17 ++++++ src/IconGeneratingTokensTwoTone.tsx | 21 +++++++ src/IconGestureOutlined.tsx | 12 ++++ src/IconGestureRound.tsx | 12 ++++ src/IconGestureSharp.tsx | 12 ++++ src/IconGestureTwoTone.tsx | 12 ++++ src/IconGetAppOutlined.tsx | 12 ++++ src/IconGetAppRound.tsx | 12 ++++ src/IconGetAppSharp.tsx | 12 ++++ src/IconGetAppTwoTone.tsx | 13 +++++ src/IconGifBoxOutlined.tsx | 17 ++++++ src/IconGifBoxRound.tsx | 17 ++++++ src/IconGifBoxSharp.tsx | 17 ++++++ src/IconGifBoxTwoTone.tsx | 21 +++++++ src/IconGifOutlined.tsx | 12 ++++ src/IconGifRound.tsx | 12 ++++ src/IconGifSharp.tsx | 12 ++++ src/IconGifTwoTone.tsx | 15 +++++ src/IconGirlOutlined.tsx | 23 ++++++++ src/IconGirlRound.tsx | 23 ++++++++ src/IconGirlSharp.tsx | 23 ++++++++ src/IconGirlTwoTone.tsx | 23 ++++++++ src/IconGiteOutlined.tsx | 17 ++++++ src/IconGiteRound.tsx | 17 ++++++ src/IconGiteSharp.tsx | 17 ++++++ src/IconGiteTwoTone.tsx | 18 ++++++ src/IconGolfCourseOutlined.tsx | 13 +++++ src/IconGolfCourseRound.tsx | 13 +++++ src/IconGolfCourseSharp.tsx | 13 +++++ src/IconGolfCourseTwoTone.tsx | 18 ++++++ src/IconGppBadOutlined.tsx | 21 +++++++ src/IconGppBadRound.tsx | 21 +++++++ src/IconGppBadSharp.tsx | 21 +++++++ src/IconGppBadTwoTone.tsx | 27 +++++++++ src/IconGppGoodOutlined.tsx | 21 +++++++ src/IconGppGoodRound.tsx | 21 +++++++ src/IconGppGoodSharp.tsx | 21 +++++++ src/IconGppGoodTwoTone.tsx | 28 ++++++++++ src/IconGppMaybeOutlined.tsx | 25 +++++++++ src/IconGppMaybeRound.tsx | 21 +++++++ src/IconGppMaybeSharp.tsx | 21 +++++++ src/IconGppMaybeTwoTone.tsx | 27 +++++++++ src/IconGpsFixedOutlined.tsx | 12 ++++ src/IconGpsFixedRound.tsx | 12 ++++ src/IconGpsFixedSharp.tsx | 12 ++++ src/IconGpsFixedTwoTone.tsx | 13 +++++ src/IconGpsNotFixedOutlined.tsx | 12 ++++ src/IconGpsNotFixedRound.tsx | 12 ++++ src/IconGpsNotFixedSharp.tsx | 12 ++++ src/IconGpsNotFixedTwoTone.tsx | 12 ++++ src/IconGpsOffOutlined.tsx | 12 ++++ src/IconGpsOffRound.tsx | 12 ++++ src/IconGpsOffSharp.tsx | 12 ++++ src/IconGpsOffTwoTone.tsx | 12 ++++ src/IconGradeOutlined.tsx | 12 ++++ src/IconGradeRound.tsx | 12 ++++ src/IconGradeSharp.tsx | 12 ++++ src/IconGradeTwoTone.tsx | 16 ++++++ src/IconGradientOutlined.tsx | 12 ++++ src/IconGradientRound.tsx | 12 ++++ src/IconGradientSharp.tsx | 12 ++++ src/IconGradientTwoTone.tsx | 12 ++++ src/IconGradingOutlined.tsx | 21 +++++++ src/IconGradingRound.tsx | 27 +++++++++ src/IconGradingSharp.tsx | 21 +++++++ src/IconGradingTwoTone.tsx | 21 +++++++ src/IconGrainOutlined.tsx | 12 ++++ src/IconGrainRound.tsx | 12 ++++ src/IconGrainSharp.tsx | 12 ++++ src/IconGrainTwoTone.tsx | 12 ++++ src/IconGraphicEqOutlined.tsx | 12 ++++ src/IconGraphicEqRound.tsx | 12 ++++ src/IconGraphicEqSharp.tsx | 12 ++++ src/IconGraphicEqTwoTone.tsx | 12 ++++ src/IconGrassOutlined.tsx | 17 ++++++ src/IconGrassRound.tsx | 17 ++++++ src/IconGrassSharp.tsx | 17 ++++++ src/IconGrassTwoTone.tsx | 17 ++++++ src/IconGrid3x3Outlined.tsx | 21 +++++++ src/IconGrid3x3Round.tsx | 21 +++++++ src/IconGrid3x3Sharp.tsx | 21 +++++++ src/IconGrid3x3TwoTone.tsx | 21 +++++++ src/IconGrid4x4Outlined.tsx | 23 ++++++++ src/IconGrid4x4Round.tsx | 23 ++++++++ src/IconGrid4x4Sharp.tsx | 23 ++++++++ src/IconGrid4x4TwoTone.tsx | 23 ++++++++ src/IconGridGoldenratioOutlined.tsx | 23 ++++++++ src/IconGridGoldenratioRound.tsx | 21 +++++++ src/IconGridGoldenratioSharp.tsx | 23 ++++++++ src/IconGridGoldenratioTwoTone.tsx | 23 ++++++++ src/IconGridOffOutlined.tsx | 12 ++++ src/IconGridOffRound.tsx | 12 ++++ src/IconGridOffSharp.tsx | 12 ++++ src/IconGridOffTwoTone.tsx | 16 ++++++ src/IconGridOnOutlined.tsx | 12 ++++ src/IconGridOnRound.tsx | 12 ++++ src/IconGridOnSharp.tsx | 12 ++++ src/IconGridOnTwoTone.tsx | 16 ++++++ src/IconGridViewOutlined.tsx | 25 +++++++++ src/IconGridViewRound.tsx | 26 +++++++++ src/IconGridViewSharp.tsx | 26 +++++++++ src/IconGridViewTwoTone.tsx | 30 ++++++++++ src/IconGroupAddOutlined.tsx | 28 ++++++++++ src/IconGroupAddRound.tsx | 28 ++++++++++ src/IconGroupAddSharp.tsx | 28 ++++++++++ src/IconGroupAddTwoTone.tsx | 34 +++++++++++ src/IconGroupOffOutlined.tsx | 17 ++++++ src/IconGroupOffRound.tsx | 17 ++++++ src/IconGroupOffSharp.tsx | 17 ++++++ src/IconGroupOffTwoTone.tsx | 21 +++++++ src/IconGroupOutlined.tsx | 12 ++++ src/IconGroupRemoveOutlined.tsx | 17 ++++++ src/IconGroupRemoveRound.tsx | 17 ++++++ src/IconGroupRemoveSharp.tsx | 17 ++++++ src/IconGroupRemoveTwoTone.tsx | 21 +++++++ src/IconGroupRound.tsx | 12 ++++ src/IconGroupSharp.tsx | 12 ++++ src/IconGroupTwoTone.tsx | 17 ++++++ src/IconGroupWorkOutlined.tsx | 15 +++++ src/IconGroupWorkRound.tsx | 12 ++++ src/IconGroupWorkSharp.tsx | 12 ++++ src/IconGroupWorkTwoTone.tsx | 19 +++++++ src/IconGroups2Outlined.tsx | 28 ++++++++++ src/IconGroups2Round.tsx | 29 ++++++++++ src/IconGroups2Sharp.tsx | 28 ++++++++++ src/IconGroups2TwoTone.tsx | 36 ++++++++++++ src/IconGroups3Outlined.tsx | 34 +++++++++++ src/IconGroups3Round.tsx | 35 ++++++++++++ src/IconGroups3Sharp.tsx | 34 +++++++++++ src/IconGroups3TwoTone.tsx | 39 +++++++++++++ src/IconGroupsOutlined.tsx | 19 +++++++ src/IconGroupsRound.tsx | 19 +++++++ src/IconGroupsSharp.tsx | 19 +++++++ src/IconGroupsTwoTone.tsx | 22 ++++++++ src/IconHMobiledataOutlined.tsx | 23 ++++++++ src/IconHMobiledataRound.tsx | 23 ++++++++ src/IconHMobiledataSharp.tsx | 23 ++++++++ src/IconHMobiledataTwoTone.tsx | 23 ++++++++ src/IconHPlusMobiledataOutlined.tsx | 23 ++++++++ src/IconHPlusMobiledataRound.tsx | 23 ++++++++ src/IconHPlusMobiledataSharp.tsx | 23 ++++++++ src/IconHPlusMobiledataTwoTone.tsx | 23 ++++++++ src/IconHailOutlined.tsx | 21 +++++++ src/IconHailRound.tsx | 21 +++++++ src/IconHailSharp.tsx | 21 +++++++ src/IconHailTwoTone.tsx | 21 +++++++ src/IconHandshakeOutlined.tsx | 21 +++++++ src/IconHandshakeRound.tsx | 22 ++++++++ src/IconHandshakeSharp.tsx | 21 +++++++ src/IconHandshakeTwoTone.tsx | 25 +++++++++ src/IconHandymanOutlined.tsx | 28 ++++++++++ src/IconHandymanRound.tsx | 29 ++++++++++ src/IconHandymanSharp.tsx | 28 ++++++++++ src/IconHandymanTwoTone.tsx | 40 +++++++++++++ src/IconHardwareOutlined.tsx | 23 ++++++++ src/IconHardwareRound.tsx | 30 ++++++++++ src/IconHardwareSharp.tsx | 30 ++++++++++ src/IconHardwareTwoTone.tsx | 36 ++++++++++++ src/IconHdOutlined.tsx | 12 ++++ src/IconHdRound.tsx | 11 ++++ src/IconHdSharp.tsx | 12 ++++ src/IconHdTwoTone.tsx | 16 ++++++ src/IconHdrAutoOutlined.tsx | 21 +++++++ src/IconHdrAutoRound.tsx | 24 ++++++++ src/IconHdrAutoSelectOutlined.tsx | 28 ++++++++++ src/IconHdrAutoSelectRound.tsx | 28 ++++++++++ src/IconHdrAutoSelectSharp.tsx | 28 ++++++++++ src/IconHdrAutoSelectTwoTone.tsx | 28 ++++++++++ src/IconHdrAutoSharp.tsx | 24 ++++++++ src/IconHdrAutoTwoTone.tsx | 32 +++++++++++ src/IconHdrEnhancedSelectOutlined.tsx | 23 ++++++++ src/IconHdrEnhancedSelectRound.tsx | 27 +++++++++ src/IconHdrEnhancedSelectSharp.tsx | 27 +++++++++ src/IconHdrEnhancedSelectTwoTone.tsx | 32 +++++++++++ src/IconHdrOffOutlined.tsx | 12 ++++ src/IconHdrOffRound.tsx | 12 ++++ src/IconHdrOffSelectOutlined.tsx | 23 ++++++++ src/IconHdrOffSelectRound.tsx | 23 ++++++++ src/IconHdrOffSelectSharp.tsx | 23 ++++++++ src/IconHdrOffSelectTwoTone.tsx | 23 ++++++++ src/IconHdrOffSharp.tsx | 12 ++++ src/IconHdrOffTwoTone.tsx | 12 ++++ src/IconHdrOnOutlined.tsx | 12 ++++ src/IconHdrOnRound.tsx | 12 ++++ src/IconHdrOnSelectOutlined.tsx | 23 ++++++++ src/IconHdrOnSelectRound.tsx | 23 ++++++++ src/IconHdrOnSelectSharp.tsx | 23 ++++++++ src/IconHdrOnSelectTwoTone.tsx | 23 ++++++++ src/IconHdrOnSharp.tsx | 12 ++++ src/IconHdrOnTwoTone.tsx | 12 ++++ src/IconHdrPlusOutlined.tsx | 23 ++++++++ src/IconHdrPlusRound.tsx | 25 +++++++++ src/IconHdrPlusSharp.tsx | 25 +++++++++ src/IconHdrPlusTwoTone.tsx | 32 +++++++++++ src/IconHdrStrongOutlined.tsx | 12 ++++ src/IconHdrStrongRound.tsx | 12 ++++ src/IconHdrStrongSharp.tsx | 12 ++++ src/IconHdrStrongTwoTone.tsx | 16 ++++++ src/IconHdrWeakOutlined.tsx | 12 ++++ src/IconHdrWeakRound.tsx | 12 ++++ src/IconHdrWeakSharp.tsx | 12 ++++ src/IconHdrWeakTwoTone.tsx | 14 +++++ src/IconHeadphonesBatteryOutlined.tsx | 24 ++++++++ src/IconHeadphonesBatteryRound.tsx | 24 ++++++++ src/IconHeadphonesBatterySharp.tsx | 24 ++++++++ src/IconHeadphonesBatteryTwoTone.tsx | 27 +++++++++ src/IconHeadphonesOutlined.tsx | 21 +++++++ src/IconHeadphonesRound.tsx | 21 +++++++ src/IconHeadphonesSharp.tsx | 21 +++++++ src/IconHeadphonesTwoTone.tsx | 25 +++++++++ src/IconHeadsetMicOutlined.tsx | 12 ++++ src/IconHeadsetMicRound.tsx | 11 ++++ src/IconHeadsetMicSharp.tsx | 12 ++++ src/IconHeadsetMicTwoTone.tsx | 13 +++++ src/IconHeadsetOffOutlined.tsx | 24 ++++++++ src/IconHeadsetOffRound.tsx | 24 ++++++++ src/IconHeadsetOffSharp.tsx | 24 ++++++++ src/IconHeadsetOffTwoTone.tsx | 26 +++++++++ src/IconHeadsetOutlined.tsx | 12 ++++ src/IconHeadsetRound.tsx | 11 ++++ src/IconHeadsetSharp.tsx | 12 ++++ src/IconHeadsetTwoTone.tsx | 16 ++++++ src/IconHealingOutlined.tsx | 12 ++++ src/IconHealingRound.tsx | 12 ++++ src/IconHealingSharp.tsx | 12 ++++ src/IconHealingTwoTone.tsx | 16 ++++++ src/IconHealthAndSafetyOutlined.tsx | 17 ++++++ src/IconHealthAndSafetyRound.tsx | 17 ++++++ src/IconHealthAndSafetySharp.tsx | 17 ++++++ src/IconHealthAndSafetyTwoTone.tsx | 21 +++++++ src/IconHearingDisabledOutlined.tsx | 19 +++++++ src/IconHearingDisabledRound.tsx | 19 +++++++ src/IconHearingDisabledSharp.tsx | 19 +++++++ src/IconHearingDisabledTwoTone.tsx | 19 +++++++ src/IconHearingOutlined.tsx | 12 ++++ src/IconHearingRound.tsx | 11 ++++ src/IconHearingSharp.tsx | 12 ++++ src/IconHearingTwoTone.tsx | 14 +++++ src/IconHeartBrokenOutlined.tsx | 21 +++++++ src/IconHeartBrokenRound.tsx | 22 ++++++++ src/IconHeartBrokenSharp.tsx | 21 +++++++ src/IconHeartBrokenTwoTone.tsx | 31 ++++++++++ src/IconHeatPumpOutlined.tsx | 24 ++++++++ src/IconHeatPumpRound.tsx | 22 ++++++++ src/IconHeatPumpSharp.tsx | 21 +++++++ src/IconHeatPumpTwoTone.tsx | 28 ++++++++++ src/IconHeightOutlined.tsx | 22 ++++++++ src/IconHeightRound.tsx | 23 ++++++++ src/IconHeightSharp.tsx | 22 ++++++++ src/IconHeightTwoTone.tsx | 22 ++++++++ src/IconHelpCenterOutlined.tsx | 19 +++++++ src/IconHelpCenterRound.tsx | 19 +++++++ src/IconHelpCenterSharp.tsx | 19 +++++++ src/IconHelpCenterTwoTone.tsx | 23 ++++++++ src/IconHelpOutlineOutlined.tsx | 12 ++++ src/IconHelpOutlineRound.tsx | 12 ++++ src/IconHelpOutlineSharp.tsx | 12 ++++ src/IconHelpOutlineTwoTone.tsx | 12 ++++ src/IconHelpOutlined.tsx | 12 ++++ src/IconHelpRound.tsx | 12 ++++ src/IconHelpSharp.tsx | 12 ++++ src/IconHelpTwoTone.tsx | 16 ++++++ src/IconHevcOutlined.tsx | 26 +++++++++ src/IconHevcRound.tsx | 26 +++++++++ src/IconHevcSharp.tsx | 26 +++++++++ src/IconHevcTwoTone.tsx | 26 +++++++++ src/IconHexagonOutlined.tsx | 21 +++++++ src/IconHexagonRound.tsx | 21 +++++++ src/IconHexagonSharp.tsx | 21 +++++++ src/IconHexagonTwoTone.tsx | 25 +++++++++ src/IconHideImageOutlined.tsx | 24 ++++++++ src/IconHideImageRound.tsx | 24 ++++++++ src/IconHideImageSharp.tsx | 24 ++++++++ src/IconHideImageTwoTone.tsx | 29 ++++++++++ src/IconHideSourceOutlined.tsx | 21 +++++++ src/IconHideSourceRound.tsx | 21 +++++++ src/IconHideSourceSharp.tsx | 21 +++++++ src/IconHideSourceTwoTone.tsx | 21 +++++++ src/IconHighQualityOutlined.tsx | 12 ++++ src/IconHighQualityRound.tsx | 11 ++++ src/IconHighQualitySharp.tsx | 12 ++++ src/IconHighQualityTwoTone.tsx | 16 ++++++ src/IconHighlightAltOutlined.tsx | 19 +++++++ src/IconHighlightAltRound.tsx | 19 +++++++ src/IconHighlightAltSharp.tsx | 19 +++++++ src/IconHighlightAltTwoTone.tsx | 19 +++++++ src/IconHighlightOffOutlined.tsx | 12 ++++ src/IconHighlightOffRound.tsx | 12 ++++ src/IconHighlightOffSharp.tsx | 12 ++++ src/IconHighlightOffTwoTone.tsx | 16 ++++++ src/IconHighlightOutlined.tsx | 12 ++++ src/IconHighlightRound.tsx | 12 ++++ src/IconHighlightSharp.tsx | 11 ++++ src/IconHighlightTwoTone.tsx | 13 +++++ src/IconHikingOutlined.tsx | 17 ++++++ src/IconHikingRound.tsx | 17 ++++++ src/IconHikingSharp.tsx | 17 ++++++ src/IconHikingTwoTone.tsx | 17 ++++++ src/IconHistoryEduOutlined.tsx | 23 ++++++++ src/IconHistoryEduRound.tsx | 24 ++++++++ src/IconHistoryEduSharp.tsx | 23 ++++++++ src/IconHistoryEduTwoTone.tsx | 31 ++++++++++ src/IconHistoryOutlined.tsx | 12 ++++ src/IconHistoryRound.tsx | 12 ++++ src/IconHistorySharp.tsx | 12 ++++ src/IconHistoryToggleOffOutlined.tsx | 19 +++++++ src/IconHistoryToggleOffRound.tsx | 19 +++++++ src/IconHistoryToggleOffSharp.tsx | 19 +++++++ src/IconHistoryToggleOffTwoTone.tsx | 19 +++++++ src/IconHistoryTwoTone.tsx | 12 ++++ src/IconHiveOutlined.tsx | 21 +++++++ src/IconHiveRound.tsx | 30 ++++++++++ src/IconHiveSharp.tsx | 29 ++++++++++ src/IconHiveTwoTone.tsx | 51 +++++++++++++++++ src/IconHlsOffOutlined.tsx | 21 +++++++ src/IconHlsOffRound.tsx | 22 ++++++++ src/IconHlsOffSharp.tsx | 21 +++++++ src/IconHlsOffTwoTone.tsx | 21 +++++++ src/IconHlsOutlined.tsx | 21 +++++++ src/IconHlsRound.tsx | 22 ++++++++ src/IconHlsSharp.tsx | 21 +++++++ src/IconHlsTwoTone.tsx | 21 +++++++ src/IconHolidayVillageOutlined.tsx | 17 ++++++ src/IconHolidayVillageRound.tsx | 17 ++++++ src/IconHolidayVillageSharp.tsx | 17 ++++++ src/IconHolidayVillageTwoTone.tsx | 21 +++++++ src/IconHomeMaxOutlined.tsx | 21 +++++++ src/IconHomeMaxRound.tsx | 21 +++++++ src/IconHomeMaxSharp.tsx | 21 +++++++ src/IconHomeMaxTwoTone.tsx | 27 +++++++++ src/IconHomeMiniOutlined.tsx | 21 +++++++ src/IconHomeMiniRound.tsx | 21 +++++++ src/IconHomeMiniSharp.tsx | 21 +++++++ src/IconHomeMiniTwoTone.tsx | 31 ++++++++++ src/IconHomeOutlined.tsx | 12 ++++ src/IconHomeRepairServiceOutlined.tsx | 23 ++++++++ src/IconHomeRepairServiceRound.tsx | 27 +++++++++ src/IconHomeRepairServiceSharp.tsx | 26 +++++++++ src/IconHomeRepairServiceTwoTone.tsx | 33 +++++++++++ src/IconHomeRound.tsx | 12 ++++ src/IconHomeSharp.tsx | 12 ++++ src/IconHomeTwoTone.tsx | 13 +++++ src/IconHomeWorkOutlined.tsx | 27 +++++++++ src/IconHomeWorkRound.tsx | 25 +++++++++ src/IconHomeWorkSharp.tsx | 24 ++++++++ src/IconHomeWorkTwoTone.tsx | 35 ++++++++++++ src/IconHorizontalDistributeOutlined.tsx | 19 +++++++ src/IconHorizontalDistributeRound.tsx | 17 ++++++ src/IconHorizontalDistributeSharp.tsx | 17 ++++++ src/IconHorizontalDistributeTwoTone.tsx | 17 ++++++ src/IconHorizontalRuleOutlined.tsx | 21 +++++++ src/IconHorizontalRuleRound.tsx | 24 ++++++++ src/IconHorizontalRuleSharp.tsx | 21 +++++++ src/IconHorizontalRuleTwoTone.tsx | 21 +++++++ src/IconHorizontalSplitOutlined.tsx | 12 ++++ src/IconHorizontalSplitRound.tsx | 12 ++++ src/IconHorizontalSplitSharp.tsx | 12 ++++ src/IconHorizontalSplitTwoTone.tsx | 13 +++++ src/IconHotTubOutlined.tsx | 13 +++++ src/IconHotTubRound.tsx | 13 +++++ src/IconHotTubSharp.tsx | 13 +++++ src/IconHotTubTwoTone.tsx | 13 +++++ src/IconHotelClass.tsx | 2 +- src/IconHotelClassOutlined.tsx | 17 ++++++ src/IconHotelClassRound.tsx | 17 ++++++ src/IconHotelClassSharp.tsx | 17 ++++++ src/IconHotelClassTwoTone.tsx | 21 +++++++ src/IconHotelOutlined.tsx | 12 ++++ src/IconHotelRound.tsx | 12 ++++ src/IconHotelSharp.tsx | 12 ++++ src/IconHotelTwoTone.tsx | 14 +++++ src/IconHourglassBottomOutlined.tsx | 21 +++++++ src/IconHourglassBottomRound.tsx | 22 ++++++++ src/IconHourglassBottomSharp.tsx | 21 +++++++ src/IconHourglassBottomTwoTone.tsx | 25 +++++++++ src/IconHourglassDisabledOutlined.tsx | 24 ++++++++ src/IconHourglassDisabledRound.tsx | 25 +++++++++ src/IconHourglassDisabledSharp.tsx | 24 ++++++++ src/IconHourglassDisabledTwoTone.tsx | 24 ++++++++ src/IconHourglassEmptyOutlined.tsx | 12 ++++ src/IconHourglassEmptyRound.tsx | 12 ++++ src/IconHourglassEmptySharp.tsx | 12 ++++ src/IconHourglassEmptyTwoTone.tsx | 12 ++++ src/IconHourglassFullOutlined.tsx | 12 ++++ src/IconHourglassFullRound.tsx | 12 ++++ src/IconHourglassFullSharp.tsx | 12 ++++ src/IconHourglassFullTwoTone.tsx | 13 +++++ src/IconHourglassTopOutlined.tsx | 21 +++++++ src/IconHourglassTopRound.tsx | 22 ++++++++ src/IconHourglassTopSharp.tsx | 21 +++++++ src/IconHourglassTopTwoTone.tsx | 25 +++++++++ src/IconHouseOutlined.tsx | 24 ++++++++ src/IconHouseRound.tsx | 22 ++++++++ src/IconHouseSharp.tsx | 21 +++++++ src/IconHouseSidingOutlined.tsx | 17 ++++++ src/IconHouseSidingRound.tsx | 17 ++++++ src/IconHouseSidingSharp.tsx | 17 ++++++ src/IconHouseSidingTwoTone.tsx | 21 +++++++ src/IconHouseTwoTone.tsx | 28 ++++++++++ src/IconHouseboatOutlined.tsx | 17 ++++++ src/IconHouseboatRound.tsx | 17 ++++++ src/IconHouseboatSharp.tsx | 17 ++++++ src/IconHouseboatTwoTone.tsx | 21 +++++++ src/IconHowToRegOutlined.tsx | 12 ++++ src/IconHowToRegRound.tsx | 13 +++++ src/IconHowToRegSharp.tsx | 13 +++++ src/IconHowToRegTwoTone.tsx | 14 +++++ src/IconHowToVoteOutlined.tsx | 12 ++++ src/IconHowToVoteRound.tsx | 24 ++++++++ src/IconHowToVoteSharp.tsx | 12 ++++ src/IconHowToVoteTwoTone.tsx | 15 +++++ src/IconHtmlOutlined.tsx | 21 +++++++ src/IconHtmlRound.tsx | 22 ++++++++ src/IconHtmlSharp.tsx | 21 +++++++ src/IconHtmlTwoTone.tsx | 21 +++++++ src/IconHttpOutlined.tsx | 12 ++++ src/IconHttpRound.tsx | 12 ++++ src/IconHttpSharp.tsx | 12 ++++ src/IconHttpTwoTone.tsx | 12 ++++ src/IconHttpsOutlined.tsx | 12 ++++ src/IconHttpsRound.tsx | 12 ++++ src/IconHttpsSharp.tsx | 12 ++++ src/IconHttpsTwoTone.tsx | 16 ++++++ src/IconHubOutlined.tsx | 17 ++++++ src/IconHubRound.tsx | 17 ++++++ src/IconHubSharp.tsx | 17 ++++++ src/IconHubTwoTone.tsx | 21 +++++++ src/IconHvacOutlined.tsx | 24 ++++++++ src/IconHvacRound.tsx | 38 +++++++++++++ src/IconHvacSharp.tsx | 37 ++++++++++++ src/IconHvacTwoTone.tsx | 28 ++++++++++ src/IconIceSkatingOutlined.tsx | 19 +++++++ src/IconIceSkatingRound.tsx | 19 +++++++ src/IconIceSkatingSharp.tsx | 19 +++++++ src/IconIceSkatingTwoTone.tsx | 22 ++++++++ src/IconIcecreamOutlined.tsx | 23 ++++++++ src/IconIcecreamRound.tsx | 23 ++++++++ src/IconIcecreamSharp.tsx | 23 ++++++++ src/IconIcecreamTwoTone.tsx | 33 +++++++++++ src/IconImageAspectRatioOutlined.tsx | 12 ++++ src/IconImageAspectRatioRound.tsx | 12 ++++ src/IconImageAspectRatioSharp.tsx | 12 ++++ src/IconImageAspectRatioTwoTone.tsx | 16 ++++++ src/IconImageNotSupportedOutlined.tsx | 19 +++++++ src/IconImageNotSupportedRound.tsx | 19 +++++++ src/IconImageNotSupportedSharp.tsx | 19 +++++++ src/IconImageNotSupportedTwoTone.tsx | 25 +++++++++ src/IconImageOutlined.tsx | 12 ++++ src/IconImageRound.tsx | 12 ++++ src/IconImageSearchOutlined.tsx | 12 ++++ src/IconImageSearchRound.tsx | 12 ++++ src/IconImageSearchSharp.tsx | 12 ++++ src/IconImageSearchTwoTone.tsx | 16 ++++++ src/IconImageSharp.tsx | 12 ++++ src/IconImageTwoTone.tsx | 16 ++++++ src/IconImagesearchRollerOutlined.tsx | 21 +++++++ src/IconImagesearchRollerRound.tsx | 23 ++++++++ src/IconImagesearchRollerSharp.tsx | 23 ++++++++ src/IconImagesearchRollerTwoTone.tsx | 39 +++++++++++++ src/IconImportContactsOutlined.tsx | 12 ++++ src/IconImportContactsRound.tsx | 12 ++++ src/IconImportContactsSharp.tsx | 12 ++++ src/IconImportContactsTwoTone.tsx | 16 ++++++ src/IconImportExportOutlined.tsx | 12 ++++ src/IconImportExportRound.tsx | 12 ++++ src/IconImportExportSharp.tsx | 12 ++++ src/IconImportExportTwoTone.tsx | 12 ++++ src/IconImportantDevicesOutlined.tsx | 12 ++++ src/IconImportantDevicesRound.tsx | 12 ++++ src/IconImportantDevicesSharp.tsx | 12 ++++ src/IconImportantDevicesTwoTone.tsx | 13 +++++ src/IconInboxOutlined.tsx | 12 ++++ src/IconInboxRound.tsx | 21 +++++++ src/IconInboxSharp.tsx | 12 ++++ src/IconInboxTwoTone.tsx | 16 ++++++ src/IconIncompleteCircleOutlined.tsx | 17 ++++++ src/IconIncompleteCircleRound.tsx | 17 ++++++ src/IconIncompleteCircleSharp.tsx | 17 ++++++ src/IconIncompleteCircleTwoTone.tsx | 17 ++++++ src/IconIndeterminateCheckBoxOutlined.tsx | 14 +++++ src/IconIndeterminateCheckBoxRound.tsx | 12 ++++ src/IconIndeterminateCheckBoxSharp.tsx | 12 ++++ src/IconIndeterminateCheckBoxTwoTone.tsx | 15 +++++ src/IconInfoOutlined.tsx | 12 ++++ src/IconInfoRound.tsx | 12 ++++ src/IconInfoSharp.tsx | 12 ++++ src/IconInfoTwoTone.tsx | 16 ++++++ src/IconInputOutlined.tsx | 15 +++++ src/IconInputRound.tsx | 15 +++++ src/IconInputSharp.tsx | 15 +++++ src/IconInputTwoTone.tsx | 15 +++++ src/IconInsertChartOutlined.tsx | 4 +- src/IconInsertChartOutlinedOutlined.tsx | 12 ++++ src/IconInsertChartOutlinedRound.tsx | 12 ++++ src/IconInsertChartOutlinedSharp.tsx | 11 ++++ src/IconInsertChartOutlinedTwoTone.tsx | 12 ++++ src/IconInsertChartRound.tsx | 12 ++++ src/IconInsertChartSharp.tsx | 11 ++++ src/IconInsertChartTwoTone.tsx | 16 ++++++ src/IconInsertCommentOutlined.tsx | 12 ++++ src/IconInsertCommentRound.tsx | 12 ++++ src/IconInsertCommentSharp.tsx | 11 ++++ src/IconInsertCommentTwoTone.tsx | 16 ++++++ src/IconInsertDriveFileOutlined.tsx | 12 ++++ src/IconInsertDriveFileRound.tsx | 12 ++++ src/IconInsertDriveFileSharp.tsx | 11 ++++ src/IconInsertDriveFileTwoTone.tsx | 13 +++++ src/IconInsertEmoticonOutlined.tsx | 12 ++++ src/IconInsertEmoticonRound.tsx | 17 ++++++ src/IconInsertEmoticonSharp.tsx | 11 ++++ src/IconInsertEmoticonTwoTone.tsx | 19 +++++++ src/IconInsertInvitationOutlined.tsx | 12 ++++ src/IconInsertInvitationRound.tsx | 12 ++++ src/IconInsertInvitationSharp.tsx | 11 ++++ src/IconInsertInvitationTwoTone.tsx | 13 +++++ src/IconInsertLinkOutlined.tsx | 12 ++++ src/IconInsertLinkRound.tsx | 12 ++++ src/IconInsertLinkSharp.tsx | 11 ++++ src/IconInsertLinkTwoTone.tsx | 12 ++++ src/IconInsertPageBreakOutlined.tsx | 27 +++++++++ src/IconInsertPageBreakRound.tsx | 28 ++++++++++ src/IconInsertPageBreakSharp.tsx | 27 +++++++++ src/IconInsertPageBreakTwoTone.tsx | 31 ++++++++++ src/IconInsertPhotoOutlined.tsx | 12 ++++ src/IconInsertPhotoRound.tsx | 12 ++++ src/IconInsertPhotoSharp.tsx | 11 ++++ src/IconInsertPhotoTwoTone.tsx | 16 ++++++ src/IconInsightsOutlined.tsx | 25 +++++++++ src/IconInsightsRound.tsx | 26 +++++++++ src/IconInsightsSharp.tsx | 25 +++++++++ src/IconInsightsTwoTone.tsx | 25 +++++++++ src/IconInstallDesktopOutlined.tsx | 24 ++++++++ src/IconInstallDesktopRound.tsx | 25 +++++++++ src/IconInstallDesktopSharp.tsx | 24 ++++++++ src/IconInstallDesktopTwoTone.tsx | 29 ++++++++++ src/IconInstallMobileOutlined.tsx | 24 ++++++++ src/IconInstallMobileRound.tsx | 23 ++++++++ src/IconInstallMobileSharp.tsx | 24 ++++++++ src/IconInstallMobileTwoTone.tsx | 26 +++++++++ src/IconIntegrationInstructionsOutlined.tsx | 28 ++++++++++ src/IconIntegrationInstructionsRound.tsx | 24 ++++++++ src/IconIntegrationInstructionsSharp.tsx | 24 ++++++++ src/IconIntegrationInstructionsTwoTone.tsx | 32 +++++++++++ src/IconInterestsOutlined.tsx | 17 ++++++ src/IconInterestsRound.tsx | 17 ++++++ src/IconInterestsSharp.tsx | 17 ++++++ src/IconInterestsTwoTone.tsx | 21 +++++++ src/IconInterpreterModeOutlined.tsx | 17 ++++++ src/IconInterpreterModeRound.tsx | 17 ++++++ src/IconInterpreterModeSharp.tsx | 17 ++++++ src/IconInterpreterModeTwoTone.tsx | 21 +++++++ src/IconInventory2Outlined.tsx | 24 ++++++++ src/IconInventory2Round.tsx | 21 +++++++ src/IconInventory2Sharp.tsx | 21 +++++++ src/IconInventory2TwoTone.tsx | 34 +++++++++++ src/IconInventoryOutlined.tsx | 24 ++++++++ src/IconInventoryRound.tsx | 24 ++++++++ src/IconInventorySharp.tsx | 24 ++++++++ src/IconInventoryTwoTone.tsx | 31 ++++++++++ src/IconInvertColorsOffOutlined.tsx | 17 ++++++ src/IconInvertColorsOffRound.tsx | 17 ++++++ src/IconInvertColorsOffSharp.tsx | 17 ++++++ src/IconInvertColorsOffTwoTone.tsx | 21 +++++++ src/IconInvertColorsOutlined.tsx | 21 +++++++ src/IconInvertColorsRound.tsx | 21 +++++++ src/IconInvertColorsSharp.tsx | 21 +++++++ src/IconInvertColorsTwoTone.tsx | 27 +++++++++ src/IconIosShareOutlined.tsx | 21 +++++++ src/IconIosShareRound.tsx | 24 ++++++++ src/IconIosShareSharp.tsx | 24 ++++++++ src/IconIosShareTwoTone.tsx | 24 ++++++++ src/IconIronOutlined.tsx | 17 ++++++ src/IconIronRound.tsx | 17 ++++++ src/IconIronSharp.tsx | 17 ++++++ src/IconIronTwoTone.tsx | 18 ++++++ src/IconIsoOutlined.tsx | 12 ++++ src/IconIsoRound.tsx | 12 ++++ src/IconIsoSharp.tsx | 12 ++++ src/IconIsoTwoTone.tsx | 13 +++++ src/IconJavascriptOutlined.tsx | 21 +++++++ src/IconJavascriptRound.tsx | 22 ++++++++ src/IconJavascriptSharp.tsx | 21 +++++++ src/IconJavascriptTwoTone.tsx | 21 +++++++ src/IconJoinFullOutlined.tsx | 25 +++++++++ src/IconJoinFullRound.tsx | 26 +++++++++ src/IconJoinFullSharp.tsx | 25 +++++++++ src/IconJoinFullTwoTone.tsx | 25 +++++++++ src/IconJoinInnerOutlined.tsx | 25 +++++++++ src/IconJoinInnerRound.tsx | 26 +++++++++ src/IconJoinInnerSharp.tsx | 25 +++++++++ src/IconJoinInnerTwoTone.tsx | 25 +++++++++ src/IconJoinLeftOutlined.tsx | 31 ++++++++++ src/IconJoinLeftRound.tsx | 32 +++++++++++ src/IconJoinLeftSharp.tsx | 31 ++++++++++ src/IconJoinLeftTwoTone.tsx | 31 ++++++++++ src/IconJoinRightOutlined.tsx | 31 ++++++++++ src/IconJoinRightRound.tsx | 32 +++++++++++ src/IconJoinRightSharp.tsx | 31 ++++++++++ src/IconJoinRightTwoTone.tsx | 31 ++++++++++ src/IconKayakingOutlined.tsx | 17 ++++++ src/IconKayakingRound.tsx | 17 ++++++ src/IconKayakingSharp.tsx | 17 ++++++ src/IconKayakingTwoTone.tsx | 17 ++++++ src/IconKebabDiningOutlined.tsx | 17 ++++++ src/IconKebabDiningRound.tsx | 17 ++++++ src/IconKebabDiningSharp.tsx | 17 ++++++ src/IconKebabDiningTwoTone.tsx | 21 +++++++ src/IconKeyOffOutlined.tsx | 23 ++++++++ src/IconKeyOffRound.tsx | 22 ++++++++ src/IconKeyOffSharp.tsx | 21 +++++++ src/IconKeyOffTwoTone.tsx | 26 +++++++++ src/IconKeyOutlined.tsx | 21 +++++++ src/IconKeyRound.tsx | 22 ++++++++ src/IconKeySharp.tsx | 21 +++++++ src/IconKeyTwoTone.tsx | 21 +++++++ src/IconKeyboardAltOutlined.tsx | 23 ++++++++ src/IconKeyboardAltRound.tsx | 23 ++++++++ src/IconKeyboardAltSharp.tsx | 23 ++++++++ src/IconKeyboardAltTwoTone.tsx | 37 ++++++++++++ src/IconKeyboardArrowDownOutlined.tsx | 12 ++++ src/IconKeyboardArrowDownRound.tsx | 11 ++++ src/IconKeyboardArrowDownSharp.tsx | 12 ++++ src/IconKeyboardArrowDownTwoTone.tsx | 12 ++++ src/IconKeyboardArrowLeftOutlined.tsx | 12 ++++ src/IconKeyboardArrowLeftRound.tsx | 11 ++++ src/IconKeyboardArrowLeftSharp.tsx | 12 ++++ src/IconKeyboardArrowLeftTwoTone.tsx | 12 ++++ src/IconKeyboardArrowRightOutlined.tsx | 12 ++++ src/IconKeyboardArrowRightRound.tsx | 11 ++++ src/IconKeyboardArrowRightSharp.tsx | 12 ++++ src/IconKeyboardArrowRightTwoTone.tsx | 12 ++++ src/IconKeyboardArrowUpOutlined.tsx | 12 ++++ src/IconKeyboardArrowUpRound.tsx | 11 ++++ src/IconKeyboardArrowUpSharp.tsx | 12 ++++ src/IconKeyboardArrowUpTwoTone.tsx | 12 ++++ src/IconKeyboardBackspaceOutlined.tsx | 12 ++++ src/IconKeyboardBackspaceRound.tsx | 11 ++++ src/IconKeyboardBackspaceSharp.tsx | 12 ++++ src/IconKeyboardBackspaceTwoTone.tsx | 12 ++++ src/IconKeyboardCapslockOutlined.tsx | 12 ++++ src/IconKeyboardCapslockRound.tsx | 11 ++++ src/IconKeyboardCapslockSharp.tsx | 12 ++++ src/IconKeyboardCapslockTwoTone.tsx | 12 ++++ src/IconKeyboardCommandKeyOutlined.tsx | 23 ++++++++ src/IconKeyboardCommandKeyRound.tsx | 24 ++++++++ src/IconKeyboardCommandKeySharp.tsx | 23 ++++++++ src/IconKeyboardCommandKeyTwoTone.tsx | 23 ++++++++ src/IconKeyboardControlKeyOutlined.tsx | 21 +++++++ src/IconKeyboardControlKeyRound.tsx | 22 ++++++++ src/IconKeyboardControlKeySharp.tsx | 21 +++++++ src/IconKeyboardControlKeyTwoTone.tsx | 21 +++++++ src/IconKeyboardDoubleArrowDownOutlined.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowDownRound.tsx | 27 +++++++++ src/IconKeyboardDoubleArrowDownSharp.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowDownTwoTone.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowLeftOutlined.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowLeftRound.tsx | 27 +++++++++ src/IconKeyboardDoubleArrowLeftSharp.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowLeftTwoTone.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowRightOutlined.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowRightRound.tsx | 27 +++++++++ src/IconKeyboardDoubleArrowRightSharp.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowRightTwoTone.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowUpOutlined.tsx | 26 +++++++++ src/IconKeyboardDoubleArrowUpRound.tsx | 25 +++++++++ src/IconKeyboardDoubleArrowUpSharp.tsx | 24 ++++++++ src/IconKeyboardDoubleArrowUpTwoTone.tsx | 26 +++++++++ src/IconKeyboardHide.tsx | 2 +- src/IconKeyboardHideOutlined.tsx | 12 ++++ src/IconKeyboardHideRound.tsx | 11 ++++ src/IconKeyboardHideSharp.tsx | 12 ++++ src/IconKeyboardHideTwoTone.tsx | 16 ++++++ src/IconKeyboardOptionKeyOutlined.tsx | 24 ++++++++ src/IconKeyboardOptionKeyRound.tsx | 25 +++++++++ src/IconKeyboardOptionKeySharp.tsx | 24 ++++++++ src/IconKeyboardOptionKeyTwoTone.tsx | 24 ++++++++ src/IconKeyboardOutlined.tsx | 12 ++++ src/IconKeyboardReturnOutlined.tsx | 12 ++++ src/IconKeyboardReturnRound.tsx | 11 ++++ src/IconKeyboardReturnSharp.tsx | 12 ++++ src/IconKeyboardReturnTwoTone.tsx | 12 ++++ src/IconKeyboardRound.tsx | 11 ++++ src/IconKeyboardSharp.tsx | 12 ++++ src/IconKeyboardTabOutlined.tsx | 12 ++++ src/IconKeyboardTabRound.tsx | 11 ++++ src/IconKeyboardTabSharp.tsx | 12 ++++ src/IconKeyboardTabTwoTone.tsx | 12 ++++ src/IconKeyboardTwoTone.tsx | 16 ++++++ src/IconKeyboardVoiceOutlined.tsx | 12 ++++ src/IconKeyboardVoiceRound.tsx | 11 ++++ src/IconKeyboardVoiceSharp.tsx | 12 ++++ src/IconKeyboardVoiceTwoTone.tsx | 16 ++++++ src/IconKingBedOutlined.tsx | 21 +++++++ src/IconKingBedRound.tsx | 26 +++++++++ src/IconKingBedSharp.tsx | 25 +++++++++ src/IconKingBedTwoTone.tsx | 24 ++++++++ src/IconKitchen.tsx | 17 +++++- src/IconKitchenOutlined.tsx | 12 ++++ src/IconKitchenRound.tsx | 12 ++++ src/IconKitchenSharp.tsx | 12 ++++ src/IconKitchenTwoTone.tsx | 16 ++++++ src/IconKitesurfingOutlined.tsx | 19 +++++++ src/IconKitesurfingRound.tsx | 19 +++++++ src/IconKitesurfingSharp.tsx | 19 +++++++ src/IconKitesurfingTwoTone.tsx | 19 +++++++ src/IconLabelImportantOutlined.tsx | 12 ++++ src/IconLabelImportantRound.tsx | 12 ++++ src/IconLabelImportantSharp.tsx | 12 ++++ src/IconLabelImportantTwoTone.tsx | 13 +++++ src/IconLabelOffOutlined.tsx | 12 ++++ src/IconLabelOffRound.tsx | 12 ++++ src/IconLabelOffSharp.tsx | 12 ++++ src/IconLabelOffTwoTone.tsx | 13 +++++ src/IconLabelOutlined.tsx | 12 ++++ src/IconLabelRound.tsx | 12 ++++ src/IconLabelSharp.tsx | 12 ++++ src/IconLabelTwoTone.tsx | 13 +++++ src/IconLanOutlined.tsx | 21 +++++++ src/IconLanRound.tsx | 21 +++++++ src/IconLanSharp.tsx | 21 +++++++ src/IconLanTwoTone.tsx | 25 +++++++++ src/IconLandscapeOutlined.tsx | 12 ++++ src/IconLandscapeRound.tsx | 12 ++++ src/IconLandscapeSharp.tsx | 12 ++++ src/IconLandscapeTwoTone.tsx | 13 +++++ src/IconLandslideOutlined.tsx | 25 +++++++++ src/IconLandslideRound.tsx | 28 ++++++++++ src/IconLandslideSharp.tsx | 27 +++++++++ src/IconLandslideTwoTone.tsx | 39 +++++++++++++ src/IconLanguageOutlined.tsx | 12 ++++ src/IconLanguageRound.tsx | 12 ++++ src/IconLanguageSharp.tsx | 12 ++++ src/IconLanguageTwoTone.tsx | 16 ++++++ src/IconLaptopChromebookOutlined.tsx | 12 ++++ src/IconLaptopChromebookRound.tsx | 11 ++++ src/IconLaptopChromebookSharp.tsx | 12 ++++ src/IconLaptopChromebookTwoTone.tsx | 13 +++++ src/IconLaptopMacOutlined.tsx | 12 ++++ src/IconLaptopMacRound.tsx | 11 ++++ src/IconLaptopMacSharp.tsx | 12 ++++ src/IconLaptopMacTwoTone.tsx | 13 +++++ src/IconLaptopOutlined.tsx | 23 ++++++++ src/IconLaptopRound.tsx | 11 ++++ src/IconLaptopSharp.tsx | 23 ++++++++ src/IconLaptopTwoTone.tsx | 24 ++++++++ src/IconLaptopWindowsOutlined.tsx | 12 ++++ src/IconLaptopWindowsRound.tsx | 11 ++++ src/IconLaptopWindowsSharp.tsx | 12 ++++ src/IconLaptopWindowsTwoTone.tsx | 13 +++++ src/IconLastPageOutlined.tsx | 12 ++++ src/IconLastPageRound.tsx | 12 ++++ src/IconLastPageSharp.tsx | 12 ++++ src/IconLastPageTwoTone.tsx | 12 ++++ src/IconLaunchOutlined.tsx | 12 ++++ src/IconLaunchRound.tsx | 12 ++++ src/IconLaunchSharp.tsx | 12 ++++ src/IconLaunchTwoTone.tsx | 12 ++++ src/IconLayersClearOutlined.tsx | 12 ++++ src/IconLayersClearRound.tsx | 12 ++++ src/IconLayersClearSharp.tsx | 12 ++++ src/IconLayersClearTwoTone.tsx | 16 ++++++ src/IconLayersOutlined.tsx | 12 ++++ src/IconLayersRound.tsx | 12 ++++ src/IconLayersSharp.tsx | 12 ++++ src/IconLayersTwoTone.tsx | 13 +++++ src/IconLeaderboardOutlined.tsx | 19 +++++++ src/IconLeaderboardRound.tsx | 19 +++++++ src/IconLeaderboardSharp.tsx | 19 +++++++ src/IconLeaderboardTwoTone.tsx | 22 ++++++++ src/IconLeakAddOutlined.tsx | 12 ++++ src/IconLeakAddRound.tsx | 12 ++++ src/IconLeakAddSharp.tsx | 12 ++++ src/IconLeakAddTwoTone.tsx | 12 ++++ src/IconLeakRemoveOutlined.tsx | 12 ++++ src/IconLeakRemoveRound.tsx | 12 ++++ src/IconLeakRemoveSharp.tsx | 12 ++++ src/IconLeakRemoveTwoTone.tsx | 12 ++++ src/IconLegendToggleOutlined.tsx | 19 +++++++ src/IconLegendToggleRound.tsx | 19 +++++++ src/IconLegendToggleSharp.tsx | 19 +++++++ src/IconLegendToggleTwoTone.tsx | 19 +++++++ src/IconLensBlurOutlined.tsx | 23 ++++++++ src/IconLensBlurRound.tsx | 23 ++++++++ src/IconLensBlurSharp.tsx | 23 ++++++++ src/IconLensBlurTwoTone.tsx | 23 ++++++++ src/IconLensOutlined.tsx | 12 ++++ src/IconLensRound.tsx | 12 ++++ src/IconLensSharp.tsx | 12 ++++ src/IconLensTwoTone.tsx | 16 ++++++ src/IconLibraryAddCheckOutlined.tsx | 19 +++++++ src/IconLibraryAddCheckRound.tsx | 17 ++++++ src/IconLibraryAddCheckSharp.tsx | 19 +++++++ src/IconLibraryAddCheckTwoTone.tsx | 25 +++++++++ src/IconLibraryAddOutlined.tsx | 12 ++++ src/IconLibraryAddRound.tsx | 11 ++++ src/IconLibraryAddSharp.tsx | 12 ++++ src/IconLibraryAddTwoTone.tsx | 13 +++++ src/IconLibraryBooksOutlined.tsx | 12 ++++ src/IconLibraryBooksRound.tsx | 11 ++++ src/IconLibraryBooksSharp.tsx | 12 ++++ src/IconLibraryBooksTwoTone.tsx | 16 ++++++ src/IconLibraryMusicOutlined.tsx | 12 ++++ src/IconLibraryMusicRound.tsx | 11 ++++ src/IconLibraryMusicSharp.tsx | 12 ++++ src/IconLibraryMusicTwoTone.tsx | 16 ++++++ src/IconLightModeOutlined.tsx | 17 ++++++ src/IconLightModeRound.tsx | 17 ++++++ src/IconLightModeSharp.tsx | 17 ++++++ src/IconLightModeTwoTone.tsx | 18 ++++++ src/IconLightOutlined.tsx | 23 ++++++++ src/IconLightRound.tsx | 21 +++++++ src/IconLightSharp.tsx | 21 +++++++ src/IconLightTwoTone.tsx | 24 ++++++++ src/IconLightbulbCircleOutlined.tsx | 26 +++++++++ src/IconLightbulbCircleRound.tsx | 24 ++++++++ src/IconLightbulbCircleSharp.tsx | 23 ++++++++ src/IconLightbulbCircleTwoTone.tsx | 30 ++++++++++ src/IconLightbulbOutlined.tsx | 12 ++++ src/IconLightbulbRound.tsx | 31 ++++++++++ src/IconLightbulbSharp.tsx | 31 ++++++++++ src/IconLightbulbTwoTone.tsx | 30 ++++++++++ src/IconLineAxisOutlined.tsx | 21 +++++++ src/IconLineAxisRound.tsx | 22 ++++++++ src/IconLineAxisSharp.tsx | 21 +++++++ src/IconLineAxisTwoTone.tsx | 21 +++++++ src/IconLineStyleOutlined.tsx | 12 ++++ src/IconLineStyleRound.tsx | 12 ++++ src/IconLineStyleSharp.tsx | 12 ++++ src/IconLineStyleTwoTone.tsx | 12 ++++ src/IconLineWeightOutlined.tsx | 12 ++++ src/IconLineWeightRound.tsx | 12 ++++ src/IconLineWeightSharp.tsx | 12 ++++ src/IconLineWeightTwoTone.tsx | 12 ++++ src/IconLinearScaleOutlined.tsx | 12 ++++ src/IconLinearScaleRound.tsx | 17 ++++++ src/IconLinearScaleSharp.tsx | 11 ++++ src/IconLinearScaleTwoTone.tsx | 12 ++++ src/IconLinkOffOutlined.tsx | 12 ++++ src/IconLinkOffRound.tsx | 21 +++++++ src/IconLinkOffSharp.tsx | 12 ++++ src/IconLinkOffTwoTone.tsx | 12 ++++ src/IconLinkOutlined.tsx | 12 ++++ src/IconLinkRound.tsx | 23 ++++++++ src/IconLinkSharp.tsx | 12 ++++ src/IconLinkTwoTone.tsx | 15 +++++ src/IconLinkedCameraOutlined.tsx | 12 ++++ src/IconLinkedCameraRound.tsx | 32 +++++++++++ src/IconLinkedCameraSharp.tsx | 13 +++++ src/IconLinkedCameraTwoTone.tsx | 17 ++++++ src/IconLiquorOutlined.tsx | 24 ++++++++ src/IconLiquorRound.tsx | 30 ++++++++++ src/IconLiquorSharp.tsx | 30 ++++++++++ src/IconLiquorTwoTone.tsx | 30 ++++++++++ src/IconListAltOutlined.tsx | 12 ++++ src/IconListAltRound.tsx | 12 ++++ src/IconListAltSharp.tsx | 12 ++++ src/IconListAltTwoTone.tsx | 16 ++++++ src/IconListOutlined.tsx | 15 +++++ src/IconListRound.tsx | 15 +++++ src/IconListSharp.tsx | 15 +++++ src/IconListTwoTone.tsx | 15 +++++ src/IconLiveHelpOutlined.tsx | 12 ++++ src/IconLiveHelpRound.tsx | 12 ++++ src/IconLiveHelpSharp.tsx | 12 ++++ src/IconLiveHelpTwoTone.tsx | 16 ++++++ src/IconLiveTvOutlined.tsx | 12 ++++ src/IconLiveTvRound.tsx | 12 ++++ src/IconLiveTvSharp.tsx | 12 ++++ src/IconLiveTvTwoTone.tsx | 13 +++++ src/IconLivingOutlined.tsx | 21 +++++++ src/IconLivingRound.tsx | 25 +++++++++ src/IconLivingSharp.tsx | 25 +++++++++ src/IconLivingTwoTone.tsx | 27 +++++++++ src/IconLocalActivityOutlined.tsx | 12 ++++ src/IconLocalActivityRound.tsx | 12 ++++ src/IconLocalActivitySharp.tsx | 12 ++++ src/IconLocalActivityTwoTone.tsx | 16 ++++++ src/IconLocalAirportOutlined.tsx | 19 +++++++ src/IconLocalAirportRound.tsx | 19 +++++++ src/IconLocalAirportSharp.tsx | 19 +++++++ src/IconLocalAirportTwoTone.tsx | 19 +++++++ src/IconLocalAtmOutlined.tsx | 12 ++++ src/IconLocalAtmRound.tsx | 12 ++++ src/IconLocalAtmSharp.tsx | 12 ++++ src/IconLocalAtmTwoTone.tsx | 16 ++++++ src/IconLocalBarOutlined.tsx | 12 ++++ src/IconLocalBarRound.tsx | 12 ++++ src/IconLocalBarSharp.tsx | 12 ++++ src/IconLocalBarTwoTone.tsx | 13 +++++ src/IconLocalCafeOutlined.tsx | 12 ++++ src/IconLocalCafeRound.tsx | 12 ++++ src/IconLocalCafeSharp.tsx | 12 ++++ src/IconLocalCafeTwoTone.tsx | 13 +++++ src/IconLocalCarWashOutlined.tsx | 14 +++++ src/IconLocalCarWashRound.tsx | 12 ++++ src/IconLocalCarWashSharp.tsx | 12 ++++ src/IconLocalCarWashTwoTone.tsx | 18 ++++++ src/IconLocalConvenienceStoreOutlined.tsx | 14 +++++ src/IconLocalConvenienceStoreRound.tsx | 21 +++++++ src/IconLocalConvenienceStoreSharp.tsx | 12 ++++ src/IconLocalConvenienceStoreTwoTone.tsx | 18 ++++++ src/IconLocalDiningOutlined.tsx | 12 ++++ src/IconLocalDiningRound.tsx | 12 ++++ src/IconLocalDiningSharp.tsx | 12 ++++ src/IconLocalDiningTwoTone.tsx | 12 ++++ src/IconLocalDrinkOutlined.tsx | 12 ++++ src/IconLocalDrinkRound.tsx | 12 ++++ src/IconLocalDrinkSharp.tsx | 12 ++++ src/IconLocalDrinkTwoTone.tsx | 16 ++++++ src/IconLocalFireDepartmentOutlined.tsx | 21 +++++++ src/IconLocalFireDepartmentRound.tsx | 29 ++++++++++ src/IconLocalFireDepartmentSharp.tsx | 28 ++++++++++ src/IconLocalFireDepartmentTwoTone.tsx | 31 ++++++++++ src/IconLocalFloristOutlined.tsx | 12 ++++ src/IconLocalFloristRound.tsx | 12 ++++ src/IconLocalFloristSharp.tsx | 12 ++++ src/IconLocalFloristTwoTone.tsx | 16 ++++++ src/IconLocalGasStationOutlined.tsx | 12 ++++ src/IconLocalGasStationRound.tsx | 12 ++++ src/IconLocalGasStationSharp.tsx | 12 ++++ src/IconLocalGasStationTwoTone.tsx | 13 +++++ src/IconLocalGroceryStoreOutlined.tsx | 12 ++++ src/IconLocalGroceryStoreRound.tsx | 12 ++++ src/IconLocalGroceryStoreSharp.tsx | 12 ++++ src/IconLocalGroceryStoreTwoTone.tsx | 13 +++++ src/IconLocalHospitalOutlined.tsx | 12 ++++ src/IconLocalHospitalRound.tsx | 12 ++++ src/IconLocalHospitalSharp.tsx | 12 ++++ src/IconLocalHospitalTwoTone.tsx | 16 ++++++ src/IconLocalHotelOutlined.tsx | 12 ++++ src/IconLocalHotelRound.tsx | 12 ++++ src/IconLocalHotelSharp.tsx | 12 ++++ src/IconLocalHotelTwoTone.tsx | 14 +++++ src/IconLocalLaundryServiceOutlined.tsx | 15 +++++ src/IconLocalLaundryServiceRound.tsx | 21 +++++++ src/IconLocalLaundryServiceSharp.tsx | 12 ++++ src/IconLocalLaundryServiceTwoTone.tsx | 19 +++++++ src/IconLocalLibraryOutlined.tsx | 12 ++++ src/IconLocalLibraryRound.tsx | 12 ++++ src/IconLocalLibrarySharp.tsx | 12 ++++ src/IconLocalLibraryTwoTone.tsx | 17 ++++++ src/IconLocalMallOutlined.tsx | 12 ++++ src/IconLocalMallRound.tsx | 12 ++++ src/IconLocalMallSharp.tsx | 12 ++++ src/IconLocalMallTwoTone.tsx | 16 ++++++ src/IconLocalMoviesOutlined.tsx | 12 ++++ src/IconLocalMoviesRound.tsx | 12 ++++ src/IconLocalMoviesSharp.tsx | 12 ++++ src/IconLocalMoviesTwoTone.tsx | 13 +++++ src/IconLocalOfferOutlined.tsx | 13 +++++ src/IconLocalOfferRound.tsx | 12 ++++ src/IconLocalOfferSharp.tsx | 12 ++++ src/IconLocalOfferTwoTone.tsx | 17 ++++++ src/IconLocalParkingOutlined.tsx | 12 ++++ src/IconLocalParkingRound.tsx | 12 ++++ src/IconLocalParkingSharp.tsx | 12 ++++ src/IconLocalParkingTwoTone.tsx | 12 ++++ src/IconLocalPharmacyOutlined.tsx | 12 ++++ src/IconLocalPharmacyRound.tsx | 12 ++++ src/IconLocalPharmacySharp.tsx | 12 ++++ src/IconLocalPharmacyTwoTone.tsx | 16 ++++++ src/IconLocalPhoneOutlined.tsx | 12 ++++ src/IconLocalPhoneRound.tsx | 12 ++++ src/IconLocalPhoneSharp.tsx | 12 ++++ src/IconLocalPhoneTwoTone.tsx | 16 ++++++ src/IconLocalPizzaOutlined.tsx | 12 ++++ src/IconLocalPizzaRound.tsx | 12 ++++ src/IconLocalPizzaSharp.tsx | 12 ++++ src/IconLocalPizzaTwoTone.tsx | 16 ++++++ src/IconLocalPlayOutlined.tsx | 12 ++++ src/IconLocalPlayRound.tsx | 12 ++++ src/IconLocalPlaySharp.tsx | 12 ++++ src/IconLocalPlayTwoTone.tsx | 16 ++++++ src/IconLocalPoliceOutlined.tsx | 17 ++++++ src/IconLocalPoliceRound.tsx | 17 ++++++ src/IconLocalPoliceSharp.tsx | 17 ++++++ src/IconLocalPoliceTwoTone.tsx | 21 +++++++ src/IconLocalPostOfficeOutlined.tsx | 12 ++++ src/IconLocalPostOfficeRound.tsx | 12 ++++ src/IconLocalPostOfficeSharp.tsx | 12 ++++ src/IconLocalPostOfficeTwoTone.tsx | 13 +++++ src/IconLocalPrintshopOutlined.tsx | 13 +++++ src/IconLocalPrintshopRound.tsx | 24 ++++++++ src/IconLocalPrintshopSharp.tsx | 12 ++++ src/IconLocalPrintshopTwoTone.tsx | 17 ++++++ src/IconLocalSeeOutlined.tsx | 12 ++++ src/IconLocalSeeRound.tsx | 31 ++++++++++ src/IconLocalSeeSharp.tsx | 13 +++++ src/IconLocalSeeTwoTone.tsx | 16 ++++++ src/IconLocalShippingOutlined.tsx | 12 ++++ src/IconLocalShippingRound.tsx | 12 ++++ src/IconLocalShippingSharp.tsx | 12 ++++ src/IconLocalShippingTwoTone.tsx | 16 ++++++ src/IconLocalTaxiOutlined.tsx | 14 +++++ src/IconLocalTaxiRound.tsx | 12 ++++ src/IconLocalTaxiSharp.tsx | 12 ++++ src/IconLocalTaxiTwoTone.tsx | 18 ++++++ src/IconLocationCityOutlined.tsx | 12 ++++ src/IconLocationCityRound.tsx | 12 ++++ src/IconLocationCitySharp.tsx | 12 ++++ src/IconLocationCityTwoTone.tsx | 12 ++++ src/IconLocationDisabledOutlined.tsx | 12 ++++ src/IconLocationDisabledRound.tsx | 12 ++++ src/IconLocationDisabledSharp.tsx | 12 ++++ src/IconLocationDisabledTwoTone.tsx | 12 ++++ src/IconLocationOffOutlined.tsx | 12 ++++ src/IconLocationOffRound.tsx | 12 ++++ src/IconLocationOffSharp.tsx | 12 ++++ src/IconLocationOffTwoTone.tsx | 12 ++++ src/IconLocationOnOutlined.tsx | 13 +++++ src/IconLocationOnRound.tsx | 21 +++++++ src/IconLocationOnSharp.tsx | 12 ++++ src/IconLocationOnTwoTone.tsx | 17 ++++++ src/IconLocationSearchingOutlined.tsx | 12 ++++ src/IconLocationSearchingRound.tsx | 12 ++++ src/IconLocationSearchingSharp.tsx | 12 ++++ src/IconLocationSearchingTwoTone.tsx | 12 ++++ src/IconLockClockOutlined.tsx | 24 ++++++++ src/IconLockClockRound.tsx | 24 ++++++++ src/IconLockClockSharp.tsx | 21 +++++++ src/IconLockClockTwoTone.tsx | 29 ++++++++++ src/IconLockOpenOutlined.tsx | 12 ++++ src/IconLockOpenRound.tsx | 12 ++++ src/IconLockOpenSharp.tsx | 12 ++++ src/IconLockOpenTwoTone.tsx | 16 ++++++ src/IconLockOutlined.tsx | 15 +++++ src/IconLockPersonOutlined.tsx | 24 ++++++++ src/IconLockPersonRound.tsx | 25 +++++++++ src/IconLockPersonSharp.tsx | 24 ++++++++ src/IconLockPersonTwoTone.tsx | 28 ++++++++++ src/IconLockResetOutlined.tsx | 17 ++++++ src/IconLockResetRound.tsx | 17 ++++++ src/IconLockResetSharp.tsx | 17 ++++++ src/IconLockResetTwoTone.tsx | 17 ++++++ src/IconLockRound.tsx | 15 +++++ src/IconLockSharp.tsx | 15 +++++ src/IconLockTwoTone.tsx | 19 +++++++ src/IconLoginOutlined.tsx | 21 +++++++ src/IconLoginRound.tsx | 22 ++++++++ src/IconLoginSharp.tsx | 21 +++++++ src/IconLoginTwoTone.tsx | 21 +++++++ src/IconLogoDevOutlined.tsx | 24 ++++++++ src/IconLogoDevRound.tsx | 25 +++++++++ src/IconLogoDevSharp.tsx | 24 ++++++++ src/IconLogoDevTwoTone.tsx | 24 ++++++++ src/IconLogoutOutlined.tsx | 21 +++++++ src/IconLogoutRound.tsx | 24 ++++++++ src/IconLogoutSharp.tsx | 24 ++++++++ src/IconLogoutTwoTone.tsx | 21 +++++++ src/IconLooks3Outlined.tsx | 12 ++++ src/IconLooks3Round.tsx | 12 ++++ src/IconLooks3Sharp.tsx | 12 ++++ src/IconLooks3TwoTone.tsx | 16 ++++++ src/IconLooks4Outlined.tsx | 12 ++++ src/IconLooks4Round.tsx | 12 ++++ src/IconLooks4Sharp.tsx | 12 ++++ src/IconLooks4TwoTone.tsx | 16 ++++++ src/IconLooks5Outlined.tsx | 12 ++++ src/IconLooks5Round.tsx | 12 ++++ src/IconLooks5Sharp.tsx | 12 ++++ src/IconLooks5TwoTone.tsx | 16 ++++++ src/IconLooks6Outlined.tsx | 12 ++++ src/IconLooks6Round.tsx | 12 ++++ src/IconLooks6Sharp.tsx | 12 ++++ src/IconLooks6TwoTone.tsx | 16 ++++++ src/IconLooksOneOutlined.tsx | 12 ++++ src/IconLooksOneRound.tsx | 12 ++++ src/IconLooksOneSharp.tsx | 12 ++++ src/IconLooksOneTwoTone.tsx | 13 +++++ src/IconLooksOutlined.tsx | 12 ++++ src/IconLooksRound.tsx | 12 ++++ src/IconLooksSharp.tsx | 12 ++++ src/IconLooksTwoOutlined.tsx | 12 ++++ src/IconLooksTwoRound.tsx | 12 ++++ src/IconLooksTwoSharp.tsx | 12 ++++ src/IconLooksTwoTone.tsx | 12 ++++ src/IconLooksTwoTwoTone.tsx | 16 ++++++ src/IconLoopOutlined.tsx | 12 ++++ src/IconLoopRound.tsx | 11 ++++ src/IconLoopSharp.tsx | 12 ++++ src/IconLoopTwoTone.tsx | 12 ++++ src/IconLoupeOutlined.tsx | 12 ++++ src/IconLoupeRound.tsx | 12 ++++ src/IconLoupeSharp.tsx | 12 ++++ src/IconLoupeTwoTone.tsx | 16 ++++++ src/IconLowPriorityOutlined.tsx | 12 ++++ src/IconLowPriorityRound.tsx | 12 ++++ src/IconLowPrioritySharp.tsx | 12 ++++ src/IconLowPriorityTwoTone.tsx | 12 ++++ src/IconLoyaltyOutlined.tsx | 14 +++++ src/IconLoyaltyRound.tsx | 12 ++++ src/IconLoyaltySharp.tsx | 12 ++++ src/IconLoyaltyTwoTone.tsx | 18 ++++++ src/IconLteMobiledataOutlined.tsx | 23 ++++++++ src/IconLteMobiledataRound.tsx | 23 ++++++++ src/IconLteMobiledataSharp.tsx | 23 ++++++++ src/IconLteMobiledataTwoTone.tsx | 23 ++++++++ src/IconLtePlusMobiledataOutlined.tsx | 23 ++++++++ src/IconLtePlusMobiledataRound.tsx | 23 ++++++++ src/IconLtePlusMobiledataSharp.tsx | 23 ++++++++ src/IconLtePlusMobiledataTwoTone.tsx | 23 ++++++++ src/IconLuggageOutlined.tsx | 19 +++++++ src/IconLuggageRound.tsx | 19 +++++++ src/IconLuggageSharp.tsx | 19 +++++++ src/IconLuggageTwoTone.tsx | 22 ++++++++ src/IconLunchDiningOutlined.tsx | 25 +++++++++ src/IconLunchDiningRound.tsx | 25 +++++++++ src/IconLunchDiningSharp.tsx | 25 +++++++++ src/IconLunchDiningTwoTone.tsx | 30 ++++++++++ src/IconLyricsOutlined.tsx | 27 +++++++++ src/IconLyricsRound.tsx | 25 +++++++++ src/IconLyricsSharp.tsx | 24 ++++++++ src/IconLyricsTwoTone.tsx | 31 ++++++++++ src/IconMacroOffOutlined.tsx | 26 +++++++++ src/IconMacroOffRound.tsx | 27 +++++++++ src/IconMacroOffSharp.tsx | 26 +++++++++ src/IconMacroOffTwoTone.tsx | 56 +++++++++++++++++++ src/IconMailLockOutlined.tsx | 24 ++++++++ src/IconMailLockRound.tsx | 29 ++++++++++ src/IconMailLockSharp.tsx | 28 ++++++++++ src/IconMailLockTwoTone.tsx | 29 ++++++++++ src/IconMailOutlineOutlined.tsx | 12 ++++ src/IconMailOutlineRound.tsx | 12 ++++ src/IconMailOutlineSharp.tsx | 12 ++++ src/IconMailOutlineTwoTone.tsx | 12 ++++ src/IconMailOutlined.tsx | 12 ++++ src/IconMailRound.tsx | 12 ++++ src/IconMailSharp.tsx | 12 ++++ src/IconMailTwoTone.tsx | 13 +++++ src/IconMaleOutlined.tsx | 17 ++++++ src/IconMaleRound.tsx | 17 ++++++ src/IconMaleSharp.tsx | 17 ++++++ src/IconMaleTwoTone.tsx | 17 ++++++ src/IconMan2Outlined.tsx | 24 ++++++++ src/IconMan2Round.tsx | 25 +++++++++ src/IconMan2Sharp.tsx | 24 ++++++++ src/IconMan2TwoTone.tsx | 24 ++++++++ src/IconMan3Outlined.tsx | 30 ++++++++++ src/IconMan3Round.tsx | 25 +++++++++ src/IconMan3Sharp.tsx | 30 ++++++++++ src/IconMan3TwoTone.tsx | 30 ++++++++++ src/IconMan4Outlined.tsx | 24 ++++++++ src/IconMan4Round.tsx | 25 +++++++++ src/IconMan4Sharp.tsx | 24 ++++++++ src/IconMan4TwoTone.tsx | 24 ++++++++ src/IconManOutlined.tsx | 24 ++++++++ src/IconManRound.tsx | 25 +++++++++ src/IconManSharp.tsx | 24 ++++++++ src/IconManTwoTone.tsx | 24 ++++++++ src/IconManageAccountsOutlined.tsx | 25 +++++++++ src/IconManageAccountsRound.tsx | 25 +++++++++ src/IconManageAccountsSharp.tsx | 25 +++++++++ src/IconManageAccountsTwoTone.tsx | 32 +++++++++++ src/IconManageHistoryOutlined.tsx | 21 +++++++ src/IconManageHistoryRound.tsx | 22 ++++++++ src/IconManageHistorySharp.tsx | 21 +++++++ src/IconManageHistoryTwoTone.tsx | 21 +++++++ src/IconManageSearchOutlined.tsx | 21 +++++++ src/IconManageSearchRound.tsx | 21 +++++++ src/IconManageSearchSharp.tsx | 21 +++++++ src/IconManageSearchTwoTone.tsx | 26 +++++++++ src/IconMapOutlined.tsx | 12 ++++ src/IconMapRound.tsx | 12 ++++ src/IconMapSharp.tsx | 12 ++++ src/IconMapTwoTone.tsx | 16 ++++++ src/IconMapsHomeWorkOutlined.tsx | 27 +++++++++ src/IconMapsHomeWorkRound.tsx | 24 ++++++++ src/IconMapsHomeWorkSharp.tsx | 24 ++++++++ src/IconMapsHomeWorkTwoTone.tsx | 35 ++++++++++++ src/IconMapsUgcOutlined.tsx | 23 ++++++++ src/IconMapsUgcRound.tsx | 23 ++++++++ src/IconMapsUgcSharp.tsx | 23 ++++++++ src/IconMapsUgcTwoTone.tsx | 27 +++++++++ src/IconMarginOutlined.tsx | 23 ++++++++ src/IconMarginRound.tsx | 21 +++++++ src/IconMarginSharp.tsx | 21 +++++++ src/IconMarginTwoTone.tsx | 33 +++++++++++ src/IconMarkAsUnreadOutlined.tsx | 24 ++++++++ src/IconMarkAsUnreadRound.tsx | 24 ++++++++ src/IconMarkAsUnreadSharp.tsx | 24 ++++++++ src/IconMarkAsUnreadTwoTone.tsx | 26 +++++++++ src/IconMarkChatReadOutlined.tsx | 19 +++++++ src/IconMarkChatReadRound.tsx | 19 +++++++ src/IconMarkChatReadSharp.tsx | 19 +++++++ src/IconMarkChatReadTwoTone.tsx | 23 ++++++++ src/IconMarkChatUnreadOutlined.tsx | 19 +++++++ src/IconMarkChatUnreadRound.tsx | 19 +++++++ src/IconMarkChatUnreadSharp.tsx | 19 +++++++ src/IconMarkChatUnreadTwoTone.tsx | 23 ++++++++ src/IconMarkEmailReadOutlined.tsx | 19 +++++++ src/IconMarkEmailReadRound.tsx | 23 ++++++++ src/IconMarkEmailReadSharp.tsx | 19 +++++++ src/IconMarkEmailReadTwoTone.tsx | 23 ++++++++ src/IconMarkEmailUnreadOutlined.tsx | 19 +++++++ src/IconMarkEmailUnreadRound.tsx | 19 +++++++ src/IconMarkEmailUnreadSharp.tsx | 19 +++++++ src/IconMarkEmailUnreadTwoTone.tsx | 23 ++++++++ src/IconMarkUnreadChatAltOutlined.tsx | 27 +++++++++ src/IconMarkUnreadChatAltRound.tsx | 25 +++++++++ src/IconMarkUnreadChatAltSharp.tsx | 24 ++++++++ src/IconMarkUnreadChatAltTwoTone.tsx | 34 +++++++++++ src/IconMarkunreadMailboxOutlined.tsx | 12 ++++ src/IconMarkunreadMailboxRound.tsx | 12 ++++ src/IconMarkunreadMailboxSharp.tsx | 12 ++++ src/IconMarkunreadMailboxTwoTone.tsx | 13 +++++ src/IconMarkunreadOutlined.tsx | 12 ++++ src/IconMarkunreadRound.tsx | 12 ++++ src/IconMarkunreadSharp.tsx | 12 ++++ src/IconMarkunreadTwoTone.tsx | 13 +++++ src/IconMasksOutlined.tsx | 17 ++++++ src/IconMasksRound.tsx | 17 ++++++ src/IconMasksSharp.tsx | 17 ++++++ src/IconMasksTwoTone.tsx | 21 +++++++ src/IconMaximizeOutlined.tsx | 12 ++++ src/IconMaximizeRound.tsx | 12 ++++ src/IconMaximizeSharp.tsx | 12 ++++ src/IconMaximizeTwoTone.tsx | 12 ++++ src/IconMediaBluetoothOffOutlined.tsx | 23 ++++++++ src/IconMediaBluetoothOffRound.tsx | 23 ++++++++ src/IconMediaBluetoothOffSharp.tsx | 23 ++++++++ src/IconMediaBluetoothOffTwoTone.tsx | 23 ++++++++ src/IconMediaBluetoothOnOutlined.tsx | 23 ++++++++ src/IconMediaBluetoothOnRound.tsx | 23 ++++++++ src/IconMediaBluetoothOnSharp.tsx | 23 ++++++++ src/IconMediaBluetoothOnTwoTone.tsx | 23 ++++++++ src/IconMediationOutlined.tsx | 19 +++++++ src/IconMediationRound.tsx | 21 +++++++ src/IconMediationSharp.tsx | 21 +++++++ src/IconMediationTwoTone.tsx | 21 +++++++ src/IconMedicalInformationOutlined.tsx | 21 +++++++ src/IconMedicalInformationRound.tsx | 22 ++++++++ src/IconMedicalInformationSharp.tsx | 21 +++++++ src/IconMedicalInformationTwoTone.tsx | 25 +++++++++ src/IconMedicalServicesOutlined.tsx | 24 ++++++++ src/IconMedicalServicesRound.tsx | 24 ++++++++ src/IconMedicalServicesSharp.tsx | 23 ++++++++ src/IconMedicalServicesTwoTone.tsx | 27 +++++++++ src/IconMedicationLiquidOutlined.tsx | 25 +++++++++ src/IconMedicationLiquidRound.tsx | 26 +++++++++ src/IconMedicationLiquidSharp.tsx | 26 +++++++++ src/IconMedicationLiquidTwoTone.tsx | 50 +++++++++++++++++ src/IconMedicationOutlined.tsx | 23 ++++++++ src/IconMedicationRound.tsx | 24 ++++++++ src/IconMedicationSharp.tsx | 24 ++++++++ src/IconMedicationTwoTone.tsx | 29 ++++++++++ src/IconMeetingRoomOutlined.tsx | 12 ++++ src/IconMeetingRoomRound.tsx | 27 +++++++++ src/IconMeetingRoomSharp.tsx | 12 ++++ src/IconMeetingRoomTwoTone.tsx | 13 +++++ src/IconMemoryOutlined.tsx | 12 ++++ src/IconMemoryRound.tsx | 11 ++++ src/IconMemorySharp.tsx | 12 ++++ src/IconMemoryTwoTone.tsx | 13 +++++ src/IconMenuBookOutlined.tsx | 29 ++++++++++ src/IconMenuBookRound.tsx | 26 +++++++++ src/IconMenuBookSharp.tsx | 27 +++++++++ src/IconMenuBookTwoTone.tsx | 33 +++++++++++ src/IconMenuOpenOutlined.tsx | 17 ++++++ src/IconMenuOpenRound.tsx | 18 ++++++ src/IconMenuOpenSharp.tsx | 17 ++++++ src/IconMenuOpenTwoTone.tsx | 17 ++++++ src/IconMenuOutlined.tsx | 12 ++++ src/IconMenuRound.tsx | 12 ++++ src/IconMenuSharp.tsx | 12 ++++ src/IconMenuTwoTone.tsx | 12 ++++ src/IconMergeOutlined.tsx | 21 +++++++ src/IconMergeRound.tsx | 22 ++++++++ src/IconMergeSharp.tsx | 21 +++++++ src/IconMergeTwoTone.tsx | 21 +++++++ src/IconMergeTypeOutlined.tsx | 12 ++++ src/IconMergeTypeRound.tsx | 12 ++++ src/IconMergeTypeSharp.tsx | 11 ++++ src/IconMergeTypeTwoTone.tsx | 12 ++++ src/IconMessageOutlined.tsx | 12 ++++ src/IconMessageRound.tsx | 12 ++++ src/IconMessageSharp.tsx | 12 ++++ src/IconMessageTwoTone.tsx | 16 ++++++ src/IconMicExternalOffOutlined.tsx | 25 +++++++++ src/IconMicExternalOffRound.tsx | 25 +++++++++ src/IconMicExternalOffSharp.tsx | 25 +++++++++ src/IconMicExternalOffTwoTone.tsx | 30 ++++++++++ src/IconMicExternalOnOutlined.tsx | 24 ++++++++ src/IconMicExternalOnRound.tsx | 23 ++++++++ src/IconMicExternalOnSharp.tsx | 23 ++++++++ src/IconMicExternalOnTwoTone.tsx | 25 +++++++++ src/IconMicNoneOutlined.tsx | 12 ++++ src/IconMicNoneRound.tsx | 11 ++++ src/IconMicNoneSharp.tsx | 12 ++++ src/IconMicNoneTwoTone.tsx | 16 ++++++ src/IconMicOffOutlined.tsx | 12 ++++ src/IconMicOffRound.tsx | 11 ++++ src/IconMicOffSharp.tsx | 12 ++++ src/IconMicOffTwoTone.tsx | 16 ++++++ src/IconMicOutlined.tsx | 27 +++++++++ src/IconMicRound.tsx | 11 ++++ src/IconMicSharp.tsx | 26 +++++++++ src/IconMicTwoTone.tsx | 31 ++++++++++ src/IconMicrowaveOutlined.tsx | 17 ++++++ src/IconMicrowaveRound.tsx | 17 ++++++ src/IconMicrowaveSharp.tsx | 17 ++++++ src/IconMicrowaveTwoTone.tsx | 21 +++++++ src/IconMilitaryTechOutlined.tsx | 23 ++++++++ src/IconMilitaryTechRound.tsx | 22 ++++++++ src/IconMilitaryTechSharp.tsx | 21 +++++++ src/IconMilitaryTechTwoTone.tsx | 25 +++++++++ src/IconMinimizeOutlined.tsx | 12 ++++ src/IconMinimizeRound.tsx | 12 ++++ src/IconMinimizeSharp.tsx | 12 ++++ src/IconMinimizeTwoTone.tsx | 12 ++++ src/IconMinorCrashOutlined.tsx | 21 +++++++ src/IconMinorCrashRound.tsx | 22 ++++++++ src/IconMinorCrashSharp.tsx | 21 +++++++ src/IconMinorCrashTwoTone.tsx | 25 +++++++++ src/IconMiscellaneousServicesOutlined.tsx | 26 +++++++++ src/IconMiscellaneousServicesRound.tsx | 25 +++++++++ src/IconMiscellaneousServicesSharp.tsx | 24 ++++++++ src/IconMiscellaneousServicesTwoTone.tsx | 26 +++++++++ src/IconMissedVideoCallOutlined.tsx | 12 ++++ src/IconMissedVideoCallRound.tsx | 11 ++++ src/IconMissedVideoCallSharp.tsx | 12 ++++ src/IconMissedVideoCallTwoTone.tsx | 16 ++++++ src/IconMmsOutlined.tsx | 12 ++++ src/IconMmsRound.tsx | 12 ++++ src/IconMmsSharp.tsx | 12 ++++ src/IconMmsTwoTone.tsx | 16 ++++++ src/IconMobileFriendlyOutlined.tsx | 12 ++++ src/IconMobileFriendlyRound.tsx | 12 ++++ src/IconMobileFriendlySharp.tsx | 12 ++++ src/IconMobileFriendlyTwoTone.tsx | 12 ++++ src/IconMobileOffOutlined.tsx | 12 ++++ src/IconMobileOffRound.tsx | 12 ++++ src/IconMobileOffSharp.tsx | 12 ++++ src/IconMobileOffTwoTone.tsx | 12 ++++ src/IconMobileScreenShareOutlined.tsx | 12 ++++ src/IconMobileScreenShareRound.tsx | 12 ++++ src/IconMobileScreenShareSharp.tsx | 12 ++++ src/IconMobileScreenShareTwoTone.tsx | 16 ++++++ src/IconMobiledataOffOutlined.tsx | 24 ++++++++ src/IconMobiledataOffRound.tsx | 24 ++++++++ src/IconMobiledataOffSharp.tsx | 24 ++++++++ src/IconMobiledataOffTwoTone.tsx | 24 ++++++++ src/IconModeCommentOutlined.tsx | 12 ++++ src/IconModeCommentRound.tsx | 12 ++++ src/IconModeCommentSharp.tsx | 11 ++++ src/IconModeCommentTwoTone.tsx | 13 +++++ src/IconModeEditOutlineOutlined.tsx | 28 ++++++++++ src/IconModeEditOutlineRound.tsx | 28 ++++++++++ src/IconModeEditOutlineSharp.tsx | 23 ++++++++ src/IconModeEditOutlineTwoTone.tsx | 33 +++++++++++ src/IconModeEditOutlined.tsx | 28 ++++++++++ src/IconModeEditRound.tsx | 28 ++++++++++ src/IconModeEditSharp.tsx | 23 ++++++++ src/IconModeEditTwoTone.tsx | 33 +++++++++++ src/IconModeFanOffOutlined.tsx | 24 ++++++++ src/IconModeFanOffRound.tsx | 29 ++++++++++ src/IconModeFanOffSharp.tsx | 28 ++++++++++ src/IconModeFanOffTwoTone.tsx | 44 +++++++++++++++ src/IconModeNightOutlined.tsx | 23 ++++++++ src/IconModeNightRound.tsx | 21 +++++++ src/IconModeNightSharp.tsx | 21 +++++++ src/IconModeNightTwoTone.tsx | 27 +++++++++ src/IconModeOfTravelOutlined.tsx | 17 ++++++ src/IconModeOfTravelRound.tsx | 17 ++++++ src/IconModeOfTravelSharp.tsx | 17 ++++++ src/IconModeOfTravelTwoTone.tsx | 17 ++++++ src/IconModeOutlined.tsx | 12 ++++ src/IconModeRound.tsx | 12 ++++ src/IconModeSharp.tsx | 11 ++++ src/IconModeStandbyOutlined.tsx | 23 ++++++++ src/IconModeStandbyRound.tsx | 23 ++++++++ src/IconModeStandbySharp.tsx | 23 ++++++++ src/IconModeStandbyTwoTone.tsx | 23 ++++++++ src/IconModeTwoTone.tsx | 13 +++++ src/IconModelTrainingOutlined.tsx | 19 +++++++ src/IconModelTrainingRound.tsx | 19 +++++++ src/IconModelTrainingSharp.tsx | 19 +++++++ src/IconModelTrainingTwoTone.tsx | 19 +++++++ src/IconMonetizationOnOutlined.tsx | 12 ++++ src/IconMonetizationOnRound.tsx | 12 ++++ src/IconMonetizationOnSharp.tsx | 11 ++++ src/IconMonetizationOnTwoTone.tsx | 16 ++++++ src/IconMoneyOffCsredOutlined.tsx | 12 ++++ src/IconMoneyOffCsredRound.tsx | 12 ++++ src/IconMoneyOffCsredSharp.tsx | 11 ++++ src/IconMoneyOffCsredTwoTone.tsx | 12 ++++ src/IconMoneyOffOutlined.tsx | 12 ++++ src/IconMoneyOffRound.tsx | 12 ++++ src/IconMoneyOffSharp.tsx | 11 ++++ src/IconMoneyOffTwoTone.tsx | 12 ++++ src/IconMoneyOutlined.tsx | 12 ++++ src/IconMoneyRound.tsx | 12 ++++ src/IconMoneySharp.tsx | 12 ++++ src/IconMoneyTwoTone.tsx | 16 ++++++ src/IconMonitorHeartOutlined.tsx | 25 +++++++++ src/IconMonitorHeartRound.tsx | 25 +++++++++ src/IconMonitorHeartSharp.tsx | 24 ++++++++ src/IconMonitorHeartTwoTone.tsx | 33 +++++++++++ src/IconMonitorOutlined.tsx | 23 ++++++++ src/IconMonitorRound.tsx | 23 ++++++++ src/IconMonitorSharp.tsx | 23 ++++++++ src/IconMonitorTwoTone.tsx | 24 ++++++++ src/IconMonitorWeightOutlined.tsx | 23 ++++++++ src/IconMonitorWeightRound.tsx | 26 +++++++++ src/IconMonitorWeightSharp.tsx | 26 +++++++++ src/IconMonitorWeightTwoTone.tsx | 31 ++++++++++ src/IconMonochromePhotosOutlined.tsx | 12 ++++ src/IconMonochromePhotosRound.tsx | 12 ++++ src/IconMonochromePhotosSharp.tsx | 12 ++++ src/IconMonochromePhotosTwoTone.tsx | 16 ++++++ src/IconMoodBadOutlined.tsx | 12 ++++ src/IconMoodBadRound.tsx | 12 ++++ src/IconMoodBadSharp.tsx | 12 ++++ src/IconMoodBadTwoTone.tsx | 18 ++++++ src/IconMoodOutlined.tsx | 12 ++++ src/IconMoodRound.tsx | 12 ++++ src/IconMoodSharp.tsx | 12 ++++ src/IconMoodTwoTone.tsx | 19 +++++++ src/IconMopedOutlined.tsx | 25 +++++++++ src/IconMopedRound.tsx | 26 +++++++++ src/IconMopedSharp.tsx | 25 +++++++++ src/IconMopedTwoTone.tsx | 26 +++++++++ src/IconMoreHorizOutlined.tsx | 12 ++++ src/IconMoreHorizRound.tsx | 12 ++++ src/IconMoreHorizSharp.tsx | 12 ++++ src/IconMoreHorizTwoTone.tsx | 12 ++++ src/IconMoreOutlined.tsx | 15 +++++ src/IconMoreRound.tsx | 12 ++++ src/IconMoreSharp.tsx | 12 ++++ src/IconMoreTimeOutlined.tsx | 25 +++++++++ src/IconMoreTimeRound.tsx | 26 +++++++++ src/IconMoreTimeSharp.tsx | 25 +++++++++ src/IconMoreTimeTwoTone.tsx | 25 +++++++++ src/IconMoreTwoTone.tsx | 19 +++++++ src/IconMoreVertOutlined.tsx | 12 ++++ src/IconMoreVertRound.tsx | 12 ++++ src/IconMoreVertSharp.tsx | 12 ++++ src/IconMoreVertTwoTone.tsx | 12 ++++ src/IconMosqueOutlined.tsx | 21 +++++++ src/IconMosqueRound.tsx | 25 +++++++++ src/IconMosqueSharp.tsx | 25 +++++++++ src/IconMosqueTwoTone.tsx | 31 ++++++++++ src/IconMotionPhotosAutoOutlined.tsx | 17 ++++++ src/IconMotionPhotosAutoRound.tsx | 17 ++++++ src/IconMotionPhotosAutoSharp.tsx | 17 ++++++ src/IconMotionPhotosAutoTwoTone.tsx | 17 ++++++ src/IconMotionPhotosOffOutlined.tsx | 24 ++++++++ src/IconMotionPhotosOffRound.tsx | 25 +++++++++ src/IconMotionPhotosOffSharp.tsx | 25 +++++++++ src/IconMotionPhotosOffTwoTone.tsx | 24 ++++++++ src/IconMotionPhotosOnOutlined.tsx | 17 ++++++ src/IconMotionPhotosOnRound.tsx | 17 ++++++ src/IconMotionPhotosOnSharp.tsx | 17 ++++++ src/IconMotionPhotosOnTwoTone.tsx | 17 ++++++ src/IconMotionPhotosPauseOutlined.tsx | 17 ++++++ src/IconMotionPhotosPauseRound.tsx | 17 ++++++ src/IconMotionPhotosPauseSharp.tsx | 17 ++++++ src/IconMotionPhotosPauseTwoTone.tsx | 17 ++++++ src/IconMotionPhotosPausedOutlined.tsx | 19 +++++++ src/IconMotionPhotosPausedRound.tsx | 17 ++++++ src/IconMotionPhotosPausedSharp.tsx | 19 +++++++ src/IconMotionPhotosPausedTwoTone.tsx | 19 +++++++ src/IconMouseOutlined.tsx | 12 ++++ src/IconMouseRound.tsx | 11 ++++ src/IconMouseSharp.tsx | 12 ++++ src/IconMouseTwoTone.tsx | 16 ++++++ src/IconMoveDownOutlined.tsx | 25 +++++++++ src/IconMoveDownRound.tsx | 26 +++++++++ src/IconMoveDownSharp.tsx | 25 +++++++++ src/IconMoveDownTwoTone.tsx | 26 +++++++++ src/IconMoveToInboxOutlined.tsx | 12 ++++ src/IconMoveToInboxRound.tsx | 21 +++++++ src/IconMoveToInboxSharp.tsx | 12 ++++ src/IconMoveToInboxTwoTone.tsx | 16 ++++++ src/IconMoveUpOutlined.tsx | 25 +++++++++ src/IconMoveUpRound.tsx | 26 +++++++++ src/IconMoveUpSharp.tsx | 25 +++++++++ src/IconMoveUpTwoTone.tsx | 26 +++++++++ src/IconMovieCreationOutlined.tsx | 12 ++++ src/IconMovieCreationRound.tsx | 12 ++++ src/IconMovieCreationSharp.tsx | 12 ++++ src/IconMovieCreationTwoTone.tsx | 13 +++++ src/IconMovieFilterOutlined.tsx | 12 ++++ src/IconMovieFilterRound.tsx | 12 ++++ src/IconMovieFilterSharp.tsx | 12 ++++ src/IconMovieFilterTwoTone.tsx | 16 ++++++ src/IconMovieOutlined.tsx | 12 ++++ src/IconMovieRound.tsx | 11 ++++ src/IconMovieSharp.tsx | 12 ++++ src/IconMovieTwoTone.tsx | 13 +++++ src/IconMovingOutlined.tsx | 17 ++++++ src/IconMovingRound.tsx | 17 ++++++ src/IconMovingSharp.tsx | 17 ++++++ src/IconMovingTwoTone.tsx | 17 ++++++ src/IconMpOutlined.tsx | 25 +++++++++ src/IconMpRound.tsx | 23 ++++++++ src/IconMpSharp.tsx | 23 ++++++++ src/IconMpTwoTone.tsx | 30 ++++++++++ src/IconMultilineChartOutlined.tsx | 12 ++++ src/IconMultilineChartRound.tsx | 12 ++++ src/IconMultilineChartSharp.tsx | 11 ++++ src/IconMultilineChartTwoTone.tsx | 12 ++++ src/IconMultipleStopOutlined.tsx | 19 +++++++ src/IconMultipleStopRound.tsx | 19 +++++++ src/IconMultipleStopSharp.tsx | 19 +++++++ src/IconMultipleStopTwoTone.tsx | 19 +++++++ src/IconMuseumOutlined.tsx | 24 ++++++++ src/IconMuseumRound.tsx | 22 ++++++++ src/IconMuseumSharp.tsx | 21 +++++++ src/IconMuseumTwoTone.tsx | 28 ++++++++++ src/IconMusicNoteOutlined.tsx | 12 ++++ src/IconMusicNoteRound.tsx | 12 ++++ src/IconMusicNoteSharp.tsx | 12 ++++ src/IconMusicNoteTwoTone.tsx | 13 +++++ src/IconMusicOffOutlined.tsx | 12 ++++ src/IconMusicOffRound.tsx | 12 ++++ src/IconMusicOffSharp.tsx | 12 ++++ src/IconMusicOffTwoTone.tsx | 13 +++++ src/IconMusicVideoOutlined.tsx | 12 ++++ src/IconMusicVideoRound.tsx | 22 ++++++++ src/IconMusicVideoSharp.tsx | 12 ++++ src/IconMusicVideoTwoTone.tsx | 16 ++++++ src/IconMyLocationOutlined.tsx | 12 ++++ src/IconMyLocationRound.tsx | 12 ++++ src/IconMyLocationSharp.tsx | 12 ++++ src/IconMyLocationTwoTone.tsx | 14 +++++ src/IconNatOutlined.tsx | 24 ++++++++ src/IconNatRound.tsx | 25 +++++++++ src/IconNatSharp.tsx | 24 ++++++++ src/IconNatTwoTone.tsx | 25 +++++++++ src/IconNatureOutlined.tsx | 12 ++++ src/IconNaturePeopleOutlined.tsx | 13 +++++ src/IconNaturePeopleRound.tsx | 13 +++++ src/IconNaturePeopleSharp.tsx | 12 ++++ src/IconNaturePeopleTwoTone.tsx | 14 +++++ src/IconNatureRound.tsx | 12 ++++ src/IconNatureSharp.tsx | 12 ++++ src/IconNatureTwoTone.tsx | 16 ++++++ src/IconNavigateBeforeOutlined.tsx | 12 ++++ src/IconNavigateBeforeRound.tsx | 12 ++++ src/IconNavigateBeforeSharp.tsx | 12 ++++ src/IconNavigateBeforeTwoTone.tsx | 12 ++++ src/IconNavigateNextOutlined.tsx | 12 ++++ src/IconNavigateNextRound.tsx | 12 ++++ src/IconNavigateNextSharp.tsx | 12 ++++ src/IconNavigateNextTwoTone.tsx | 12 ++++ src/IconNavigationOutlined.tsx | 12 ++++ src/IconNavigationRound.tsx | 12 ++++ src/IconNavigationSharp.tsx | 12 ++++ src/IconNavigationTwoTone.tsx | 16 ++++++ src/IconNearMeDisabledOutlined.tsx | 17 ++++++ src/IconNearMeDisabledRound.tsx | 17 ++++++ src/IconNearMeDisabledSharp.tsx | 17 ++++++ src/IconNearMeDisabledTwoTone.tsx | 21 +++++++ src/IconNearMeOutlined.tsx | 12 ++++ src/IconNearMeRound.tsx | 12 ++++ src/IconNearMeSharp.tsx | 12 ++++ src/IconNearMeTwoTone.tsx | 16 ++++++ src/IconNearbyErrorOutlined.tsx | 23 ++++++++ src/IconNearbyErrorRound.tsx | 26 +++++++++ src/IconNearbyErrorSharp.tsx | 23 ++++++++ src/IconNearbyErrorTwoTone.tsx | 23 ++++++++ src/IconNearbyOffOutlined.tsx | 23 ++++++++ src/IconNearbyOffRound.tsx | 23 ++++++++ src/IconNearbyOffSharp.tsx | 23 ++++++++ src/IconNearbyOffTwoTone.tsx | 23 ++++++++ src/IconNestCamWiredStandOutlined.tsx | 21 +++++++ src/IconNestCamWiredStandRound.tsx | 22 ++++++++ src/IconNestCamWiredStandSharp.tsx | 21 +++++++ src/IconNestCamWiredStandTwoTone.tsx | 31 ++++++++++ src/IconNetworkCellOutlined.tsx | 21 +++++++ src/IconNetworkCellRound.tsx | 21 +++++++ src/IconNetworkCellSharp.tsx | 21 +++++++ src/IconNetworkCellTwoTone.tsx | 21 +++++++ src/IconNetworkCheckOutlined.tsx | 12 ++++ src/IconNetworkCheckRound.tsx | 12 ++++ src/IconNetworkCheckSharp.tsx | 12 ++++ src/IconNetworkCheckTwoTone.tsx | 12 ++++ src/IconNetworkLockedOutlined.tsx | 12 ++++ src/IconNetworkLockedRound.tsx | 17 ++++++ src/IconNetworkLockedSharp.tsx | 12 ++++ src/IconNetworkLockedTwoTone.tsx | 12 ++++ src/IconNetworkPingOutlined.tsx | 21 +++++++ src/IconNetworkPingRound.tsx | 22 ++++++++ src/IconNetworkPingSharp.tsx | 21 +++++++ src/IconNetworkPingTwoTone.tsx | 21 +++++++ src/IconNetworkWifi1BarOutlined.tsx | 21 +++++++ src/IconNetworkWifi1BarRound.tsx | 22 ++++++++ src/IconNetworkWifi1BarSharp.tsx | 21 +++++++ src/IconNetworkWifi1BarTwoTone.tsx | 25 +++++++++ src/IconNetworkWifi2BarOutlined.tsx | 21 +++++++ src/IconNetworkWifi2BarRound.tsx | 22 ++++++++ src/IconNetworkWifi2BarSharp.tsx | 21 +++++++ src/IconNetworkWifi2BarTwoTone.tsx | 25 +++++++++ src/IconNetworkWifi3BarOutlined.tsx | 21 +++++++ src/IconNetworkWifi3BarRound.tsx | 22 ++++++++ src/IconNetworkWifi3BarSharp.tsx | 21 +++++++ src/IconNetworkWifi3BarTwoTone.tsx | 25 +++++++++ src/IconNetworkWifiOutlined.tsx | 21 +++++++ src/IconNetworkWifiRound.tsx | 21 +++++++ src/IconNetworkWifiSharp.tsx | 21 +++++++ src/IconNetworkWifiTwoTone.tsx | 21 +++++++ src/IconNewLabelOutlined.tsx | 17 ++++++ src/IconNewLabelRound.tsx | 17 ++++++ src/IconNewLabelSharp.tsx | 17 ++++++ src/IconNewLabelTwoTone.tsx | 21 +++++++ src/IconNewReleasesOutlined.tsx | 12 ++++ src/IconNewReleasesRound.tsx | 11 ++++ src/IconNewReleasesSharp.tsx | 12 ++++ src/IconNewReleasesTwoTone.tsx | 16 ++++++ src/IconNewspaperOutlined.tsx | 21 +++++++ src/IconNewspaperRound.tsx | 22 ++++++++ src/IconNewspaperSharp.tsx | 21 +++++++ src/IconNewspaperTwoTone.tsx | 21 +++++++ src/IconNextPlanOutlined.tsx | 24 ++++++++ src/IconNextPlanRound.tsx | 22 ++++++++ src/IconNextPlanSharp.tsx | 21 +++++++ src/IconNextPlanTwoTone.tsx | 28 ++++++++++ src/IconNextWeekOutlined.tsx | 12 ++++ src/IconNextWeekRound.tsx | 12 ++++ src/IconNextWeekSharp.tsx | 12 ++++ src/IconNextWeekTwoTone.tsx | 13 +++++ src/IconNfcOutlined.tsx | 12 ++++ src/IconNfcRound.tsx | 12 ++++ src/IconNfcSharp.tsx | 12 ++++ src/IconNfcTwoTone.tsx | 12 ++++ src/IconNightShelterOutlined.tsx | 17 ++++++ src/IconNightShelterRound.tsx | 17 ++++++ src/IconNightShelterSharp.tsx | 17 ++++++ src/IconNightShelterTwoTone.tsx | 21 +++++++ src/IconNightlifeOutlined.tsx | 25 +++++++++ src/IconNightlifeRound.tsx | 25 +++++++++ src/IconNightlifeSharp.tsx | 25 +++++++++ src/IconNightlifeTwoTone.tsx | 25 +++++++++ src/IconNightlightOutlined.tsx | 25 +++++++++ src/IconNightlightRound.tsx | 19 ++++++- src/IconNightlightRoundOutlined.tsx | 23 ++++++++ src/IconNightlightRoundRound.tsx | 23 ++++++++ src/IconNightlightRoundSharp.tsx | 23 ++++++++ src/IconNightlightRoundTwoTone.tsx | 25 +++++++++ src/IconNightlightSharp.tsx | 25 +++++++++ src/IconNightlightTwoTone.tsx | 32 +++++++++++ src/IconNightsStay.tsx | 4 +- src/IconNightsStayOutlined.tsx | 24 ++++++++ src/IconNightsStayRound.tsx | 27 +++++++++ src/IconNightsStaySharp.tsx | 26 +++++++++ src/IconNightsStayTwoTone.tsx | 28 ++++++++++ src/IconNoAccountsOutlined.tsx | 24 ++++++++ src/IconNoAccountsRound.tsx | 24 ++++++++ src/IconNoAccountsSharp.tsx | 24 ++++++++ src/IconNoAccountsTwoTone.tsx | 26 +++++++++ src/IconNoAdultContentOutlined.tsx | 26 +++++++++ src/IconNoAdultContentRound.tsx | 27 +++++++++ src/IconNoAdultContentSharp.tsx | 26 +++++++++ src/IconNoAdultContentTwoTone.tsx | 26 +++++++++ src/IconNoBackpackOutlined.tsx | 17 ++++++ src/IconNoBackpackRound.tsx | 21 +++++++ src/IconNoBackpackSharp.tsx | 21 +++++++ src/IconNoBackpackTwoTone.tsx | 21 +++++++ src/IconNoCellOutlined.tsx | 19 +++++++ src/IconNoCellRound.tsx | 19 +++++++ src/IconNoCellSharp.tsx | 19 +++++++ src/IconNoCellTwoTone.tsx | 20 +++++++ src/IconNoCrashOutlined.tsx | 21 +++++++ src/IconNoCrashRound.tsx | 22 ++++++++ src/IconNoCrashSharp.tsx | 21 +++++++ src/IconNoCrashTwoTone.tsx | 25 +++++++++ src/IconNoDrinksOutlined.tsx | 19 +++++++ src/IconNoDrinksRound.tsx | 19 +++++++ src/IconNoDrinksSharp.tsx | 19 +++++++ src/IconNoDrinksTwoTone.tsx | 20 +++++++ src/IconNoEncryptionGmailerrorredOutlined.tsx | 17 ++++++ src/IconNoEncryptionGmailerrorredRound.tsx | 17 ++++++ src/IconNoEncryptionGmailerrorredSharp.tsx | 17 ++++++ src/IconNoEncryptionGmailerrorredTwoTone.tsx | 18 ++++++ src/IconNoEncryptionOutlined.tsx | 15 +++++ src/IconNoEncryptionRound.tsx | 15 +++++ src/IconNoEncryptionSharp.tsx | 15 +++++ src/IconNoEncryptionTwoTone.tsx | 16 ++++++ src/IconNoFlashOutlined.tsx | 19 +++++++ src/IconNoFlashRound.tsx | 19 +++++++ src/IconNoFlashSharp.tsx | 19 +++++++ src/IconNoFlashTwoTone.tsx | 23 ++++++++ src/IconNoFoodOutlined.tsx | 19 +++++++ src/IconNoFoodRound.tsx | 19 +++++++ src/IconNoFoodSharp.tsx | 19 +++++++ src/IconNoFoodTwoTone.tsx | 24 ++++++++ src/IconNoLuggageOutlined.tsx | 21 +++++++ src/IconNoLuggageRound.tsx | 19 +++++++ src/IconNoLuggageSharp.tsx | 17 ++++++ src/IconNoLuggageTwoTone.tsx | 26 +++++++++ src/IconNoMealsOutlined.tsx | 17 ++++++ src/IconNoMealsRound.tsx | 17 ++++++ src/IconNoMealsSharp.tsx | 17 ++++++ src/IconNoMealsTwoTone.tsx | 17 ++++++ src/IconNoMeetingRoomOutlined.tsx | 12 ++++ src/IconNoMeetingRoomRound.tsx | 12 ++++ src/IconNoMeetingRoomSharp.tsx | 12 ++++ src/IconNoMeetingRoomTwoTone.tsx | 13 +++++ src/IconNoPhotographyOutlined.tsx | 21 +++++++ src/IconNoPhotographyRound.tsx | 19 +++++++ src/IconNoPhotographySharp.tsx | 19 +++++++ src/IconNoPhotographyTwoTone.tsx | 24 ++++++++ src/IconNoSimOutlined.tsx | 12 ++++ src/IconNoSimRound.tsx | 12 ++++ src/IconNoSimSharp.tsx | 12 ++++ src/IconNoSimTwoTone.tsx | 15 +++++ src/IconNoStrollerOutlined.tsx | 19 +++++++ src/IconNoStrollerRound.tsx | 19 +++++++ src/IconNoStrollerSharp.tsx | 19 +++++++ src/IconNoStrollerTwoTone.tsx | 23 ++++++++ src/IconNoTransferOutlined.tsx | 17 ++++++ src/IconNoTransferRound.tsx | 17 ++++++ src/IconNoTransferSharp.tsx | 17 ++++++ src/IconNoTransferTwoTone.tsx | 22 ++++++++ src/IconNoiseAwareOutlined.tsx | 38 +++++++++++++ src/IconNoiseAwareRound.tsx | 39 +++++++++++++ src/IconNoiseAwareSharp.tsx | 38 +++++++++++++ src/IconNoiseAwareTwoTone.tsx | 38 +++++++++++++ src/IconNoiseControlOffOutlined.tsx | 28 ++++++++++ src/IconNoiseControlOffRound.tsx | 29 ++++++++++ src/IconNoiseControlOffSharp.tsx | 28 ++++++++++ src/IconNoiseControlOffTwoTone.tsx | 28 ++++++++++ src/IconNordicWalkingOutlined.tsx | 17 ++++++ src/IconNordicWalkingRound.tsx | 17 ++++++ src/IconNordicWalkingSharp.tsx | 17 ++++++ src/IconNordicWalkingTwoTone.tsx | 17 ++++++ src/IconNorthEastOutlined.tsx | 17 ++++++ src/IconNorthEastRound.tsx | 17 ++++++ src/IconNorthEastSharp.tsx | 17 ++++++ src/IconNorthEastTwoTone.tsx | 17 ++++++ src/IconNorthOutlined.tsx | 17 ++++++ src/IconNorthRound.tsx | 17 ++++++ src/IconNorthSharp.tsx | 17 ++++++ src/IconNorthTwoTone.tsx | 17 ++++++ src/IconNorthWestOutlined.tsx | 17 ++++++ src/IconNorthWestRound.tsx | 17 ++++++ src/IconNorthWestSharp.tsx | 17 ++++++ src/IconNorthWestTwoTone.tsx | 17 ++++++ src/IconNotAccessibleOutlined.tsx | 19 +++++++ src/IconNotAccessibleRound.tsx | 19 +++++++ src/IconNotAccessibleSharp.tsx | 19 +++++++ src/IconNotAccessibleTwoTone.tsx | 19 +++++++ src/IconNotInterestedOutlined.tsx | 12 ++++ src/IconNotInterestedRound.tsx | 11 ++++ src/IconNotInterestedSharp.tsx | 12 ++++ src/IconNotInterestedTwoTone.tsx | 12 ++++ src/IconNotListedLocationOutlined.tsx | 17 ++++++ src/IconNotListedLocationRound.tsx | 21 +++++++ src/IconNotListedLocationSharp.tsx | 12 ++++ src/IconNotListedLocationTwoTone.tsx | 22 ++++++++ src/IconNotStartedOutlined.tsx | 19 +++++++ src/IconNotStartedRound.tsx | 19 +++++++ src/IconNotStartedSharp.tsx | 19 +++++++ src/IconNotStartedTwoTone.tsx | 23 ++++++++ src/IconNoteAddOutlined.tsx | 12 ++++ src/IconNoteAddRound.tsx | 12 ++++ src/IconNoteAddSharp.tsx | 12 ++++ src/IconNoteAddTwoTone.tsx | 16 ++++++ src/IconNoteAltOutlined.tsx | 25 +++++++++ src/IconNoteAltRound.tsx | 21 +++++++ src/IconNoteAltSharp.tsx | 21 +++++++ src/IconNoteAltTwoTone.tsx | 29 ++++++++++ src/IconNoteOutlined.tsx | 12 ++++ src/IconNoteRound.tsx | 11 ++++ src/IconNoteSharp.tsx | 12 ++++ src/IconNoteTwoTone.tsx | 13 +++++ src/IconNotesOutlined.tsx | 12 ++++ src/IconNotesRound.tsx | 12 ++++ src/IconNotesSharp.tsx | 11 ++++ src/IconNotesTwoTone.tsx | 12 ++++ src/IconNotificationAddOutlined.tsx | 19 +++++++ src/IconNotificationAddRound.tsx | 19 +++++++ src/IconNotificationAddSharp.tsx | 19 +++++++ src/IconNotificationAddTwoTone.tsx | 19 +++++++ src/IconNotificationImportantOutlined.tsx | 13 +++++ src/IconNotificationImportantRound.tsx | 11 ++++ src/IconNotificationImportantSharp.tsx | 11 ++++ src/IconNotificationImportantTwoTone.tsx | 17 ++++++ src/IconNotificationsActiveOutlined.tsx | 12 ++++ src/IconNotificationsActiveRound.tsx | 12 ++++ src/IconNotificationsActiveSharp.tsx | 12 ++++ src/IconNotificationsActiveTwoTone.tsx | 16 ++++++ src/IconNotificationsNoneOutlined.tsx | 12 ++++ src/IconNotificationsNoneRound.tsx | 12 ++++ src/IconNotificationsNoneSharp.tsx | 12 ++++ src/IconNotificationsNoneTwoTone.tsx | 16 ++++++ src/IconNotificationsOffOutlined.tsx | 12 ++++ src/IconNotificationsOffRound.tsx | 12 ++++ src/IconNotificationsOffSharp.tsx | 12 ++++ src/IconNotificationsOffTwoTone.tsx | 16 ++++++ src/IconNotificationsOutlined.tsx | 12 ++++ src/IconNotificationsPausedOutlined.tsx | 12 ++++ src/IconNotificationsPausedRound.tsx | 12 ++++ src/IconNotificationsPausedSharp.tsx | 12 ++++ src/IconNotificationsPausedTwoTone.tsx | 16 ++++++ src/IconNotificationsRound.tsx | 12 ++++ src/IconNotificationsSharp.tsx | 12 ++++ src/IconNotificationsTwoTone.tsx | 16 ++++++ src/IconNumbersOutlined.tsx | 21 +++++++ src/IconNumbersRound.tsx | 22 ++++++++ src/IconNumbersSharp.tsx | 21 +++++++ src/IconNumbersTwoTone.tsx | 21 +++++++ src/IconOfflineBoltOutlined.tsx | 12 ++++ src/IconOfflineBoltRound.tsx | 12 ++++ src/IconOfflineBoltSharp.tsx | 12 ++++ src/IconOfflineBoltTwoTone.tsx | 16 ++++++ src/IconOfflinePinOutlined.tsx | 12 ++++ src/IconOfflinePinRound.tsx | 12 ++++ src/IconOfflinePinSharp.tsx | 12 ++++ src/IconOfflinePinTwoTone.tsx | 16 ++++++ src/IconOfflineShareOutlined.tsx | 25 +++++++++ src/IconOfflineShareRound.tsx | 31 ++++++++++ src/IconOfflineShareSharp.tsx | 31 ++++++++++ src/IconOfflineShareTwoTone.tsx | 31 ++++++++++ src/IconOilBarrelOutlined.tsx | 24 ++++++++ src/IconOilBarrelRound.tsx | 22 ++++++++ src/IconOilBarrelSharp.tsx | 21 +++++++ src/IconOilBarrelTwoTone.tsx | 28 ++++++++++ src/IconOnDeviceTrainingOutlined.tsx | 27 +++++++++ src/IconOnDeviceTrainingRound.tsx | 28 ++++++++++ src/IconOnDeviceTrainingSharp.tsx | 27 +++++++++ src/IconOnDeviceTrainingTwoTone.tsx | 29 ++++++++++ src/IconOndemandVideoOutlined.tsx | 12 ++++ src/IconOndemandVideoRound.tsx | 12 ++++ src/IconOndemandVideoSharp.tsx | 12 ++++ src/IconOndemandVideoTwoTone.tsx | 13 +++++ src/IconOnlinePredictionOutlined.tsx | 19 +++++++ src/IconOnlinePredictionRound.tsx | 19 +++++++ src/IconOnlinePredictionSharp.tsx | 19 +++++++ src/IconOnlinePredictionTwoTone.tsx | 19 +++++++ src/IconOpacityOutlined.tsx | 12 ++++ src/IconOpacityRound.tsx | 21 +++++++ src/IconOpacitySharp.tsx | 12 ++++ src/IconOpacityTwoTone.tsx | 16 ++++++ src/IconOpenInBrowserOutlined.tsx | 12 ++++ src/IconOpenInBrowserRound.tsx | 12 ++++ src/IconOpenInBrowserSharp.tsx | 12 ++++ src/IconOpenInBrowserTwoTone.tsx | 12 ++++ src/IconOpenInFullOutlined.tsx | 17 ++++++ src/IconOpenInFullRound.tsx | 17 ++++++ src/IconOpenInFullSharp.tsx | 17 ++++++ src/IconOpenInFullTwoTone.tsx | 17 ++++++ src/IconOpenInNewOffOutlined.tsx | 17 ++++++ src/IconOpenInNewOffRound.tsx | 17 ++++++ src/IconOpenInNewOffSharp.tsx | 17 ++++++ src/IconOpenInNewOffTwoTone.tsx | 17 ++++++ src/IconOpenInNewOutlined.tsx | 12 ++++ src/IconOpenInNewRound.tsx | 12 ++++ src/IconOpenInNewSharp.tsx | 12 ++++ src/IconOpenInNewTwoTone.tsx | 12 ++++ src/IconOpenWithOutlined.tsx | 12 ++++ src/IconOpenWithRound.tsx | 12 ++++ src/IconOpenWithSharp.tsx | 12 ++++ src/IconOpenWithTwoTone.tsx | 12 ++++ src/IconOtherHousesOutlined.tsx | 17 ++++++ src/IconOtherHousesRound.tsx | 17 ++++++ src/IconOtherHousesSharp.tsx | 17 ++++++ src/IconOtherHousesTwoTone.tsx | 21 +++++++ src/IconOutboundOutlined.tsx | 17 ++++++ src/IconOutboundRound.tsx | 20 +++++++ src/IconOutboundSharp.tsx | 20 +++++++ src/IconOutboundTwoTone.tsx | 21 +++++++ src/IconOutboxOutlined.tsx | 24 ++++++++ src/IconOutboxRound.tsx | 24 ++++++++ src/IconOutboxSharp.tsx | 24 ++++++++ src/IconOutboxTwoTone.tsx | 29 ++++++++++ src/IconOutdoorGrillOutlined.tsx | 26 +++++++++ src/IconOutdoorGrillRound.tsx | 27 +++++++++ src/IconOutdoorGrillSharp.tsx | 26 +++++++++ src/IconOutdoorGrillTwoTone.tsx | 31 ++++++++++ src/IconOutletOutlined.tsx | 17 ++++++ src/IconOutletRound.tsx | 17 ++++++ src/IconOutletSharp.tsx | 17 ++++++ src/IconOutletTwoTone.tsx | 21 +++++++ src/IconOutlinedFlagOutlined.tsx | 12 ++++ src/IconOutlinedFlagRound.tsx | 12 ++++ src/IconOutlinedFlagSharp.tsx | 12 ++++ src/IconOutlinedFlagTwoTone.tsx | 12 ++++ src/IconOutputOutlined.tsx | 24 ++++++++ src/IconOutputRound.tsx | 25 +++++++++ src/IconOutputSharp.tsx | 24 ++++++++ src/IconOutputTwoTone.tsx | 24 ++++++++ src/IconPaddingOutlined.tsx | 23 ++++++++ src/IconPaddingRound.tsx | 21 +++++++ src/IconPaddingSharp.tsx | 21 +++++++ src/IconPaddingTwoTone.tsx | 31 ++++++++++ src/IconPagesOutlined.tsx | 12 ++++ src/IconPagesRound.tsx | 12 ++++ src/IconPagesSharp.tsx | 12 ++++ src/IconPagesTwoTone.tsx | 16 ++++++ src/IconPageviewOutlined.tsx | 12 ++++ src/IconPageviewRound.tsx | 12 ++++ src/IconPageviewSharp.tsx | 12 ++++ src/IconPageviewTwoTone.tsx | 16 ++++++ src/IconPaidOutlined.tsx | 21 +++++++ src/IconPaidRound.tsx | 21 +++++++ src/IconPaidSharp.tsx | 21 +++++++ src/IconPaidTwoTone.tsx | 29 ++++++++++ src/IconPaletteOutlined.tsx | 31 ++++++++++ src/IconPaletteRound.tsx | 21 +++++++ src/IconPaletteSharp.tsx | 21 +++++++ src/IconPaletteTwoTone.tsx | 36 ++++++++++++ src/IconPanToolAltOutlined.tsx | 21 +++++++ src/IconPanToolAltRound.tsx | 22 ++++++++ src/IconPanToolAltSharp.tsx | 21 +++++++ src/IconPanToolAltTwoTone.tsx | 25 +++++++++ src/IconPanToolOutlined.tsx | 12 ++++ src/IconPanToolRound.tsx | 12 ++++ src/IconPanToolSharp.tsx | 12 ++++ src/IconPanToolTwoTone.tsx | 16 ++++++ src/IconPanoramaFishEyeOutlined.tsx | 12 ++++ src/IconPanoramaFishEyeRound.tsx | 12 ++++ src/IconPanoramaFishEyeSharp.tsx | 12 ++++ src/IconPanoramaFishEyeTwoTone.tsx | 16 ++++++ src/IconPanoramaHorizontalOutlined.tsx | 12 ++++ src/IconPanoramaHorizontalRound.tsx | 12 ++++ src/IconPanoramaHorizontalSelectOutlined.tsx | 23 ++++++++ src/IconPanoramaHorizontalSelectRound.tsx | 23 ++++++++ src/IconPanoramaHorizontalSelectSharp.tsx | 23 ++++++++ src/IconPanoramaHorizontalSelectTwoTone.tsx | 30 ++++++++++ src/IconPanoramaHorizontalSharp.tsx | 12 ++++ src/IconPanoramaHorizontalTwoTone.tsx | 16 ++++++ src/IconPanoramaOutlined.tsx | 12 ++++ src/IconPanoramaPhotosphereOutlined.tsx | 23 ++++++++ src/IconPanoramaPhotosphereRound.tsx | 23 ++++++++ src/IconPanoramaPhotosphereSelectOutlined.tsx | 25 +++++++++ src/IconPanoramaPhotosphereSelectRound.tsx | 25 +++++++++ src/IconPanoramaPhotosphereSelectSharp.tsx | 25 +++++++++ src/IconPanoramaPhotosphereSelectTwoTone.tsx | 25 +++++++++ src/IconPanoramaPhotosphereSharp.tsx | 23 ++++++++ src/IconPanoramaPhotosphereTwoTone.tsx | 27 +++++++++ src/IconPanoramaRound.tsx | 12 ++++ src/IconPanoramaSharp.tsx | 12 ++++ src/IconPanoramaTwoTone.tsx | 16 ++++++ src/IconPanoramaVerticalOutlined.tsx | 12 ++++ src/IconPanoramaVerticalRound.tsx | 12 ++++ src/IconPanoramaVerticalSelectOutlined.tsx | 23 ++++++++ src/IconPanoramaVerticalSelectRound.tsx | 21 +++++++ src/IconPanoramaVerticalSelectSharp.tsx | 21 +++++++ src/IconPanoramaVerticalSelectTwoTone.tsx | 23 ++++++++ src/IconPanoramaVerticalSharp.tsx | 12 ++++ src/IconPanoramaVerticalTwoTone.tsx | 16 ++++++ src/IconPanoramaWideAngleOutlined.tsx | 12 ++++ src/IconPanoramaWideAngleRound.tsx | 12 ++++ src/IconPanoramaWideAngleSelectOutlined.tsx | 27 +++++++++ src/IconPanoramaWideAngleSelectRound.tsx | 27 +++++++++ src/IconPanoramaWideAngleSelectSharp.tsx | 27 +++++++++ src/IconPanoramaWideAngleSelectTwoTone.tsx | 27 +++++++++ src/IconPanoramaWideAngleSharp.tsx | 12 ++++ src/IconPanoramaWideAngleTwoTone.tsx | 16 ++++++ src/IconParaglidingOutlined.tsx | 17 ++++++ src/IconParaglidingRound.tsx | 17 ++++++ src/IconParaglidingSharp.tsx | 17 ++++++ src/IconParaglidingTwoTone.tsx | 21 +++++++ src/IconParkOutlined.tsx | 25 +++++++++ src/IconParkRound.tsx | 25 +++++++++ src/IconParkSharp.tsx | 25 +++++++++ src/IconParkTwoTone.tsx | 27 +++++++++ src/IconPartyModeOutlined.tsx | 12 ++++ src/IconPartyModeRound.tsx | 12 ++++ src/IconPartyModeSharp.tsx | 12 ++++ src/IconPartyModeTwoTone.tsx | 16 ++++++ src/IconPasswordOutlined.tsx | 23 ++++++++ src/IconPasswordRound.tsx | 23 ++++++++ src/IconPasswordSharp.tsx | 23 ++++++++ src/IconPasswordTwoTone.tsx | 23 ++++++++ src/IconPatternOutlined.tsx | 23 ++++++++ src/IconPatternRound.tsx | 23 ++++++++ src/IconPatternSharp.tsx | 23 ++++++++ src/IconPatternTwoTone.tsx | 23 ++++++++ src/IconPauseCircleFilledOutlined.tsx | 24 ++++++++ src/IconPauseCircleFilledRound.tsx | 11 ++++ src/IconPauseCircleFilledSharp.tsx | 23 ++++++++ src/IconPauseCircleFilledTwoTone.tsx | 32 +++++++++++ src/IconPauseCircleOutlineOutlined.tsx | 12 ++++ src/IconPauseCircleOutlineRound.tsx | 11 ++++ src/IconPauseCircleOutlineSharp.tsx | 12 ++++ src/IconPauseCircleOutlineTwoTone.tsx | 12 ++++ src/IconPauseCircleOutlined.tsx | 23 ++++++++ src/IconPauseCircleRound.tsx | 23 ++++++++ src/IconPauseCircleSharp.tsx | 23 ++++++++ src/IconPauseCircleTwoTone.tsx | 32 +++++++++++ src/IconPauseOutlined.tsx | 12 ++++ src/IconPausePresentationOutlined.tsx | 12 ++++ src/IconPausePresentationRound.tsx | 12 ++++ src/IconPausePresentationSharp.tsx | 12 ++++ src/IconPausePresentationTwoTone.tsx | 13 +++++ src/IconPauseRound.tsx | 11 ++++ src/IconPauseSharp.tsx | 12 ++++ src/IconPauseTwoTone.tsx | 12 ++++ src/IconPaymentOutlined.tsx | 12 ++++ src/IconPaymentRound.tsx | 12 ++++ src/IconPaymentSharp.tsx | 12 ++++ src/IconPaymentTwoTone.tsx | 13 +++++ src/IconPaymentsOutlined.tsx | 19 +++++++ src/IconPaymentsRound.tsx | 22 ++++++++ src/IconPaymentsSharp.tsx | 19 +++++++ src/IconPaymentsTwoTone.tsx | 27 +++++++++ src/IconPedalBikeOutlined.tsx | 21 +++++++ src/IconPedalBikeRound.tsx | 22 ++++++++ src/IconPedalBikeSharp.tsx | 21 +++++++ src/IconPedalBikeTwoTone.tsx | 21 +++++++ src/IconPendingActionsOutlined.tsx | 19 +++++++ src/IconPendingActionsRound.tsx | 19 +++++++ src/IconPendingActionsSharp.tsx | 19 +++++++ src/IconPendingActionsTwoTone.tsx | 23 ++++++++ src/IconPendingOutlined.tsx | 26 +++++++++ src/IconPendingRound.tsx | 22 ++++++++ src/IconPendingSharp.tsx | 21 +++++++ src/IconPendingTwoTone.tsx | 30 ++++++++++ src/IconPentagonOutlined.tsx | 21 +++++++ src/IconPentagonRound.tsx | 21 +++++++ src/IconPentagonSharp.tsx | 21 +++++++ src/IconPentagonTwoTone.tsx | 25 +++++++++ src/IconPeopleAltOutlined.tsx | 27 +++++++++ src/IconPeopleAltRound.tsx | 45 +++++++++++++++ src/IconPeopleAltSharp.tsx | 44 +++++++++++++++ src/IconPeopleAltTwoTone.tsx | 32 +++++++++++ src/IconPeopleOutlineOutlined.tsx | 12 ++++ src/IconPeopleOutlineRound.tsx | 12 ++++ src/IconPeopleOutlineSharp.tsx | 12 ++++ src/IconPeopleOutlineTwoTone.tsx | 17 ++++++ src/IconPeopleOutlined.tsx | 12 ++++ src/IconPeopleRound.tsx | 12 ++++ src/IconPeopleSharp.tsx | 12 ++++ src/IconPeopleTwoTone.tsx | 17 ++++++ src/IconPercentOutlined.tsx | 25 +++++++++ src/IconPercentRound.tsx | 23 ++++++++ src/IconPercentSharp.tsx | 25 +++++++++ src/IconPercentTwoTone.tsx | 25 +++++++++ src/IconPermCameraMicOutlined.tsx | 12 ++++ src/IconPermCameraMicRound.tsx | 12 ++++ src/IconPermCameraMicSharp.tsx | 12 ++++ src/IconPermCameraMicTwoTone.tsx | 16 ++++++ src/IconPermContactCalendarOutlined.tsx | 12 ++++ src/IconPermContactCalendarRound.tsx | 12 ++++ src/IconPermContactCalendarSharp.tsx | 12 ++++ src/IconPermContactCalendarTwoTone.tsx | 16 ++++++ src/IconPermDataSettingOutlined.tsx | 12 ++++ src/IconPermDataSettingRound.tsx | 12 ++++ src/IconPermDataSettingSharp.tsx | 12 ++++ src/IconPermDataSettingTwoTone.tsx | 12 ++++ src/IconPermDeviceInformationOutlined.tsx | 14 +++++ src/IconPermDeviceInformationRound.tsx | 12 ++++ src/IconPermDeviceInformationSharp.tsx | 12 ++++ src/IconPermDeviceInformationTwoTone.tsx | 15 +++++ src/IconPermIdentityOutlined.tsx | 12 ++++ src/IconPermIdentityRound.tsx | 12 ++++ src/IconPermIdentitySharp.tsx | 12 ++++ src/IconPermIdentityTwoTone.tsx | 17 ++++++ src/IconPermMediaOutlined.tsx | 12 ++++ src/IconPermMediaRound.tsx | 24 ++++++++ src/IconPermMediaSharp.tsx | 12 ++++ src/IconPermMediaTwoTone.tsx | 16 ++++++ src/IconPermPhoneMsgOutlined.tsx | 12 ++++ src/IconPermPhoneMsgRound.tsx | 12 ++++ src/IconPermPhoneMsgSharp.tsx | 12 ++++ src/IconPermPhoneMsgTwoTone.tsx | 16 ++++++ src/IconPermScanWifiOutlined.tsx | 12 ++++ src/IconPermScanWifiRound.tsx | 12 ++++ src/IconPermScanWifiSharp.tsx | 12 ++++ src/IconPermScanWifiTwoTone.tsx | 16 ++++++ src/IconPerson2Outlined.tsx | 24 ++++++++ src/IconPerson2Round.tsx | 25 +++++++++ src/IconPerson2Sharp.tsx | 24 ++++++++ src/IconPerson2TwoTone.tsx | 32 +++++++++++ src/IconPerson3Outlined.tsx | 24 ++++++++ src/IconPerson3Round.tsx | 29 ++++++++++ src/IconPerson3Sharp.tsx | 28 ++++++++++ src/IconPerson3TwoTone.tsx | 32 +++++++++++ src/IconPerson4Outlined.tsx | 24 ++++++++ src/IconPerson4Round.tsx | 29 ++++++++++ src/IconPerson4Sharp.tsx | 28 ++++++++++ src/IconPerson4TwoTone.tsx | 32 +++++++++++ src/IconPersonAddAlt1Outlined.tsx | 21 +++++++ src/IconPersonAddAlt1Round.tsx | 26 +++++++++ src/IconPersonAddAlt1Sharp.tsx | 21 +++++++ src/IconPersonAddAlt1TwoTone.tsx | 30 ++++++++++ src/IconPersonAddAltOutlined.tsx | 21 +++++++ src/IconPersonAddAltRound.tsx | 21 +++++++ src/IconPersonAddAltSharp.tsx | 21 +++++++ src/IconPersonAddAltTwoTone.tsx | 30 ++++++++++ src/IconPersonAddDisabledOutlined.tsx | 12 ++++ src/IconPersonAddDisabledRound.tsx | 12 ++++ src/IconPersonAddDisabledSharp.tsx | 12 ++++ src/IconPersonAddDisabledTwoTone.tsx | 16 ++++++ src/IconPersonAddOutlined.tsx | 12 ++++ src/IconPersonAddRound.tsx | 12 ++++ src/IconPersonAddSharp.tsx | 12 ++++ src/IconPersonAddTwoTone.tsx | 14 +++++ src/IconPersonOffOutlined.tsx | 17 ++++++ src/IconPersonOffRound.tsx | 19 +++++++ src/IconPersonOffSharp.tsx | 19 +++++++ src/IconPersonOffTwoTone.tsx | 21 +++++++ src/IconPersonOutlineOutlined.tsx | 12 ++++ src/IconPersonOutlineRound.tsx | 12 ++++ src/IconPersonOutlineSharp.tsx | 12 ++++ src/IconPersonOutlineTwoTone.tsx | 17 ++++++ src/IconPersonOutlined.tsx | 12 ++++ src/IconPersonPinCircleOutlined.tsx | 12 ++++ src/IconPersonPinCircleRound.tsx | 21 +++++++ src/IconPersonPinCircleSharp.tsx | 12 ++++ src/IconPersonPinCircleTwoTone.tsx | 22 ++++++++ src/IconPersonPinOutlined.tsx | 12 ++++ src/IconPersonPinRound.tsx | 12 ++++ src/IconPersonPinSharp.tsx | 12 ++++ src/IconPersonPinTwoTone.tsx | 16 ++++++ src/IconPersonRemoveAlt1Outlined.tsx | 25 +++++++++ src/IconPersonRemoveAlt1Round.tsx | 22 ++++++++ src/IconPersonRemoveAlt1Sharp.tsx | 21 +++++++ src/IconPersonRemoveAlt1TwoTone.tsx | 30 ++++++++++ src/IconPersonRemoveOutlined.tsx | 25 +++++++++ src/IconPersonRemoveRound.tsx | 22 ++++++++ src/IconPersonRemoveSharp.tsx | 21 +++++++ src/IconPersonRemoveTwoTone.tsx | 30 ++++++++++ src/IconPersonRound.tsx | 12 ++++ src/IconPersonSearchOutlined.tsx | 25 +++++++++ src/IconPersonSearchRound.tsx | 26 +++++++++ src/IconPersonSearchSharp.tsx | 25 +++++++++ src/IconPersonSearchTwoTone.tsx | 33 +++++++++++ src/IconPersonSharp.tsx | 12 ++++ src/IconPersonTwoTone.tsx | 14 +++++ src/IconPersonalInjuryOutlined.tsx | 17 ++++++ src/IconPersonalInjuryRound.tsx | 19 +++++++ src/IconPersonalInjurySharp.tsx | 19 +++++++ src/IconPersonalInjuryTwoTone.tsx | 21 +++++++ src/IconPersonalVideoOutlined.tsx | 12 ++++ src/IconPersonalVideoRound.tsx | 12 ++++ src/IconPersonalVideoSharp.tsx | 12 ++++ src/IconPersonalVideoTwoTone.tsx | 13 +++++ src/IconPestControlOutlined.tsx | 24 ++++++++ src/IconPestControlRodentOutlined.tsx | 24 ++++++++ src/IconPestControlRodentRound.tsx | 22 ++++++++ src/IconPestControlRodentSharp.tsx | 21 +++++++ src/IconPestControlRodentTwoTone.tsx | 28 ++++++++++ src/IconPestControlRound.tsx | 24 ++++++++ src/IconPestControlSharp.tsx | 23 ++++++++ src/IconPestControlTwoTone.tsx | 32 +++++++++++ src/IconPetsOutlined.tsx | 16 ++++++ src/IconPetsRound.tsx | 16 ++++++ src/IconPetsSharp.tsx | 16 ++++++ src/IconPetsTwoTone.tsx | 16 ++++++ src/IconPhishingOutlined.tsx | 23 ++++++++ src/IconPhishingRound.tsx | 22 ++++++++ src/IconPhishingSharp.tsx | 21 +++++++ src/IconPhishingTwoTone.tsx | 21 +++++++ src/IconPhoneAndroidOutlined.tsx | 12 ++++ src/IconPhoneAndroidRound.tsx | 11 ++++ src/IconPhoneAndroidSharp.tsx | 12 ++++ src/IconPhoneAndroidTwoTone.tsx | 13 +++++ src/IconPhoneBluetoothSpeakerOutlined.tsx | 14 +++++ src/IconPhoneBluetoothSpeakerRound.tsx | 12 ++++ src/IconPhoneBluetoothSpeakerSharp.tsx | 12 ++++ src/IconPhoneBluetoothSpeakerTwoTone.tsx | 18 ++++++ src/IconPhoneCallbackOutlined.tsx | 12 ++++ src/IconPhoneCallbackRound.tsx | 12 ++++ src/IconPhoneCallbackSharp.tsx | 12 ++++ src/IconPhoneCallbackTwoTone.tsx | 16 ++++++ src/IconPhoneDisabledOutlined.tsx | 21 +++++++ src/IconPhoneDisabledRound.tsx | 21 +++++++ src/IconPhoneDisabledSharp.tsx | 21 +++++++ src/IconPhoneDisabledTwoTone.tsx | 21 +++++++ src/IconPhoneEnabledOutlined.tsx | 21 +++++++ src/IconPhoneEnabledRound.tsx | 21 +++++++ src/IconPhoneEnabledSharp.tsx | 21 +++++++ src/IconPhoneEnabledTwoTone.tsx | 21 +++++++ src/IconPhoneForwardedOutlined.tsx | 12 ++++ src/IconPhoneForwardedRound.tsx | 12 ++++ src/IconPhoneForwardedSharp.tsx | 12 ++++ src/IconPhoneForwardedTwoTone.tsx | 16 ++++++ src/IconPhoneInTalkOutlined.tsx | 12 ++++ src/IconPhoneInTalkRound.tsx | 12 ++++ src/IconPhoneInTalkSharp.tsx | 12 ++++ src/IconPhoneInTalkTwoTone.tsx | 16 ++++++ src/IconPhoneIphoneOutlined.tsx | 12 ++++ src/IconPhoneIphoneRound.tsx | 11 ++++ src/IconPhoneIphoneSharp.tsx | 12 ++++ src/IconPhoneIphoneTwoTone.tsx | 13 +++++ src/IconPhoneLockedOutlined.tsx | 24 ++++++++ src/IconPhoneLockedRound.tsx | 24 ++++++++ src/IconPhoneLockedSharp.tsx | 24 ++++++++ src/IconPhoneLockedTwoTone.tsx | 36 ++++++++++++ src/IconPhoneMissedOutlined.tsx | 12 ++++ src/IconPhoneMissedRound.tsx | 12 ++++ src/IconPhoneMissedSharp.tsx | 12 ++++ src/IconPhoneMissedTwoTone.tsx | 16 ++++++ src/IconPhoneOutlined.tsx | 12 ++++ src/IconPhonePausedOutlined.tsx | 12 ++++ src/IconPhonePausedRound.tsx | 12 ++++ src/IconPhonePausedSharp.tsx | 12 ++++ src/IconPhonePausedTwoTone.tsx | 16 ++++++ src/IconPhoneRound.tsx | 12 ++++ src/IconPhoneSharp.tsx | 12 ++++ src/IconPhoneTwoTone.tsx | 16 ++++++ src/IconPhonelinkEraseOutlined.tsx | 12 ++++ src/IconPhonelinkEraseRound.tsx | 12 ++++ src/IconPhonelinkEraseSharp.tsx | 12 ++++ src/IconPhonelinkEraseTwoTone.tsx | 12 ++++ src/IconPhonelinkLockOutlined.tsx | 12 ++++ src/IconPhonelinkLockRound.tsx | 24 ++++++++ src/IconPhonelinkLockSharp.tsx | 12 ++++ src/IconPhonelinkLockTwoTone.tsx | 12 ++++ src/IconPhonelinkOffOutlined.tsx | 12 ++++ src/IconPhonelinkOffRound.tsx | 11 ++++ src/IconPhonelinkOffSharp.tsx | 12 ++++ src/IconPhonelinkOffTwoTone.tsx | 13 +++++ src/IconPhonelinkOutlined.tsx | 12 ++++ src/IconPhonelinkRingOutlined.tsx | 12 ++++ src/IconPhonelinkRingRound.tsx | 12 ++++ src/IconPhonelinkRingSharp.tsx | 12 ++++ src/IconPhonelinkRingTwoTone.tsx | 13 +++++ src/IconPhonelinkRound.tsx | 11 ++++ src/IconPhonelinkSetupOutlined.tsx | 12 ++++ src/IconPhonelinkSetupRound.tsx | 12 ++++ src/IconPhonelinkSetupSharp.tsx | 12 ++++ src/IconPhonelinkSetupTwoTone.tsx | 12 ++++ src/IconPhonelinkSharp.tsx | 12 ++++ src/IconPhonelinkTwoTone.tsx | 13 +++++ src/IconPhotoAlbumOutlined.tsx | 17 ++++++ src/IconPhotoAlbumRound.tsx | 19 +++++++ src/IconPhotoAlbumSharp.tsx | 17 ++++++ src/IconPhotoAlbumTwoTone.tsx | 21 +++++++ src/IconPhotoCameraBackOutlined.tsx | 24 ++++++++ src/IconPhotoCameraBackRound.tsx | 21 +++++++ src/IconPhotoCameraBackSharp.tsx | 21 +++++++ src/IconPhotoCameraBackTwoTone.tsx | 25 +++++++++ src/IconPhotoCameraFrontOutlined.tsx | 25 +++++++++ src/IconPhotoCameraFrontRound.tsx | 21 +++++++ src/IconPhotoCameraFrontSharp.tsx | 21 +++++++ src/IconPhotoCameraFrontTwoTone.tsx | 27 +++++++++ src/IconPhotoCameraOutlined.tsx | 12 ++++ src/IconPhotoCameraRound.tsx | 13 +++++ src/IconPhotoCameraSharp.tsx | 13 +++++ src/IconPhotoCameraTwoTone.tsx | 16 ++++++ src/IconPhotoFilterOutlined.tsx | 12 ++++ src/IconPhotoFilterRound.tsx | 12 ++++ src/IconPhotoFilterSharp.tsx | 12 ++++ src/IconPhotoFilterTwoTone.tsx | 12 ++++ src/IconPhotoLibraryOutlined.tsx | 12 ++++ src/IconPhotoLibraryRound.tsx | 12 ++++ src/IconPhotoLibrarySharp.tsx | 12 ++++ src/IconPhotoLibraryTwoTone.tsx | 16 ++++++ src/IconPhotoOutlined.tsx | 12 ++++ src/IconPhotoRound.tsx | 12 ++++ src/IconPhotoSharp.tsx | 12 ++++ src/IconPhotoSizeSelectActualOutlined.tsx | 14 +++++ src/IconPhotoSizeSelectActualRound.tsx | 12 ++++ src/IconPhotoSizeSelectActualSharp.tsx | 12 ++++ src/IconPhotoSizeSelectActualTwoTone.tsx | 18 ++++++ src/IconPhotoSizeSelectLargeOutlined.tsx | 14 +++++ src/IconPhotoSizeSelectLargeRound.tsx | 12 ++++ src/IconPhotoSizeSelectLargeSharp.tsx | 12 ++++ src/IconPhotoSizeSelectLargeTwoTone.tsx | 12 ++++ src/IconPhotoSizeSelectSmallOutlined.tsx | 14 +++++ src/IconPhotoSizeSelectSmallRound.tsx | 12 ++++ src/IconPhotoSizeSelectSmallSharp.tsx | 12 ++++ src/IconPhotoSizeSelectSmallTwoTone.tsx | 12 ++++ src/IconPhotoTwoTone.tsx | 16 ++++++ src/IconPhpOutlined.tsx | 21 +++++++ src/IconPhpRound.tsx | 22 ++++++++ src/IconPhpSharp.tsx | 21 +++++++ src/IconPhpTwoTone.tsx | 21 +++++++ src/IconPianoOffOutlined.tsx | 17 ++++++ src/IconPianoOffRound.tsx | 17 ++++++ src/IconPianoOffSharp.tsx | 17 ++++++ src/IconPianoOffTwoTone.tsx | 21 +++++++ src/IconPianoOutlined.tsx | 17 ++++++ src/IconPianoRound.tsx | 17 ++++++ src/IconPianoSharp.tsx | 17 ++++++ src/IconPianoTwoTone.tsx | 21 +++++++ src/IconPictureAsPdfOutlined.tsx | 12 ++++ src/IconPictureAsPdfRound.tsx | 12 ++++ src/IconPictureAsPdfSharp.tsx | 12 ++++ src/IconPictureAsPdfTwoTone.tsx | 17 ++++++ src/IconPictureInPictureAltOutlined.tsx | 12 ++++ src/IconPictureInPictureAltRound.tsx | 12 ++++ src/IconPictureInPictureAltSharp.tsx | 12 ++++ src/IconPictureInPictureAltTwoTone.tsx | 13 +++++ src/IconPictureInPictureOutlined.tsx | 12 ++++ src/IconPictureInPictureRound.tsx | 12 ++++ src/IconPictureInPictureSharp.tsx | 12 ++++ src/IconPictureInPictureTwoTone.tsx | 14 +++++ src/IconPieChartOutlineOutlined.tsx | 12 ++++ src/IconPieChartOutlineRound.tsx | 12 ++++ src/IconPieChartOutlineSharp.tsx | 11 ++++ src/IconPieChartOutlineTwoTone.tsx | 12 ++++ src/IconPieChartOutlined.tsx | 12 ++++ src/IconPieChartRound.tsx | 12 ++++ src/IconPieChartSharp.tsx | 11 ++++ src/IconPieChartTwoTone.tsx | 16 ++++++ src/IconPinDropOutlined.tsx | 13 +++++ src/IconPinDropRound.tsx | 23 ++++++++ src/IconPinDropSharp.tsx | 15 +++++ src/IconPinDropTwoTone.tsx | 23 ++++++++ src/IconPinEndOutlined.tsx | 17 ++++++ src/IconPinEndRound.tsx | 17 ++++++ src/IconPinEndSharp.tsx | 17 ++++++ src/IconPinEndTwoTone.tsx | 17 ++++++ src/IconPinInvokeOutlined.tsx | 17 ++++++ src/IconPinInvokeRound.tsx | 17 ++++++ src/IconPinInvokeSharp.tsx | 17 ++++++ src/IconPinInvokeTwoTone.tsx | 17 ++++++ src/IconPinOutlined.tsx | 26 +++++++++ src/IconPinRound.tsx | 23 ++++++++ src/IconPinSharp.tsx | 23 ++++++++ src/IconPinTwoTone.tsx | 30 ++++++++++ src/IconPinchOutlined.tsx | 21 +++++++ src/IconPinchRound.tsx | 21 +++++++ src/IconPinchSharp.tsx | 21 +++++++ src/IconPinchTwoTone.tsx | 25 +++++++++ src/IconPivotTableChartOutlined.tsx | 21 +++++++ src/IconPivotTableChartRound.tsx | 26 +++++++++ src/IconPivotTableChartSharp.tsx | 26 +++++++++ src/IconPivotTableChartTwoTone.tsx | 26 +++++++++ src/IconPixOutlined.tsx | 25 +++++++++ src/IconPixRound.tsx | 26 +++++++++ src/IconPixSharp.tsx | 25 +++++++++ src/IconPixTwoTone.tsx | 25 +++++++++ src/IconPlaceOutlined.tsx | 12 ++++ src/IconPlaceRound.tsx | 24 ++++++++ src/IconPlaceSharp.tsx | 12 ++++ src/IconPlaceTwoTone.tsx | 22 ++++++++ src/IconPlagiarismOutlined.tsx | 24 ++++++++ src/IconPlagiarismRound.tsx | 25 +++++++++ src/IconPlagiarismSharp.tsx | 24 ++++++++ src/IconPlagiarismTwoTone.tsx | 29 ++++++++++ src/IconPlayArrowOutlined.tsx | 12 ++++ src/IconPlayArrowRound.tsx | 11 ++++ src/IconPlayArrowSharp.tsx | 12 ++++ src/IconPlayArrowTwoTone.tsx | 13 +++++ src/IconPlayCircleFilledOutlined.tsx | 12 ++++ src/IconPlayCircleFilledRound.tsx | 11 ++++ src/IconPlayCircleFilledSharp.tsx | 12 ++++ src/IconPlayCircleFilledTwoTone.tsx | 16 ++++++ src/IconPlayCircleOutlineOutlined.tsx | 12 ++++ src/IconPlayCircleOutlineRound.tsx | 11 ++++ src/IconPlayCircleOutlineSharp.tsx | 12 ++++ src/IconPlayCircleOutlineTwoTone.tsx | 12 ++++ src/IconPlayCircleOutlined.tsx | 21 +++++++ src/IconPlayCircleRound.tsx | 21 +++++++ src/IconPlayCircleSharp.tsx | 21 +++++++ src/IconPlayCircleTwoTone.tsx | 29 ++++++++++ src/IconPlayDisabledOutlined.tsx | 24 ++++++++ src/IconPlayDisabledRound.tsx | 21 +++++++ src/IconPlayDisabledSharp.tsx | 24 ++++++++ src/IconPlayDisabledTwoTone.tsx | 28 ++++++++++ src/IconPlayForWorkOutlined.tsx | 12 ++++ src/IconPlayForWorkRound.tsx | 12 ++++ src/IconPlayForWorkSharp.tsx | 12 ++++ src/IconPlayForWorkTwoTone.tsx | 12 ++++ src/IconPlayLessonOutlined.tsx | 21 +++++++ src/IconPlayLessonRound.tsx | 24 ++++++++ src/IconPlayLessonSharp.tsx | 24 ++++++++ src/IconPlayLessonTwoTone.tsx | 28 ++++++++++ src/IconPlaylistAddCheckCircleOutlined.tsx | 19 +++++++ src/IconPlaylistAddCheckCircleRound.tsx | 17 ++++++ src/IconPlaylistAddCheckCircleSharp.tsx | 17 ++++++ src/IconPlaylistAddCheckCircleTwoTone.tsx | 23 ++++++++ src/IconPlaylistAddCheckOutlined.tsx | 26 +++++++++ src/IconPlaylistAddCheckRound.tsx | 11 ++++ src/IconPlaylistAddCheckSharp.tsx | 26 +++++++++ src/IconPlaylistAddCheckTwoTone.tsx | 26 +++++++++ src/IconPlaylistAddCircleOutlined.tsx | 17 ++++++ src/IconPlaylistAddCircleRound.tsx | 17 ++++++ src/IconPlaylistAddCircleSharp.tsx | 17 ++++++ src/IconPlaylistAddCircleTwoTone.tsx | 21 +++++++ src/IconPlaylistAddOutlined.tsx | 21 +++++++ src/IconPlaylistAddRound.tsx | 11 ++++ src/IconPlaylistAddSharp.tsx | 21 +++++++ src/IconPlaylistAddTwoTone.tsx | 21 +++++++ src/IconPlaylistPlayOutlined.tsx | 26 +++++++++ src/IconPlaylistPlayRound.tsx | 11 ++++ src/IconPlaylistPlaySharp.tsx | 26 +++++++++ src/IconPlaylistPlayTwoTone.tsx | 26 +++++++++ src/IconPlaylistRemoveOutlined.tsx | 21 +++++++ src/IconPlaylistRemoveRound.tsx | 22 ++++++++ src/IconPlaylistRemoveSharp.tsx | 21 +++++++ src/IconPlaylistRemoveTwoTone.tsx | 21 +++++++ src/IconPlumbingOutlined.tsx | 25 +++++++++ src/IconPlumbingRound.tsx | 26 +++++++++ src/IconPlumbingSharp.tsx | 31 ++++++++++ src/IconPlumbingTwoTone.tsx | 25 +++++++++ src/IconPlusOneOutlined.tsx | 12 ++++ src/IconPlusOneRound.tsx | 12 ++++ src/IconPlusOneSharp.tsx | 12 ++++ src/IconPlusOneTwoTone.tsx | 12 ++++ src/IconPodcastsOutlined.tsx | 21 +++++++ src/IconPodcastsRound.tsx | 21 +++++++ src/IconPodcastsSharp.tsx | 21 +++++++ src/IconPodcastsTwoTone.tsx | 21 +++++++ src/IconPointOfSaleOutlined.tsx | 19 +++++++ src/IconPointOfSaleRound.tsx | 19 +++++++ src/IconPointOfSaleSharp.tsx | 19 +++++++ src/IconPointOfSaleTwoTone.tsx | 23 ++++++++ src/IconPolicyOutlined.tsx | 24 ++++++++ src/IconPolicyRound.tsx | 26 +++++++++ src/IconPolicySharp.tsx | 25 +++++++++ src/IconPolicyTwoTone.tsx | 28 ++++++++++ src/IconPollOutlined.tsx | 12 ++++ src/IconPollRound.tsx | 12 ++++ src/IconPollSharp.tsx | 12 ++++ src/IconPollTwoTone.tsx | 16 ++++++ src/IconPolylineOutlined.tsx | 21 +++++++ src/IconPolylineRound.tsx | 22 ++++++++ src/IconPolylineSharp.tsx | 21 +++++++ src/IconPolylineTwoTone.tsx | 25 +++++++++ src/IconPolymerOutlined.tsx | 12 ++++ src/IconPolymerRound.tsx | 12 ++++ src/IconPolymerSharp.tsx | 12 ++++ src/IconPolymerTwoTone.tsx | 12 ++++ src/IconPoolOutlined.tsx | 13 +++++ src/IconPoolRound.tsx | 13 +++++ src/IconPoolSharp.tsx | 13 +++++ src/IconPoolTwoTone.tsx | 18 ++++++ src/IconPortableWifiOffOutlined.tsx | 12 ++++ src/IconPortableWifiOffRound.tsx | 12 ++++ src/IconPortableWifiOffSharp.tsx | 12 ++++ src/IconPortableWifiOffTwoTone.tsx | 12 ++++ src/IconPortraitOutlined.tsx | 12 ++++ src/IconPortraitRound.tsx | 12 ++++ src/IconPortraitSharp.tsx | 12 ++++ src/IconPortraitTwoTone.tsx | 16 ++++++ src/IconPostAddOutlined.tsx | 28 ++++++++++ src/IconPostAddRound.tsx | 29 ++++++++++ src/IconPostAddSharp.tsx | 28 ++++++++++ src/IconPostAddTwoTone.tsx | 28 ++++++++++ src/IconPowerInputOutlined.tsx | 12 ++++ src/IconPowerInputRound.tsx | 11 ++++ src/IconPowerInputSharp.tsx | 12 ++++ src/IconPowerInputTwoTone.tsx | 12 ++++ src/IconPowerOffOutlined.tsx | 12 ++++ src/IconPowerOffRound.tsx | 12 ++++ src/IconPowerOffSharp.tsx | 12 ++++ src/IconPowerOffTwoTone.tsx | 16 ++++++ src/IconPowerOutlined.tsx | 12 ++++ src/IconPowerRound.tsx | 12 ++++ src/IconPowerSettingsNewOutlined.tsx | 12 ++++ src/IconPowerSettingsNewRound.tsx | 12 ++++ src/IconPowerSettingsNewSharp.tsx | 12 ++++ src/IconPowerSettingsNewTwoTone.tsx | 12 ++++ src/IconPowerSharp.tsx | 12 ++++ src/IconPowerTwoTone.tsx | 13 +++++ src/IconPrecisionManufacturingOutlined.tsx | 23 ++++++++ src/IconPrecisionManufacturingRound.tsx | 22 ++++++++ src/IconPrecisionManufacturingSharp.tsx | 21 +++++++ src/IconPrecisionManufacturingTwoTone.tsx | 27 +++++++++ src/IconPregnantWomanOutlined.tsx | 12 ++++ src/IconPregnantWomanRound.tsx | 12 ++++ src/IconPregnantWomanSharp.tsx | 12 ++++ src/IconPregnantWomanTwoTone.tsx | 12 ++++ src/IconPresentToAllOutlined.tsx | 12 ++++ src/IconPresentToAllRound.tsx | 12 ++++ src/IconPresentToAllSharp.tsx | 12 ++++ src/IconPresentToAllTwoTone.tsx | 16 ++++++ src/IconPreviewOutlined.tsx | 19 +++++++ src/IconPreviewRound.tsx | 19 +++++++ src/IconPreviewSharp.tsx | 19 +++++++ src/IconPreviewTwoTone.tsx | 23 ++++++++ src/IconPriceChangeOutlined.tsx | 23 ++++++++ src/IconPriceChangeRound.tsx | 21 +++++++ src/IconPriceChangeSharp.tsx | 21 +++++++ src/IconPriceChangeTwoTone.tsx | 30 ++++++++++ src/IconPriceCheckOutlined.tsx | 24 ++++++++ src/IconPriceCheckRound.tsx | 24 ++++++++ src/IconPriceCheckSharp.tsx | 24 ++++++++ src/IconPriceCheckTwoTone.tsx | 24 ++++++++ src/IconPrintDisabledOutlined.tsx | 13 +++++ src/IconPrintDisabledRound.tsx | 12 ++++ src/IconPrintDisabledSharp.tsx | 12 ++++ src/IconPrintDisabledTwoTone.tsx | 20 +++++++ src/IconPrintOutlined.tsx | 13 +++++ src/IconPrintRound.tsx | 12 ++++ src/IconPrintSharp.tsx | 12 ++++ src/IconPrintTwoTone.tsx | 18 ++++++ src/IconPriorityHighOutlined.tsx | 13 +++++ src/IconPriorityHighRound.tsx | 13 +++++ src/IconPriorityHighSharp.tsx | 13 +++++ src/IconPriorityHighTwoTone.tsx | 13 +++++ src/IconPrivacyTipOutlined.tsx | 19 +++++++ src/IconPrivacyTipRound.tsx | 19 +++++++ src/IconPrivacyTipSharp.tsx | 19 +++++++ src/IconPrivacyTipTwoTone.tsx | 23 ++++++++ src/IconPrivateConnectivityOutlined.tsx | 17 ++++++ src/IconPrivateConnectivityRound.tsx | 17 ++++++ src/IconPrivateConnectivitySharp.tsx | 17 ++++++ src/IconPrivateConnectivityTwoTone.tsx | 21 +++++++ src/IconProductionQuantityLimitsOutlined.tsx | 19 +++++++ src/IconProductionQuantityLimitsRound.tsx | 19 +++++++ src/IconProductionQuantityLimitsSharp.tsx | 19 +++++++ src/IconProductionQuantityLimitsTwoTone.tsx | 19 +++++++ src/IconPropaneOutlined.tsx | 21 +++++++ src/IconPropaneRound.tsx | 22 ++++++++ src/IconPropaneSharp.tsx | 21 +++++++ src/IconPropaneTankOutlined.tsx | 21 +++++++ src/IconPropaneTankRound.tsx | 25 +++++++++ src/IconPropaneTankSharp.tsx | 24 ++++++++ src/IconPropaneTankTwoTone.tsx | 31 ++++++++++ src/IconPropaneTwoTone.tsx | 27 +++++++++ src/IconPsychologyAltOutlined.tsx | 25 +++++++++ src/IconPsychologyAltRound.tsx | 22 ++++++++ src/IconPsychologyAltSharp.tsx | 21 +++++++ src/IconPsychologyAltTwoTone.tsx | 29 ++++++++++ src/IconPsychologyOutlined.tsx | 24 ++++++++ src/IconPsychologyRound.tsx | 25 +++++++++ src/IconPsychologySharp.tsx | 24 ++++++++ src/IconPsychologyTwoTone.tsx | 28 ++++++++++ src/IconPublicOffOutlined.tsx | 19 +++++++ src/IconPublicOffRound.tsx | 19 +++++++ src/IconPublicOffSharp.tsx | 19 +++++++ src/IconPublicOffTwoTone.tsx | 23 ++++++++ src/IconPublicOutlined.tsx | 12 ++++ src/IconPublicRound.tsx | 12 ++++ src/IconPublicSharp.tsx | 12 ++++ src/IconPublicTwoTone.tsx | 16 ++++++ src/IconPublishOutlined.tsx | 12 ++++ src/IconPublishRound.tsx | 12 ++++ src/IconPublishSharp.tsx | 11 ++++ src/IconPublishTwoTone.tsx | 13 +++++ src/IconPublishedWithChangesOutlined.tsx | 19 +++++++ src/IconPublishedWithChangesRound.tsx | 17 ++++++ src/IconPublishedWithChangesSharp.tsx | 17 ++++++ src/IconPublishedWithChangesTwoTone.tsx | 17 ++++++ src/IconPunchClockOutlined.tsx | 25 +++++++++ src/IconPunchClockRound.tsx | 25 +++++++++ src/IconPunchClockSharp.tsx | 24 ++++++++ src/IconPunchClockTwoTone.tsx | 30 ++++++++++ src/IconPushPinOutlined.tsx | 21 +++++++ src/IconPushPinRound.tsx | 25 +++++++++ src/IconPushPinSharp.tsx | 24 ++++++++ src/IconPushPinTwoTone.tsx | 27 +++++++++ src/IconQrCode2Outlined.tsx | 19 +++++++ src/IconQrCode2Round.tsx | 19 +++++++ src/IconQrCode2Sharp.tsx | 19 +++++++ src/IconQrCode2TwoTone.tsx | 19 +++++++ src/IconQrCodeOutlined.tsx | 33 +++++++++++ src/IconQrCodeRound.tsx | 34 +++++++++++ src/IconQrCodeScannerOutlined.tsx | 17 ++++++ src/IconQrCodeScannerRound.tsx | 17 ++++++ src/IconQrCodeScannerSharp.tsx | 17 ++++++ src/IconQrCodeScannerTwoTone.tsx | 17 ++++++ src/IconQrCodeSharp.tsx | 33 +++++++++++ src/IconQrCodeTwoTone.tsx | 38 +++++++++++++ src/IconQueryBuilderOutlined.tsx | 12 ++++ src/IconQueryBuilderRound.tsx | 12 ++++ src/IconQueryBuilderSharp.tsx | 12 ++++ src/IconQueryBuilderTwoTone.tsx | 16 ++++++ src/IconQueryStatsOutlined.tsx | 19 +++++++ src/IconQueryStatsRound.tsx | 19 +++++++ src/IconQueryStatsSharp.tsx | 19 +++++++ src/IconQueryStatsTwoTone.tsx | 19 +++++++ src/IconQuestionAnswerOutlined.tsx | 12 ++++ src/IconQuestionAnswerRound.tsx | 12 ++++ src/IconQuestionAnswerSharp.tsx | 12 ++++ src/IconQuestionAnswerTwoTone.tsx | 13 +++++ src/IconQuestionMarkOutlined.tsx | 21 +++++++ src/IconQuestionMarkRound.tsx | 22 ++++++++ src/IconQuestionMarkSharp.tsx | 21 +++++++ src/IconQuestionMarkTwoTone.tsx | 21 +++++++ src/IconQueueMusicOutlined.tsx | 21 +++++++ src/IconQueueMusicRound.tsx | 11 ++++ src/IconQueueMusicSharp.tsx | 21 +++++++ src/IconQueueMusicTwoTone.tsx | 22 ++++++++ src/IconQueueOutlined.tsx | 12 ++++ src/IconQueuePlayNextOutlined.tsx | 12 ++++ src/IconQueuePlayNextRound.tsx | 11 ++++ src/IconQueuePlayNextSharp.tsx | 12 ++++ src/IconQueuePlayNextTwoTone.tsx | 12 ++++ src/IconQueueRound.tsx | 11 ++++ src/IconQueueSharp.tsx | 12 ++++ src/IconQueueTwoTone.tsx | 13 +++++ src/IconQuickreplyOutlined.tsx | 28 ++++++++++ src/IconQuickreplyRound.tsx | 29 ++++++++++ src/IconQuickreplySharp.tsx | 28 ++++++++++ src/IconQuickreplyTwoTone.tsx | 31 ++++++++++ src/IconQuizOutlined.tsx | 21 +++++++ src/IconQuizRound.tsx | 24 ++++++++ src/IconQuizSharp.tsx | 24 ++++++++ src/IconQuizTwoTone.tsx | 25 +++++++++ src/IconRMobiledataOutlined.tsx | 23 ++++++++ src/IconRMobiledataRound.tsx | 23 ++++++++ src/IconRMobiledataSharp.tsx | 23 ++++++++ src/IconRMobiledataTwoTone.tsx | 23 ++++++++ src/IconRadarOutlined.tsx | 23 ++++++++ src/IconRadarRound.tsx | 23 ++++++++ src/IconRadarSharp.tsx | 23 ++++++++ src/IconRadarTwoTone.tsx | 23 ++++++++ src/IconRadioButtonCheckedOutlined.tsx | 13 +++++ src/IconRadioButtonCheckedRound.tsx | 13 +++++ src/IconRadioButtonCheckedSharp.tsx | 13 +++++ src/IconRadioButtonCheckedTwoTone.tsx | 13 +++++ src/IconRadioButtonUncheckedOutlined.tsx | 14 +++++ src/IconRadioButtonUncheckedRound.tsx | 12 ++++ src/IconRadioButtonUncheckedSharp.tsx | 12 ++++ src/IconRadioButtonUncheckedTwoTone.tsx | 12 ++++ src/IconRadioOutlined.tsx | 13 +++++ src/IconRadioRound.tsx | 11 ++++ src/IconRadioSharp.tsx | 12 ++++ src/IconRadioTwoTone.tsx | 17 ++++++ src/IconRailwayAlertOutlined.tsx | 31 ++++++++++ src/IconRailwayAlertRound.tsx | 28 ++++++++++ src/IconRailwayAlertSharp.tsx | 28 ++++++++++ src/IconRailwayAlertTwoTone.tsx | 33 +++++++++++ src/IconRamenDiningOutlined.tsx | 21 +++++++ src/IconRamenDiningRound.tsx | 21 +++++++ src/IconRamenDiningSharp.tsx | 21 +++++++ src/IconRamenDiningTwoTone.tsx | 28 ++++++++++ src/IconRampLeftOutlined.tsx | 21 +++++++ src/IconRampLeftRound.tsx | 22 ++++++++ src/IconRampLeftSharp.tsx | 21 +++++++ src/IconRampLeftTwoTone.tsx | 21 +++++++ src/IconRampRightOutlined.tsx | 21 +++++++ src/IconRampRightRound.tsx | 22 ++++++++ src/IconRampRightSharp.tsx | 21 +++++++ src/IconRampRightTwoTone.tsx | 21 +++++++ src/IconRateReviewOutlined.tsx | 12 ++++ src/IconRateReviewRound.tsx | 12 ++++ src/IconRateReviewSharp.tsx | 12 ++++ src/IconRateReviewTwoTone.tsx | 16 ++++++ src/IconRawOffOutlined.tsx | 24 ++++++++ src/IconRawOffRound.tsx | 24 ++++++++ src/IconRawOffSharp.tsx | 24 ++++++++ src/IconRawOffTwoTone.tsx | 24 ++++++++ src/IconRawOnOutlined.tsx | 25 +++++++++ src/IconRawOnRound.tsx | 25 +++++++++ src/IconRawOnSharp.tsx | 25 +++++++++ src/IconRawOnTwoTone.tsx | 25 +++++++++ src/IconReadMoreOutlined.tsx | 26 +++++++++ src/IconReadMoreRound.tsx | 27 +++++++++ src/IconReadMoreSharp.tsx | 26 +++++++++ src/IconReadMoreTwoTone.tsx | 26 +++++++++ src/IconRealEstateAgentOutlined.tsx | 17 ++++++ src/IconRealEstateAgentRound.tsx | 17 ++++++ src/IconRealEstateAgentSharp.tsx | 17 ++++++ src/IconRealEstateAgentTwoTone.tsx | 21 +++++++ src/IconReceiptLongOutlined.tsx | 23 ++++++++ src/IconReceiptLongRound.tsx | 23 ++++++++ src/IconReceiptLongSharp.tsx | 23 ++++++++ src/IconReceiptLongTwoTone.tsx | 24 ++++++++ src/IconReceiptOutlined.tsx | 12 ++++ src/IconReceiptRound.tsx | 12 ++++ src/IconReceiptSharp.tsx | 12 ++++ src/IconReceiptTwoTone.tsx | 16 ++++++ src/IconRecentActorsOutlined.tsx | 14 +++++ src/IconRecentActorsRound.tsx | 11 ++++ src/IconRecentActorsSharp.tsx | 12 ++++ src/IconRecentActorsTwoTone.tsx | 18 ++++++ src/IconRecommendOutlined.tsx | 24 ++++++++ src/IconRecommendRound.tsx | 23 ++++++++ src/IconRecommendSharp.tsx | 23 ++++++++ src/IconRecommendTwoTone.tsx | 29 ++++++++++ src/IconRecordVoiceOverOutlined.tsx | 12 ++++ src/IconRecordVoiceOverRound.tsx | 13 +++++ src/IconRecordVoiceOverSharp.tsx | 13 +++++ src/IconRecordVoiceOverTwoTone.tsx | 16 ++++++ src/IconRectangleOutlined.tsx | 23 ++++++++ src/IconRectangleRound.tsx | 23 ++++++++ src/IconRectangleSharp.tsx | 23 ++++++++ src/IconRectangleTwoTone.tsx | 26 +++++++++ src/IconRecyclingOutlined.tsx | 17 ++++++ src/IconRecyclingRound.tsx | 17 ++++++ src/IconRecyclingSharp.tsx | 17 ++++++ src/IconRecyclingTwoTone.tsx | 17 ++++++ src/IconRedeemOutlined.tsx | 12 ++++ src/IconRedeemRound.tsx | 12 ++++ src/IconRedeemSharp.tsx | 12 ++++ src/IconRedeemTwoTone.tsx | 16 ++++++ src/IconRedoOutlined.tsx | 12 ++++ src/IconRedoRound.tsx | 12 ++++ src/IconRedoSharp.tsx | 12 ++++ src/IconRedoTwoTone.tsx | 12 ++++ src/IconReduceCapacityOutlined.tsx | 17 ++++++ src/IconReduceCapacityRound.tsx | 17 ++++++ src/IconReduceCapacitySharp.tsx | 17 ++++++ src/IconReduceCapacityTwoTone.tsx | 17 ++++++ src/IconRefreshOutlined.tsx | 12 ++++ src/IconRefreshRound.tsx | 12 ++++ src/IconRefreshSharp.tsx | 12 ++++ src/IconRefreshTwoTone.tsx | 12 ++++ src/IconRememberMeOutlined.tsx | 24 ++++++++ src/IconRememberMeRound.tsx | 24 ++++++++ src/IconRememberMeSharp.tsx | 24 ++++++++ src/IconRememberMeTwoTone.tsx | 31 ++++++++++ src/IconRemoveCircleOutlineOutlined.tsx | 12 ++++ src/IconRemoveCircleOutlineRound.tsx | 12 ++++ src/IconRemoveCircleOutlineSharp.tsx | 12 ++++ src/IconRemoveCircleOutlineTwoTone.tsx | 12 ++++ src/IconRemoveCircleOutlined.tsx | 12 ++++ src/IconRemoveCircleRound.tsx | 12 ++++ src/IconRemoveCircleSharp.tsx | 12 ++++ src/IconRemoveCircleTwoTone.tsx | 16 ++++++ src/IconRemoveDoneOutlined.tsx | 21 +++++++ src/IconRemoveDoneRound.tsx | 21 +++++++ src/IconRemoveDoneSharp.tsx | 21 +++++++ src/IconRemoveDoneTwoTone.tsx | 21 +++++++ src/IconRemoveFromQueueOutlined.tsx | 12 ++++ src/IconRemoveFromQueueRound.tsx | 11 ++++ src/IconRemoveFromQueueSharp.tsx | 12 ++++ src/IconRemoveFromQueueTwoTone.tsx | 13 +++++ src/IconRemoveModeratorOutlined.tsx | 22 ++++++++ src/IconRemoveModeratorRound.tsx | 22 ++++++++ src/IconRemoveModeratorSharp.tsx | 22 ++++++++ src/IconRemoveModeratorTwoTone.tsx | 29 ++++++++++ src/IconRemoveOutlined.tsx | 12 ++++ src/IconRemoveRedEyeOutlined.tsx | 12 ++++ src/IconRemoveRedEyeRound.tsx | 12 ++++ src/IconRemoveRedEyeSharp.tsx | 12 ++++ src/IconRemoveRedEyeTwoTone.tsx | 16 ++++++ src/IconRemoveRoadOutlined.tsx | 28 ++++++++++ src/IconRemoveRoadRound.tsx | 29 ++++++++++ src/IconRemoveRoadSharp.tsx | 28 ++++++++++ src/IconRemoveRoadTwoTone.tsx | 28 ++++++++++ src/IconRemoveRound.tsx | 12 ++++ src/IconRemoveSharp.tsx | 12 ++++ src/IconRemoveShoppingCartOutlined.tsx | 12 ++++ src/IconRemoveShoppingCartRound.tsx | 12 ++++ src/IconRemoveShoppingCartSharp.tsx | 12 ++++ src/IconRemoveShoppingCartTwoTone.tsx | 14 +++++ src/IconRemoveTwoTone.tsx | 12 ++++ src/IconReorderOutlined.tsx | 12 ++++ src/IconReorderRound.tsx | 12 ++++ src/IconReorderSharp.tsx | 12 ++++ src/IconReorderTwoTone.tsx | 12 ++++ src/IconRepartitionOutlined.tsx | 24 ++++++++ src/IconRepartitionRound.tsx | 25 +++++++++ src/IconRepartitionSharp.tsx | 24 ++++++++ src/IconRepartitionTwoTone.tsx | 27 +++++++++ src/IconRepeatOnOutlined.tsx | 21 +++++++ src/IconRepeatOnRound.tsx | 21 +++++++ src/IconRepeatOnSharp.tsx | 21 +++++++ src/IconRepeatOnTwoTone.tsx | 21 +++++++ src/IconRepeatOneOnOutlined.tsx | 21 +++++++ src/IconRepeatOneOnRound.tsx | 21 +++++++ src/IconRepeatOneOnSharp.tsx | 21 +++++++ src/IconRepeatOneOnTwoTone.tsx | 21 +++++++ src/IconRepeatOneOutlined.tsx | 12 ++++ src/IconRepeatOneRound.tsx | 11 ++++ src/IconRepeatOneSharp.tsx | 12 ++++ src/IconRepeatOneTwoTone.tsx | 12 ++++ src/IconRepeatOutlined.tsx | 12 ++++ src/IconRepeatRound.tsx | 11 ++++ src/IconRepeatSharp.tsx | 12 ++++ src/IconRepeatTwoTone.tsx | 12 ++++ src/IconReplay10Outlined.tsx | 12 ++++ src/IconReplay10Round.tsx | 11 ++++ src/IconReplay10Sharp.tsx | 12 ++++ src/IconReplay10TwoTone.tsx | 12 ++++ src/IconReplay30Outlined.tsx | 12 ++++ src/IconReplay30Round.tsx | 11 ++++ src/IconReplay30Sharp.tsx | 12 ++++ src/IconReplay30TwoTone.tsx | 12 ++++ src/IconReplay5Outlined.tsx | 12 ++++ src/IconReplay5Round.tsx | 11 ++++ src/IconReplay5Sharp.tsx | 12 ++++ src/IconReplay5TwoTone.tsx | 12 ++++ src/IconReplayCircleFilledOutlined.tsx | 21 +++++++ src/IconReplayCircleFilledRound.tsx | 21 +++++++ src/IconReplayCircleFilledSharp.tsx | 21 +++++++ src/IconReplayCircleFilledTwoTone.tsx | 21 +++++++ src/IconReplayOutlined.tsx | 24 ++++++++ src/IconReplayRound.tsx | 11 ++++ src/IconReplaySharp.tsx | 23 ++++++++ src/IconReplayTwoTone.tsx | 24 ++++++++ src/IconReplyAllOutlined.tsx | 12 ++++ src/IconReplyAllRound.tsx | 12 ++++ src/IconReplyAllSharp.tsx | 12 ++++ src/IconReplyAllTwoTone.tsx | 12 ++++ src/IconReplyOutlined.tsx | 12 ++++ src/IconReplyRound.tsx | 12 ++++ src/IconReplySharp.tsx | 12 ++++ src/IconReplyTwoTone.tsx | 12 ++++ src/IconReportGmailerrorredOutlined.tsx | 14 +++++ src/IconReportGmailerrorredRound.tsx | 14 +++++ src/IconReportGmailerrorredSharp.tsx | 14 +++++ src/IconReportGmailerrorredTwoTone.tsx | 14 +++++ src/IconReportOffOutlined.tsx | 14 +++++ src/IconReportOffRound.tsx | 12 ++++ src/IconReportOffSharp.tsx | 12 ++++ src/IconReportOffTwoTone.tsx | 18 ++++++ src/IconReportOutlined.tsx | 14 +++++ src/IconReportProblemOutlined.tsx | 12 ++++ src/IconReportProblemRound.tsx | 12 ++++ src/IconReportProblemSharp.tsx | 12 ++++ src/IconReportProblemTwoTone.tsx | 16 ++++++ src/IconReportRound.tsx | 12 ++++ src/IconReportSharp.tsx | 12 ++++ src/IconReportTwoTone.tsx | 18 ++++++ src/IconRequestPageOutlined.tsx | 17 ++++++ src/IconRequestPageRound.tsx | 17 ++++++ src/IconRequestPageSharp.tsx | 17 ++++++ src/IconRequestPageTwoTone.tsx | 21 +++++++ src/IconRequestQuoteOutlined.tsx | 19 +++++++ src/IconRequestQuoteRound.tsx | 19 +++++++ src/IconRequestQuoteSharp.tsx | 19 +++++++ src/IconRequestQuoteTwoTone.tsx | 23 ++++++++ src/IconResetTvOutlined.tsx | 23 ++++++++ src/IconResetTvRound.tsx | 21 +++++++ src/IconResetTvSharp.tsx | 21 +++++++ src/IconResetTvTwoTone.tsx | 21 +++++++ src/IconRestartAltOutlined.tsx | 23 ++++++++ src/IconRestartAltRound.tsx | 24 ++++++++ src/IconRestartAltSharp.tsx | 24 ++++++++ src/IconRestartAltTwoTone.tsx | 24 ++++++++ src/IconRestaurantMenuOutlined.tsx | 12 ++++ src/IconRestaurantMenuRound.tsx | 12 ++++ src/IconRestaurantMenuSharp.tsx | 12 ++++ src/IconRestaurantMenuTwoTone.tsx | 12 ++++ src/IconRestaurantOutlined.tsx | 12 ++++ src/IconRestaurantRound.tsx | 12 ++++ src/IconRestaurantSharp.tsx | 12 ++++ src/IconRestaurantTwoTone.tsx | 12 ++++ src/IconRestoreFromTrashOutlined.tsx | 12 ++++ src/IconRestoreFromTrashRound.tsx | 12 ++++ src/IconRestoreFromTrashSharp.tsx | 12 ++++ src/IconRestoreFromTrashTwoTone.tsx | 13 +++++ src/IconRestoreOutlined.tsx | 12 ++++ src/IconRestorePageOutlined.tsx | 12 ++++ src/IconRestorePageRound.tsx | 12 ++++ src/IconRestorePageSharp.tsx | 12 ++++ src/IconRestorePageTwoTone.tsx | 16 ++++++ src/IconRestoreRound.tsx | 12 ++++ src/IconRestoreSharp.tsx | 12 ++++ src/IconRestoreTwoTone.tsx | 12 ++++ src/IconReviewsOutlined.tsx | 24 ++++++++ src/IconReviewsRound.tsx | 21 +++++++ src/IconReviewsSharp.tsx | 21 +++++++ src/IconReviewsTwoTone.tsx | 29 ++++++++++ src/IconRiceBowlOutlined.tsx | 17 ++++++ src/IconRiceBowlRound.tsx | 17 ++++++ src/IconRiceBowlSharp.tsx | 17 ++++++ src/IconRiceBowlTwoTone.tsx | 21 +++++++ src/IconRingVolumeOutlined.tsx | 12 ++++ src/IconRingVolumeRound.tsx | 12 ++++ src/IconRingVolumeSharp.tsx | 12 ++++ src/IconRingVolumeTwoTone.tsx | 16 ++++++ src/IconRocketLaunchOutlined.tsx | 23 ++++++++ src/IconRocketLaunchRound.tsx | 24 ++++++++ src/IconRocketLaunchSharp.tsx | 23 ++++++++ src/IconRocketLaunchTwoTone.tsx | 26 +++++++++ src/IconRocketOutlined.tsx | 25 +++++++++ src/IconRocketRound.tsx | 22 ++++++++ src/IconRocketSharp.tsx | 21 +++++++ src/IconRocketTwoTone.tsx | 30 ++++++++++ src/IconRollerShadesClosedOutlined.tsx | 21 +++++++ src/IconRollerShadesClosedRound.tsx | 24 ++++++++ src/IconRollerShadesClosedSharp.tsx | 23 ++++++++ src/IconRollerShadesClosedTwoTone.tsx | 26 +++++++++ src/IconRollerShadesOutlined.tsx | 21 +++++++ src/IconRollerShadesRound.tsx | 22 ++++++++ src/IconRollerShadesSharp.tsx | 21 +++++++ src/IconRollerShadesTwoTone.tsx | 24 ++++++++ src/IconRollerSkatingOutlined.tsx | 25 +++++++++ src/IconRollerSkatingRound.tsx | 24 ++++++++ src/IconRollerSkatingSharp.tsx | 23 ++++++++ src/IconRollerSkatingTwoTone.tsx | 30 ++++++++++ src/IconRoofingOutlined.tsx | 17 ++++++ src/IconRoofingRound.tsx | 17 ++++++ src/IconRoofingSharp.tsx | 17 ++++++ src/IconRoofingTwoTone.tsx | 18 ++++++ src/IconRoomOutlined.tsx | 13 +++++ src/IconRoomPreferencesOutlined.tsx | 19 +++++++ src/IconRoomPreferencesRound.tsx | 19 +++++++ src/IconRoomPreferencesSharp.tsx | 19 +++++++ src/IconRoomPreferencesTwoTone.tsx | 24 ++++++++ src/IconRoomRound.tsx | 21 +++++++ src/IconRoomServiceOutlined.tsx | 12 ++++ src/IconRoomServiceRound.tsx | 12 ++++ src/IconRoomServiceSharp.tsx | 12 ++++ src/IconRoomServiceTwoTone.tsx | 16 ++++++ src/IconRoomSharp.tsx | 12 ++++ src/IconRoomTwoTone.tsx | 17 ++++++ src/IconRotate90DegreesCcwOutlined.tsx | 12 ++++ src/IconRotate90DegreesCcwRound.tsx | 12 ++++ src/IconRotate90DegreesCcwSharp.tsx | 12 ++++ src/IconRotate90DegreesCcwTwoTone.tsx | 13 +++++ src/IconRotate90DegreesCwOutlined.tsx | 23 ++++++++ src/IconRotate90DegreesCwRound.tsx | 27 +++++++++ src/IconRotate90DegreesCwSharp.tsx | 26 +++++++++ src/IconRotate90DegreesCwTwoTone.tsx | 34 +++++++++++ src/IconRotateLeftOutlined.tsx | 12 ++++ src/IconRotateLeftRound.tsx | 12 ++++ src/IconRotateLeftSharp.tsx | 12 ++++ src/IconRotateLeftTwoTone.tsx | 12 ++++ src/IconRotateRightOutlined.tsx | 12 ++++ src/IconRotateRightRound.tsx | 12 ++++ src/IconRotateRightSharp.tsx | 12 ++++ src/IconRotateRightTwoTone.tsx | 12 ++++ src/IconRoundaboutLeftOutlined.tsx | 21 +++++++ src/IconRoundaboutLeftRound.tsx | 22 ++++++++ src/IconRoundaboutLeftSharp.tsx | 21 +++++++ src/IconRoundaboutLeftTwoTone.tsx | 21 +++++++ src/IconRoundaboutRightOutlined.tsx | 21 +++++++ src/IconRoundaboutRightRound.tsx | 22 ++++++++ src/IconRoundaboutRightSharp.tsx | 21 +++++++ src/IconRoundaboutRightTwoTone.tsx | 21 +++++++ src/IconRoundedCornerOutlined.tsx | 12 ++++ src/IconRoundedCornerRound.tsx | 12 ++++ src/IconRoundedCornerSharp.tsx | 19 +++++++ src/IconRoundedCornerTwoTone.tsx | 12 ++++ src/IconRouteOutlined.tsx | 23 ++++++++ src/IconRouteRound.tsx | 24 ++++++++ src/IconRouteSharp.tsx | 23 ++++++++ src/IconRouteTwoTone.tsx | 25 +++++++++ src/IconRouterOutlined.tsx | 12 ++++ src/IconRouterRound.tsx | 11 ++++ src/IconRouterSharp.tsx | 12 ++++ src/IconRouterTwoTone.tsx | 16 ++++++ src/IconRowingOutlined.tsx | 12 ++++ src/IconRowingRound.tsx | 12 ++++ src/IconRowingSharp.tsx | 12 ++++ src/IconRowingTwoTone.tsx | 12 ++++ src/IconRssFeedOutlined.tsx | 13 +++++ src/IconRssFeedRound.tsx | 13 +++++ src/IconRssFeedSharp.tsx | 13 +++++ src/IconRssFeedTwoTone.tsx | 13 +++++ src/IconRsvpOutlined.tsx | 23 ++++++++ src/IconRsvpRound.tsx | 23 ++++++++ src/IconRsvpSharp.tsx | 23 ++++++++ src/IconRsvpTwoTone.tsx | 23 ++++++++ src/IconRttOutlined.tsx | 21 +++++++ src/IconRttRound.tsx | 21 +++++++ src/IconRttSharp.tsx | 21 +++++++ src/IconRttTwoTone.tsx | 21 +++++++ src/IconRuleFolderOutlined.tsx | 19 +++++++ src/IconRuleFolderRound.tsx | 19 +++++++ src/IconRuleFolderSharp.tsx | 19 +++++++ src/IconRuleFolderTwoTone.tsx | 23 ++++++++ src/IconRuleOutlined.tsx | 19 +++++++ src/IconRuleRound.tsx | 19 +++++++ src/IconRuleSharp.tsx | 19 +++++++ src/IconRuleTwoTone.tsx | 19 +++++++ src/IconRunCircleOutlined.tsx | 25 +++++++++ src/IconRunCircleRound.tsx | 22 ++++++++ src/IconRunCircleSharp.tsx | 21 +++++++ src/IconRunCircleTwoTone.tsx | 29 ++++++++++ src/IconRunningWithErrorsOutlined.tsx | 17 ++++++ src/IconRunningWithErrorsRound.tsx | 17 ++++++ src/IconRunningWithErrorsSharp.tsx | 17 ++++++ src/IconRunningWithErrorsTwoTone.tsx | 17 ++++++ src/IconRvHookupOutlined.tsx | 12 ++++ src/IconRvHookupRound.tsx | 12 ++++ src/IconRvHookupSharp.tsx | 12 ++++ src/IconRvHookupTwoTone.tsx | 16 ++++++ src/IconSafetyCheckOutlined.tsx | 21 +++++++ src/IconSafetyCheckRound.tsx | 22 ++++++++ src/IconSafetyCheckSharp.tsx | 21 +++++++ src/IconSafetyCheckTwoTone.tsx | 25 +++++++++ src/IconSafetyDividerOutlined.tsx | 17 ++++++ src/IconSafetyDividerRound.tsx | 17 ++++++ src/IconSafetyDividerSharp.tsx | 17 ++++++ src/IconSafetyDividerTwoTone.tsx | 17 ++++++ src/IconSailingOutlined.tsx | 17 ++++++ src/IconSailingRound.tsx | 17 ++++++ src/IconSailingSharp.tsx | 17 ++++++ src/IconSailingTwoTone.tsx | 21 +++++++ src/IconSanitizerOutlined.tsx | 17 ++++++ src/IconSanitizerRound.tsx | 17 ++++++ src/IconSanitizerSharp.tsx | 17 ++++++ src/IconSanitizerTwoTone.tsx | 21 +++++++ src/IconSatelliteAltOutlined.tsx | 21 +++++++ src/IconSatelliteAltRound.tsx | 21 +++++++ src/IconSatelliteAltSharp.tsx | 23 ++++++++ src/IconSatelliteAltTwoTone.tsx | 26 +++++++++ src/IconSatelliteOutlined.tsx | 12 ++++ src/IconSatelliteRound.tsx | 12 ++++ src/IconSatelliteSharp.tsx | 12 ++++ src/IconSatelliteTwoTone.tsx | 16 ++++++ src/IconSaveAltOutlined.tsx | 12 ++++ src/IconSaveAltRound.tsx | 12 ++++ src/IconSaveAltSharp.tsx | 12 ++++ src/IconSaveAltTwoTone.tsx | 12 ++++ src/IconSaveAsOutlined.tsx | 21 +++++++ src/IconSaveAsRound.tsx | 21 +++++++ src/IconSaveAsSharp.tsx | 21 +++++++ src/IconSaveAsTwoTone.tsx | 25 +++++++++ src/IconSaveOutlined.tsx | 12 ++++ src/IconSaveRound.tsx | 12 ++++ src/IconSaveSharp.tsx | 12 ++++ src/IconSaveTwoTone.tsx | 16 ++++++ src/IconSavedSearchOutlined.tsx | 24 ++++++++ src/IconSavedSearchRound.tsx | 24 ++++++++ src/IconSavedSearchSharp.tsx | 24 ++++++++ src/IconSavedSearchTwoTone.tsx | 24 ++++++++ src/IconSavingsOutlined.tsx | 19 +++++++ src/IconSavingsRound.tsx | 19 +++++++ src/IconSavingsSharp.tsx | 19 +++++++ src/IconSavingsTwoTone.tsx | 22 ++++++++ src/IconScaleOutlined.tsx | 21 +++++++ src/IconScaleRound.tsx | 21 +++++++ src/IconScaleSharp.tsx | 21 +++++++ src/IconScaleTwoTone.tsx | 25 +++++++++ src/IconScannerOutlined.tsx | 12 ++++ src/IconScannerRound.tsx | 11 ++++ src/IconScannerSharp.tsx | 12 ++++ src/IconScannerTwoTone.tsx | 13 +++++ src/IconScatterPlotOutlined.tsx | 12 ++++ src/IconScatterPlotRound.tsx | 14 +++++ src/IconScatterPlotSharp.tsx | 13 +++++ src/IconScatterPlotTwoTone.tsx | 15 +++++ src/IconScheduleOutlined.tsx | 12 ++++ src/IconScheduleRound.tsx | 12 ++++ src/IconScheduleSendOutlined.tsx | 24 ++++++++ src/IconScheduleSendRound.tsx | 24 ++++++++ src/IconScheduleSendSharp.tsx | 24 ++++++++ src/IconScheduleSendTwoTone.tsx | 29 ++++++++++ src/IconScheduleSharp.tsx | 12 ++++ src/IconScheduleTwoTone.tsx | 16 ++++++ src/IconSchemaOutlined.tsx | 17 ++++++ src/IconSchemaRound.tsx | 17 ++++++ src/IconSchemaSharp.tsx | 17 ++++++ src/IconSchemaTwoTone.tsx | 21 +++++++ src/IconSchoolOutlined.tsx | 12 ++++ src/IconSchoolRound.tsx | 12 ++++ src/IconSchoolSharp.tsx | 12 ++++ src/IconSchoolTwoTone.tsx | 16 ++++++ src/IconScienceOutlined.tsx | 21 +++++++ src/IconScienceRound.tsx | 17 ++++++ src/IconScienceSharp.tsx | 21 +++++++ src/IconScienceTwoTone.tsx | 24 ++++++++ src/IconScoreOutlined.tsx | 12 ++++ src/IconScoreRound.tsx | 12 ++++ src/IconScoreSharp.tsx | 11 ++++ src/IconScoreTwoTone.tsx | 16 ++++++ src/IconScoreboardOutlined.tsx | 21 +++++++ src/IconScoreboardRound.tsx | 22 ++++++++ src/IconScoreboardSharp.tsx | 21 +++++++ src/IconScoreboardTwoTone.tsx | 25 +++++++++ src/IconScreenLockLandscapeOutlined.tsx | 12 ++++ src/IconScreenLockLandscapeRound.tsx | 22 ++++++++ src/IconScreenLockLandscapeSharp.tsx | 12 ++++ src/IconScreenLockLandscapeTwoTone.tsx | 16 ++++++ src/IconScreenLockPortraitOutlined.tsx | 12 ++++ src/IconScreenLockPortraitRound.tsx | 25 +++++++++ src/IconScreenLockPortraitSharp.tsx | 12 ++++ src/IconScreenLockPortraitTwoTone.tsx | 16 ++++++ src/IconScreenLockRotationOutlined.tsx | 12 ++++ src/IconScreenLockRotationRound.tsx | 25 +++++++++ src/IconScreenLockRotationSharp.tsx | 12 ++++ src/IconScreenLockRotationTwoTone.tsx | 12 ++++ src/IconScreenRotationAltOutlined.tsx | 21 +++++++ src/IconScreenRotationAltRound.tsx | 23 ++++++++ src/IconScreenRotationAltSharp.tsx | 21 +++++++ src/IconScreenRotationAltTwoTone.tsx | 21 +++++++ src/IconScreenRotationOutlined.tsx | 12 ++++ src/IconScreenRotationRound.tsx | 12 ++++ src/IconScreenRotationSharp.tsx | 12 ++++ src/IconScreenRotationTwoTone.tsx | 16 ++++++ src/IconScreenSearchDesktopOutlined.tsx | 25 +++++++++ src/IconScreenSearchDesktopRound.tsx | 25 +++++++++ src/IconScreenSearchDesktopSharp.tsx | 25 +++++++++ src/IconScreenSearchDesktopTwoTone.tsx | 29 ++++++++++ src/IconScreenShareOutlined.tsx | 12 ++++ src/IconScreenShareRound.tsx | 12 ++++ src/IconScreenShareSharp.tsx | 12 ++++ src/IconScreenShareTwoTone.tsx | 16 ++++++ src/IconScreenshotMonitorOutlined.tsx | 25 +++++++++ src/IconScreenshotMonitorRound.tsx | 26 +++++++++ src/IconScreenshotMonitorSharp.tsx | 25 +++++++++ src/IconScreenshotMonitorTwoTone.tsx | 29 ++++++++++ src/IconScreenshotOutlined.tsx | 23 ++++++++ src/IconScreenshotRound.tsx | 23 ++++++++ src/IconScreenshotSharp.tsx | 23 ++++++++ src/IconScreenshotTwoTone.tsx | 29 ++++++++++ src/IconScubaDivingOutlined.tsx | 21 +++++++ src/IconScubaDivingRound.tsx | 22 ++++++++ src/IconScubaDivingSharp.tsx | 21 +++++++ src/IconScubaDivingTwoTone.tsx | 21 +++++++ src/IconSdCardAlertOutlined.tsx | 12 ++++ src/IconSdCardAlertRound.tsx | 12 ++++ src/IconSdCardAlertSharp.tsx | 12 ++++ src/IconSdCardAlertTwoTone.tsx | 16 ++++++ src/IconSdCardOutlined.tsx | 12 ++++ src/IconSdCardRound.tsx | 12 ++++ src/IconSdCardSharp.tsx | 12 ++++ src/IconSdCardTwoTone.tsx | 16 ++++++ src/IconSdOutlined.tsx | 25 +++++++++ src/IconSdRound.tsx | 21 +++++++ src/IconSdSharp.tsx | 21 +++++++ src/IconSdStorageOutlined.tsx | 12 ++++ src/IconSdStorageRound.tsx | 12 ++++ src/IconSdStorageSharp.tsx | 12 ++++ src/IconSdStorageTwoTone.tsx | 16 ++++++ src/IconSdTwoTone.tsx | 30 ++++++++++ src/IconSearchOffOutlined.tsx | 24 ++++++++ src/IconSearchOffRound.tsx | 25 +++++++++ src/IconSearchOffSharp.tsx | 24 ++++++++ src/IconSearchOffTwoTone.tsx | 24 ++++++++ src/IconSearchOutlined.tsx | 12 ++++ src/IconSearchRound.tsx | 12 ++++ src/IconSearchSharp.tsx | 12 ++++ src/IconSearchTwoTone.tsx | 12 ++++ src/IconSecurityOutlined.tsx | 12 ++++ src/IconSecurityRound.tsx | 11 ++++ src/IconSecuritySharp.tsx | 12 ++++ src/IconSecurityTwoTone.tsx | 16 ++++++ src/IconSecurityUpdateGoodOutlined.tsx | 21 +++++++ src/IconSecurityUpdateGoodRound.tsx | 21 +++++++ src/IconSecurityUpdateGoodSharp.tsx | 21 +++++++ src/IconSecurityUpdateGoodTwoTone.tsx | 24 ++++++++ src/IconSecurityUpdateOutlined.tsx | 23 ++++++++ src/IconSecurityUpdateRound.tsx | 21 +++++++ src/IconSecurityUpdateSharp.tsx | 21 +++++++ src/IconSecurityUpdateTwoTone.tsx | 25 +++++++++ src/IconSecurityUpdateWarningOutlined.tsx | 27 +++++++++ src/IconSecurityUpdateWarningRound.tsx | 25 +++++++++ src/IconSecurityUpdateWarningSharp.tsx | 25 +++++++++ src/IconSecurityUpdateWarningTwoTone.tsx | 31 ++++++++++ src/IconSegmentOutlined.tsx | 21 +++++++ src/IconSegmentRound.tsx | 21 +++++++ src/IconSegmentSharp.tsx | 21 +++++++ src/IconSegmentTwoTone.tsx | 21 +++++++ src/IconSelectAllOutlined.tsx | 12 ++++ src/IconSelectAllRound.tsx | 12 ++++ src/IconSelectAllSharp.tsx | 12 ++++ src/IconSelectAllTwoTone.tsx | 12 ++++ src/IconSelfImprovementOutlined.tsx | 24 ++++++++ src/IconSelfImprovementRound.tsx | 25 +++++++++ src/IconSelfImprovementSharp.tsx | 24 ++++++++ src/IconSelfImprovementTwoTone.tsx | 24 ++++++++ src/IconSellOutlined.tsx | 24 ++++++++ src/IconSellRound.tsx | 21 +++++++ src/IconSellSharp.tsx | 21 +++++++ src/IconSellTwoTone.tsx | 28 ++++++++++ src/IconSendAndArchiveOutlined.tsx | 28 ++++++++++ src/IconSendAndArchiveRound.tsx | 28 ++++++++++ src/IconSendAndArchiveSharp.tsx | 28 ++++++++++ src/IconSendAndArchiveTwoTone.tsx | 31 ++++++++++ src/IconSendOutlined.tsx | 12 ++++ src/IconSendRound.tsx | 12 ++++ src/IconSendSharp.tsx | 12 ++++ src/IconSendTimeExtensionOutlined.tsx | 24 ++++++++ src/IconSendTimeExtensionRound.tsx | 25 +++++++++ src/IconSendTimeExtensionSharp.tsx | 24 ++++++++ src/IconSendTimeExtensionTwoTone.tsx | 30 ++++++++++ src/IconSendToMobileOutlined.tsx | 23 ++++++++ src/IconSendToMobileRound.tsx | 24 ++++++++ src/IconSendToMobileSharp.tsx | 24 ++++++++ src/IconSendToMobileTwoTone.tsx | 27 +++++++++ src/IconSendTwoTone.tsx | 13 +++++ src/IconSensorDoorOutlined.tsx | 19 +++++++ src/IconSensorDoorRound.tsx | 19 +++++++ src/IconSensorDoorSharp.tsx | 19 +++++++ src/IconSensorDoorTwoTone.tsx | 23 ++++++++ src/IconSensorOccupiedOutlined.tsx | 28 ++++++++++ src/IconSensorOccupiedRound.tsx | 29 ++++++++++ src/IconSensorOccupiedSharp.tsx | 28 ++++++++++ src/IconSensorOccupiedTwoTone.tsx | 33 +++++++++++ src/IconSensorWindowOutlined.tsx | 19 +++++++ src/IconSensorWindowRound.tsx | 19 +++++++ src/IconSensorWindowSharp.tsx | 19 +++++++ src/IconSensorWindowTwoTone.tsx | 20 +++++++ src/IconSensorsOffOutlined.tsx | 17 ++++++ src/IconSensorsOffRound.tsx | 17 ++++++ src/IconSensorsOffSharp.tsx | 17 ++++++ src/IconSensorsOffTwoTone.tsx | 17 ++++++ src/IconSensorsOutlined.tsx | 17 ++++++ src/IconSensorsRound.tsx | 17 ++++++ src/IconSensorsSharp.tsx | 17 ++++++ src/IconSensorsTwoTone.tsx | 17 ++++++ src/IconSentimentDissatisfiedOutlined.tsx | 16 ++++++ src/IconSentimentDissatisfiedRound.tsx | 14 +++++ src/IconSentimentDissatisfiedSharp.tsx | 14 +++++ src/IconSentimentDissatisfiedTwoTone.tsx | 20 +++++++ src/IconSentimentNeutralOutlined.tsx | 15 +++++ src/IconSentimentNeutralRound.tsx | 15 +++++ src/IconSentimentNeutralSharp.tsx | 22 ++++++++ src/IconSentimentNeutralTwoTone.tsx | 19 +++++++ src/IconSentimentSatisfiedAltOutlined.tsx | 16 ++++++ src/IconSentimentSatisfiedAltRound.tsx | 14 +++++ src/IconSentimentSatisfiedAltSharp.tsx | 14 +++++ src/IconSentimentSatisfiedAltTwoTone.tsx | 20 +++++++ src/IconSentimentSatisfiedOutlined.tsx | 14 +++++ src/IconSentimentSatisfiedRound.tsx | 14 +++++ src/IconSentimentSatisfiedSharp.tsx | 14 +++++ src/IconSentimentSatisfiedTwoTone.tsx | 18 ++++++ src/IconSentimentVeryDissatisfiedOutlined.tsx | 14 +++++ src/IconSentimentVeryDissatisfiedRound.tsx | 14 +++++ src/IconSentimentVeryDissatisfiedSharp.tsx | 14 +++++ src/IconSentimentVeryDissatisfiedTwoTone.tsx | 18 ++++++ src/IconSentimentVerySatisfiedOutlined.tsx | 14 +++++ src/IconSentimentVerySatisfiedRound.tsx | 12 ++++ src/IconSentimentVerySatisfiedSharp.tsx | 12 ++++ src/IconSentimentVerySatisfiedTwoTone.tsx | 18 ++++++ src/IconSetMealOutlined.tsx | 17 ++++++ src/IconSetMealRound.tsx | 17 ++++++ src/IconSetMealSharp.tsx | 17 ++++++ src/IconSetMealTwoTone.tsx | 21 +++++++ src/IconSettingsAccessibilityOutlined.tsx | 23 ++++++++ src/IconSettingsAccessibilityRound.tsx | 21 +++++++ src/IconSettingsAccessibilitySharp.tsx | 21 +++++++ src/IconSettingsAccessibilityTwoTone.tsx | 23 ++++++++ src/IconSettingsApplicationsOutlined.tsx | 14 +++++ src/IconSettingsApplicationsRound.tsx | 24 ++++++++ src/IconSettingsApplicationsSharp.tsx | 13 +++++ src/IconSettingsApplicationsTwoTone.tsx | 16 ++++++ src/IconSettingsBackupRestoreOutlined.tsx | 14 +++++ src/IconSettingsBackupRestoreRound.tsx | 21 +++++++ src/IconSettingsBackupRestoreSharp.tsx | 12 ++++ src/IconSettingsBackupRestoreTwoTone.tsx | 14 +++++ src/IconSettingsBluetoothOutlined.tsx | 12 ++++ src/IconSettingsBluetoothRound.tsx | 26 +++++++++ src/IconSettingsBluetoothSharp.tsx | 12 ++++ src/IconSettingsBluetoothTwoTone.tsx | 12 ++++ src/IconSettingsBrightnessOutlined.tsx | 12 ++++ src/IconSettingsBrightnessRound.tsx | 21 +++++++ src/IconSettingsBrightnessSharp.tsx | 12 ++++ src/IconSettingsBrightnessTwoTone.tsx | 16 ++++++ src/IconSettingsCellOutlined.tsx | 12 ++++ src/IconSettingsCellRound.tsx | 21 +++++++ src/IconSettingsCellSharp.tsx | 12 ++++ src/IconSettingsCellTwoTone.tsx | 13 +++++ src/IconSettingsEthernetOutlined.tsx | 12 ++++ src/IconSettingsEthernetRound.tsx | 21 +++++++ src/IconSettingsEthernetSharp.tsx | 12 ++++ src/IconSettingsEthernetTwoTone.tsx | 12 ++++ src/IconSettingsInputAntennaOutlined.tsx | 14 +++++ src/IconSettingsInputAntennaRound.tsx | 21 +++++++ src/IconSettingsInputAntennaSharp.tsx | 12 ++++ src/IconSettingsInputAntennaTwoTone.tsx | 12 ++++ src/IconSettingsInputComponentOutlined.tsx | 14 +++++ src/IconSettingsInputComponentRound.tsx | 21 +++++++ src/IconSettingsInputComponentSharp.tsx | 12 ++++ src/IconSettingsInputComponentTwoTone.tsx | 18 ++++++ src/IconSettingsInputCompositeOutlined.tsx | 14 +++++ src/IconSettingsInputCompositeRound.tsx | 24 ++++++++ src/IconSettingsInputCompositeSharp.tsx | 12 ++++ src/IconSettingsInputCompositeTwoTone.tsx | 18 ++++++ src/IconSettingsInputHdmiOutlined.tsx | 12 ++++ src/IconSettingsInputHdmiRound.tsx | 21 +++++++ src/IconSettingsInputHdmiSharp.tsx | 12 ++++ src/IconSettingsInputHdmiTwoTone.tsx | 16 ++++++ src/IconSettingsInputSvideoOutlined.tsx | 12 ++++ src/IconSettingsInputSvideoRound.tsx | 28 ++++++++++ src/IconSettingsInputSvideoSharp.tsx | 12 ++++ src/IconSettingsInputSvideoTwoTone.tsx | 21 +++++++ src/IconSettingsOutlined.tsx | 12 ++++ src/IconSettingsOverscanOutlined.tsx | 12 ++++ src/IconSettingsOverscanRound.tsx | 21 +++++++ src/IconSettingsOverscanSharp.tsx | 12 ++++ src/IconSettingsOverscanTwoTone.tsx | 16 ++++++ src/IconSettingsPhoneOutlined.tsx | 12 ++++ src/IconSettingsPhoneRound.tsx | 26 +++++++++ src/IconSettingsPhoneSharp.tsx | 12 ++++ src/IconSettingsPhoneTwoTone.tsx | 16 ++++++ src/IconSettingsPowerOutlined.tsx | 12 ++++ src/IconSettingsPowerRound.tsx | 21 +++++++ src/IconSettingsPowerSharp.tsx | 12 ++++ src/IconSettingsPowerTwoTone.tsx | 12 ++++ src/IconSettingsRemoteOutlined.tsx | 14 +++++ src/IconSettingsRemoteRound.tsx | 25 +++++++++ src/IconSettingsRemoteSharp.tsx | 12 ++++ src/IconSettingsRemoteTwoTone.tsx | 18 ++++++ src/IconSettingsRound.tsx | 17 ++++++ src/IconSettingsSharp.tsx | 12 ++++ src/IconSettingsSuggestOutlined.tsx | 17 ++++++ src/IconSettingsSuggestRound.tsx | 19 +++++++ src/IconSettingsSuggestSharp.tsx | 19 +++++++ src/IconSettingsSuggestTwoTone.tsx | 21 +++++++ src/IconSettingsSystemDaydreamOutlined.tsx | 14 +++++ src/IconSettingsSystemDaydreamRound.tsx | 12 ++++ src/IconSettingsSystemDaydreamSharp.tsx | 12 ++++ src/IconSettingsSystemDaydreamTwoTone.tsx | 18 ++++++ src/IconSettingsTwoTone.tsx | 16 ++++++ src/IconSettingsVoiceOutlined.tsx | 12 ++++ src/IconSettingsVoiceRound.tsx | 17 ++++++ src/IconSettingsVoiceSharp.tsx | 12 ++++ src/IconSettingsVoiceTwoTone.tsx | 16 ++++++ src/IconSevereColdOutlined.tsx | 25 +++++++++ src/IconSevereColdRound.tsx | 26 +++++++++ src/IconSevereColdSharp.tsx | 25 +++++++++ src/IconSevereColdTwoTone.tsx | 25 +++++++++ src/IconShapeLineOutlined.tsx | 25 +++++++++ src/IconShapeLineRound.tsx | 26 +++++++++ src/IconShapeLineSharp.tsx | 25 +++++++++ src/IconShapeLineTwoTone.tsx | 27 +++++++++ src/IconShareLocationOutlined.tsx | 28 ++++++++++ src/IconShareLocationRound.tsx | 28 ++++++++++ src/IconShareLocationSharp.tsx | 28 ++++++++++ src/IconShareLocationTwoTone.tsx | 28 ++++++++++ src/IconShareOutlined.tsx | 12 ++++ src/IconShareRound.tsx | 12 ++++ src/IconShareSharp.tsx | 12 ++++ src/IconShareTwoTone.tsx | 15 +++++ src/IconShieldMoonOutlined.tsx | 24 ++++++++ src/IconShieldMoonRound.tsx | 22 ++++++++ src/IconShieldMoonSharp.tsx | 21 +++++++ src/IconShieldMoonTwoTone.tsx | 28 ++++++++++ src/IconShieldOutlined.tsx | 21 +++++++ src/IconShieldRound.tsx | 23 ++++++++ src/IconShieldSharp.tsx | 23 ++++++++ src/IconShieldTwoTone.tsx | 28 ++++++++++ src/IconShop2Outlined.tsx | 25 +++++++++ src/IconShop2Round.tsx | 24 ++++++++ src/IconShop2Sharp.tsx | 24 ++++++++ src/IconShop2TwoTone.tsx | 30 ++++++++++ src/IconShopOutlined.tsx | 12 ++++ src/IconShopRound.tsx | 12 ++++ src/IconShopSharp.tsx | 12 ++++ src/IconShopTwoOutlined.tsx | 12 ++++ src/IconShopTwoRound.tsx | 12 ++++ src/IconShopTwoSharp.tsx | 12 ++++ src/IconShopTwoTone.tsx | 13 +++++ src/IconShopTwoTwoTone.tsx | 13 +++++ src/IconShoppingBagOutlined.tsx | 19 +++++++ src/IconShoppingBagRound.tsx | 19 +++++++ src/IconShoppingBagSharp.tsx | 19 +++++++ src/IconShoppingBagTwoTone.tsx | 23 ++++++++ src/IconShoppingBasketOutlined.tsx | 12 ++++ src/IconShoppingBasketRound.tsx | 12 ++++ src/IconShoppingBasketSharp.tsx | 12 ++++ src/IconShoppingBasketTwoTone.tsx | 16 ++++++ src/IconShoppingCartCheckoutOutlined.tsx | 23 ++++++++ src/IconShoppingCartCheckoutRound.tsx | 22 ++++++++ src/IconShoppingCartCheckoutSharp.tsx | 21 +++++++ src/IconShoppingCartCheckoutTwoTone.tsx | 21 +++++++ src/IconShoppingCartOutlined.tsx | 12 ++++ src/IconShoppingCartRound.tsx | 12 ++++ src/IconShoppingCartSharp.tsx | 12 ++++ src/IconShoppingCartTwoTone.tsx | 13 +++++ src/IconShortTextOutlined.tsx | 12 ++++ src/IconShortTextRound.tsx | 12 ++++ src/IconShortTextSharp.tsx | 11 ++++ src/IconShortTextTwoTone.tsx | 12 ++++ src/IconShortcutOutlined.tsx | 21 +++++++ src/IconShortcutRound.tsx | 21 +++++++ src/IconShortcutSharp.tsx | 21 +++++++ src/IconShortcutTwoTone.tsx | 21 +++++++ src/IconShowChartOutlined.tsx | 12 ++++ src/IconShowChartRound.tsx | 12 ++++ src/IconShowChartSharp.tsx | 11 ++++ src/IconShowChartTwoTone.tsx | 12 ++++ src/IconShowerOutlined.tsx | 21 +++++++ src/IconShowerRound.tsx | 27 +++++++++ src/IconShowerSharp.tsx | 27 +++++++++ src/IconShowerTwoTone.tsx | 33 +++++++++++ src/IconShuffleOnOutlined.tsx | 21 +++++++ src/IconShuffleOnRound.tsx | 21 +++++++ src/IconShuffleOnSharp.tsx | 21 +++++++ src/IconShuffleOnTwoTone.tsx | 21 +++++++ src/IconShuffleOutlined.tsx | 12 ++++ src/IconShuffleRound.tsx | 11 ++++ src/IconShuffleSharp.tsx | 12 ++++ src/IconShuffleTwoTone.tsx | 12 ++++ src/IconShutterSpeedOutlined.tsx | 12 ++++ src/IconShutterSpeedRound.tsx | 12 ++++ src/IconShutterSpeedSharp.tsx | 12 ++++ src/IconShutterSpeedTwoTone.tsx | 16 ++++++ src/IconSickOutlined.tsx | 17 ++++++ src/IconSickRound.tsx | 17 ++++++ src/IconSickSharp.tsx | 17 ++++++ src/IconSickTwoTone.tsx | 17 ++++++ src/IconSignLanguageOutlined.tsx | 21 +++++++ src/IconSignLanguageRound.tsx | 22 ++++++++ src/IconSignLanguageSharp.tsx | 21 +++++++ src/IconSignLanguageTwoTone.tsx | 25 +++++++++ src/IconSignalCellular0BarOutlined.tsx | 21 +++++++ src/IconSignalCellular0BarRound.tsx | 21 +++++++ src/IconSignalCellular0BarSharp.tsx | 21 +++++++ src/IconSignalCellular0BarTwoTone.tsx | 21 +++++++ src/IconSignalCellular4BarOutlined.tsx | 12 ++++ src/IconSignalCellular4BarRound.tsx | 12 ++++ src/IconSignalCellular4BarSharp.tsx | 12 ++++ src/IconSignalCellular4BarTwoTone.tsx | 12 ++++ src/IconSignalCellularAlt1BarOutlined.tsx | 23 ++++++++ src/IconSignalCellularAlt1BarRound.tsx | 22 ++++++++ src/IconSignalCellularAlt1BarSharp.tsx | 21 +++++++ src/IconSignalCellularAlt1BarTwoTone.tsx | 23 ++++++++ src/IconSignalCellularAlt2BarOutlined.tsx | 25 +++++++++ src/IconSignalCellularAlt2BarRound.tsx | 24 ++++++++ src/IconSignalCellularAlt2BarSharp.tsx | 23 ++++++++ src/IconSignalCellularAlt2BarTwoTone.tsx | 25 +++++++++ src/IconSignalCellularAltOutlined.tsx | 12 ++++ src/IconSignalCellularAltRound.tsx | 12 ++++ src/IconSignalCellularAltSharp.tsx | 12 ++++ src/IconSignalCellularAltTwoTone.tsx | 12 ++++ ...ellularConnectedNoInternet0BarOutlined.tsx | 19 +++++++ ...alCellularConnectedNoInternet0BarRound.tsx | 19 +++++++ ...alCellularConnectedNoInternet0BarSharp.tsx | 19 +++++++ ...CellularConnectedNoInternet0BarTwoTone.tsx | 19 +++++++ ...ellularConnectedNoInternet4BarOutlined.tsx | 27 +++++++++ ...alCellularConnectedNoInternet4BarRound.tsx | 27 +++++++++ ...alCellularConnectedNoInternet4BarSharp.tsx | 27 +++++++++ ...CellularConnectedNoInternet4BarTwoTone.tsx | 27 +++++++++ src/IconSignalCellularNoSimOutlined.tsx | 12 ++++ src/IconSignalCellularNoSimRound.tsx | 12 ++++ src/IconSignalCellularNoSimSharp.tsx | 12 ++++ src/IconSignalCellularNoSimTwoTone.tsx | 13 +++++ src/IconSignalCellularNodataOutlined.tsx | 25 +++++++++ src/IconSignalCellularNodataRound.tsx | 23 ++++++++ src/IconSignalCellularNodataSharp.tsx | 23 ++++++++ src/IconSignalCellularNodataTwoTone.tsx | 23 ++++++++ src/IconSignalCellularNullOutlined.tsx | 12 ++++ src/IconSignalCellularNullRound.tsx | 12 ++++ src/IconSignalCellularNullSharp.tsx | 12 ++++ src/IconSignalCellularNullTwoTone.tsx | 12 ++++ src/IconSignalCellularOffOutlined.tsx | 12 ++++ src/IconSignalCellularOffRound.tsx | 12 ++++ src/IconSignalCellularOffSharp.tsx | 12 ++++ src/IconSignalCellularOffTwoTone.tsx | 12 ++++ src/IconSignalWifi0BarOutlined.tsx | 21 +++++++ src/IconSignalWifi0BarRound.tsx | 21 +++++++ src/IconSignalWifi0BarSharp.tsx | 21 +++++++ src/IconSignalWifi0BarTwoTone.tsx | 21 +++++++ src/IconSignalWifi4BarLockOutlined.tsx | 24 ++++++++ src/IconSignalWifi4BarLockRound.tsx | 24 ++++++++ src/IconSignalWifi4BarLockSharp.tsx | 24 ++++++++ src/IconSignalWifi4BarLockTwoTone.tsx | 24 ++++++++ src/IconSignalWifi4BarOutlined.tsx | 12 ++++ src/IconSignalWifi4BarRound.tsx | 12 ++++ src/IconSignalWifi4BarSharp.tsx | 12 ++++ src/IconSignalWifi4BarTwoTone.tsx | 12 ++++ src/IconSignalWifiBadOutlined.tsx | 21 +++++++ src/IconSignalWifiBadRound.tsx | 24 ++++++++ src/IconSignalWifiBadSharp.tsx | 21 +++++++ src/IconSignalWifiBadTwoTone.tsx | 21 +++++++ ...SignalWifiConnectedNoInternet4Outlined.tsx | 23 ++++++++ ...conSignalWifiConnectedNoInternet4Round.tsx | 26 +++++++++ ...conSignalWifiConnectedNoInternet4Sharp.tsx | 23 ++++++++ ...nSignalWifiConnectedNoInternet4TwoTone.tsx | 23 ++++++++ src/IconSignalWifiOffOutlined.tsx | 12 ++++ src/IconSignalWifiOffRound.tsx | 12 ++++ src/IconSignalWifiOffSharp.tsx | 12 ++++ src/IconSignalWifiOffTwoTone.tsx | 12 ++++ src/IconSignalWifiStatusbar4BarOutlined.tsx | 23 ++++++++ src/IconSignalWifiStatusbar4BarRound.tsx | 23 ++++++++ src/IconSignalWifiStatusbar4BarSharp.tsx | 23 ++++++++ src/IconSignalWifiStatusbar4BarTwoTone.tsx | 23 ++++++++ ...iStatusbarConnectedNoInternet4Outlined.tsx | 27 +++++++++ ...WifiStatusbarConnectedNoInternet4Round.tsx | 19 +++++++ ...WifiStatusbarConnectedNoInternet4Sharp.tsx | 27 +++++++++ ...fiStatusbarConnectedNoInternet4TwoTone.tsx | 27 +++++++++ src/IconSignalWifiStatusbarNullOutlined.tsx | 23 ++++++++ src/IconSignalWifiStatusbarNullRound.tsx | 23 ++++++++ src/IconSignalWifiStatusbarNullSharp.tsx | 23 ++++++++ src/IconSignalWifiStatusbarNullTwoTone.tsx | 23 ++++++++ src/IconSignpostOutlined.tsx | 21 +++++++ src/IconSignpostRound.tsx | 23 ++++++++ src/IconSignpostSharp.tsx | 23 ++++++++ src/IconSignpostTwoTone.tsx | 25 +++++++++ src/IconSimCardAlertOutlined.tsx | 29 ++++++++++ src/IconSimCardAlertRound.tsx | 25 +++++++++ src/IconSimCardAlertSharp.tsx | 25 +++++++++ src/IconSimCardAlertTwoTone.tsx | 34 +++++++++++ src/IconSimCardDownloadOutlined.tsx | 24 ++++++++ src/IconSimCardDownloadRound.tsx | 21 +++++++ src/IconSimCardDownloadSharp.tsx | 21 +++++++ src/IconSimCardDownloadTwoTone.tsx | 28 ++++++++++ src/IconSimCardOutlined.tsx | 12 ++++ src/IconSimCardRound.tsx | 11 ++++ src/IconSimCardSharp.tsx | 12 ++++ src/IconSimCardTwoTone.tsx | 16 ++++++ src/IconSingleBedOutlined.tsx | 21 +++++++ src/IconSingleBedRound.tsx | 22 ++++++++ src/IconSingleBedSharp.tsx | 21 +++++++ src/IconSingleBedTwoTone.tsx | 24 ++++++++ src/IconSipOutlined.tsx | 21 +++++++ src/IconSipRound.tsx | 24 ++++++++ src/IconSipSharp.tsx | 24 ++++++++ src/IconSipTwoTone.tsx | 39 +++++++++++++ src/IconSkateboardingOutlined.tsx | 17 ++++++ src/IconSkateboardingRound.tsx | 17 ++++++ src/IconSkateboardingSharp.tsx | 17 ++++++ src/IconSkateboardingTwoTone.tsx | 17 ++++++ src/IconSkipNextOutlined.tsx | 12 ++++ src/IconSkipNextRound.tsx | 11 ++++ src/IconSkipNextSharp.tsx | 12 ++++ src/IconSkipNextTwoTone.tsx | 13 +++++ src/IconSkipPreviousOutlined.tsx | 12 ++++ src/IconSkipPreviousRound.tsx | 11 ++++ src/IconSkipPreviousSharp.tsx | 12 ++++ src/IconSkipPreviousTwoTone.tsx | 13 +++++ src/IconSleddingOutlined.tsx | 17 ++++++ src/IconSleddingRound.tsx | 17 ++++++ src/IconSleddingSharp.tsx | 17 ++++++ src/IconSleddingTwoTone.tsx | 17 ++++++ src/IconSlideshowOutlined.tsx | 12 ++++ src/IconSlideshowRound.tsx | 12 ++++ src/IconSlideshowSharp.tsx | 12 ++++ src/IconSlideshowTwoTone.tsx | 13 +++++ src/IconSlowMotionVideoOutlined.tsx | 12 ++++ src/IconSlowMotionVideoRound.tsx | 11 ++++ src/IconSlowMotionVideoSharp.tsx | 12 ++++ src/IconSlowMotionVideoTwoTone.tsx | 12 ++++ src/IconSmartButtonOutlined.tsx | 19 +++++++ src/IconSmartButtonRound.tsx | 19 +++++++ src/IconSmartButtonSharp.tsx | 19 +++++++ src/IconSmartButtonTwoTone.tsx | 19 +++++++ src/IconSmartDisplayOutlined.tsx | 24 ++++++++ src/IconSmartDisplayRound.tsx | 21 +++++++ src/IconSmartDisplaySharp.tsx | 21 +++++++ src/IconSmartDisplayTwoTone.tsx | 28 ++++++++++ src/IconSmartScreenOutlined.tsx | 27 +++++++++ src/IconSmartScreenRound.tsx | 23 ++++++++ src/IconSmartScreenSharp.tsx | 27 +++++++++ src/IconSmartScreenTwoTone.tsx | 22 ++++++++ src/IconSmartToyOutlined.tsx | 23 ++++++++ src/IconSmartToyRound.tsx | 21 +++++++ src/IconSmartToySharp.tsx | 23 ++++++++ src/IconSmartToyTwoTone.tsx | 30 ++++++++++ src/IconSmartphoneOutlined.tsx | 12 ++++ src/IconSmartphoneRound.tsx | 11 ++++ src/IconSmartphoneSharp.tsx | 12 ++++ src/IconSmartphoneTwoTone.tsx | 13 +++++ src/IconSmokeFreeOutlined.tsx | 12 ++++ src/IconSmokeFreeRound.tsx | 12 ++++ src/IconSmokeFreeSharp.tsx | 12 ++++ src/IconSmokeFreeTwoTone.tsx | 12 ++++ src/IconSmokingRoomsOutlined.tsx | 12 ++++ src/IconSmokingRoomsRound.tsx | 12 ++++ src/IconSmokingRoomsSharp.tsx | 12 ++++ src/IconSmokingRoomsTwoTone.tsx | 16 ++++++ src/IconSmsFailedOutlined.tsx | 12 ++++ src/IconSmsFailedRound.tsx | 12 ++++ src/IconSmsFailedSharp.tsx | 12 ++++ src/IconSmsFailedTwoTone.tsx | 16 ++++++ src/IconSmsOutlined.tsx | 12 ++++ src/IconSmsRound.tsx | 12 ++++ src/IconSmsSharp.tsx | 12 ++++ src/IconSmsTwoTone.tsx | 16 ++++++ src/IconSnippetFolderOutlined.tsx | 19 +++++++ src/IconSnippetFolderRound.tsx | 19 +++++++ src/IconSnippetFolderSharp.tsx | 19 +++++++ src/IconSnippetFolderTwoTone.tsx | 20 +++++++ src/IconSnoozeOutlined.tsx | 12 ++++ src/IconSnoozeRound.tsx | 11 ++++ src/IconSnoozeSharp.tsx | 12 ++++ src/IconSnoozeTwoTone.tsx | 12 ++++ src/IconSnowboardingOutlined.tsx | 17 ++++++ src/IconSnowboardingRound.tsx | 17 ++++++ src/IconSnowboardingSharp.tsx | 17 ++++++ src/IconSnowboardingTwoTone.tsx | 17 ++++++ src/IconSnowmobileOutlined.tsx | 17 ++++++ src/IconSnowmobileRound.tsx | 17 ++++++ src/IconSnowmobileSharp.tsx | 17 ++++++ src/IconSnowmobileTwoTone.tsx | 21 +++++++ src/IconSnowshoeingOutlined.tsx | 17 ++++++ src/IconSnowshoeingRound.tsx | 17 ++++++ src/IconSnowshoeingSharp.tsx | 17 ++++++ src/IconSnowshoeingTwoTone.tsx | 17 ++++++ src/IconSoapOutlined.tsx | 19 +++++++ src/IconSoapRound.tsx | 19 +++++++ src/IconSoapSharp.tsx | 19 +++++++ src/IconSoapTwoTone.tsx | 23 ++++++++ src/IconSocialDistanceOutlined.tsx | 17 ++++++ src/IconSocialDistanceRound.tsx | 17 ++++++ src/IconSocialDistanceSharp.tsx | 17 ++++++ src/IconSocialDistanceTwoTone.tsx | 17 ++++++ src/IconSolarPowerOutlined.tsx | 41 ++++++++++++++ src/IconSolarPowerRound.tsx | 33 +++++++++++ src/IconSolarPowerSharp.tsx | 44 +++++++++++++++ src/IconSolarPowerTwoTone.tsx | 46 +++++++++++++++ src/IconSortByAlphaOutlined.tsx | 12 ++++ src/IconSortByAlphaRound.tsx | 11 ++++ src/IconSortByAlphaSharp.tsx | 12 ++++ src/IconSortByAlphaTwoTone.tsx | 12 ++++ src/IconSortOutlined.tsx | 12 ++++ src/IconSortRound.tsx | 12 ++++ src/IconSortSharp.tsx | 12 ++++ src/IconSortTwoTone.tsx | 12 ++++ src/IconSosOutlined.tsx | 21 +++++++ src/IconSosRound.tsx | 22 ++++++++ src/IconSosSharp.tsx | 21 +++++++ src/IconSosTwoTone.tsx | 21 +++++++ src/IconSoupKitchenOutlined.tsx | 17 ++++++ src/IconSoupKitchenRound.tsx | 17 ++++++ src/IconSoupKitchenSharp.tsx | 17 ++++++ src/IconSoupKitchenTwoTone.tsx | 21 +++++++ src/IconSourceOutlined.tsx | 19 +++++++ src/IconSourceRound.tsx | 19 +++++++ src/IconSourceSharp.tsx | 19 +++++++ src/IconSourceTwoTone.tsx | 20 +++++++ src/IconSouthAmericaOutlined.tsx | 17 ++++++ src/IconSouthAmericaRound.tsx | 17 ++++++ src/IconSouthAmericaSharp.tsx | 17 ++++++ src/IconSouthAmericaTwoTone.tsx | 21 +++++++ src/IconSouthEastOutlined.tsx | 17 ++++++ src/IconSouthEastRound.tsx | 17 ++++++ src/IconSouthEastSharp.tsx | 17 ++++++ src/IconSouthEastTwoTone.tsx | 17 ++++++ src/IconSouthOutlined.tsx | 17 ++++++ src/IconSouthRound.tsx | 17 ++++++ src/IconSouthSharp.tsx | 17 ++++++ src/IconSouthTwoTone.tsx | 17 ++++++ src/IconSouthWestOutlined.tsx | 17 ++++++ src/IconSouthWestRound.tsx | 17 ++++++ src/IconSouthWestSharp.tsx | 17 ++++++ src/IconSouthWestTwoTone.tsx | 17 ++++++ src/IconSpaOutlined.tsx | 12 ++++ src/IconSpaRound.tsx | 12 ++++ src/IconSpaSharp.tsx | 12 ++++ src/IconSpaTwoTone.tsx | 21 +++++++ src/IconSpaceBarOutlined.tsx | 12 ++++ src/IconSpaceBarRound.tsx | 12 ++++ src/IconSpaceBarSharp.tsx | 11 ++++ src/IconSpaceBarTwoTone.tsx | 12 ++++ src/IconSpaceDashboardOutlined.tsx | 17 ++++++ src/IconSpaceDashboardRound.tsx | 17 ++++++ src/IconSpaceDashboardSharp.tsx | 17 ++++++ src/IconSpaceDashboardTwoTone.tsx | 21 +++++++ src/IconSpatialAudioOffOutlined.tsx | 26 +++++++++ src/IconSpatialAudioOffRound.tsx | 27 +++++++++ src/IconSpatialAudioOffSharp.tsx | 26 +++++++++ src/IconSpatialAudioOffTwoTone.tsx | 31 ++++++++++ src/IconSpatialAudioOutlined.tsx | 26 +++++++++ src/IconSpatialAudioRound.tsx | 27 +++++++++ src/IconSpatialAudioSharp.tsx | 26 +++++++++ src/IconSpatialAudioTwoTone.tsx | 31 ++++++++++ src/IconSpatialTrackingOutlined.tsx | 26 +++++++++ src/IconSpatialTrackingRound.tsx | 27 +++++++++ src/IconSpatialTrackingSharp.tsx | 26 +++++++++ src/IconSpatialTrackingTwoTone.tsx | 31 ++++++++++ src/IconSpeakerGroupOutlined.tsx | 12 ++++ src/IconSpeakerGroupRound.tsx | 13 +++++ src/IconSpeakerGroupSharp.tsx | 14 +++++ src/IconSpeakerGroupTwoTone.tsx | 16 ++++++ src/IconSpeakerNotesOffOutlined.tsx | 12 ++++ src/IconSpeakerNotesOffRound.tsx | 12 ++++ src/IconSpeakerNotesOffSharp.tsx | 12 ++++ src/IconSpeakerNotesOffTwoTone.tsx | 16 ++++++ src/IconSpeakerNotesOutlined.tsx | 12 ++++ src/IconSpeakerNotesRound.tsx | 12 ++++ src/IconSpeakerNotesSharp.tsx | 12 ++++ src/IconSpeakerNotesTwoTone.tsx | 16 ++++++ src/IconSpeakerOutlined.tsx | 12 ++++ src/IconSpeakerPhoneOutlined.tsx | 12 ++++ src/IconSpeakerPhoneRound.tsx | 25 +++++++++ src/IconSpeakerPhoneSharp.tsx | 12 ++++ src/IconSpeakerPhoneTwoTone.tsx | 13 +++++ src/IconSpeakerRound.tsx | 11 ++++ src/IconSpeakerSharp.tsx | 12 ++++ src/IconSpeakerTwoTone.tsx | 16 ++++++ src/IconSpeedOutlined.tsx | 13 +++++ src/IconSpeedRound.tsx | 13 +++++ src/IconSpeedSharp.tsx | 13 +++++ src/IconSpeedTwoTone.tsx | 13 +++++ src/IconSpellcheckOutlined.tsx | 12 ++++ src/IconSpellcheckRound.tsx | 12 ++++ src/IconSpellcheckSharp.tsx | 12 ++++ src/IconSpellcheckTwoTone.tsx | 12 ++++ src/IconSplitscreenOutlined.tsx | 23 ++++++++ src/IconSplitscreenRound.tsx | 23 ++++++++ src/IconSplitscreenSharp.tsx | 23 ++++++++ src/IconSplitscreenTwoTone.tsx | 26 +++++++++ src/IconSpokeOutlined.tsx | 17 ++++++ src/IconSpokeRound.tsx | 17 ++++++ src/IconSpokeSharp.tsx | 17 ++++++ src/IconSpokeTwoTone.tsx | 21 +++++++ src/IconSportsBarOutlined.tsx | 17 ++++++ src/IconSportsBarRound.tsx | 17 ++++++ src/IconSportsBarSharp.tsx | 17 ++++++ src/IconSportsBarTwoTone.tsx | 21 +++++++ src/IconSportsBaseballOutlined.tsx | 21 +++++++ src/IconSportsBaseballRound.tsx | 32 +++++++++++ src/IconSportsBaseballSharp.tsx | 31 ++++++++++ src/IconSportsBaseballTwoTone.tsx | 35 ++++++++++++ src/IconSportsBasketballOutlined.tsx | 23 ++++++++ src/IconSportsBasketballRound.tsx | 47 ++++++++++++++++ src/IconSportsBasketballSharp.tsx | 46 +++++++++++++++ src/IconSportsBasketballTwoTone.tsx | 55 ++++++++++++++++++ src/IconSportsCricketOutlined.tsx | 31 ++++++++++ src/IconSportsCricketRound.tsx | 28 ++++++++++ src/IconSportsCricketSharp.tsx | 33 +++++++++++ src/IconSportsCricketTwoTone.tsx | 40 +++++++++++++ src/IconSportsEsportsOutlined.tsx | 26 +++++++++ src/IconSportsEsportsRound.tsx | 24 ++++++++ src/IconSportsEsportsSharp.tsx | 23 ++++++++ src/IconSportsEsportsTwoTone.tsx | 30 ++++++++++ src/IconSportsFootballOutlined.tsx | 30 ++++++++++ src/IconSportsFootballRound.tsx | 26 +++++++++ src/IconSportsFootballSharp.tsx | 25 +++++++++ src/IconSportsFootballTwoTone.tsx | 42 ++++++++++++++ src/IconSportsGolfOutlined.tsx | 27 +++++++++ src/IconSportsGolfRound.tsx | 28 ++++++++++ src/IconSportsGolfSharp.tsx | 27 +++++++++ src/IconSportsGolfTwoTone.tsx | 31 ++++++++++ src/IconSportsGymnasticsOutlined.tsx | 21 +++++++ src/IconSportsGymnasticsRound.tsx | 22 ++++++++ src/IconSportsGymnasticsSharp.tsx | 21 +++++++ src/IconSportsGymnasticsTwoTone.tsx | 21 +++++++ src/IconSportsHandballOutlined.tsx | 25 +++++++++ src/IconSportsHandballRound.tsx | 26 +++++++++ src/IconSportsHandballSharp.tsx | 25 +++++++++ src/IconSportsHandballTwoTone.tsx | 25 +++++++++ src/IconSportsHockeyOutlined.tsx | 28 ++++++++++ src/IconSportsHockeyRound.tsx | 29 ++++++++++ src/IconSportsHockeySharp.tsx | 28 ++++++++++ src/IconSportsHockeyTwoTone.tsx | 28 ++++++++++ src/IconSportsKabaddiOutlined.tsx | 26 +++++++++ src/IconSportsKabaddiRound.tsx | 27 +++++++++ src/IconSportsKabaddiSharp.tsx | 26 +++++++++ src/IconSportsKabaddiTwoTone.tsx | 26 +++++++++ src/IconSportsMartialArtsOutlined.tsx | 24 ++++++++ src/IconSportsMartialArtsRound.tsx | 25 +++++++++ src/IconSportsMartialArtsSharp.tsx | 24 ++++++++ src/IconSportsMartialArtsTwoTone.tsx | 24 ++++++++ src/IconSportsMmaOutlined.tsx | 25 +++++++++ src/IconSportsMmaRound.tsx | 25 +++++++++ src/IconSportsMmaSharp.tsx | 24 ++++++++ src/IconSportsMmaTwoTone.tsx | 29 ++++++++++ src/IconSportsMotorsportsOutlined.tsx | 21 +++++++ src/IconSportsMotorsportsRound.tsx | 25 +++++++++ src/IconSportsMotorsportsSharp.tsx | 24 ++++++++ src/IconSportsMotorsportsTwoTone.tsx | 27 +++++++++ src/IconSportsOutlined.tsx | 28 ++++++++++ src/IconSportsRound.tsx | 29 ++++++++++ src/IconSportsRugbyOutlined.tsx | 21 +++++++ src/IconSportsRugbyRound.tsx | 24 ++++++++ src/IconSportsRugbySharp.tsx | 23 ++++++++ src/IconSportsRugbyTwoTone.tsx | 35 ++++++++++++ src/IconSportsScoreOutlined.tsx | 23 ++++++++ src/IconSportsScoreRound.tsx | 23 ++++++++ src/IconSportsScoreSharp.tsx | 23 ++++++++ src/IconSportsScoreTwoTone.tsx | 23 ++++++++ src/IconSportsSharp.tsx | 28 ++++++++++ src/IconSportsSoccerOutlined.tsx | 23 ++++++++ src/IconSportsSoccerRound.tsx | 24 ++++++++ src/IconSportsSoccerSharp.tsx | 23 ++++++++ src/IconSportsSoccerTwoTone.tsx | 43 ++++++++++++++ src/IconSportsTennisOutlined.tsx | 22 ++++++++ src/IconSportsTennisRound.tsx | 23 ++++++++ src/IconSportsTennisSharp.tsx | 22 ++++++++ src/IconSportsTennisTwoTone.tsx | 22 ++++++++ src/IconSportsTwoTone.tsx | 28 ++++++++++ src/IconSportsVolleyballOutlined.tsx | 23 ++++++++ src/IconSportsVolleyballRound.tsx | 29 ++++++++++ src/IconSportsVolleyballSharp.tsx | 28 ++++++++++ src/IconSportsVolleyballTwoTone.tsx | 47 ++++++++++++++++ src/IconSquareFootOutlined.tsx | 23 ++++++++ src/IconSquareFootRound.tsx | 24 ++++++++ src/IconSquareFootSharp.tsx | 23 ++++++++ src/IconSquareFootTwoTone.tsx | 26 +++++++++ src/IconSquareOutlined.tsx | 23 ++++++++ src/IconSquareRound.tsx | 23 ++++++++ src/IconSquareSharp.tsx | 23 ++++++++ src/IconSquareTwoTone.tsx | 26 +++++++++ src/IconSsidChartOutlined.tsx | 21 +++++++ src/IconSsidChartRound.tsx | 21 +++++++ src/IconSsidChartSharp.tsx | 21 +++++++ src/IconSsidChartTwoTone.tsx | 21 +++++++ src/IconStackedBarChartOutlined.tsx | 28 ++++++++++ src/IconStackedBarChartRound.tsx | 29 ++++++++++ src/IconStackedBarChartSharp.tsx | 28 ++++++++++ src/IconStackedBarChartTwoTone.tsx | 28 ++++++++++ src/IconStackedLineChartOutlined.tsx | 17 ++++++ src/IconStackedLineChartRound.tsx | 17 ++++++ src/IconStackedLineChartSharp.tsx | 17 ++++++ src/IconStackedLineChartTwoTone.tsx | 17 ++++++ src/IconStadiumOutlined.tsx | 21 +++++++ src/IconStadiumRound.tsx | 21 +++++++ src/IconStadiumSharp.tsx | 21 +++++++ src/IconStadiumTwoTone.tsx | 25 +++++++++ src/IconStairsOutlined.tsx | 19 +++++++ src/IconStairsRound.tsx | 23 ++++++++ src/IconStairsSharp.tsx | 23 ++++++++ src/IconStairsTwoTone.tsx | 23 ++++++++ src/IconStar.tsx | 2 +- src/IconStarBorderOutlined.tsx | 12 ++++ src/IconStarBorderPurple500Outlined.tsx | 12 ++++ src/IconStarBorderPurple500Round.tsx | 23 ++++++++ src/IconStarBorderPurple500Sharp.tsx | 12 ++++ src/IconStarBorderPurple500TwoTone.tsx | 23 ++++++++ src/IconStarBorderRound.tsx | 12 ++++ src/IconStarBorderSharp.tsx | 12 ++++ src/IconStarBorderTwoTone.tsx | 12 ++++ src/IconStarHalfOutlined.tsx | 12 ++++ src/IconStarHalfRound.tsx | 12 ++++ src/IconStarHalfSharp.tsx | 12 ++++ src/IconStarHalfTwoTone.tsx | 12 ++++ src/IconStarOutlineOutlined.tsx | 12 ++++ src/IconStarOutlineRound.tsx | 12 ++++ src/IconStarOutlineSharp.tsx | 12 ++++ src/IconStarOutlineTwoTone.tsx | 12 ++++ src/IconStarOutlined.tsx | 22 ++++++++ src/IconStarPurple500Outlined.tsx | 12 ++++ src/IconStarPurple500Round.tsx | 23 ++++++++ src/IconStarPurple500Sharp.tsx | 12 ++++ src/IconStarPurple500TwoTone.tsx | 23 ++++++++ src/IconStarRateOutlined.tsx | 19 +++++++ src/IconStarRateRound.tsx | 19 +++++++ src/IconStarRateSharp.tsx | 19 +++++++ src/IconStarRateTwoTone.tsx | 24 ++++++++ src/IconStarRound.tsx | 22 ++++++++ src/IconStarSharp.tsx | 22 ++++++++ src/IconStarTwoTone.tsx | 28 ++++++++++ src/IconStarsOutlined.tsx | 12 ++++ src/IconStarsRound.tsx | 12 ++++ src/IconStarsSharp.tsx | 12 ++++ src/IconStarsTwoTone.tsx | 16 ++++++ src/IconStartOutlined.tsx | 17 ++++++ src/IconStartRound.tsx | 17 ++++++ src/IconStartSharp.tsx | 17 ++++++ src/IconStartTwoTone.tsx | 17 ++++++ src/IconStayCurrentLandscapeOutlined.tsx | 14 +++++ src/IconStayCurrentLandscapeRound.tsx | 12 ++++ src/IconStayCurrentLandscapeSharp.tsx | 12 ++++ src/IconStayCurrentLandscapeTwoTone.tsx | 13 +++++ src/IconStayCurrentPortraitOutlined.tsx | 12 ++++ src/IconStayCurrentPortraitRound.tsx | 12 ++++ src/IconStayCurrentPortraitSharp.tsx | 12 ++++ src/IconStayCurrentPortraitTwoTone.tsx | 13 +++++ src/IconStayPrimaryLandscapeOutlined.tsx | 14 +++++ src/IconStayPrimaryLandscapeRound.tsx | 12 ++++ src/IconStayPrimaryLandscapeSharp.tsx | 12 ++++ src/IconStayPrimaryLandscapeTwoTone.tsx | 13 +++++ src/IconStayPrimaryPortraitOutlined.tsx | 12 ++++ src/IconStayPrimaryPortraitRound.tsx | 12 ++++ src/IconStayPrimaryPortraitSharp.tsx | 12 ++++ src/IconStayPrimaryPortraitTwoTone.tsx | 13 +++++ src/IconStickyNote2Outlined.tsx | 17 ++++++ src/IconStickyNote2Round.tsx | 17 ++++++ src/IconStickyNote2Sharp.tsx | 17 ++++++ src/IconStickyNote2TwoTone.tsx | 21 +++++++ src/IconStopCircleOutlined.tsx | 17 ++++++ src/IconStopCircleRound.tsx | 17 ++++++ src/IconStopCircleSharp.tsx | 17 ++++++ src/IconStopCircleTwoTone.tsx | 21 +++++++ src/IconStopOutlined.tsx | 12 ++++ src/IconStopRound.tsx | 11 ++++ src/IconStopScreenShareOutlined.tsx | 12 ++++ src/IconStopScreenShareRound.tsx | 12 ++++ src/IconStopScreenShareSharp.tsx | 12 ++++ src/IconStopScreenShareTwoTone.tsx | 20 +++++++ src/IconStopSharp.tsx | 12 ++++ src/IconStopTwoTone.tsx | 13 +++++ src/IconStorageOutlined.tsx | 12 ++++ src/IconStorageRound.tsx | 12 ++++ src/IconStorageSharp.tsx | 12 ++++ src/IconStorageTwoTone.tsx | 12 ++++ src/IconStoreMallDirectoryOutlined.tsx | 12 ++++ src/IconStoreMallDirectoryRound.tsx | 12 ++++ src/IconStoreMallDirectorySharp.tsx | 12 ++++ src/IconStoreMallDirectoryTwoTone.tsx | 13 +++++ src/IconStoreOutlined.tsx | 12 ++++ src/IconStoreRound.tsx | 12 ++++ src/IconStoreSharp.tsx | 12 ++++ src/IconStoreTwoTone.tsx | 13 +++++ src/IconStorefrontOutlined.tsx | 24 ++++++++ src/IconStorefrontRound.tsx | 24 ++++++++ src/IconStorefrontSharp.tsx | 24 ++++++++ src/IconStorefrontTwoTone.tsx | 40 +++++++++++++ src/IconStormOutlined.tsx | 23 ++++++++ src/IconStormRound.tsx | 23 ++++++++ src/IconStormSharp.tsx | 23 ++++++++ src/IconStormTwoTone.tsx | 29 ++++++++++ src/IconStraightOutlined.tsx | 21 +++++++ src/IconStraightRound.tsx | 22 ++++++++ src/IconStraightSharp.tsx | 21 +++++++ src/IconStraightTwoTone.tsx | 21 +++++++ src/IconStraightenOutlined.tsx | 12 ++++ src/IconStraightenRound.tsx | 12 ++++ src/IconStraightenSharp.tsx | 12 ++++ src/IconStraightenTwoTone.tsx | 16 ++++++ src/IconStreamOutlined.tsx | 36 ++++++++++++ src/IconStreamRound.tsx | 30 ++++++++++ src/IconStreamSharp.tsx | 36 ++++++++++++ src/IconStreamTwoTone.tsx | 36 ++++++++++++ src/IconStreetviewOutlined.tsx | 14 +++++ src/IconStreetviewRound.tsx | 14 +++++ src/IconStreetviewSharp.tsx | 14 +++++ src/IconStreetviewTwoTone.tsx | 14 +++++ src/IconStrikethroughSOutlined.tsx | 12 ++++ src/IconStrikethroughSRound.tsx | 12 ++++ src/IconStrikethroughSSharp.tsx | 11 ++++ src/IconStrikethroughSTwoTone.tsx | 12 ++++ src/IconStrollerOutlined.tsx | 19 +++++++ src/IconStrollerRound.tsx | 19 +++++++ src/IconStrollerSharp.tsx | 19 +++++++ src/IconStrollerTwoTone.tsx | 23 ++++++++ src/IconStyleOutlined.tsx | 14 +++++ src/IconStyleRound.tsx | 12 ++++ src/IconStyleSharp.tsx | 12 ++++ src/IconStyleTwoTone.tsx | 18 ++++++ src/IconSubdirectoryArrowLeftOutlined.tsx | 14 +++++ src/IconSubdirectoryArrowLeftRound.tsx | 12 ++++ src/IconSubdirectoryArrowLeftSharp.tsx | 12 ++++ src/IconSubdirectoryArrowLeftTwoTone.tsx | 14 +++++ src/IconSubdirectoryArrowRightOutlined.tsx | 14 +++++ src/IconSubdirectoryArrowRightRound.tsx | 12 ++++ src/IconSubdirectoryArrowRightSharp.tsx | 12 ++++ src/IconSubdirectoryArrowRightTwoTone.tsx | 14 +++++ src/IconSubjectOutlined.tsx | 12 ++++ src/IconSubjectRound.tsx | 12 ++++ src/IconSubjectSharp.tsx | 12 ++++ src/IconSubjectTwoTone.tsx | 12 ++++ src/IconSubscriptOutlined.tsx | 19 +++++++ src/IconSubscriptRound.tsx | 19 +++++++ src/IconSubscriptSharp.tsx | 19 +++++++ src/IconSubscriptTwoTone.tsx | 19 +++++++ src/IconSubscriptionsOutlined.tsx | 12 ++++ src/IconSubscriptionsRound.tsx | 11 ++++ src/IconSubscriptionsSharp.tsx | 12 ++++ src/IconSubscriptionsTwoTone.tsx | 13 +++++ src/IconSubtitlesOffOutlined.tsx | 25 +++++++++ src/IconSubtitlesOffRound.tsx | 25 +++++++++ src/IconSubtitlesOffSharp.tsx | 24 ++++++++ src/IconSubtitlesOffTwoTone.tsx | 35 ++++++++++++ src/IconSubtitlesOutlined.tsx | 12 ++++ src/IconSubtitlesRound.tsx | 11 ++++ src/IconSubtitlesSharp.tsx | 12 ++++ src/IconSubtitlesTwoTone.tsx | 16 ++++++ src/IconSubwayOutlined.tsx | 12 ++++ src/IconSubwayRound.tsx | 14 +++++ src/IconSubwaySharp.tsx | 14 +++++ src/IconSubwayTwoTone.tsx | 16 ++++++ src/IconSummarizeOutlined.tsx | 23 ++++++++ src/IconSummarizeRound.tsx | 23 ++++++++ src/IconSummarizeSharp.tsx | 23 ++++++++ src/IconSummarizeTwoTone.tsx | 30 ++++++++++ src/IconSuperscriptOutlined.tsx | 19 +++++++ src/IconSuperscriptRound.tsx | 19 +++++++ src/IconSuperscriptSharp.tsx | 19 +++++++ src/IconSuperscriptTwoTone.tsx | 19 +++++++ src/IconSupervisedUserCircleOutlined.tsx | 14 +++++ src/IconSupervisedUserCircleRound.tsx | 12 ++++ src/IconSupervisedUserCircleSharp.tsx | 12 ++++ src/IconSupervisedUserCircleTwoTone.tsx | 17 ++++++ src/IconSupervisorAccountOutlined.tsx | 12 ++++ src/IconSupervisorAccountRound.tsx | 12 ++++ src/IconSupervisorAccountSharp.tsx | 12 ++++ src/IconSupervisorAccountTwoTone.tsx | 17 ++++++ src/IconSupportAgentOutlined.tsx | 26 +++++++++ src/IconSupportAgentRound.tsx | 27 +++++++++ src/IconSupportAgentSharp.tsx | 26 +++++++++ src/IconSupportAgentTwoTone.tsx | 26 +++++++++ src/IconSupportOutlined.tsx | 21 +++++++ src/IconSupportRound.tsx | 22 ++++++++ src/IconSupportSharp.tsx | 21 +++++++ src/IconSupportTwoTone.tsx | 39 +++++++++++++ src/IconSurfingOutlined.tsx | 17 ++++++ src/IconSurfingRound.tsx | 17 ++++++ src/IconSurfingSharp.tsx | 17 ++++++ src/IconSurfingTwoTone.tsx | 17 ++++++ src/IconSurroundSoundOutlined.tsx | 29 ++++++++++ src/IconSurroundSoundRound.tsx | 11 ++++ src/IconSurroundSoundSharp.tsx | 23 ++++++++ src/IconSurroundSoundTwoTone.tsx | 33 +++++++++++ src/IconSwapCallsOutlined.tsx | 12 ++++ src/IconSwapCallsRound.tsx | 12 ++++ src/IconSwapCallsSharp.tsx | 12 ++++ src/IconSwapCallsTwoTone.tsx | 12 ++++ src/IconSwapHorizOutlined.tsx | 12 ++++ src/IconSwapHorizRound.tsx | 12 ++++ src/IconSwapHorizSharp.tsx | 12 ++++ src/IconSwapHorizTwoTone.tsx | 12 ++++ src/IconSwapHorizontalCircleOutlined.tsx | 14 +++++ src/IconSwapHorizontalCircleRound.tsx | 12 ++++ src/IconSwapHorizontalCircleSharp.tsx | 12 ++++ src/IconSwapHorizontalCircleTwoTone.tsx | 16 ++++++ src/IconSwapVertOutlined.tsx | 12 ++++ src/IconSwapVertRound.tsx | 12 ++++ src/IconSwapVertSharp.tsx | 12 ++++ src/IconSwapVertTwoTone.tsx | 12 ++++ src/IconSwapVerticalCircleOutlined.tsx | 12 ++++ src/IconSwapVerticalCircleRound.tsx | 12 ++++ src/IconSwapVerticalCircleSharp.tsx | 12 ++++ src/IconSwapVerticalCircleTwoTone.tsx | 16 ++++++ src/IconSwipeDownAltOutlined.tsx | 21 +++++++ src/IconSwipeDownAltRound.tsx | 21 +++++++ src/IconSwipeDownAltSharp.tsx | 21 +++++++ src/IconSwipeDownAltTwoTone.tsx | 22 ++++++++ src/IconSwipeDownOutlined.tsx | 21 +++++++ src/IconSwipeDownRound.tsx | 21 +++++++ src/IconSwipeDownSharp.tsx | 22 ++++++++ src/IconSwipeDownTwoTone.tsx | 25 +++++++++ src/IconSwipeLeftAltOutlined.tsx | 21 +++++++ src/IconSwipeLeftAltRound.tsx | 21 +++++++ src/IconSwipeLeftAltSharp.tsx | 21 +++++++ src/IconSwipeLeftAltTwoTone.tsx | 22 ++++++++ src/IconSwipeLeftOutlined.tsx | 21 +++++++ src/IconSwipeLeftRound.tsx | 21 +++++++ src/IconSwipeLeftSharp.tsx | 21 +++++++ src/IconSwipeLeftTwoTone.tsx | 25 +++++++++ src/IconSwipeOutlined.tsx | 26 +++++++++ src/IconSwipeRightAltOutlined.tsx | 21 +++++++ src/IconSwipeRightAltRound.tsx | 21 +++++++ src/IconSwipeRightAltSharp.tsx | 21 +++++++ src/IconSwipeRightAltTwoTone.tsx | 22 ++++++++ src/IconSwipeRightOutlined.tsx | 21 +++++++ src/IconSwipeRightRound.tsx | 21 +++++++ src/IconSwipeRightSharp.tsx | 21 +++++++ src/IconSwipeRightTwoTone.tsx | 25 +++++++++ src/IconSwipeRound.tsx | 24 ++++++++ src/IconSwipeSharp.tsx | 24 ++++++++ src/IconSwipeTwoTone.tsx | 33 +++++++++++ src/IconSwipeUpAltOutlined.tsx | 21 +++++++ src/IconSwipeUpAltRound.tsx | 21 +++++++ src/IconSwipeUpAltSharp.tsx | 21 +++++++ src/IconSwipeUpAltTwoTone.tsx | 22 ++++++++ src/IconSwipeUpOutlined.tsx | 21 +++++++ src/IconSwipeUpRound.tsx | 21 +++++++ src/IconSwipeUpSharp.tsx | 21 +++++++ src/IconSwipeUpTwoTone.tsx | 25 +++++++++ src/IconSwipeVerticalOutlined.tsx | 21 +++++++ src/IconSwipeVerticalRound.tsx | 21 +++++++ src/IconSwipeVerticalSharp.tsx | 21 +++++++ src/IconSwipeVerticalTwoTone.tsx | 25 +++++++++ src/IconSwitchAccessShortcutAddOutlined.tsx | 19 +++++++ src/IconSwitchAccessShortcutAddRound.tsx | 19 +++++++ src/IconSwitchAccessShortcutAddSharp.tsx | 19 +++++++ src/IconSwitchAccessShortcutAddTwoTone.tsx | 19 +++++++ src/IconSwitchAccessShortcutOutlined.tsx | 19 +++++++ src/IconSwitchAccessShortcutRound.tsx | 17 ++++++ src/IconSwitchAccessShortcutSharp.tsx | 17 ++++++ src/IconSwitchAccessShortcutTwoTone.tsx | 17 ++++++ src/IconSwitchAccountOutlined.tsx | 21 +++++++ src/IconSwitchAccountRound.tsx | 21 +++++++ src/IconSwitchAccountSharp.tsx | 21 +++++++ src/IconSwitchAccountTwoTone.tsx | 28 ++++++++++ src/IconSwitchCameraOutlined.tsx | 13 +++++ src/IconSwitchCameraRound.tsx | 12 ++++ src/IconSwitchCameraSharp.tsx | 12 ++++ src/IconSwitchCameraTwoTone.tsx | 16 ++++++ src/IconSwitchLeftOutlined.tsx | 17 ++++++ src/IconSwitchLeftRound.tsx | 17 ++++++ src/IconSwitchLeftSharp.tsx | 17 ++++++ src/IconSwitchLeftTwoTone.tsx | 18 ++++++ src/IconSwitchRightOutlined.tsx | 22 ++++++++ src/IconSwitchRightRound.tsx | 22 ++++++++ src/IconSwitchRightSharp.tsx | 22 ++++++++ src/IconSwitchRightTwoTone.tsx | 23 ++++++++ src/IconSwitchVideoOutlined.tsx | 12 ++++ src/IconSwitchVideoRound.tsx | 12 ++++ src/IconSwitchVideoSharp.tsx | 12 ++++ src/IconSwitchVideoTwoTone.tsx | 16 ++++++ src/IconSynagogueOutlined.tsx | 24 ++++++++ src/IconSynagogueRound.tsx | 28 ++++++++++ src/IconSynagogueSharp.tsx | 27 +++++++++ src/IconSynagogueTwoTone.tsx | 38 +++++++++++++ src/IconSyncAltOutlined.tsx | 24 ++++++++ src/IconSyncAltRound.tsx | 24 ++++++++ src/IconSyncAltSharp.tsx | 24 ++++++++ src/IconSyncAltTwoTone.tsx | 24 ++++++++ src/IconSyncDisabledOutlined.tsx | 12 ++++ src/IconSyncDisabledRound.tsx | 12 ++++ src/IconSyncDisabledSharp.tsx | 12 ++++ src/IconSyncDisabledTwoTone.tsx | 12 ++++ src/IconSyncLockOutlined.tsx | 21 +++++++ src/IconSyncLockRound.tsx | 21 +++++++ src/IconSyncLockSharp.tsx | 21 +++++++ src/IconSyncLockTwoTone.tsx | 21 +++++++ src/IconSyncOutlined.tsx | 12 ++++ src/IconSyncProblemOutlined.tsx | 12 ++++ src/IconSyncProblemRound.tsx | 12 ++++ src/IconSyncProblemSharp.tsx | 12 ++++ src/IconSyncProblemTwoTone.tsx | 12 ++++ src/IconSyncRound.tsx | 12 ++++ src/IconSyncSharp.tsx | 12 ++++ src/IconSyncTwoTone.tsx | 12 ++++ src/IconSystemSecurityUpdateGoodOutlined.tsx | 23 ++++++++ src/IconSystemSecurityUpdateGoodRound.tsx | 23 ++++++++ src/IconSystemSecurityUpdateGoodSharp.tsx | 23 ++++++++ src/IconSystemSecurityUpdateGoodTwoTone.tsx | 26 +++++++++ src/IconSystemSecurityUpdateOutlined.tsx | 25 +++++++++ src/IconSystemSecurityUpdateRound.tsx | 21 +++++++ src/IconSystemSecurityUpdateSharp.tsx | 21 +++++++ src/IconSystemSecurityUpdateTwoTone.tsx | 25 +++++++++ ...conSystemSecurityUpdateWarningOutlined.tsx | 27 +++++++++ src/IconSystemSecurityUpdateWarningRound.tsx | 27 +++++++++ src/IconSystemSecurityUpdateWarningSharp.tsx | 27 +++++++++ ...IconSystemSecurityUpdateWarningTwoTone.tsx | 31 ++++++++++ src/IconSystemUpdateAltOutlined.tsx | 12 ++++ src/IconSystemUpdateAltRound.tsx | 12 ++++ src/IconSystemUpdateAltSharp.tsx | 12 ++++ src/IconSystemUpdateAltTwoTone.tsx | 12 ++++ src/IconSystemUpdateOutlined.tsx | 12 ++++ src/IconSystemUpdateRound.tsx | 12 ++++ src/IconSystemUpdateSharp.tsx | 12 ++++ src/IconSystemUpdateTwoTone.tsx | 13 +++++ src/IconTabOutlined.tsx | 12 ++++ src/IconTabRound.tsx | 12 ++++ src/IconTabSharp.tsx | 12 ++++ src/IconTabTwoTone.tsx | 12 ++++ src/IconTabUnselectedOutlined.tsx | 12 ++++ src/IconTabUnselectedRound.tsx | 12 ++++ src/IconTabUnselectedSharp.tsx | 12 ++++ src/IconTabUnselectedTwoTone.tsx | 12 ++++ src/IconTableBarOutlined.tsx | 21 +++++++ src/IconTableBarRound.tsx | 24 ++++++++ src/IconTableBarSharp.tsx | 23 ++++++++ src/IconTableBarTwoTone.tsx | 24 ++++++++ src/IconTableChartOutlined.tsx | 12 ++++ src/IconTableChartRound.tsx | 12 ++++ src/IconTableChartSharp.tsx | 11 ++++ src/IconTableChartTwoTone.tsx | 13 +++++ src/IconTableRestaurantOutlined.tsx | 23 ++++++++ src/IconTableRestaurantRound.tsx | 24 ++++++++ src/IconTableRestaurantSharp.tsx | 23 ++++++++ src/IconTableRestaurantTwoTone.tsx | 24 ++++++++ src/IconTableRowsOutlined.tsx | 17 ++++++ src/IconTableRowsRound.tsx | 17 ++++++ src/IconTableRowsSharp.tsx | 17 ++++++ src/IconTableRowsTwoTone.tsx | 18 ++++++ src/IconTableViewOutlined.tsx | 19 +++++++ src/IconTableViewRound.tsx | 19 +++++++ src/IconTableViewSharp.tsx | 19 +++++++ src/IconTableViewTwoTone.tsx | 23 ++++++++ src/IconTabletAndroidOutlined.tsx | 12 ++++ src/IconTabletAndroidRound.tsx | 11 ++++ src/IconTabletAndroidSharp.tsx | 12 ++++ src/IconTabletAndroidTwoTone.tsx | 13 +++++ src/IconTabletMacOutlined.tsx | 12 ++++ src/IconTabletMacRound.tsx | 11 ++++ src/IconTabletMacSharp.tsx | 12 ++++ src/IconTabletMacTwoTone.tsx | 13 +++++ src/IconTabletOutlined.tsx | 12 ++++ src/IconTabletRound.tsx | 11 ++++ src/IconTabletSharp.tsx | 12 ++++ src/IconTabletTwoTone.tsx | 13 +++++ src/IconTagFacesOutlined.tsx | 12 ++++ src/IconTagFacesRound.tsx | 17 ++++++ src/IconTagFacesSharp.tsx | 12 ++++ src/IconTagFacesTwoTone.tsx | 19 +++++++ src/IconTagOutlined.tsx | 21 +++++++ src/IconTagRound.tsx | 21 +++++++ src/IconTagSharp.tsx | 21 +++++++ src/IconTagTwoTone.tsx | 21 +++++++ src/IconTakeoutDiningOutlined.tsx | 25 +++++++++ src/IconTakeoutDiningRound.tsx | 24 ++++++++ src/IconTakeoutDiningSharp.tsx | 24 ++++++++ src/IconTakeoutDiningTwoTone.tsx | 28 ++++++++++ src/IconTapAndPlayOutlined.tsx | 12 ++++ src/IconTapAndPlayRound.tsx | 12 ++++ src/IconTapAndPlaySharp.tsx | 12 ++++ src/IconTapAndPlayTwoTone.tsx | 12 ++++ src/IconTapasOutlined.tsx | 17 ++++++ src/IconTapasRound.tsx | 17 ++++++ src/IconTapasSharp.tsx | 17 ++++++ src/IconTapasTwoTone.tsx | 21 +++++++ src/IconTaskAltOutlined.tsx | 17 ++++++ src/IconTaskAltRound.tsx | 17 ++++++ src/IconTaskAltSharp.tsx | 17 ++++++ src/IconTaskAltTwoTone.tsx | 17 ++++++ src/IconTaskOutlined.tsx | 21 +++++++ src/IconTaskRound.tsx | 21 +++++++ src/IconTaskSharp.tsx | 21 +++++++ src/IconTaskTwoTone.tsx | 25 +++++++++ src/IconTaxiAlertOutlined.tsx | 34 +++++++++++ src/IconTaxiAlertRound.tsx | 28 ++++++++++ src/IconTaxiAlertSharp.tsx | 28 ++++++++++ src/IconTaxiAlertTwoTone.tsx | 33 +++++++++++ src/IconTempleBuddhistOutlined.tsx | 21 +++++++ src/IconTempleBuddhistRound.tsx | 32 +++++++++++ src/IconTempleBuddhistSharp.tsx | 31 ++++++++++ src/IconTempleBuddhistTwoTone.tsx | 29 ++++++++++ src/IconTempleHinduOutlined.tsx | 21 +++++++ src/IconTempleHinduRound.tsx | 26 +++++++++ src/IconTempleHinduSharp.tsx | 25 +++++++++ src/IconTempleHinduTwoTone.tsx | 29 ++++++++++ src/IconTerminalOutlined.tsx | 21 +++++++ src/IconTerminalRound.tsx | 22 ++++++++ src/IconTerminalSharp.tsx | 21 +++++++ src/IconTerminalTwoTone.tsx | 29 ++++++++++ src/IconTerrainOutlined.tsx | 12 ++++ src/IconTerrainRound.tsx | 12 ++++ src/IconTerrainSharp.tsx | 12 ++++ src/IconTerrainTwoTone.tsx | 13 +++++ src/IconTextDecreaseOutlined.tsx | 17 ++++++ src/IconTextDecreaseRound.tsx | 17 ++++++ src/IconTextDecreaseSharp.tsx | 17 ++++++ src/IconTextDecreaseTwoTone.tsx | 17 ++++++ src/IconTextFieldsOutlined.tsx | 12 ++++ src/IconTextFieldsRound.tsx | 12 ++++ src/IconTextFieldsSharp.tsx | 11 ++++ src/IconTextFieldsTwoTone.tsx | 12 ++++ src/IconTextFormatOutlined.tsx | 12 ++++ src/IconTextFormatRound.tsx | 12 ++++ src/IconTextFormatSharp.tsx | 12 ++++ src/IconTextFormatTwoTone.tsx | 12 ++++ src/IconTextIncreaseOutlined.tsx | 17 ++++++ src/IconTextIncreaseRound.tsx | 17 ++++++ src/IconTextIncreaseSharp.tsx | 17 ++++++ src/IconTextIncreaseTwoTone.tsx | 17 ++++++ src/IconTextRotateUpOutlined.tsx | 12 ++++ src/IconTextRotateUpRound.tsx | 12 ++++ src/IconTextRotateUpSharp.tsx | 12 ++++ src/IconTextRotateUpTwoTone.tsx | 12 ++++ src/IconTextRotateVerticalOutlined.tsx | 12 ++++ src/IconTextRotateVerticalRound.tsx | 12 ++++ src/IconTextRotateVerticalSharp.tsx | 12 ++++ src/IconTextRotateVerticalTwoTone.tsx | 12 ++++ src/IconTextRotationAngledownOutlined.tsx | 14 +++++ src/IconTextRotationAngledownRound.tsx | 12 ++++ src/IconTextRotationAngledownSharp.tsx | 12 ++++ src/IconTextRotationAngledownTwoTone.tsx | 14 +++++ src/IconTextRotationAngleupOutlined.tsx | 12 ++++ src/IconTextRotationAngleupRound.tsx | 12 ++++ src/IconTextRotationAngleupSharp.tsx | 12 ++++ src/IconTextRotationAngleupTwoTone.tsx | 12 ++++ src/IconTextRotationDownOutlined.tsx | 12 ++++ src/IconTextRotationDownRound.tsx | 12 ++++ src/IconTextRotationDownSharp.tsx | 12 ++++ src/IconTextRotationDownTwoTone.tsx | 12 ++++ src/IconTextRotationNoneOutlined.tsx | 12 ++++ src/IconTextRotationNoneRound.tsx | 12 ++++ src/IconTextRotationNoneSharp.tsx | 12 ++++ src/IconTextRotationNoneTwoTone.tsx | 12 ++++ src/IconTextSnippetOutlined.tsx | 19 +++++++ src/IconTextSnippetRound.tsx | 19 +++++++ src/IconTextSnippetSharp.tsx | 19 +++++++ src/IconTextSnippetTwoTone.tsx | 23 ++++++++ src/IconTextsmsOutlined.tsx | 12 ++++ src/IconTextsmsRound.tsx | 12 ++++ src/IconTextsmsSharp.tsx | 12 ++++ src/IconTextsmsTwoTone.tsx | 16 ++++++ src/IconTextureOutlined.tsx | 12 ++++ src/IconTextureRound.tsx | 12 ++++ src/IconTextureSharp.tsx | 12 ++++ src/IconTextureTwoTone.tsx | 12 ++++ src/IconTheaterComedyOutlined.tsx | 30 ++++++++++ src/IconTheaterComedyRound.tsx | 24 ++++++++ src/IconTheaterComedySharp.tsx | 24 ++++++++ src/IconTheaterComedyTwoTone.tsx | 38 +++++++++++++ src/IconTheatersOutlined.tsx | 12 ++++ src/IconTheatersRound.tsx | 12 ++++ src/IconTheatersSharp.tsx | 12 ++++ src/IconTheatersTwoTone.tsx | 13 +++++ src/IconThermostatAutoOutlined.tsx | 21 +++++++ src/IconThermostatAutoRound.tsx | 21 +++++++ src/IconThermostatAutoSharp.tsx | 21 +++++++ src/IconThermostatAutoTwoTone.tsx | 27 +++++++++ src/IconThermostatOutlined.tsx | 12 ++++ src/IconThermostatRound.tsx | 12 ++++ src/IconThermostatSharp.tsx | 12 ++++ src/IconThermostatTwoTone.tsx | 12 ++++ src/IconThumbDownAltOutlined.tsx | 12 ++++ src/IconThumbDownAltRound.tsx | 12 ++++ src/IconThumbDownAltSharp.tsx | 12 ++++ src/IconThumbDownAltTwoTone.tsx | 13 +++++ src/IconThumbDownOffAltOutlined.tsx | 23 ++++++++ src/IconThumbDownOffAltRound.tsx | 24 ++++++++ src/IconThumbDownOffAltSharp.tsx | 24 ++++++++ src/IconThumbDownOffAltTwoTone.tsx | 29 ++++++++++ src/IconThumbDownOutlined.tsx | 12 ++++ src/IconThumbDownRound.tsx | 12 ++++ src/IconThumbDownSharp.tsx | 12 ++++ src/IconThumbDownTwoTone.tsx | 13 +++++ src/IconThumbUpAltOutlined.tsx | 12 ++++ src/IconThumbUpAltRound.tsx | 12 ++++ src/IconThumbUpAltSharp.tsx | 12 ++++ src/IconThumbUpAltTwoTone.tsx | 13 +++++ src/IconThumbUpOffAltOutlined.tsx | 23 ++++++++ src/IconThumbUpOffAltRound.tsx | 23 ++++++++ src/IconThumbUpOffAltSharp.tsx | 23 ++++++++ src/IconThumbUpOffAltTwoTone.tsx | 28 ++++++++++ src/IconThumbUpOutlined.tsx | 12 ++++ src/IconThumbUpRound.tsx | 12 ++++ src/IconThumbUpSharp.tsx | 12 ++++ src/IconThumbUpTwoTone.tsx | 13 +++++ src/IconThumbsUpDownOutlined.tsx | 12 ++++ src/IconThumbsUpDownRound.tsx | 12 ++++ src/IconThumbsUpDownSharp.tsx | 12 ++++ src/IconThumbsUpDownTwoTone.tsx | 16 ++++++ src/IconThunderstormOutlined.tsx | 25 +++++++++ src/IconThunderstormRound.tsx | 26 +++++++++ src/IconThunderstormSharp.tsx | 25 +++++++++ src/IconThunderstormTwoTone.tsx | 29 ++++++++++ src/IconTimeToLeaveOutlined.tsx | 14 +++++ src/IconTimeToLeaveRound.tsx | 12 ++++ src/IconTimeToLeaveSharp.tsx | 12 ++++ src/IconTimeToLeaveTwoTone.tsx | 18 ++++++ src/IconTimelapseOutlined.tsx | 12 ++++ src/IconTimelapseRound.tsx | 12 ++++ src/IconTimelapseSharp.tsx | 12 ++++ src/IconTimelapseTwoTone.tsx | 16 ++++++ src/IconTimelineOutlined.tsx | 23 ++++++++ src/IconTimelineRound.tsx | 23 ++++++++ src/IconTimelineSharp.tsx | 23 ++++++++ src/IconTimelineTwoTone.tsx | 23 ++++++++ src/IconTimer10Outlined.tsx | 12 ++++ src/IconTimer10Round.tsx | 12 ++++ src/IconTimer10SelectOutlined.tsx | 17 ++++++ src/IconTimer10SelectRound.tsx | 17 ++++++ src/IconTimer10SelectSharp.tsx | 17 ++++++ src/IconTimer10SelectTwoTone.tsx | 17 ++++++ src/IconTimer10Sharp.tsx | 12 ++++ src/IconTimer10TwoTone.tsx | 12 ++++ src/IconTimer3Outlined.tsx | 12 ++++ src/IconTimer3Round.tsx | 12 ++++ src/IconTimer3SelectOutlined.tsx | 17 ++++++ src/IconTimer3SelectRound.tsx | 17 ++++++ src/IconTimer3SelectSharp.tsx | 17 ++++++ src/IconTimer3SelectTwoTone.tsx | 17 ++++++ src/IconTimer3Sharp.tsx | 12 ++++ src/IconTimer3TwoTone.tsx | 12 ++++ src/IconTimerOffOutlined.tsx | 26 +++++++++ src/IconTimerOffRound.tsx | 26 +++++++++ src/IconTimerOffSharp.tsx | 25 +++++++++ src/IconTimerOffTwoTone.tsx | 34 +++++++++++ src/IconTimerOutlined.tsx | 25 +++++++++ src/IconTimerRound.tsx | 25 +++++++++ src/IconTimerSharp.tsx | 25 +++++++++ src/IconTimerTwoTone.tsx | 29 ++++++++++ src/IconTipsAndUpdatesOutlined.tsx | 17 ++++++ src/IconTipsAndUpdatesRound.tsx | 17 ++++++ src/IconTipsAndUpdatesSharp.tsx | 17 ++++++ src/IconTipsAndUpdatesTwoTone.tsx | 21 +++++++ src/IconTireRepairOutlined.tsx | 21 +++++++ src/IconTireRepairRound.tsx | 25 +++++++++ src/IconTireRepairSharp.tsx | 24 ++++++++ src/IconTireRepairTwoTone.tsx | 25 +++++++++ src/IconTitleOutlined.tsx | 12 ++++ src/IconTitleRound.tsx | 12 ++++ src/IconTitleSharp.tsx | 11 ++++ src/IconTitleTwoTone.tsx | 12 ++++ src/IconTocOutlined.tsx | 12 ++++ src/IconTocRound.tsx | 12 ++++ src/IconTocSharp.tsx | 12 ++++ src/IconTocTwoTone.tsx | 12 ++++ src/IconTodayOutlined.tsx | 12 ++++ src/IconTodayRound.tsx | 12 ++++ src/IconTodaySharp.tsx | 12 ++++ src/IconTodayTwoTone.tsx | 13 +++++ src/IconToggleOffOutlined.tsx | 12 ++++ src/IconToggleOffRound.tsx | 12 ++++ src/IconToggleOffSharp.tsx | 12 ++++ src/IconToggleOffTwoTone.tsx | 16 ++++++ src/IconToggleOnOutlined.tsx | 12 ++++ src/IconToggleOnRound.tsx | 12 ++++ src/IconToggleOnSharp.tsx | 12 ++++ src/IconToggleOnTwoTone.tsx | 16 ++++++ src/IconTokenOutlined.tsx | 17 ++++++ src/IconTokenRound.tsx | 17 ++++++ src/IconTokenSharp.tsx | 17 ++++++ src/IconTokenTwoTone.tsx | 21 +++++++ src/IconTollOutlined.tsx | 12 ++++ src/IconTollRound.tsx | 12 ++++ src/IconTollSharp.tsx | 12 ++++ src/IconTollTwoTone.tsx | 16 ++++++ src/IconTonalityOutlined.tsx | 12 ++++ src/IconTonalityRound.tsx | 12 ++++ src/IconTonalitySharp.tsx | 12 ++++ src/IconTonalityTwoTone.tsx | 16 ++++++ src/IconTopicOutlined.tsx | 19 +++++++ src/IconTopicRound.tsx | 19 +++++++ src/IconTopicSharp.tsx | 19 +++++++ src/IconTopicTwoTone.tsx | 23 ++++++++ src/IconTornadoOutlined.tsx | 21 +++++++ src/IconTornadoRound.tsx | 32 +++++++++++ src/IconTornadoSharp.tsx | 31 ++++++++++ src/IconTornadoTwoTone.tsx | 26 +++++++++ src/IconTouchAppOutlined.tsx | 23 ++++++++ src/IconTouchAppRound.tsx | 23 ++++++++ src/IconTouchAppSharp.tsx | 23 ++++++++ src/IconTouchAppTwoTone.tsx | 28 ++++++++++ src/IconTourOutlined.tsx | 19 +++++++ src/IconTourRound.tsx | 19 +++++++ src/IconTourSharp.tsx | 19 +++++++ src/IconTourTwoTone.tsx | 24 ++++++++ src/IconToysOutlined.tsx | 23 ++++++++ src/IconToysRound.tsx | 21 +++++++ src/IconToysSharp.tsx | 21 +++++++ src/IconToysTwoTone.tsx | 27 +++++++++ src/IconTrackChangesOutlined.tsx | 12 ++++ src/IconTrackChangesRound.tsx | 12 ++++ src/IconTrackChangesSharp.tsx | 12 ++++ src/IconTrackChangesTwoTone.tsx | 12 ++++ src/IconTrafficOutlined.tsx | 12 ++++ src/IconTrafficRound.tsx | 12 ++++ src/IconTrafficSharp.tsx | 12 ++++ src/IconTrafficTwoTone.tsx | 16 ++++++ src/IconTrainOutlined.tsx | 14 +++++ src/IconTrainRound.tsx | 12 ++++ src/IconTrainSharp.tsx | 12 ++++ src/IconTrainTwoTone.tsx | 18 ++++++ src/IconTramOutlined.tsx | 12 ++++ src/IconTramRound.tsx | 12 ++++ src/IconTramSharp.tsx | 12 ++++ src/IconTramTwoTone.tsx | 16 ++++++ src/IconTranscribeOutlined.tsx | 21 +++++++ src/IconTranscribeRound.tsx | 22 ++++++++ src/IconTranscribeSharp.tsx | 21 +++++++ src/IconTranscribeTwoTone.tsx | 31 ++++++++++ src/IconTransferWithinAStationOutlined.tsx | 14 +++++ src/IconTransferWithinAStationRound.tsx | 12 ++++ src/IconTransferWithinAStationSharp.tsx | 12 ++++ src/IconTransferWithinAStationTwoTone.tsx | 14 +++++ src/IconTransformOutlined.tsx | 12 ++++ src/IconTransformRound.tsx | 12 ++++ src/IconTransformSharp.tsx | 12 ++++ src/IconTransformTwoTone.tsx | 12 ++++ src/IconTransgenderOutlined.tsx | 17 ++++++ src/IconTransgenderRound.tsx | 17 ++++++ src/IconTransgenderSharp.tsx | 17 ++++++ src/IconTransgenderTwoTone.tsx | 17 ++++++ src/IconTransitEnterexitOutlined.tsx | 12 ++++ src/IconTransitEnterexitRound.tsx | 12 ++++ src/IconTransitEnterexitSharp.tsx | 12 ++++ src/IconTransitEnterexitTwoTone.tsx | 12 ++++ src/IconTranslateOutlined.tsx | 12 ++++ src/IconTranslateRound.tsx | 12 ++++ src/IconTranslateSharp.tsx | 12 ++++ src/IconTranslateTwoTone.tsx | 12 ++++ src/IconTravelExploreOutlined.tsx | 17 ++++++ src/IconTravelExploreRound.tsx | 17 ++++++ src/IconTravelExploreSharp.tsx | 17 ++++++ src/IconTravelExploreTwoTone.tsx | 17 ++++++ src/IconTrendingDownOutlined.tsx | 12 ++++ src/IconTrendingDownRound.tsx | 12 ++++ src/IconTrendingDownSharp.tsx | 12 ++++ src/IconTrendingDownTwoTone.tsx | 12 ++++ src/IconTrendingFlatOutlined.tsx | 12 ++++ src/IconTrendingFlatRound.tsx | 12 ++++ src/IconTrendingFlatSharp.tsx | 12 ++++ src/IconTrendingFlatTwoTone.tsx | 12 ++++ src/IconTrendingUpOutlined.tsx | 12 ++++ src/IconTrendingUpRound.tsx | 12 ++++ src/IconTrendingUpSharp.tsx | 12 ++++ src/IconTrendingUpTwoTone.tsx | 12 ++++ src/IconTripOriginOutlined.tsx | 12 ++++ src/IconTripOriginRound.tsx | 12 ++++ src/IconTripOriginSharp.tsx | 12 ++++ src/IconTripOriginTwoTone.tsx | 12 ++++ src/IconTroubleshootOutlined.tsx | 24 ++++++++ src/IconTroubleshootRound.tsx | 25 +++++++++ src/IconTroubleshootSharp.tsx | 24 ++++++++ src/IconTroubleshootTwoTone.tsx | 24 ++++++++ src/IconTryOutlined.tsx | 24 ++++++++ src/IconTryRound.tsx | 21 +++++++ src/IconTrySharp.tsx | 21 +++++++ src/IconTryTwoTone.tsx | 29 ++++++++++ src/IconTsunamiOutlined.tsx | 24 ++++++++ src/IconTsunamiRound.tsx | 25 +++++++++ src/IconTsunamiSharp.tsx | 24 ++++++++ src/IconTsunamiTwoTone.tsx | 28 ++++++++++ src/IconTtyOutlined.tsx | 19 +++++++ src/IconTtyRound.tsx | 19 +++++++ src/IconTtySharp.tsx | 19 +++++++ src/IconTtyTwoTone.tsx | 23 ++++++++ src/IconTuneOutlined.tsx | 12 ++++ src/IconTuneRound.tsx | 12 ++++ src/IconTuneSharp.tsx | 12 ++++ src/IconTuneTwoTone.tsx | 12 ++++ src/IconTungstenOutlined.tsx | 40 +++++++++++++ src/IconTungstenRound.tsx | 28 ++++++++++ src/IconTungstenSharp.tsx | 40 +++++++++++++ src/IconTungstenTwoTone.tsx | 44 +++++++++++++++ src/IconTurnLeftOutlined.tsx | 21 +++++++ src/IconTurnLeftRound.tsx | 22 ++++++++ src/IconTurnLeftSharp.tsx | 21 +++++++ src/IconTurnLeftTwoTone.tsx | 21 +++++++ src/IconTurnRightOutlined.tsx | 21 +++++++ src/IconTurnRightRound.tsx | 22 ++++++++ src/IconTurnRightSharp.tsx | 21 +++++++ src/IconTurnRightTwoTone.tsx | 21 +++++++ src/IconTurnSharpLeftOutlined.tsx | 21 +++++++ src/IconTurnSharpLeftRound.tsx | 22 ++++++++ src/IconTurnSharpLeftSharp.tsx | 21 +++++++ src/IconTurnSharpLeftTwoTone.tsx | 21 +++++++ src/IconTurnSharpRightOutlined.tsx | 21 +++++++ src/IconTurnSharpRightRound.tsx | 22 ++++++++ src/IconTurnSharpRightSharp.tsx | 21 +++++++ src/IconTurnSharpRightTwoTone.tsx | 21 +++++++ src/IconTurnSlightLeftOutlined.tsx | 21 +++++++ src/IconTurnSlightLeftRound.tsx | 22 ++++++++ src/IconTurnSlightLeftSharp.tsx | 21 +++++++ src/IconTurnSlightLeftTwoTone.tsx | 21 +++++++ src/IconTurnSlightRightOutlined.tsx | 21 +++++++ src/IconTurnSlightRightRound.tsx | 22 ++++++++ src/IconTurnSlightRightSharp.tsx | 21 +++++++ src/IconTurnSlightRightTwoTone.tsx | 21 +++++++ src/IconTurnedInNotOutlined.tsx | 12 ++++ src/IconTurnedInNotRound.tsx | 12 ++++ src/IconTurnedInNotSharp.tsx | 12 ++++ src/IconTurnedInNotTwoTone.tsx | 12 ++++ src/IconTurnedInOutlined.tsx | 12 ++++ src/IconTurnedInRound.tsx | 12 ++++ src/IconTurnedInSharp.tsx | 12 ++++ src/IconTurnedInTwoTone.tsx | 13 +++++ src/IconTvOffOutlined.tsx | 12 ++++ src/IconTvOffRound.tsx | 12 ++++ src/IconTvOffSharp.tsx | 12 ++++ src/IconTvOffTwoTone.tsx | 13 +++++ src/IconTvOutlined.tsx | 12 ++++ src/IconTvRound.tsx | 11 ++++ src/IconTvSharp.tsx | 12 ++++ src/IconTvTwoTone.tsx | 13 +++++ src/IconTwoWheelerOutlined.tsx | 19 +++++++ src/IconTwoWheelerRound.tsx | 19 +++++++ src/IconTwoWheelerSharp.tsx | 19 +++++++ src/IconTwoWheelerTwoTone.tsx | 19 +++++++ src/IconTypeSpecimenOutlined.tsx | 25 +++++++++ src/IconTypeSpecimenRound.tsx | 26 +++++++++ src/IconTypeSpecimenSharp.tsx | 25 +++++++++ src/IconTypeSpecimenTwoTone.tsx | 33 +++++++++++ src/IconUTurnLeftOutlined.tsx | 21 +++++++ src/IconUTurnLeftRound.tsx | 22 ++++++++ src/IconUTurnLeftSharp.tsx | 21 +++++++ src/IconUTurnLeftTwoTone.tsx | 21 +++++++ src/IconUTurnRightOutlined.tsx | 21 +++++++ src/IconUTurnRightRound.tsx | 22 ++++++++ src/IconUTurnRightSharp.tsx | 21 +++++++ src/IconUTurnRightTwoTone.tsx | 21 +++++++ src/IconUmbrellaOutlined.tsx | 19 +++++++ src/IconUmbrellaRound.tsx | 19 +++++++ src/IconUmbrellaSharp.tsx | 19 +++++++ src/IconUmbrellaTwoTone.tsx | 23 ++++++++ src/IconUnarchiveOutlined.tsx | 12 ++++ src/IconUnarchiveRound.tsx | 12 ++++ src/IconUnarchiveSharp.tsx | 12 ++++ src/IconUnarchiveTwoTone.tsx | 13 +++++ src/IconUndoOutlined.tsx | 12 ++++ src/IconUndoRound.tsx | 12 ++++ src/IconUndoSharp.tsx | 12 ++++ src/IconUndoTwoTone.tsx | 12 ++++ src/IconUnfoldLessDoubleOutlined.tsx | 26 +++++++++ src/IconUnfoldLessDoubleRound.tsx | 27 +++++++++ src/IconUnfoldLessDoubleSharp.tsx | 26 +++++++++ src/IconUnfoldLessDoubleTwoTone.tsx | 26 +++++++++ src/IconUnfoldLessOutlined.tsx | 12 ++++ src/IconUnfoldLessRound.tsx | 12 ++++ src/IconUnfoldLessSharp.tsx | 12 ++++ src/IconUnfoldLessTwoTone.tsx | 12 ++++ src/IconUnfoldMoreDoubleOutlined.tsx | 25 +++++++++ src/IconUnfoldMoreDoubleRound.tsx | 27 +++++++++ src/IconUnfoldMoreDoubleSharp.tsx | 25 +++++++++ src/IconUnfoldMoreDoubleTwoTone.tsx | 25 +++++++++ src/IconUnfoldMoreOutlined.tsx | 12 ++++ src/IconUnfoldMoreRound.tsx | 12 ++++ src/IconUnfoldMoreSharp.tsx | 12 ++++ src/IconUnfoldMoreTwoTone.tsx | 12 ++++ src/IconUnpublishedOutlined.tsx | 17 ++++++ src/IconUnpublishedRound.tsx | 17 ++++++ src/IconUnpublishedSharp.tsx | 17 ++++++ src/IconUnpublishedTwoTone.tsx | 21 +++++++ src/IconUnsubscribeOutlined.tsx | 12 ++++ src/IconUnsubscribeRound.tsx | 12 ++++ src/IconUnsubscribeSharp.tsx | 12 ++++ src/IconUnsubscribeTwoTone.tsx | 16 ++++++ src/IconUpcomingOutlined.tsx | 21 +++++++ src/IconUpcomingRound.tsx | 26 +++++++++ src/IconUpcomingSharp.tsx | 26 +++++++++ src/IconUpcomingTwoTone.tsx | 30 ++++++++++ src/IconUpdateDisabledOutlined.tsx | 19 +++++++ src/IconUpdateDisabledRound.tsx | 19 +++++++ src/IconUpdateDisabledSharp.tsx | 19 +++++++ src/IconUpdateDisabledTwoTone.tsx | 19 +++++++ src/IconUpdateOutlined.tsx | 23 ++++++++ src/IconUpdateRound.tsx | 23 ++++++++ src/IconUpdateSharp.tsx | 23 ++++++++ src/IconUpdateTwoTone.tsx | 23 ++++++++ src/IconUpgradeOutlined.tsx | 19 +++++++ src/IconUpgradeRound.tsx | 19 +++++++ src/IconUpgradeSharp.tsx | 19 +++++++ src/IconUpgradeTwoTone.tsx | 19 +++++++ src/IconUploadFileOutlined.tsx | 23 ++++++++ src/IconUploadFileRound.tsx | 21 +++++++ src/IconUploadFileSharp.tsx | 21 +++++++ src/IconUploadFileTwoTone.tsx | 28 ++++++++++ src/IconUploadOutlined.tsx | 12 ++++ src/IconUploadRound.tsx | 12 ++++ src/IconUploadSharp.tsx | 12 ++++ src/IconUploadTwoTone.tsx | 13 +++++ src/IconUsbOffOutlined.tsx | 17 ++++++ src/IconUsbOffRound.tsx | 17 ++++++ src/IconUsbOffSharp.tsx | 17 ++++++ src/IconUsbOffTwoTone.tsx | 17 ++++++ src/IconUsbOutlined.tsx | 12 ++++ src/IconUsbRound.tsx | 12 ++++ src/IconUsbSharp.tsx | 12 ++++ src/IconUsbTwoTone.tsx | 12 ++++ src/IconVaccinesOutlined.tsx | 17 ++++++ src/IconVaccinesRound.tsx | 17 ++++++ src/IconVaccinesSharp.tsx | 17 ++++++ src/IconVaccinesTwoTone.tsx | 21 +++++++ src/IconVapeFreeOutlined.tsx | 21 +++++++ src/IconVapeFreeRound.tsx | 22 ++++++++ src/IconVapeFreeSharp.tsx | 21 +++++++ src/IconVapeFreeTwoTone.tsx | 22 ++++++++ src/IconVapingRoomsOutlined.tsx | 21 +++++++ src/IconVapingRoomsRound.tsx | 22 ++++++++ src/IconVapingRoomsSharp.tsx | 21 +++++++ src/IconVapingRoomsTwoTone.tsx | 22 ++++++++ src/IconVerifiedOutlined.tsx | 24 ++++++++ src/IconVerifiedRound.tsx | 22 ++++++++ src/IconVerifiedSharp.tsx | 21 +++++++ src/IconVerifiedTwoTone.tsx | 28 ++++++++++ src/IconVerifiedUserOutlined.tsx | 12 ++++ src/IconVerifiedUserRound.tsx | 12 ++++ src/IconVerifiedUserSharp.tsx | 12 ++++ src/IconVerifiedUserTwoTone.tsx | 16 ++++++ src/IconVerticalAlignBottomOutlined.tsx | 12 ++++ src/IconVerticalAlignBottomRound.tsx | 12 ++++ src/IconVerticalAlignBottomSharp.tsx | 11 ++++ src/IconVerticalAlignBottomTwoTone.tsx | 12 ++++ src/IconVerticalAlignCenterOutlined.tsx | 12 ++++ src/IconVerticalAlignCenterRound.tsx | 12 ++++ src/IconVerticalAlignCenterSharp.tsx | 11 ++++ src/IconVerticalAlignCenterTwoTone.tsx | 12 ++++ src/IconVerticalAlignTopOutlined.tsx | 12 ++++ src/IconVerticalAlignTopRound.tsx | 12 ++++ src/IconVerticalAlignTopSharp.tsx | 11 ++++ src/IconVerticalAlignTopTwoTone.tsx | 12 ++++ src/IconVerticalDistributeOutlined.tsx | 17 ++++++ src/IconVerticalDistributeRound.tsx | 17 ++++++ src/IconVerticalDistributeSharp.tsx | 17 ++++++ src/IconVerticalDistributeTwoTone.tsx | 17 ++++++ src/IconVerticalShadesClosedOutlined.tsx | 23 ++++++++ src/IconVerticalShadesClosedRound.tsx | 22 ++++++++ src/IconVerticalShadesClosedSharp.tsx | 21 +++++++ src/IconVerticalShadesClosedTwoTone.tsx | 27 +++++++++ src/IconVerticalShadesOutlined.tsx | 21 +++++++ src/IconVerticalShadesRound.tsx | 22 ++++++++ src/IconVerticalShadesSharp.tsx | 21 +++++++ src/IconVerticalShadesTwoTone.tsx | 25 +++++++++ src/IconVerticalSplitOutlined.tsx | 12 ++++ src/IconVerticalSplitRound.tsx | 12 ++++ src/IconVerticalSplitSharp.tsx | 12 ++++ src/IconVerticalSplitTwoTone.tsx | 13 +++++ src/IconVibrationOutlined.tsx | 12 ++++ src/IconVibrationRound.tsx | 12 ++++ src/IconVibrationSharp.tsx | 12 ++++ src/IconVibrationTwoTone.tsx | 13 +++++ src/IconVideoCallOutlined.tsx | 12 ++++ src/IconVideoCallRound.tsx | 11 ++++ src/IconVideoCallSharp.tsx | 12 ++++ src/IconVideoCallTwoTone.tsx | 13 +++++ src/IconVideoCameraBackOutlined.tsx | 21 +++++++ src/IconVideoCameraBackRound.tsx | 21 +++++++ src/IconVideoCameraBackSharp.tsx | 21 +++++++ src/IconVideoCameraBackTwoTone.tsx | 28 ++++++++++ src/IconVideoCameraFrontOutlined.tsx | 25 +++++++++ src/IconVideoCameraFrontRound.tsx | 21 +++++++ src/IconVideoCameraFrontSharp.tsx | 21 +++++++ src/IconVideoCameraFrontTwoTone.tsx | 27 +++++++++ src/IconVideoChatOutlined.tsx | 24 ++++++++ src/IconVideoChatRound.tsx | 21 +++++++ src/IconVideoChatSharp.tsx | 21 +++++++ src/IconVideoChatTwoTone.tsx | 29 ++++++++++ src/IconVideoFileOutlined.tsx | 21 +++++++ src/IconVideoFileRound.tsx | 22 ++++++++ src/IconVideoFileSharp.tsx | 21 +++++++ src/IconVideoFileTwoTone.tsx | 25 +++++++++ src/IconVideoLabelOutlined.tsx | 12 ++++ src/IconVideoLabelRound.tsx | 11 ++++ src/IconVideoLabelSharp.tsx | 12 ++++ src/IconVideoLabelTwoTone.tsx | 13 +++++ src/IconVideoLibraryOutlined.tsx | 12 ++++ src/IconVideoLibraryRound.tsx | 11 ++++ src/IconVideoLibrarySharp.tsx | 12 ++++ src/IconVideoLibraryTwoTone.tsx | 13 +++++ src/IconVideoSettingsOutlined.tsx | 25 +++++++++ src/IconVideoSettingsRound.tsx | 26 +++++++++ src/IconVideoSettingsSharp.tsx | 25 +++++++++ src/IconVideoSettingsTwoTone.tsx | 25 +++++++++ src/IconVideoStableOutlined.tsx | 21 +++++++ src/IconVideoStableRound.tsx | 24 ++++++++ src/IconVideoStableSharp.tsx | 23 ++++++++ src/IconVideoStableTwoTone.tsx | 31 ++++++++++ src/IconVideocamOffOutlined.tsx | 12 ++++ src/IconVideocamOffRound.tsx | 11 ++++ src/IconVideocamOffSharp.tsx | 12 ++++ src/IconVideocamOffTwoTone.tsx | 13 +++++ src/IconVideocamOutlined.tsx | 12 ++++ src/IconVideocamRound.tsx | 11 ++++ src/IconVideocamSharp.tsx | 12 ++++ src/IconVideocamTwoTone.tsx | 13 +++++ src/IconVideogameAssetOffOutlined.tsx | 17 ++++++ src/IconVideogameAssetOffRound.tsx | 17 ++++++ src/IconVideogameAssetOffSharp.tsx | 17 ++++++ src/IconVideogameAssetOffTwoTone.tsx | 21 +++++++ src/IconVideogameAssetOutlined.tsx | 14 +++++ src/IconVideogameAssetRound.tsx | 11 ++++ src/IconVideogameAssetSharp.tsx | 12 ++++ src/IconVideogameAssetTwoTone.tsx | 18 ++++++ src/IconViewAgendaOutlined.tsx | 24 ++++++++ src/IconViewAgendaRound.tsx | 24 ++++++++ src/IconViewAgendaSharp.tsx | 24 ++++++++ src/IconViewAgendaTwoTone.tsx | 26 +++++++++ src/IconViewArrayOutlined.tsx | 17 ++++++ src/IconViewArrayRound.tsx | 17 ++++++ src/IconViewArraySharp.tsx | 17 ++++++ src/IconViewArrayTwoTone.tsx | 18 ++++++ src/IconViewCarouselOutlined.tsx | 17 ++++++ src/IconViewCarouselRound.tsx | 17 ++++++ src/IconViewCarouselSharp.tsx | 17 ++++++ src/IconViewCarouselTwoTone.tsx | 18 ++++++ src/IconViewColumnOutlined.tsx | 17 ++++++ src/IconViewColumnRound.tsx | 19 +++++++ src/IconViewColumnSharp.tsx | 19 +++++++ src/IconViewColumnTwoTone.tsx | 21 +++++++ src/IconViewComfyAltOutlined.tsx | 27 +++++++++ src/IconViewComfyAltRound.tsx | 24 ++++++++ src/IconViewComfyAltSharp.tsx | 23 ++++++++ src/IconViewComfyAltTwoTone.tsx | 31 ++++++++++ src/IconViewComfyOutlined.tsx | 23 ++++++++ src/IconViewComfyRound.tsx | 21 +++++++ src/IconViewComfySharp.tsx | 21 +++++++ src/IconViewComfyTwoTone.tsx | 27 +++++++++ src/IconViewCompact.tsx | 15 ++++- src/IconViewCompactAltOutlined.tsx | 27 +++++++++ src/IconViewCompactAltRound.tsx | 24 ++++++++ src/IconViewCompactAltSharp.tsx | 23 ++++++++ src/IconViewCompactAltTwoTone.tsx | 31 ++++++++++ src/IconViewCompactOutlined.tsx | 23 ++++++++ src/IconViewCompactRound.tsx | 21 +++++++ src/IconViewCompactSharp.tsx | 21 +++++++ src/IconViewCompactTwoTone.tsx | 27 +++++++++ src/IconViewCozyOutlined.tsx | 27 +++++++++ src/IconViewCozyRound.tsx | 24 ++++++++ src/IconViewCozySharp.tsx | 23 ++++++++ src/IconViewCozyTwoTone.tsx | 31 ++++++++++ src/IconViewDayOutlined.tsx | 12 ++++ src/IconViewDayRound.tsx | 12 ++++ src/IconViewDaySharp.tsx | 12 ++++ src/IconViewDayTwoTone.tsx | 13 +++++ src/IconViewHeadlineOutlined.tsx | 12 ++++ src/IconViewHeadlineRound.tsx | 12 ++++ src/IconViewHeadlineSharp.tsx | 12 ++++ src/IconViewHeadlineTwoTone.tsx | 12 ++++ src/IconViewInArOutlined.tsx | 27 +++++++++ src/IconViewInArRound.tsx | 27 +++++++++ src/IconViewInArSharp.tsx | 27 +++++++++ src/IconViewInArTwoTone.tsx | 30 ++++++++++ src/IconViewKanbanOutlined.tsx | 26 +++++++++ src/IconViewKanbanRound.tsx | 22 ++++++++ src/IconViewKanbanSharp.tsx | 21 +++++++ src/IconViewKanbanTwoTone.tsx | 30 ++++++++++ src/IconViewListOutlined.tsx | 17 ++++++ src/IconViewListRound.tsx | 17 ++++++ src/IconViewListSharp.tsx | 17 ++++++ src/IconViewListTwoTone.tsx | 21 +++++++ src/IconViewModuleOutlined.tsx | 17 ++++++ src/IconViewModuleRound.tsx | 19 +++++++ src/IconViewModuleSharp.tsx | 19 +++++++ src/IconViewModuleTwoTone.tsx | 21 +++++++ src/IconViewQuiltOutlined.tsx | 17 ++++++ src/IconViewQuiltRound.tsx | 19 +++++++ src/IconViewQuiltSharp.tsx | 19 +++++++ src/IconViewQuiltTwoTone.tsx | 21 +++++++ src/IconViewSidebarOutlined.tsx | 21 +++++++ src/IconViewSidebarRound.tsx | 19 +++++++ src/IconViewSidebarSharp.tsx | 19 +++++++ src/IconViewSidebarTwoTone.tsx | 24 ++++++++ src/IconViewStreamOutlined.tsx | 17 ++++++ src/IconViewStreamRound.tsx | 17 ++++++ src/IconViewStreamSharp.tsx | 17 ++++++ src/IconViewStreamTwoTone.tsx | 18 ++++++ src/IconViewTimelineOutlined.tsx | 26 +++++++++ src/IconViewTimelineRound.tsx | 22 ++++++++ src/IconViewTimelineSharp.tsx | 21 +++++++ src/IconViewTimelineTwoTone.tsx | 30 ++++++++++ src/IconViewWeekOutlined.tsx | 17 ++++++ src/IconViewWeekRound.tsx | 17 ++++++ src/IconViewWeekSharp.tsx | 17 ++++++ src/IconViewWeekTwoTone.tsx | 21 +++++++ src/IconVignetteOutlined.tsx | 12 ++++ src/IconVignetteRound.tsx | 12 ++++ src/IconVignetteSharp.tsx | 12 ++++ src/IconVignetteTwoTone.tsx | 16 ++++++ src/IconVillaOutlined.tsx | 17 ++++++ src/IconVillaRound.tsx | 17 ++++++ src/IconVillaSharp.tsx | 17 ++++++ src/IconVillaTwoTone.tsx | 21 +++++++ src/IconVisibilityOffOutlined.tsx | 15 +++++ src/IconVisibilityOffRound.tsx | 15 +++++ src/IconVisibilityOffSharp.tsx | 15 +++++ src/IconVisibilityOffTwoTone.tsx | 19 +++++++ src/IconVisibilityOutlined.tsx | 12 ++++ src/IconVisibilityRound.tsx | 12 ++++ src/IconVisibilitySharp.tsx | 12 ++++ src/IconVisibilityTwoTone.tsx | 16 ++++++ src/IconVoiceChatOutlined.tsx | 12 ++++ src/IconVoiceChatRound.tsx | 12 ++++ src/IconVoiceChatSharp.tsx | 12 ++++ src/IconVoiceChatTwoTone.tsx | 16 ++++++ src/IconVoiceOverOffOutlined.tsx | 12 ++++ src/IconVoiceOverOffRound.tsx | 12 ++++ src/IconVoiceOverOffSharp.tsx | 12 ++++ src/IconVoiceOverOffTwoTone.tsx | 16 ++++++ src/IconVoicemailOutlined.tsx | 12 ++++ src/IconVoicemailRound.tsx | 12 ++++ src/IconVoicemailSharp.tsx | 12 ++++ src/IconVoicemailTwoTone.tsx | 12 ++++ src/IconVolcanoOutlined.tsx | 46 +++++++++++++++ src/IconVolcanoRound.tsx | 35 ++++++++++++ src/IconVolcanoSharp.tsx | 46 +++++++++++++++ src/IconVolcanoTwoTone.tsx | 50 +++++++++++++++++ src/IconVolumeDownOutlined.tsx | 12 ++++ src/IconVolumeDownRound.tsx | 11 ++++ src/IconVolumeDownSharp.tsx | 12 ++++ src/IconVolumeDownTwoTone.tsx | 13 +++++ src/IconVolumeMuteOutlined.tsx | 12 ++++ src/IconVolumeMuteRound.tsx | 11 ++++ src/IconVolumeMuteSharp.tsx | 12 ++++ src/IconVolumeMuteTwoTone.tsx | 13 +++++ src/IconVolumeOffOutlined.tsx | 12 ++++ src/IconVolumeOffRound.tsx | 11 ++++ src/IconVolumeOffSharp.tsx | 12 ++++ src/IconVolumeOffTwoTone.tsx | 13 +++++ src/IconVolumeUpOutlined.tsx | 12 ++++ src/IconVolumeUpRound.tsx | 11 ++++ src/IconVolumeUpSharp.tsx | 12 ++++ src/IconVolumeUpTwoTone.tsx | 13 +++++ src/IconVolunteerActivismOutlined.tsx | 28 ++++++++++ src/IconVolunteerActivismRound.tsx | 25 +++++++++ src/IconVolunteerActivismSharp.tsx | 25 +++++++++ src/IconVolunteerActivismTwoTone.tsx | 33 +++++++++++ src/IconVpnKeyOffOutlined.tsx | 23 ++++++++ src/IconVpnKeyOffRound.tsx | 22 ++++++++ src/IconVpnKeyOffSharp.tsx | 23 ++++++++ src/IconVpnKeyOffTwoTone.tsx | 26 +++++++++ src/IconVpnKeyOutlined.tsx | 12 ++++ src/IconVpnKeyRound.tsx | 12 ++++ src/IconVpnKeySharp.tsx | 12 ++++ src/IconVpnKeyTwoTone.tsx | 16 ++++++ src/IconVpnLockOutlined.tsx | 12 ++++ src/IconVpnLockRound.tsx | 21 +++++++ src/IconVpnLockSharp.tsx | 12 ++++ src/IconVpnLockTwoTone.tsx | 16 ++++++ src/IconVrpanoOutlined.tsx | 24 ++++++++ src/IconVrpanoRound.tsx | 21 +++++++ src/IconVrpanoSharp.tsx | 21 +++++++ src/IconVrpanoTwoTone.tsx | 29 ++++++++++ src/IconWalletOutlined.tsx | 21 +++++++ src/IconWalletRound.tsx | 22 ++++++++ src/IconWalletSharp.tsx | 21 +++++++ src/IconWalletTwoTone.tsx | 31 ++++++++++ src/IconWallpaperOutlined.tsx | 12 ++++ src/IconWallpaperRound.tsx | 12 ++++ src/IconWallpaperSharp.tsx | 12 ++++ src/IconWallpaperTwoTone.tsx | 12 ++++ src/IconWarehouseOutlined.tsx | 21 +++++++ src/IconWarehouseRound.tsx | 22 ++++++++ src/IconWarehouseSharp.tsx | 21 +++++++ src/IconWarehouseTwoTone.tsx | 21 +++++++ src/IconWarningAmberOutlined.tsx | 11 ++++ src/IconWarningAmberRound.tsx | 11 ++++ src/IconWarningAmberSharp.tsx | 11 ++++ src/IconWarningAmberTwoTone.tsx | 11 ++++ src/IconWarningOutlined.tsx | 11 ++++ src/IconWarningRound.tsx | 11 ++++ src/IconWarningSharp.tsx | 11 ++++ src/IconWarningTwoTone.tsx | 15 +++++ src/IconWashOutlined.tsx | 19 +++++++ src/IconWashRound.tsx | 19 +++++++ src/IconWashSharp.tsx | 19 +++++++ src/IconWashTwoTone.tsx | 23 ++++++++ src/IconWatchLaterOutlined.tsx | 23 ++++++++ src/IconWatchLaterRound.tsx | 23 ++++++++ src/IconWatchLaterSharp.tsx | 23 ++++++++ src/IconWatchLaterTwoTone.tsx | 28 ++++++++++ src/IconWatchOffOutlined.tsx | 24 ++++++++ src/IconWatchOffRound.tsx | 25 +++++++++ src/IconWatchOffSharp.tsx | 24 ++++++++ src/IconWatchOffTwoTone.tsx | 32 +++++++++++ src/IconWatchOutlined.tsx | 12 ++++ src/IconWatchRound.tsx | 11 ++++ src/IconWatchSharp.tsx | 12 ++++ src/IconWatchTwoTone.tsx | 16 ++++++ src/IconWaterDamageOutlined.tsx | 17 ++++++ src/IconWaterDamageRound.tsx | 17 ++++++ src/IconWaterDamageSharp.tsx | 17 ++++++ src/IconWaterDamageTwoTone.tsx | 21 +++++++ src/IconWaterDropOutlined.tsx | 17 ++++++ src/IconWaterDropRound.tsx | 17 ++++++ src/IconWaterDropSharp.tsx | 17 ++++++ src/IconWaterDropTwoTone.tsx | 21 +++++++ src/IconWaterOutlined.tsx | 23 ++++++++ src/IconWaterRound.tsx | 23 ++++++++ src/IconWaterSharp.tsx | 23 ++++++++ src/IconWaterTwoTone.tsx | 23 ++++++++ src/IconWaterfallChartOutlined.tsx | 23 ++++++++ src/IconWaterfallChartRound.tsx | 23 ++++++++ src/IconWaterfallChartSharp.tsx | 23 ++++++++ src/IconWaterfallChartTwoTone.tsx | 23 ++++++++ src/IconWavesOutlined.tsx | 12 ++++ src/IconWavesRound.tsx | 12 ++++ src/IconWavesSharp.tsx | 12 ++++ src/IconWavesTwoTone.tsx | 12 ++++ src/IconWavingHandOutlined.tsx | 17 ++++++ src/IconWavingHandRound.tsx | 17 ++++++ src/IconWavingHandSharp.tsx | 17 ++++++ src/IconWavingHandTwoTone.tsx | 21 +++++++ src/IconWbAutoOutlined.tsx | 12 ++++ src/IconWbAutoRound.tsx | 12 ++++ src/IconWbAutoSharp.tsx | 12 ++++ src/IconWbAutoTwoTone.tsx | 16 ++++++ src/IconWbCloudyOutlined.tsx | 12 ++++ src/IconWbCloudyRound.tsx | 12 ++++ src/IconWbCloudySharp.tsx | 12 ++++ src/IconWbCloudyTwoTone.tsx | 16 ++++++ src/IconWbIncandescentOutlined.tsx | 12 ++++ src/IconWbIncandescentRound.tsx | 12 ++++ src/IconWbIncandescentSharp.tsx | 12 ++++ src/IconWbIncandescentTwoTone.tsx | 16 ++++++ src/IconWbIridescentOutlined.tsx | 12 ++++ src/IconWbIridescentRound.tsx | 12 ++++ src/IconWbIridescentSharp.tsx | 12 ++++ src/IconWbIridescentTwoTone.tsx | 13 +++++ src/IconWbShadeOutlined.tsx | 23 ++++++++ src/IconWbShadeRound.tsx | 23 ++++++++ src/IconWbShadeSharp.tsx | 23 ++++++++ src/IconWbShadeTwoTone.tsx | 23 ++++++++ src/IconWbSunnyOutlined.tsx | 12 ++++ src/IconWbSunnyRound.tsx | 12 ++++ src/IconWbSunnySharp.tsx | 12 ++++ src/IconWbSunnyTwoTone.tsx | 16 ++++++ src/IconWbTwilightOutlined.tsx | 39 +++++++++++++ src/IconWbTwilightRound.tsx | 27 +++++++++ src/IconWbTwilightSharp.tsx | 39 +++++++++++++ src/IconWbTwilightTwoTone.tsx | 39 +++++++++++++ src/IconWcOutlined.tsx | 12 ++++ src/IconWcRound.tsx | 12 ++++ src/IconWcSharp.tsx | 12 ++++ src/IconWcTwoTone.tsx | 12 ++++ src/IconWebAssetOffOutlined.tsx | 17 ++++++ src/IconWebAssetOffRound.tsx | 17 ++++++ src/IconWebAssetOffSharp.tsx | 17 ++++++ src/IconWebAssetOffTwoTone.tsx | 21 +++++++ src/IconWebAssetOutlined.tsx | 12 ++++ src/IconWebAssetRound.tsx | 11 ++++ src/IconWebAssetSharp.tsx | 12 ++++ src/IconWebAssetTwoTone.tsx | 13 +++++ src/IconWebOutlined.tsx | 24 ++++++++ src/IconWebRound.tsx | 11 ++++ src/IconWebSharp.tsx | 23 ++++++++ src/IconWebStoriesOutlined.tsx | 25 +++++++++ src/IconWebStoriesRound.tsx | 22 ++++++++ src/IconWebStoriesSharp.tsx | 21 +++++++ src/IconWebStoriesTwoTone.tsx | 26 +++++++++ src/IconWebTwoTone.tsx | 29 ++++++++++ src/IconWebhookOutlined.tsx | 21 +++++++ src/IconWebhookRound.tsx | 22 ++++++++ src/IconWebhookSharp.tsx | 21 +++++++ src/IconWebhookTwoTone.tsx | 21 +++++++ src/IconWeekendOutlined.tsx | 12 ++++ src/IconWeekendRound.tsx | 12 ++++ src/IconWeekendSharp.tsx | 12 ++++ src/IconWeekendTwoTone.tsx | 16 ++++++ src/IconWestOutlined.tsx | 17 ++++++ src/IconWestRound.tsx | 17 ++++++ src/IconWestSharp.tsx | 17 ++++++ src/IconWestTwoTone.tsx | 17 ++++++ src/IconWhatsapp.tsx | 25 --------- src/IconWhatshotOutlined.tsx | 12 ++++ src/IconWhatshotRound.tsx | 12 ++++ src/IconWhatshotSharp.tsx | 12 ++++ src/IconWhatshotTwoTone.tsx | 16 ++++++ src/IconWheelchairPickupOutlined.tsx | 19 +++++++ src/IconWheelchairPickupRound.tsx | 19 +++++++ src/IconWheelchairPickupSharp.tsx | 19 +++++++ src/IconWheelchairPickupTwoTone.tsx | 19 +++++++ src/IconWhereToVoteOutlined.tsx | 12 ++++ src/IconWhereToVoteRound.tsx | 21 +++++++ src/IconWhereToVoteSharp.tsx | 12 ++++ src/IconWhereToVoteTwoTone.tsx | 16 ++++++ src/IconWidgetsOutlined.tsx | 12 ++++ src/IconWidgetsRound.tsx | 12 ++++ src/IconWidgetsSharp.tsx | 12 ++++ src/IconWidgetsTwoTone.tsx | 16 ++++++ src/IconWidthFullOutlined.tsx | 21 +++++++ src/IconWidthFullRound.tsx | 22 ++++++++ src/IconWidthFullSharp.tsx | 21 +++++++ src/IconWidthFullTwoTone.tsx | 24 ++++++++ src/IconWidthNormalOutlined.tsx | 21 +++++++ src/IconWidthNormalRound.tsx | 22 ++++++++ src/IconWidthNormalSharp.tsx | 21 +++++++ src/IconWidthNormalTwoTone.tsx | 24 ++++++++ src/IconWidthWideOutlined.tsx | 21 +++++++ src/IconWidthWideRound.tsx | 22 ++++++++ src/IconWidthWideSharp.tsx | 21 +++++++ src/IconWidthWideTwoTone.tsx | 24 ++++++++ src/IconWifi1BarOutlined.tsx | 21 +++++++ src/IconWifi1BarRound.tsx | 22 ++++++++ src/IconWifi1BarSharp.tsx | 21 +++++++ src/IconWifi1BarTwoTone.tsx | 21 +++++++ src/IconWifi2BarOutlined.tsx | 21 +++++++ src/IconWifi2BarRound.tsx | 22 ++++++++ src/IconWifi2BarSharp.tsx | 21 +++++++ src/IconWifi2BarTwoTone.tsx | 21 +++++++ src/IconWifiCalling3Outlined.tsx | 26 +++++++++ src/IconWifiCalling3Round.tsx | 26 +++++++++ src/IconWifiCalling3Sharp.tsx | 26 +++++++++ src/IconWifiCalling3TwoTone.tsx | 38 +++++++++++++ src/IconWifiCallingOutlined.tsx | 28 ++++++++++ src/IconWifiCallingRound.tsx | 25 +++++++++ src/IconWifiCallingSharp.tsx | 24 ++++++++ src/IconWifiCallingTwoTone.tsx | 34 +++++++++++ src/IconWifiChannelOutlined.tsx | 21 +++++++ src/IconWifiChannelRound.tsx | 21 +++++++ src/IconWifiChannelSharp.tsx | 21 +++++++ src/IconWifiChannelTwoTone.tsx | 25 +++++++++ src/IconWifiFindOutlined.tsx | 28 ++++++++++ src/IconWifiFindRound.tsx | 28 ++++++++++ src/IconWifiFindSharp.tsx | 28 ++++++++++ src/IconWifiFindTwoTone.tsx | 28 ++++++++++ src/IconWifiLockOutlined.tsx | 24 ++++++++ src/IconWifiLockRound.tsx | 24 ++++++++ src/IconWifiLockSharp.tsx | 24 ++++++++ src/IconWifiLockTwoTone.tsx | 24 ++++++++ src/IconWifiOffOutlined.tsx | 12 ++++ src/IconWifiOffRound.tsx | 12 ++++ src/IconWifiOffSharp.tsx | 12 ++++ src/IconWifiOffTwoTone.tsx | 12 ++++ src/IconWifiOutlined.tsx | 12 ++++ src/IconWifiPasswordOutlined.tsx | 21 +++++++ src/IconWifiPasswordRound.tsx | 21 +++++++ src/IconWifiPasswordSharp.tsx | 21 +++++++ src/IconWifiPasswordTwoTone.tsx | 21 +++++++ src/IconWifiProtectedSetupOutlined.tsx | 28 ++++++++++ src/IconWifiProtectedSetupRound.tsx | 29 ++++++++++ src/IconWifiProtectedSetupSharp.tsx | 28 ++++++++++ src/IconWifiProtectedSetupTwoTone.tsx | 28 ++++++++++ src/IconWifiRound.tsx | 12 ++++ src/IconWifiSharp.tsx | 12 ++++ src/IconWifiTetheringErrorOutlined.tsx | 23 ++++++++ src/IconWifiTetheringErrorRound.tsx | 23 ++++++++ src/IconWifiTetheringErrorSharp.tsx | 23 ++++++++ src/IconWifiTetheringErrorTwoTone.tsx | 23 ++++++++ src/IconWifiTetheringOffOutlined.tsx | 23 ++++++++ src/IconWifiTetheringOffRound.tsx | 23 ++++++++ src/IconWifiTetheringOffSharp.tsx | 23 ++++++++ src/IconWifiTetheringOffTwoTone.tsx | 23 ++++++++ src/IconWifiTetheringOutlined.tsx | 12 ++++ src/IconWifiTetheringRound.tsx | 12 ++++ src/IconWifiTetheringSharp.tsx | 12 ++++ src/IconWifiTetheringTwoTone.tsx | 12 ++++ src/IconWifiTwoTone.tsx | 12 ++++ src/IconWindPowerOutlined.tsx | 26 +++++++++ src/IconWindPowerRound.tsx | 30 ++++++++++ src/IconWindPowerSharp.tsx | 43 ++++++++++++++ src/IconWindPowerTwoTone.tsx | 39 +++++++++++++ src/IconWindow.tsx | 6 +- src/IconWindowOutlined.tsx | 21 +++++++ src/IconWindowRound.tsx | 24 ++++++++ src/IconWindowSharp.tsx | 26 +++++++++ src/IconWindowTwoTone.tsx | 27 +++++++++ src/IconWineBarOutlined.tsx | 17 ++++++ src/IconWineBarRound.tsx | 17 ++++++ src/IconWineBarSharp.tsx | 17 ++++++ src/IconWineBarTwoTone.tsx | 21 +++++++ src/IconWoman2Outlined.tsx | 26 +++++++++ src/IconWoman2Round.tsx | 27 +++++++++ src/IconWoman2Sharp.tsx | 26 +++++++++ src/IconWoman2TwoTone.tsx | 26 +++++++++ src/IconWomanOutlined.tsx | 24 ++++++++ src/IconWomanRound.tsx | 23 ++++++++ src/IconWomanSharp.tsx | 24 ++++++++ src/IconWomanTwoTone.tsx | 24 ++++++++ src/IconWorkHistoryOutlined.tsx | 24 ++++++++ src/IconWorkHistoryRound.tsx | 25 +++++++++ src/IconWorkHistorySharp.tsx | 24 ++++++++ src/IconWorkHistoryTwoTone.tsx | 28 ++++++++++ src/IconWorkOffOutlined.tsx | 12 ++++ src/IconWorkOffRound.tsx | 12 ++++ src/IconWorkOffSharp.tsx | 12 ++++ src/IconWorkOffTwoTone.tsx | 13 +++++ src/IconWorkOutlineOutlined.tsx | 12 ++++ src/IconWorkOutlineRound.tsx | 12 ++++ src/IconWorkOutlineSharp.tsx | 12 ++++ src/IconWorkOutlineTwoTone.tsx | 12 ++++ src/IconWorkOutlined.tsx | 12 ++++ src/IconWorkRound.tsx | 12 ++++ src/IconWorkSharp.tsx | 12 ++++ src/IconWorkTwoTone.tsx | 13 +++++ src/IconWorkspacePremiumOutlined.tsx | 17 ++++++ src/IconWorkspacePremiumRound.tsx | 17 ++++++ src/IconWorkspacePremiumSharp.tsx | 17 ++++++ src/IconWorkspacePremiumTwoTone.tsx | 21 +++++++ src/IconWorkspacesOutlined.tsx | 23 ++++++++ src/IconWorkspacesRound.tsx | 23 ++++++++ src/IconWorkspacesSharp.tsx | 23 ++++++++ src/IconWorkspacesTwoTone.tsx | 28 ++++++++++ src/IconWrapTextOutlined.tsx | 12 ++++ src/IconWrapTextRound.tsx | 12 ++++ src/IconWrapTextSharp.tsx | 11 ++++ src/IconWrapTextTwoTone.tsx | 12 ++++ src/IconWrongLocationOutlined.tsx | 25 +++++++++ src/IconWrongLocationRound.tsx | 30 ++++++++++ src/IconWrongLocationSharp.tsx | 24 ++++++++ src/IconWrongLocationTwoTone.tsx | 25 +++++++++ src/IconWysiwygOutlined.tsx | 19 +++++++ src/IconWysiwygRound.tsx | 19 +++++++ src/IconWysiwygSharp.tsx | 19 +++++++ src/IconWysiwygTwoTone.tsx | 23 ++++++++ src/IconYardOutlined.tsx | 21 +++++++ src/IconYardRound.tsx | 24 ++++++++ src/IconYardSharp.tsx | 24 ++++++++ src/IconYardTwoTone.tsx | 30 ++++++++++ src/IconYoutubeSearchedForOutlined.tsx | 12 ++++ src/IconYoutubeSearchedForRound.tsx | 12 ++++ src/IconYoutubeSearchedForSharp.tsx | 12 ++++ src/IconYoutubeSearchedForTwoTone.tsx | 12 ++++ src/IconZoomInMapOutlined.tsx | 21 +++++++ src/IconZoomInMapRound.tsx | 21 +++++++ src/IconZoomInMapSharp.tsx | 21 +++++++ src/IconZoomInMapTwoTone.tsx | 21 +++++++ src/IconZoomInOutlined.tsx | 12 ++++ src/IconZoomInRound.tsx | 12 ++++ src/IconZoomInSharp.tsx | 12 ++++ src/IconZoomInTwoTone.tsx | 12 ++++ src/IconZoomOutMapOutlined.tsx | 12 ++++ src/IconZoomOutMapRound.tsx | 27 +++++++++ src/IconZoomOutMapSharp.tsx | 12 ++++ src/IconZoomOutMapTwoTone.tsx | 12 ++++ src/IconZoomOutOutlined.tsx | 12 ++++ src/IconZoomOutRound.tsx | 12 ++++ src/IconZoomOutSharp.tsx | 12 ++++ src/IconZoomOutTwoTone.tsx | 12 ++++ tsconfig.json | 10 +++- 8509 files changed, 155421 insertions(+), 83 deletions(-) create mode 100644 src/Icon10kOutlined.tsx create mode 100644 src/Icon10kRound.tsx create mode 100644 src/Icon10kSharp.tsx create mode 100644 src/Icon10kTwoTone.tsx create mode 100644 src/Icon10mpOutlined.tsx create mode 100644 src/Icon10mpRound.tsx create mode 100644 src/Icon10mpSharp.tsx create mode 100644 src/Icon10mpTwoTone.tsx create mode 100644 src/Icon11mpOutlined.tsx create mode 100644 src/Icon11mpRound.tsx create mode 100644 src/Icon11mpSharp.tsx create mode 100644 src/Icon11mpTwoTone.tsx create mode 100644 src/Icon123Outlined.tsx create mode 100644 src/Icon123Round.tsx create mode 100644 src/Icon123Sharp.tsx create mode 100644 src/Icon123TwoTone.tsx create mode 100644 src/Icon12mpOutlined.tsx create mode 100644 src/Icon12mpRound.tsx create mode 100644 src/Icon12mpSharp.tsx create mode 100644 src/Icon12mpTwoTone.tsx create mode 100644 src/Icon13mpOutlined.tsx create mode 100644 src/Icon13mpRound.tsx create mode 100644 src/Icon13mpSharp.tsx create mode 100644 src/Icon13mpTwoTone.tsx create mode 100644 src/Icon14mpOutlined.tsx create mode 100644 src/Icon14mpRound.tsx create mode 100644 src/Icon14mpSharp.tsx create mode 100644 src/Icon14mpTwoTone.tsx create mode 100644 src/Icon15mpOutlined.tsx create mode 100644 src/Icon15mpRound.tsx create mode 100644 src/Icon15mpSharp.tsx create mode 100644 src/Icon15mpTwoTone.tsx create mode 100644 src/Icon16mpOutlined.tsx create mode 100644 src/Icon16mpRound.tsx create mode 100644 src/Icon16mpSharp.tsx create mode 100644 src/Icon16mpTwoTone.tsx create mode 100644 src/Icon17mpOutlined.tsx create mode 100644 src/Icon17mpRound.tsx create mode 100644 src/Icon17mpSharp.tsx create mode 100644 src/Icon17mpTwoTone.tsx create mode 100644 src/Icon18UpRatingOutlined.tsx create mode 100644 src/Icon18UpRatingRound.tsx create mode 100644 src/Icon18UpRatingSharp.tsx create mode 100644 src/Icon18UpRatingTwoTone.tsx create mode 100644 src/Icon18mpOutlined.tsx create mode 100644 src/Icon18mpRound.tsx create mode 100644 src/Icon18mpSharp.tsx create mode 100644 src/Icon18mpTwoTone.tsx create mode 100644 src/Icon19mpOutlined.tsx create mode 100644 src/Icon19mpRound.tsx create mode 100644 src/Icon19mpSharp.tsx create mode 100644 src/Icon19mpTwoTone.tsx create mode 100644 src/Icon1kOutlined.tsx create mode 100644 src/Icon1kPlusOutlined.tsx create mode 100644 src/Icon1kPlusRound.tsx create mode 100644 src/Icon1kPlusSharp.tsx create mode 100644 src/Icon1kPlusTwoTone.tsx create mode 100644 src/Icon1kRound.tsx create mode 100644 src/Icon1kSharp.tsx create mode 100644 src/Icon1kTwoTone.tsx create mode 100644 src/Icon1xMobiledataOutlined.tsx create mode 100644 src/Icon1xMobiledataRound.tsx create mode 100644 src/Icon1xMobiledataSharp.tsx create mode 100644 src/Icon1xMobiledataTwoTone.tsx create mode 100644 src/Icon20mpOutlined.tsx create mode 100644 src/Icon20mpRound.tsx create mode 100644 src/Icon20mpSharp.tsx create mode 100644 src/Icon20mpTwoTone.tsx create mode 100644 src/Icon21mpOutlined.tsx create mode 100644 src/Icon21mpRound.tsx create mode 100644 src/Icon21mpSharp.tsx create mode 100644 src/Icon21mpTwoTone.tsx create mode 100644 src/Icon22mpOutlined.tsx create mode 100644 src/Icon22mpRound.tsx create mode 100644 src/Icon22mpSharp.tsx create mode 100644 src/Icon22mpTwoTone.tsx create mode 100644 src/Icon23mpOutlined.tsx create mode 100644 src/Icon23mpRound.tsx create mode 100644 src/Icon23mpSharp.tsx create mode 100644 src/Icon23mpTwoTone.tsx create mode 100644 src/Icon24mpOutlined.tsx create mode 100644 src/Icon24mpRound.tsx create mode 100644 src/Icon24mpSharp.tsx create mode 100644 src/Icon24mpTwoTone.tsx create mode 100644 src/Icon2kOutlined.tsx create mode 100644 src/Icon2kPlusOutlined.tsx create mode 100644 src/Icon2kPlusRound.tsx create mode 100644 src/Icon2kPlusSharp.tsx create mode 100644 src/Icon2kPlusTwoTone.tsx create mode 100644 src/Icon2kRound.tsx create mode 100644 src/Icon2kSharp.tsx create mode 100644 src/Icon2kTwoTone.tsx create mode 100644 src/Icon2mpOutlined.tsx create mode 100644 src/Icon2mpRound.tsx create mode 100644 src/Icon2mpSharp.tsx create mode 100644 src/Icon2mpTwoTone.tsx create mode 100644 src/Icon30fpsOutlined.tsx create mode 100644 src/Icon30fpsRound.tsx create mode 100644 src/Icon30fpsSelectOutlined.tsx create mode 100644 src/Icon30fpsSelectRound.tsx create mode 100644 src/Icon30fpsSelectSharp.tsx create mode 100644 src/Icon30fpsSelectTwoTone.tsx create mode 100644 src/Icon30fpsSharp.tsx create mode 100644 src/Icon30fpsTwoTone.tsx create mode 100644 src/Icon360Outlined.tsx create mode 100644 src/Icon360Round.tsx create mode 100644 src/Icon360Sharp.tsx create mode 100644 src/Icon360TwoTone.tsx create mode 100644 src/Icon3dRotationOutlined.tsx create mode 100644 src/Icon3dRotationRound.tsx create mode 100644 src/Icon3dRotationSharp.tsx create mode 100644 src/Icon3dRotationTwoTone.tsx create mode 100644 src/Icon3gMobiledataOutlined.tsx create mode 100644 src/Icon3gMobiledataRound.tsx create mode 100644 src/Icon3gMobiledataSharp.tsx create mode 100644 src/Icon3gMobiledataTwoTone.tsx create mode 100644 src/Icon3kOutlined.tsx create mode 100644 src/Icon3kPlusOutlined.tsx create mode 100644 src/Icon3kPlusRound.tsx create mode 100644 src/Icon3kPlusSharp.tsx create mode 100644 src/Icon3kPlusTwoTone.tsx create mode 100644 src/Icon3kRound.tsx create mode 100644 src/Icon3kSharp.tsx create mode 100644 src/Icon3kTwoTone.tsx create mode 100644 src/Icon3mpOutlined.tsx create mode 100644 src/Icon3mpRound.tsx create mode 100644 src/Icon3mpSharp.tsx create mode 100644 src/Icon3mpTwoTone.tsx create mode 100644 src/Icon3pOutlined.tsx create mode 100644 src/Icon3pRound.tsx create mode 100644 src/Icon3pSharp.tsx create mode 100644 src/Icon3pTwoTone.tsx create mode 100644 src/Icon4gMobiledataOutlined.tsx create mode 100644 src/Icon4gMobiledataRound.tsx create mode 100644 src/Icon4gMobiledataSharp.tsx create mode 100644 src/Icon4gMobiledataTwoTone.tsx create mode 100644 src/Icon4gPlusMobiledataOutlined.tsx create mode 100644 src/Icon4gPlusMobiledataRound.tsx create mode 100644 src/Icon4gPlusMobiledataSharp.tsx create mode 100644 src/Icon4gPlusMobiledataTwoTone.tsx create mode 100644 src/Icon4kOutlined.tsx create mode 100644 src/Icon4kPlusOutlined.tsx create mode 100644 src/Icon4kPlusRound.tsx create mode 100644 src/Icon4kPlusSharp.tsx create mode 100644 src/Icon4kPlusTwoTone.tsx create mode 100644 src/Icon4kRound.tsx create mode 100644 src/Icon4kSharp.tsx create mode 100644 src/Icon4kTwoTone.tsx create mode 100644 src/Icon4mpOutlined.tsx create mode 100644 src/Icon4mpRound.tsx create mode 100644 src/Icon4mpSharp.tsx create mode 100644 src/Icon4mpTwoTone.tsx create mode 100644 src/Icon5gOutlined.tsx create mode 100644 src/Icon5gRound.tsx create mode 100644 src/Icon5gSharp.tsx create mode 100644 src/Icon5gTwoTone.tsx create mode 100644 src/Icon5kOutlined.tsx create mode 100644 src/Icon5kPlusOutlined.tsx create mode 100644 src/Icon5kPlusRound.tsx create mode 100644 src/Icon5kPlusSharp.tsx create mode 100644 src/Icon5kPlusTwoTone.tsx create mode 100644 src/Icon5kRound.tsx create mode 100644 src/Icon5kSharp.tsx create mode 100644 src/Icon5kTwoTone.tsx create mode 100644 src/Icon5mpOutlined.tsx create mode 100644 src/Icon5mpRound.tsx create mode 100644 src/Icon5mpSharp.tsx create mode 100644 src/Icon5mpTwoTone.tsx create mode 100644 src/Icon60fpsOutlined.tsx create mode 100644 src/Icon60fpsRound.tsx create mode 100644 src/Icon60fpsSelectOutlined.tsx create mode 100644 src/Icon60fpsSelectRound.tsx create mode 100644 src/Icon60fpsSelectSharp.tsx create mode 100644 src/Icon60fpsSelectTwoTone.tsx create mode 100644 src/Icon60fpsSharp.tsx create mode 100644 src/Icon60fpsTwoTone.tsx create mode 100644 src/Icon6FtApartOutlined.tsx create mode 100644 src/Icon6FtApartRound.tsx create mode 100644 src/Icon6FtApartSharp.tsx create mode 100644 src/Icon6FtApartTwoTone.tsx create mode 100644 src/Icon6kOutlined.tsx create mode 100644 src/Icon6kPlusOutlined.tsx create mode 100644 src/Icon6kPlusRound.tsx create mode 100644 src/Icon6kPlusSharp.tsx create mode 100644 src/Icon6kPlusTwoTone.tsx create mode 100644 src/Icon6kRound.tsx create mode 100644 src/Icon6kSharp.tsx create mode 100644 src/Icon6kTwoTone.tsx create mode 100644 src/Icon6mpOutlined.tsx create mode 100644 src/Icon6mpRound.tsx create mode 100644 src/Icon6mpSharp.tsx create mode 100644 src/Icon6mpTwoTone.tsx create mode 100644 src/Icon7kOutlined.tsx create mode 100644 src/Icon7kPlusOutlined.tsx create mode 100644 src/Icon7kPlusRound.tsx create mode 100644 src/Icon7kPlusSharp.tsx create mode 100644 src/Icon7kPlusTwoTone.tsx create mode 100644 src/Icon7kRound.tsx create mode 100644 src/Icon7kSharp.tsx create mode 100644 src/Icon7kTwoTone.tsx create mode 100644 src/Icon7mpOutlined.tsx create mode 100644 src/Icon7mpRound.tsx create mode 100644 src/Icon7mpSharp.tsx create mode 100644 src/Icon7mpTwoTone.tsx create mode 100644 src/Icon8kOutlined.tsx create mode 100644 src/Icon8kPlusOutlined.tsx create mode 100644 src/Icon8kPlusRound.tsx create mode 100644 src/Icon8kPlusSharp.tsx create mode 100644 src/Icon8kPlusTwoTone.tsx create mode 100644 src/Icon8kRound.tsx create mode 100644 src/Icon8kSharp.tsx create mode 100644 src/Icon8kTwoTone.tsx create mode 100644 src/Icon8mpOutlined.tsx create mode 100644 src/Icon8mpRound.tsx create mode 100644 src/Icon8mpSharp.tsx create mode 100644 src/Icon8mpTwoTone.tsx create mode 100644 src/Icon9kOutlined.tsx create mode 100644 src/Icon9kPlusOutlined.tsx create mode 100644 src/Icon9kPlusRound.tsx create mode 100644 src/Icon9kPlusSharp.tsx create mode 100644 src/Icon9kPlusTwoTone.tsx create mode 100644 src/Icon9kRound.tsx create mode 100644 src/Icon9kSharp.tsx create mode 100644 src/Icon9kTwoTone.tsx create mode 100644 src/Icon9mpOutlined.tsx create mode 100644 src/Icon9mpRound.tsx create mode 100644 src/Icon9mpSharp.tsx create mode 100644 src/Icon9mpTwoTone.tsx create mode 100644 src/IconAbcOutlined.tsx create mode 100644 src/IconAbcRound.tsx create mode 100644 src/IconAbcSharp.tsx create mode 100644 src/IconAbcTwoTone.tsx create mode 100644 src/IconAcUnitOutlined.tsx create mode 100644 src/IconAcUnitRound.tsx create mode 100644 src/IconAcUnitSharp.tsx create mode 100644 src/IconAcUnitTwoTone.tsx create mode 100644 src/IconAccessAlarmOutlined.tsx create mode 100644 src/IconAccessAlarmRound.tsx create mode 100644 src/IconAccessAlarmSharp.tsx create mode 100644 src/IconAccessAlarmTwoTone.tsx create mode 100644 src/IconAccessAlarmsOutlined.tsx create mode 100644 src/IconAccessAlarmsRound.tsx create mode 100644 src/IconAccessAlarmsSharp.tsx create mode 100644 src/IconAccessAlarmsTwoTone.tsx create mode 100644 src/IconAccessTimeFilledOutlined.tsx create mode 100644 src/IconAccessTimeFilledRound.tsx create mode 100644 src/IconAccessTimeFilledSharp.tsx create mode 100644 src/IconAccessTimeFilledTwoTone.tsx create mode 100644 src/IconAccessTimeOutlined.tsx create mode 100644 src/IconAccessTimeRound.tsx create mode 100644 src/IconAccessTimeSharp.tsx create mode 100644 src/IconAccessTimeTwoTone.tsx create mode 100644 src/IconAccessibilityNewOutlined.tsx create mode 100644 src/IconAccessibilityNewRound.tsx create mode 100644 src/IconAccessibilityNewSharp.tsx create mode 100644 src/IconAccessibilityNewTwoTone.tsx create mode 100644 src/IconAccessibilityOutlined.tsx create mode 100644 src/IconAccessibilityRound.tsx create mode 100644 src/IconAccessibilitySharp.tsx create mode 100644 src/IconAccessibilityTwoTone.tsx create mode 100644 src/IconAccessibleForwardOutlined.tsx create mode 100644 src/IconAccessibleForwardRound.tsx create mode 100644 src/IconAccessibleForwardSharp.tsx create mode 100644 src/IconAccessibleForwardTwoTone.tsx create mode 100644 src/IconAccessibleOutlined.tsx create mode 100644 src/IconAccessibleRound.tsx create mode 100644 src/IconAccessibleSharp.tsx create mode 100644 src/IconAccessibleTwoTone.tsx create mode 100644 src/IconAccountBalanceOutlined.tsx create mode 100644 src/IconAccountBalanceRound.tsx create mode 100644 src/IconAccountBalanceSharp.tsx create mode 100644 src/IconAccountBalanceTwoTone.tsx create mode 100644 src/IconAccountBalanceWalletOutlined.tsx create mode 100644 src/IconAccountBalanceWalletRound.tsx create mode 100644 src/IconAccountBalanceWalletSharp.tsx create mode 100644 src/IconAccountBalanceWalletTwoTone.tsx create mode 100644 src/IconAccountBoxOutlined.tsx create mode 100644 src/IconAccountBoxRound.tsx create mode 100644 src/IconAccountBoxSharp.tsx create mode 100644 src/IconAccountBoxTwoTone.tsx create mode 100644 src/IconAccountCircleOutlined.tsx create mode 100644 src/IconAccountCircleRound.tsx create mode 100644 src/IconAccountCircleSharp.tsx create mode 100644 src/IconAccountCircleTwoTone.tsx create mode 100644 src/IconAccountTreeOutlined.tsx create mode 100644 src/IconAccountTreeRound.tsx create mode 100644 src/IconAccountTreeSharp.tsx create mode 100644 src/IconAccountTreeTwoTone.tsx create mode 100644 src/IconAdUnitsOutlined.tsx create mode 100644 src/IconAdUnitsRound.tsx create mode 100644 src/IconAdUnitsSharp.tsx create mode 100644 src/IconAdUnitsTwoTone.tsx create mode 100644 src/IconAdbOutlined.tsx create mode 100644 src/IconAdbRound.tsx create mode 100644 src/IconAdbSharp.tsx create mode 100644 src/IconAdbTwoTone.tsx create mode 100644 src/IconAddAPhotoOutlined.tsx create mode 100644 src/IconAddAPhotoRound.tsx create mode 100644 src/IconAddAPhotoSharp.tsx create mode 100644 src/IconAddAPhotoTwoTone.tsx create mode 100644 src/IconAddAlarmOutlined.tsx create mode 100644 src/IconAddAlarmRound.tsx create mode 100644 src/IconAddAlarmSharp.tsx create mode 100644 src/IconAddAlarmTwoTone.tsx create mode 100644 src/IconAddAlertOutlined.tsx create mode 100644 src/IconAddAlertRound.tsx create mode 100644 src/IconAddAlertSharp.tsx create mode 100644 src/IconAddAlertTwoTone.tsx create mode 100644 src/IconAddBoxOutlined.tsx create mode 100644 src/IconAddBoxRound.tsx create mode 100644 src/IconAddBoxSharp.tsx create mode 100644 src/IconAddBoxTwoTone.tsx create mode 100644 src/IconAddBusinessOutlined.tsx create mode 100644 src/IconAddBusinessRound.tsx create mode 100644 src/IconAddBusinessSharp.tsx create mode 100644 src/IconAddBusinessTwoTone.tsx create mode 100644 src/IconAddCardOutlined.tsx create mode 100644 src/IconAddCardRound.tsx create mode 100644 src/IconAddCardSharp.tsx create mode 100644 src/IconAddCardTwoTone.tsx create mode 100644 src/IconAddChartOutlined.tsx create mode 100644 src/IconAddChartRound.tsx create mode 100644 src/IconAddChartSharp.tsx create mode 100644 src/IconAddChartTwoTone.tsx create mode 100644 src/IconAddCircleOutlineOutlined.tsx create mode 100644 src/IconAddCircleOutlineRound.tsx create mode 100644 src/IconAddCircleOutlineSharp.tsx create mode 100644 src/IconAddCircleOutlineTwoTone.tsx create mode 100644 src/IconAddCircleOutlined.tsx create mode 100644 src/IconAddCircleRound.tsx create mode 100644 src/IconAddCircleSharp.tsx create mode 100644 src/IconAddCircleTwoTone.tsx create mode 100644 src/IconAddCommentOutlined.tsx create mode 100644 src/IconAddCommentRound.tsx create mode 100644 src/IconAddCommentSharp.tsx create mode 100644 src/IconAddCommentTwoTone.tsx create mode 100644 src/IconAddHomeOutlined.tsx create mode 100644 src/IconAddHomeRound.tsx create mode 100644 src/IconAddHomeSharp.tsx create mode 100644 src/IconAddHomeTwoTone.tsx create mode 100644 src/IconAddHomeWorkOutlined.tsx create mode 100644 src/IconAddHomeWorkRound.tsx create mode 100644 src/IconAddHomeWorkSharp.tsx create mode 100644 src/IconAddHomeWorkTwoTone.tsx create mode 100644 src/IconAddIcCallOutlined.tsx create mode 100644 src/IconAddIcCallRound.tsx create mode 100644 src/IconAddIcCallSharp.tsx create mode 100644 src/IconAddIcCallTwoTone.tsx create mode 100644 src/IconAddLinkOutlined.tsx create mode 100644 src/IconAddLinkRound.tsx create mode 100644 src/IconAddLinkSharp.tsx create mode 100644 src/IconAddLinkTwoTone.tsx create mode 100644 src/IconAddLocationAltOutlined.tsx create mode 100644 src/IconAddLocationAltRound.tsx create mode 100644 src/IconAddLocationAltSharp.tsx create mode 100644 src/IconAddLocationAltTwoTone.tsx create mode 100644 src/IconAddLocationOutlined.tsx create mode 100644 src/IconAddLocationRound.tsx create mode 100644 src/IconAddLocationSharp.tsx create mode 100644 src/IconAddLocationTwoTone.tsx create mode 100644 src/IconAddModeratorOutlined.tsx create mode 100644 src/IconAddModeratorRound.tsx create mode 100644 src/IconAddModeratorSharp.tsx create mode 100644 src/IconAddModeratorTwoTone.tsx create mode 100644 src/IconAddOutlined.tsx create mode 100644 src/IconAddPhotoAlternateOutlined.tsx create mode 100644 src/IconAddPhotoAlternateRound.tsx create mode 100644 src/IconAddPhotoAlternateSharp.tsx create mode 100644 src/IconAddPhotoAlternateTwoTone.tsx create mode 100644 src/IconAddReactionOutlined.tsx create mode 100644 src/IconAddReactionRound.tsx create mode 100644 src/IconAddReactionSharp.tsx create mode 100644 src/IconAddReactionTwoTone.tsx create mode 100644 src/IconAddRoadOutlined.tsx create mode 100644 src/IconAddRoadRound.tsx create mode 100644 src/IconAddRoadSharp.tsx create mode 100644 src/IconAddRoadTwoTone.tsx create mode 100644 src/IconAddRound.tsx create mode 100644 src/IconAddSharp.tsx create mode 100644 src/IconAddShoppingCartOutlined.tsx create mode 100644 src/IconAddShoppingCartRound.tsx create mode 100644 src/IconAddShoppingCartSharp.tsx create mode 100644 src/IconAddShoppingCartTwoTone.tsx create mode 100644 src/IconAddTaskOutlined.tsx create mode 100644 src/IconAddTaskRound.tsx create mode 100644 src/IconAddTaskSharp.tsx create mode 100644 src/IconAddTaskTwoTone.tsx create mode 100644 src/IconAddToDriveOutlined.tsx create mode 100644 src/IconAddToDriveRound.tsx create mode 100644 src/IconAddToDriveSharp.tsx create mode 100644 src/IconAddToDriveTwoTone.tsx create mode 100644 src/IconAddToHomeScreenOutlined.tsx create mode 100644 src/IconAddToHomeScreenRound.tsx create mode 100644 src/IconAddToHomeScreenSharp.tsx create mode 100644 src/IconAddToHomeScreenTwoTone.tsx create mode 100644 src/IconAddToPhotosOutlined.tsx create mode 100644 src/IconAddToPhotosRound.tsx create mode 100644 src/IconAddToPhotosSharp.tsx create mode 100644 src/IconAddToPhotosTwoTone.tsx create mode 100644 src/IconAddToQueueOutlined.tsx create mode 100644 src/IconAddToQueueRound.tsx create mode 100644 src/IconAddToQueueSharp.tsx create mode 100644 src/IconAddToQueueTwoTone.tsx create mode 100644 src/IconAddTwoTone.tsx create mode 100644 src/IconAdfScannerOutlined.tsx create mode 100644 src/IconAdfScannerRound.tsx create mode 100644 src/IconAdfScannerSharp.tsx create mode 100644 src/IconAdfScannerTwoTone.tsx create mode 100644 src/IconAdjustOutlined.tsx create mode 100644 src/IconAdjustRound.tsx create mode 100644 src/IconAdjustSharp.tsx create mode 100644 src/IconAdjustTwoTone.tsx create mode 100644 src/IconAdminPanelSettingsOutlined.tsx create mode 100644 src/IconAdminPanelSettingsRound.tsx create mode 100644 src/IconAdminPanelSettingsSharp.tsx create mode 100644 src/IconAdminPanelSettingsTwoTone.tsx create mode 100644 src/IconAdsClickOutlined.tsx create mode 100644 src/IconAdsClickRound.tsx create mode 100644 src/IconAdsClickSharp.tsx create mode 100644 src/IconAdsClickTwoTone.tsx create mode 100644 src/IconAgricultureOutlined.tsx create mode 100644 src/IconAgricultureRound.tsx create mode 100644 src/IconAgricultureSharp.tsx create mode 100644 src/IconAgricultureTwoTone.tsx create mode 100644 src/IconAirOutlined.tsx create mode 100644 src/IconAirRound.tsx create mode 100644 src/IconAirSharp.tsx create mode 100644 src/IconAirTwoTone.tsx create mode 100644 src/IconAirlineSeatFlatAngledOutlined.tsx create mode 100644 src/IconAirlineSeatFlatAngledRound.tsx create mode 100644 src/IconAirlineSeatFlatAngledSharp.tsx create mode 100644 src/IconAirlineSeatFlatAngledTwoTone.tsx create mode 100644 src/IconAirlineSeatFlatOutlined.tsx create mode 100644 src/IconAirlineSeatFlatRound.tsx create mode 100644 src/IconAirlineSeatFlatSharp.tsx create mode 100644 src/IconAirlineSeatFlatTwoTone.tsx create mode 100644 src/IconAirlineSeatIndividualSuiteOutlined.tsx create mode 100644 src/IconAirlineSeatIndividualSuiteRound.tsx create mode 100644 src/IconAirlineSeatIndividualSuiteSharp.tsx create mode 100644 src/IconAirlineSeatIndividualSuiteTwoTone.tsx create mode 100644 src/IconAirlineSeatLegroomExtraOutlined.tsx create mode 100644 src/IconAirlineSeatLegroomExtraRound.tsx create mode 100644 src/IconAirlineSeatLegroomExtraSharp.tsx create mode 100644 src/IconAirlineSeatLegroomExtraTwoTone.tsx create mode 100644 src/IconAirlineSeatLegroomNormalOutlined.tsx create mode 100644 src/IconAirlineSeatLegroomNormalRound.tsx create mode 100644 src/IconAirlineSeatLegroomNormalSharp.tsx create mode 100644 src/IconAirlineSeatLegroomNormalTwoTone.tsx create mode 100644 src/IconAirlineSeatLegroomReducedOutlined.tsx create mode 100644 src/IconAirlineSeatLegroomReducedRound.tsx create mode 100644 src/IconAirlineSeatLegroomReducedSharp.tsx create mode 100644 src/IconAirlineSeatLegroomReducedTwoTone.tsx create mode 100644 src/IconAirlineSeatReclineExtraOutlined.tsx create mode 100644 src/IconAirlineSeatReclineExtraRound.tsx create mode 100644 src/IconAirlineSeatReclineExtraSharp.tsx create mode 100644 src/IconAirlineSeatReclineExtraTwoTone.tsx create mode 100644 src/IconAirlineSeatReclineNormalOutlined.tsx create mode 100644 src/IconAirlineSeatReclineNormalRound.tsx create mode 100644 src/IconAirlineSeatReclineNormalSharp.tsx create mode 100644 src/IconAirlineSeatReclineNormalTwoTone.tsx create mode 100644 src/IconAirlineStopsOutlined.tsx create mode 100644 src/IconAirlineStopsRound.tsx create mode 100644 src/IconAirlineStopsSharp.tsx create mode 100644 src/IconAirlineStopsTwoTone.tsx create mode 100644 src/IconAirlinesOutlined.tsx create mode 100644 src/IconAirlinesRound.tsx create mode 100644 src/IconAirlinesSharp.tsx create mode 100644 src/IconAirlinesTwoTone.tsx create mode 100644 src/IconAirplaneTicketOutlined.tsx create mode 100644 src/IconAirplaneTicketRound.tsx create mode 100644 src/IconAirplaneTicketSharp.tsx create mode 100644 src/IconAirplaneTicketTwoTone.tsx create mode 100644 src/IconAirplanemodeActiveOutlined.tsx create mode 100644 src/IconAirplanemodeActiveRound.tsx create mode 100644 src/IconAirplanemodeActiveSharp.tsx create mode 100644 src/IconAirplanemodeActiveTwoTone.tsx create mode 100644 src/IconAirplanemodeInactiveOutlined.tsx create mode 100644 src/IconAirplanemodeInactiveRound.tsx create mode 100644 src/IconAirplanemodeInactiveSharp.tsx create mode 100644 src/IconAirplanemodeInactiveTwoTone.tsx create mode 100644 src/IconAirplayOutlined.tsx create mode 100644 src/IconAirplayRound.tsx create mode 100644 src/IconAirplaySharp.tsx create mode 100644 src/IconAirplayTwoTone.tsx create mode 100644 src/IconAirportShuttleOutlined.tsx create mode 100644 src/IconAirportShuttleRound.tsx create mode 100644 src/IconAirportShuttleSharp.tsx create mode 100644 src/IconAirportShuttleTwoTone.tsx create mode 100644 src/IconAlarmAddOutlined.tsx create mode 100644 src/IconAlarmAddRound.tsx create mode 100644 src/IconAlarmAddSharp.tsx create mode 100644 src/IconAlarmAddTwoTone.tsx create mode 100644 src/IconAlarmOffOutlined.tsx create mode 100644 src/IconAlarmOffRound.tsx create mode 100644 src/IconAlarmOffSharp.tsx create mode 100644 src/IconAlarmOffTwoTone.tsx create mode 100644 src/IconAlarmOnOutlined.tsx create mode 100644 src/IconAlarmOnRound.tsx create mode 100644 src/IconAlarmOnSharp.tsx create mode 100644 src/IconAlarmOnTwoTone.tsx create mode 100644 src/IconAlarmOutlined.tsx create mode 100644 src/IconAlarmRound.tsx create mode 100644 src/IconAlarmSharp.tsx create mode 100644 src/IconAlarmTwoTone.tsx create mode 100644 src/IconAlbumOutlined.tsx create mode 100644 src/IconAlbumRound.tsx create mode 100644 src/IconAlbumSharp.tsx create mode 100644 src/IconAlbumTwoTone.tsx create mode 100644 src/IconAlignHorizontalCenterOutlined.tsx create mode 100644 src/IconAlignHorizontalCenterRound.tsx create mode 100644 src/IconAlignHorizontalCenterSharp.tsx create mode 100644 src/IconAlignHorizontalCenterTwoTone.tsx create mode 100644 src/IconAlignHorizontalLeftOutlined.tsx create mode 100644 src/IconAlignHorizontalLeftRound.tsx create mode 100644 src/IconAlignHorizontalLeftSharp.tsx create mode 100644 src/IconAlignHorizontalLeftTwoTone.tsx create mode 100644 src/IconAlignHorizontalRightOutlined.tsx create mode 100644 src/IconAlignHorizontalRightRound.tsx create mode 100644 src/IconAlignHorizontalRightSharp.tsx create mode 100644 src/IconAlignHorizontalRightTwoTone.tsx create mode 100644 src/IconAlignVerticalBottomOutlined.tsx create mode 100644 src/IconAlignVerticalBottomRound.tsx create mode 100644 src/IconAlignVerticalBottomSharp.tsx create mode 100644 src/IconAlignVerticalBottomTwoTone.tsx create mode 100644 src/IconAlignVerticalCenterOutlined.tsx create mode 100644 src/IconAlignVerticalCenterRound.tsx create mode 100644 src/IconAlignVerticalCenterSharp.tsx create mode 100644 src/IconAlignVerticalCenterTwoTone.tsx create mode 100644 src/IconAlignVerticalTopOutlined.tsx create mode 100644 src/IconAlignVerticalTopRound.tsx create mode 100644 src/IconAlignVerticalTopSharp.tsx create mode 100644 src/IconAlignVerticalTopTwoTone.tsx create mode 100644 src/IconAllInboxOutlined.tsx create mode 100644 src/IconAllInboxRound.tsx create mode 100644 src/IconAllInboxSharp.tsx create mode 100644 src/IconAllInboxTwoTone.tsx create mode 100644 src/IconAllInclusiveOutlined.tsx create mode 100644 src/IconAllInclusiveRound.tsx create mode 100644 src/IconAllInclusiveSharp.tsx create mode 100644 src/IconAllInclusiveTwoTone.tsx create mode 100644 src/IconAllOutOutlined.tsx create mode 100644 src/IconAllOutRound.tsx create mode 100644 src/IconAllOutSharp.tsx create mode 100644 src/IconAllOutTwoTone.tsx create mode 100644 src/IconAltRouteOutlined.tsx create mode 100644 src/IconAltRouteRound.tsx create mode 100644 src/IconAltRouteSharp.tsx create mode 100644 src/IconAltRouteTwoTone.tsx create mode 100644 src/IconAlternateEmailOutlined.tsx create mode 100644 src/IconAlternateEmailRound.tsx create mode 100644 src/IconAlternateEmailSharp.tsx create mode 100644 src/IconAlternateEmailTwoTone.tsx create mode 100644 src/IconAnalyticsOutlined.tsx create mode 100644 src/IconAnalyticsRound.tsx create mode 100644 src/IconAnalyticsSharp.tsx create mode 100644 src/IconAnalyticsTwoTone.tsx create mode 100644 src/IconAnchorOutlined.tsx create mode 100644 src/IconAnchorRound.tsx create mode 100644 src/IconAnchorSharp.tsx create mode 100644 src/IconAnchorTwoTone.tsx create mode 100644 src/IconAndroidOutlined.tsx create mode 100644 src/IconAndroidRound.tsx create mode 100644 src/IconAndroidSharp.tsx create mode 100644 src/IconAndroidTwoTone.tsx create mode 100644 src/IconAnimationOutlined.tsx create mode 100644 src/IconAnimationRound.tsx create mode 100644 src/IconAnimationSharp.tsx create mode 100644 src/IconAnimationTwoTone.tsx create mode 100644 src/IconAnnouncementOutlined.tsx create mode 100644 src/IconAnnouncementRound.tsx create mode 100644 src/IconAnnouncementSharp.tsx create mode 100644 src/IconAnnouncementTwoTone.tsx create mode 100644 src/IconAodOutlined.tsx create mode 100644 src/IconAodRound.tsx create mode 100644 src/IconAodSharp.tsx create mode 100644 src/IconAodTwoTone.tsx create mode 100644 src/IconApartmentOutlined.tsx create mode 100644 src/IconApartmentRound.tsx create mode 100644 src/IconApartmentSharp.tsx create mode 100644 src/IconApartmentTwoTone.tsx create mode 100644 src/IconApiOutlined.tsx create mode 100644 src/IconApiRound.tsx create mode 100644 src/IconApiSharp.tsx create mode 100644 src/IconApiTwoTone.tsx create mode 100644 src/IconAppBlockingOutlined.tsx create mode 100644 src/IconAppBlockingRound.tsx create mode 100644 src/IconAppBlockingSharp.tsx create mode 100644 src/IconAppBlockingTwoTone.tsx create mode 100644 src/IconAppRegistrationOutlined.tsx create mode 100644 src/IconAppRegistrationRound.tsx create mode 100644 src/IconAppRegistrationSharp.tsx create mode 100644 src/IconAppRegistrationTwoTone.tsx create mode 100644 src/IconAppSettingsAltOutlined.tsx create mode 100644 src/IconAppSettingsAltRound.tsx create mode 100644 src/IconAppSettingsAltSharp.tsx create mode 100644 src/IconAppSettingsAltTwoTone.tsx create mode 100644 src/IconAppShortcutOutlined.tsx create mode 100644 src/IconAppShortcutRound.tsx create mode 100644 src/IconAppShortcutSharp.tsx create mode 100644 src/IconAppShortcutTwoTone.tsx create mode 100644 src/IconApprovalOutlined.tsx create mode 100644 src/IconApprovalRound.tsx create mode 100644 src/IconApprovalSharp.tsx create mode 100644 src/IconApprovalTwoTone.tsx create mode 100644 src/IconAppsOutageOutlined.tsx create mode 100644 src/IconAppsOutageRound.tsx create mode 100644 src/IconAppsOutageSharp.tsx create mode 100644 src/IconAppsOutageTwoTone.tsx create mode 100644 src/IconAppsOutlined.tsx create mode 100644 src/IconAppsRound.tsx create mode 100644 src/IconAppsSharp.tsx create mode 100644 src/IconAppsTwoTone.tsx create mode 100644 src/IconArchitectureOutlined.tsx create mode 100644 src/IconArchitectureRound.tsx create mode 100644 src/IconArchitectureSharp.tsx create mode 100644 src/IconArchitectureTwoTone.tsx create mode 100644 src/IconArchiveOutlined.tsx create mode 100644 src/IconArchiveRound.tsx create mode 100644 src/IconArchiveSharp.tsx create mode 100644 src/IconArchiveTwoTone.tsx create mode 100644 src/IconAreaChartOutlined.tsx create mode 100644 src/IconAreaChartRound.tsx create mode 100644 src/IconAreaChartSharp.tsx create mode 100644 src/IconAreaChartTwoTone.tsx create mode 100644 src/IconArrowBackIosNewOutlined.tsx create mode 100644 src/IconArrowBackIosNewRound.tsx create mode 100644 src/IconArrowBackIosNewSharp.tsx create mode 100644 src/IconArrowBackIosNewTwoTone.tsx create mode 100644 src/IconArrowBackIosOutlined.tsx create mode 100644 src/IconArrowBackIosRound.tsx create mode 100644 src/IconArrowBackIosSharp.tsx create mode 100644 src/IconArrowBackIosTwoTone.tsx create mode 100644 src/IconArrowBackOutlined.tsx create mode 100644 src/IconArrowBackRound.tsx create mode 100644 src/IconArrowBackSharp.tsx create mode 100644 src/IconArrowBackTwoTone.tsx create mode 100644 src/IconArrowCircleDownOutlined.tsx create mode 100644 src/IconArrowCircleDownRound.tsx create mode 100644 src/IconArrowCircleDownSharp.tsx create mode 100644 src/IconArrowCircleDownTwoTone.tsx create mode 100644 src/IconArrowCircleLeftOutlined.tsx create mode 100644 src/IconArrowCircleLeftRound.tsx create mode 100644 src/IconArrowCircleLeftSharp.tsx create mode 100644 src/IconArrowCircleLeftTwoTone.tsx create mode 100644 src/IconArrowCircleRightOutlined.tsx create mode 100644 src/IconArrowCircleRightRound.tsx create mode 100644 src/IconArrowCircleRightSharp.tsx create mode 100644 src/IconArrowCircleRightTwoTone.tsx create mode 100644 src/IconArrowCircleUpOutlined.tsx create mode 100644 src/IconArrowCircleUpRound.tsx create mode 100644 src/IconArrowCircleUpSharp.tsx create mode 100644 src/IconArrowCircleUpTwoTone.tsx create mode 100644 src/IconArrowDownwardOutlined.tsx create mode 100644 src/IconArrowDownwardRound.tsx create mode 100644 src/IconArrowDownwardSharp.tsx create mode 100644 src/IconArrowDownwardTwoTone.tsx create mode 100644 src/IconArrowDropDownCircleOutlined.tsx create mode 100644 src/IconArrowDropDownCircleRound.tsx create mode 100644 src/IconArrowDropDownCircleSharp.tsx create mode 100644 src/IconArrowDropDownCircleTwoTone.tsx create mode 100644 src/IconArrowDropDownOutlined.tsx create mode 100644 src/IconArrowDropDownRound.tsx create mode 100644 src/IconArrowDropDownSharp.tsx create mode 100644 src/IconArrowDropDownTwoTone.tsx create mode 100644 src/IconArrowDropUpOutlined.tsx create mode 100644 src/IconArrowDropUpRound.tsx create mode 100644 src/IconArrowDropUpSharp.tsx create mode 100644 src/IconArrowDropUpTwoTone.tsx create mode 100644 src/IconArrowForwardIosOutlined.tsx create mode 100644 src/IconArrowForwardIosRound.tsx create mode 100644 src/IconArrowForwardIosSharp.tsx create mode 100644 src/IconArrowForwardIosTwoTone.tsx create mode 100644 src/IconArrowForwardOutlined.tsx create mode 100644 src/IconArrowForwardRound.tsx create mode 100644 src/IconArrowForwardSharp.tsx create mode 100644 src/IconArrowForwardTwoTone.tsx create mode 100644 src/IconArrowLeftOutlined.tsx create mode 100644 src/IconArrowLeftRound.tsx create mode 100644 src/IconArrowLeftSharp.tsx create mode 100644 src/IconArrowLeftTwoTone.tsx create mode 100644 src/IconArrowOutwardOutlined.tsx create mode 100644 src/IconArrowOutwardRound.tsx create mode 100644 src/IconArrowOutwardSharp.tsx create mode 100644 src/IconArrowOutwardTwoTone.tsx create mode 100644 src/IconArrowRightAltOutlined.tsx create mode 100644 src/IconArrowRightAltRound.tsx create mode 100644 src/IconArrowRightAltSharp.tsx create mode 100644 src/IconArrowRightAltTwoTone.tsx create mode 100644 src/IconArrowRightOutlined.tsx create mode 100644 src/IconArrowRightRound.tsx create mode 100644 src/IconArrowRightSharp.tsx create mode 100644 src/IconArrowRightTwoTone.tsx create mode 100644 src/IconArrowUpwardOutlined.tsx create mode 100644 src/IconArrowUpwardRound.tsx create mode 100644 src/IconArrowUpwardSharp.tsx create mode 100644 src/IconArrowUpwardTwoTone.tsx create mode 100644 src/IconArtTrackOutlined.tsx create mode 100644 src/IconArtTrackRound.tsx create mode 100644 src/IconArtTrackSharp.tsx create mode 100644 src/IconArtTrackTwoTone.tsx create mode 100644 src/IconArticleOutlined.tsx create mode 100644 src/IconArticleRound.tsx create mode 100644 src/IconArticleSharp.tsx create mode 100644 src/IconArticleTwoTone.tsx create mode 100644 src/IconAspectRatioOutlined.tsx create mode 100644 src/IconAspectRatioRound.tsx create mode 100644 src/IconAspectRatioSharp.tsx create mode 100644 src/IconAspectRatioTwoTone.tsx create mode 100644 src/IconAssessmentOutlined.tsx create mode 100644 src/IconAssessmentRound.tsx create mode 100644 src/IconAssessmentSharp.tsx create mode 100644 src/IconAssessmentTwoTone.tsx create mode 100644 src/IconAssignmentIndOutlined.tsx create mode 100644 src/IconAssignmentIndRound.tsx create mode 100644 src/IconAssignmentIndSharp.tsx create mode 100644 src/IconAssignmentIndTwoTone.tsx create mode 100644 src/IconAssignmentLateOutlined.tsx create mode 100644 src/IconAssignmentLateRound.tsx create mode 100644 src/IconAssignmentLateSharp.tsx create mode 100644 src/IconAssignmentLateTwoTone.tsx create mode 100644 src/IconAssignmentOutlined.tsx create mode 100644 src/IconAssignmentReturnOutlined.tsx create mode 100644 src/IconAssignmentReturnRound.tsx create mode 100644 src/IconAssignmentReturnSharp.tsx create mode 100644 src/IconAssignmentReturnTwoTone.tsx create mode 100644 src/IconAssignmentReturnedOutlined.tsx create mode 100644 src/IconAssignmentReturnedRound.tsx create mode 100644 src/IconAssignmentReturnedSharp.tsx create mode 100644 src/IconAssignmentReturnedTwoTone.tsx create mode 100644 src/IconAssignmentRound.tsx create mode 100644 src/IconAssignmentSharp.tsx create mode 100644 src/IconAssignmentTurnedInOutlined.tsx create mode 100644 src/IconAssignmentTurnedInRound.tsx create mode 100644 src/IconAssignmentTurnedInSharp.tsx create mode 100644 src/IconAssignmentTurnedInTwoTone.tsx create mode 100644 src/IconAssignmentTwoTone.tsx create mode 100644 src/IconAssistWalkerOutlined.tsx create mode 100644 src/IconAssistWalkerRound.tsx create mode 100644 src/IconAssistWalkerSharp.tsx create mode 100644 src/IconAssistWalkerTwoTone.tsx create mode 100644 src/IconAssistantDirectionOutlined.tsx create mode 100644 src/IconAssistantDirectionRound.tsx create mode 100644 src/IconAssistantDirectionSharp.tsx create mode 100644 src/IconAssistantDirectionTwoTone.tsx create mode 100644 src/IconAssistantOutlined.tsx create mode 100644 src/IconAssistantPhotoOutlined.tsx create mode 100644 src/IconAssistantPhotoRound.tsx create mode 100644 src/IconAssistantPhotoSharp.tsx create mode 100644 src/IconAssistantPhotoTwoTone.tsx create mode 100644 src/IconAssistantRound.tsx create mode 100644 src/IconAssistantSharp.tsx create mode 100644 src/IconAssistantTwoTone.tsx create mode 100644 src/IconAssuredWorkloadOutlined.tsx create mode 100644 src/IconAssuredWorkloadRound.tsx create mode 100644 src/IconAssuredWorkloadSharp.tsx create mode 100644 src/IconAssuredWorkloadTwoTone.tsx create mode 100644 src/IconAtmOutlined.tsx create mode 100644 src/IconAtmRound.tsx create mode 100644 src/IconAtmSharp.tsx create mode 100644 src/IconAtmTwoTone.tsx create mode 100644 src/IconAttachEmailOutlined.tsx create mode 100644 src/IconAttachEmailRound.tsx create mode 100644 src/IconAttachEmailSharp.tsx create mode 100644 src/IconAttachEmailTwoTone.tsx create mode 100644 src/IconAttachFileOutlined.tsx create mode 100644 src/IconAttachFileRound.tsx create mode 100644 src/IconAttachFileSharp.tsx create mode 100644 src/IconAttachFileTwoTone.tsx create mode 100644 src/IconAttachMoneyOutlined.tsx create mode 100644 src/IconAttachMoneyRound.tsx create mode 100644 src/IconAttachMoneySharp.tsx create mode 100644 src/IconAttachMoneyTwoTone.tsx create mode 100644 src/IconAttachmentOutlined.tsx create mode 100644 src/IconAttachmentRound.tsx create mode 100644 src/IconAttachmentSharp.tsx create mode 100644 src/IconAttachmentTwoTone.tsx create mode 100644 src/IconAttractionsOutlined.tsx create mode 100644 src/IconAttractionsRound.tsx create mode 100644 src/IconAttractionsSharp.tsx create mode 100644 src/IconAttractionsTwoTone.tsx create mode 100644 src/IconAttributionOutlined.tsx create mode 100644 src/IconAttributionRound.tsx create mode 100644 src/IconAttributionSharp.tsx create mode 100644 src/IconAttributionTwoTone.tsx create mode 100644 src/IconAudioFileOutlined.tsx create mode 100644 src/IconAudioFileRound.tsx create mode 100644 src/IconAudioFileSharp.tsx create mode 100644 src/IconAudioFileTwoTone.tsx create mode 100644 src/IconAudiotrackOutlined.tsx create mode 100644 src/IconAudiotrackRound.tsx create mode 100644 src/IconAudiotrackSharp.tsx create mode 100644 src/IconAudiotrackTwoTone.tsx create mode 100644 src/IconAutoAwesomeMosaicOutlined.tsx create mode 100644 src/IconAutoAwesomeMosaicRound.tsx create mode 100644 src/IconAutoAwesomeMosaicSharp.tsx create mode 100644 src/IconAutoAwesomeMosaicTwoTone.tsx create mode 100644 src/IconAutoAwesomeMotionOutlined.tsx create mode 100644 src/IconAutoAwesomeMotionRound.tsx create mode 100644 src/IconAutoAwesomeMotionSharp.tsx create mode 100644 src/IconAutoAwesomeMotionTwoTone.tsx create mode 100644 src/IconAutoAwesomeOutlined.tsx create mode 100644 src/IconAutoAwesomeRound.tsx create mode 100644 src/IconAutoAwesomeSharp.tsx create mode 100644 src/IconAutoAwesomeTwoTone.tsx create mode 100644 src/IconAutoDeleteOutlined.tsx create mode 100644 src/IconAutoDeleteRound.tsx create mode 100644 src/IconAutoDeleteSharp.tsx create mode 100644 src/IconAutoDeleteTwoTone.tsx create mode 100644 src/IconAutoFixHighOutlined.tsx create mode 100644 src/IconAutoFixHighRound.tsx create mode 100644 src/IconAutoFixHighSharp.tsx create mode 100644 src/IconAutoFixHighTwoTone.tsx create mode 100644 src/IconAutoFixNormalOutlined.tsx create mode 100644 src/IconAutoFixNormalRound.tsx create mode 100644 src/IconAutoFixNormalSharp.tsx create mode 100644 src/IconAutoFixNormalTwoTone.tsx create mode 100644 src/IconAutoFixOffOutlined.tsx create mode 100644 src/IconAutoFixOffRound.tsx create mode 100644 src/IconAutoFixOffSharp.tsx create mode 100644 src/IconAutoFixOffTwoTone.tsx create mode 100644 src/IconAutoGraphOutlined.tsx create mode 100644 src/IconAutoGraphRound.tsx create mode 100644 src/IconAutoGraphSharp.tsx create mode 100644 src/IconAutoGraphTwoTone.tsx create mode 100644 src/IconAutoModeOutlined.tsx create mode 100644 src/IconAutoModeRound.tsx create mode 100644 src/IconAutoModeSharp.tsx create mode 100644 src/IconAutoModeTwoTone.tsx create mode 100644 src/IconAutoStoriesOutlined.tsx create mode 100644 src/IconAutoStoriesRound.tsx create mode 100644 src/IconAutoStoriesSharp.tsx create mode 100644 src/IconAutoStoriesTwoTone.tsx create mode 100644 src/IconAutofpsSelectOutlined.tsx create mode 100644 src/IconAutofpsSelectRound.tsx create mode 100644 src/IconAutofpsSelectSharp.tsx create mode 100644 src/IconAutofpsSelectTwoTone.tsx create mode 100644 src/IconAutorenewOutlined.tsx create mode 100644 src/IconAutorenewRound.tsx create mode 100644 src/IconAutorenewSharp.tsx create mode 100644 src/IconAutorenewTwoTone.tsx create mode 100644 src/IconAvTimerOutlined.tsx create mode 100644 src/IconAvTimerRound.tsx create mode 100644 src/IconAvTimerSharp.tsx create mode 100644 src/IconAvTimerTwoTone.tsx create mode 100644 src/IconBabyChangingStationOutlined.tsx create mode 100644 src/IconBabyChangingStationRound.tsx create mode 100644 src/IconBabyChangingStationSharp.tsx create mode 100644 src/IconBabyChangingStationTwoTone.tsx create mode 100644 src/IconBackHandOutlined.tsx create mode 100644 src/IconBackHandRound.tsx create mode 100644 src/IconBackHandSharp.tsx create mode 100644 src/IconBackHandTwoTone.tsx create mode 100644 src/IconBackpackOutlined.tsx create mode 100644 src/IconBackpackRound.tsx create mode 100644 src/IconBackpackSharp.tsx create mode 100644 src/IconBackpackTwoTone.tsx create mode 100644 src/IconBackspaceOutlined.tsx create mode 100644 src/IconBackspaceRound.tsx create mode 100644 src/IconBackspaceSharp.tsx create mode 100644 src/IconBackspaceTwoTone.tsx create mode 100644 src/IconBackupOutlined.tsx create mode 100644 src/IconBackupRound.tsx create mode 100644 src/IconBackupSharp.tsx create mode 100644 src/IconBackupTableOutlined.tsx create mode 100644 src/IconBackupTableRound.tsx create mode 100644 src/IconBackupTableSharp.tsx create mode 100644 src/IconBackupTableTwoTone.tsx create mode 100644 src/IconBackupTwoTone.tsx create mode 100644 src/IconBadgeOutlined.tsx create mode 100644 src/IconBadgeRound.tsx create mode 100644 src/IconBadgeSharp.tsx create mode 100644 src/IconBadgeTwoTone.tsx create mode 100644 src/IconBakeryDiningOutlined.tsx create mode 100644 src/IconBakeryDiningRound.tsx create mode 100644 src/IconBakeryDiningSharp.tsx create mode 100644 src/IconBakeryDiningTwoTone.tsx create mode 100644 src/IconBalanceOutlined.tsx create mode 100644 src/IconBalanceRound.tsx create mode 100644 src/IconBalanceSharp.tsx create mode 100644 src/IconBalanceTwoTone.tsx create mode 100644 src/IconBalconyOutlined.tsx create mode 100644 src/IconBalconyRound.tsx create mode 100644 src/IconBalconySharp.tsx create mode 100644 src/IconBalconyTwoTone.tsx create mode 100644 src/IconBallotOutlined.tsx create mode 100644 src/IconBallotRound.tsx create mode 100644 src/IconBallotSharp.tsx create mode 100644 src/IconBallotTwoTone.tsx create mode 100644 src/IconBarChartOutlined.tsx create mode 100644 src/IconBarChartRound.tsx create mode 100644 src/IconBarChartSharp.tsx create mode 100644 src/IconBarChartTwoTone.tsx create mode 100644 src/IconBatchPredictionOutlined.tsx create mode 100644 src/IconBatchPredictionRound.tsx create mode 100644 src/IconBatchPredictionSharp.tsx create mode 100644 src/IconBatchPredictionTwoTone.tsx create mode 100644 src/IconBathroomOutlined.tsx create mode 100644 src/IconBathroomRound.tsx create mode 100644 src/IconBathroomSharp.tsx create mode 100644 src/IconBathroomTwoTone.tsx create mode 100644 src/IconBathtubOutlined.tsx create mode 100644 src/IconBathtubRound.tsx create mode 100644 src/IconBathtubSharp.tsx create mode 100644 src/IconBathtubTwoTone.tsx create mode 100644 src/IconBattery0BarOutlined.tsx create mode 100644 src/IconBattery0BarRound.tsx create mode 100644 src/IconBattery0BarSharp.tsx create mode 100644 src/IconBattery0BarTwoTone.tsx create mode 100644 src/IconBattery1BarOutlined.tsx create mode 100644 src/IconBattery1BarRound.tsx create mode 100644 src/IconBattery1BarSharp.tsx create mode 100644 src/IconBattery1BarTwoTone.tsx create mode 100644 src/IconBattery2BarOutlined.tsx create mode 100644 src/IconBattery2BarRound.tsx create mode 100644 src/IconBattery2BarSharp.tsx create mode 100644 src/IconBattery2BarTwoTone.tsx create mode 100644 src/IconBattery3BarOutlined.tsx create mode 100644 src/IconBattery3BarRound.tsx create mode 100644 src/IconBattery3BarSharp.tsx create mode 100644 src/IconBattery3BarTwoTone.tsx create mode 100644 src/IconBattery4BarOutlined.tsx create mode 100644 src/IconBattery4BarRound.tsx create mode 100644 src/IconBattery4BarSharp.tsx create mode 100644 src/IconBattery4BarTwoTone.tsx create mode 100644 src/IconBattery5BarOutlined.tsx create mode 100644 src/IconBattery5BarRound.tsx create mode 100644 src/IconBattery5BarSharp.tsx create mode 100644 src/IconBattery5BarTwoTone.tsx create mode 100644 src/IconBattery6BarOutlined.tsx create mode 100644 src/IconBattery6BarRound.tsx create mode 100644 src/IconBattery6BarSharp.tsx create mode 100644 src/IconBattery6BarTwoTone.tsx create mode 100644 src/IconBatteryAlertOutlined.tsx create mode 100644 src/IconBatteryAlertRound.tsx create mode 100644 src/IconBatteryAlertSharp.tsx create mode 100644 src/IconBatteryAlertTwoTone.tsx create mode 100644 src/IconBatteryChargingFullOutlined.tsx create mode 100644 src/IconBatteryChargingFullRound.tsx create mode 100644 src/IconBatteryChargingFullSharp.tsx create mode 100644 src/IconBatteryChargingFullTwoTone.tsx create mode 100644 src/IconBatteryFullOutlined.tsx create mode 100644 src/IconBatteryFullRound.tsx create mode 100644 src/IconBatteryFullSharp.tsx create mode 100644 src/IconBatteryFullTwoTone.tsx create mode 100644 src/IconBatterySaverOutlined.tsx create mode 100644 src/IconBatterySaverRound.tsx create mode 100644 src/IconBatterySaverSharp.tsx create mode 100644 src/IconBatterySaverTwoTone.tsx create mode 100644 src/IconBatteryStdOutlined.tsx create mode 100644 src/IconBatteryStdRound.tsx create mode 100644 src/IconBatteryStdSharp.tsx create mode 100644 src/IconBatteryStdTwoTone.tsx create mode 100644 src/IconBatteryUnknownOutlined.tsx create mode 100644 src/IconBatteryUnknownRound.tsx create mode 100644 src/IconBatteryUnknownSharp.tsx create mode 100644 src/IconBatteryUnknownTwoTone.tsx create mode 100644 src/IconBeachAccessOutlined.tsx create mode 100644 src/IconBeachAccessRound.tsx create mode 100644 src/IconBeachAccessSharp.tsx create mode 100644 src/IconBeachAccessTwoTone.tsx create mode 100644 src/IconBedOutlined.tsx create mode 100644 src/IconBedRound.tsx create mode 100644 src/IconBedSharp.tsx create mode 100644 src/IconBedTwoTone.tsx create mode 100644 src/IconBedroomBabyOutlined.tsx create mode 100644 src/IconBedroomBabyRound.tsx create mode 100644 src/IconBedroomBabySharp.tsx create mode 100644 src/IconBedroomBabyTwoTone.tsx create mode 100644 src/IconBedroomChildOutlined.tsx create mode 100644 src/IconBedroomChildRound.tsx create mode 100644 src/IconBedroomChildSharp.tsx create mode 100644 src/IconBedroomChildTwoTone.tsx create mode 100644 src/IconBedroomParentOutlined.tsx create mode 100644 src/IconBedroomParentRound.tsx create mode 100644 src/IconBedroomParentSharp.tsx create mode 100644 src/IconBedroomParentTwoTone.tsx create mode 100644 src/IconBedtimeOffOutlined.tsx create mode 100644 src/IconBedtimeOffRound.tsx create mode 100644 src/IconBedtimeOffSharp.tsx create mode 100644 src/IconBedtimeOffTwoTone.tsx create mode 100644 src/IconBedtimeOutlined.tsx create mode 100644 src/IconBedtimeRound.tsx create mode 100644 src/IconBedtimeSharp.tsx create mode 100644 src/IconBedtimeTwoTone.tsx create mode 100644 src/IconBeenhereOutlined.tsx create mode 100644 src/IconBeenhereRound.tsx create mode 100644 src/IconBeenhereSharp.tsx create mode 100644 src/IconBeenhereTwoTone.tsx create mode 100644 src/IconBentoOutlined.tsx create mode 100644 src/IconBentoRound.tsx create mode 100644 src/IconBentoSharp.tsx create mode 100644 src/IconBentoTwoTone.tsx create mode 100644 src/IconBikeScooterOutlined.tsx create mode 100644 src/IconBikeScooterRound.tsx create mode 100644 src/IconBikeScooterSharp.tsx create mode 100644 src/IconBikeScooterTwoTone.tsx create mode 100644 src/IconBiotechOutlined.tsx create mode 100644 src/IconBiotechRound.tsx create mode 100644 src/IconBiotechSharp.tsx create mode 100644 src/IconBiotechTwoTone.tsx create mode 100644 src/IconBlenderOutlined.tsx create mode 100644 src/IconBlenderRound.tsx create mode 100644 src/IconBlenderSharp.tsx create mode 100644 src/IconBlenderTwoTone.tsx create mode 100644 src/IconBlindOutlined.tsx create mode 100644 src/IconBlindRound.tsx create mode 100644 src/IconBlindSharp.tsx create mode 100644 src/IconBlindTwoTone.tsx create mode 100644 src/IconBlindsClosedOutlined.tsx create mode 100644 src/IconBlindsClosedRound.tsx create mode 100644 src/IconBlindsClosedSharp.tsx create mode 100644 src/IconBlindsClosedTwoTone.tsx create mode 100644 src/IconBlindsOutlined.tsx create mode 100644 src/IconBlindsRound.tsx create mode 100644 src/IconBlindsSharp.tsx create mode 100644 src/IconBlindsTwoTone.tsx create mode 100644 src/IconBlockOutlined.tsx create mode 100644 src/IconBlockRound.tsx create mode 100644 src/IconBlockSharp.tsx create mode 100644 src/IconBlockTwoTone.tsx create mode 100644 src/IconBloodtypeOutlined.tsx create mode 100644 src/IconBloodtypeRound.tsx create mode 100644 src/IconBloodtypeSharp.tsx create mode 100644 src/IconBloodtypeTwoTone.tsx create mode 100644 src/IconBluetoothAudioOutlined.tsx create mode 100644 src/IconBluetoothAudioRound.tsx create mode 100644 src/IconBluetoothAudioSharp.tsx create mode 100644 src/IconBluetoothAudioTwoTone.tsx create mode 100644 src/IconBluetoothConnectedOutlined.tsx create mode 100644 src/IconBluetoothConnectedRound.tsx create mode 100644 src/IconBluetoothConnectedSharp.tsx create mode 100644 src/IconBluetoothConnectedTwoTone.tsx create mode 100644 src/IconBluetoothDisabledOutlined.tsx create mode 100644 src/IconBluetoothDisabledRound.tsx create mode 100644 src/IconBluetoothDisabledSharp.tsx create mode 100644 src/IconBluetoothDisabledTwoTone.tsx create mode 100644 src/IconBluetoothDriveOutlined.tsx create mode 100644 src/IconBluetoothDriveRound.tsx create mode 100644 src/IconBluetoothDriveSharp.tsx create mode 100644 src/IconBluetoothDriveTwoTone.tsx create mode 100644 src/IconBluetoothOutlined.tsx create mode 100644 src/IconBluetoothRound.tsx create mode 100644 src/IconBluetoothSearchingOutlined.tsx create mode 100644 src/IconBluetoothSearchingRound.tsx create mode 100644 src/IconBluetoothSearchingSharp.tsx create mode 100644 src/IconBluetoothSearchingTwoTone.tsx create mode 100644 src/IconBluetoothSharp.tsx create mode 100644 src/IconBluetoothTwoTone.tsx create mode 100644 src/IconBlurCircularOutlined.tsx create mode 100644 src/IconBlurCircularRound.tsx create mode 100644 src/IconBlurCircularSharp.tsx create mode 100644 src/IconBlurCircularTwoTone.tsx create mode 100644 src/IconBlurLinearOutlined.tsx create mode 100644 src/IconBlurLinearRound.tsx create mode 100644 src/IconBlurLinearSharp.tsx create mode 100644 src/IconBlurLinearTwoTone.tsx create mode 100644 src/IconBlurOffOutlined.tsx create mode 100644 src/IconBlurOffRound.tsx create mode 100644 src/IconBlurOffSharp.tsx create mode 100644 src/IconBlurOffTwoTone.tsx create mode 100644 src/IconBlurOnOutlined.tsx create mode 100644 src/IconBlurOnRound.tsx create mode 100644 src/IconBlurOnSharp.tsx create mode 100644 src/IconBlurOnTwoTone.tsx create mode 100644 src/IconBoltOutlined.tsx create mode 100644 src/IconBoltRound.tsx create mode 100644 src/IconBoltSharp.tsx create mode 100644 src/IconBoltTwoTone.tsx create mode 100644 src/IconBookOnlineOutlined.tsx create mode 100644 src/IconBookOnlineRound.tsx create mode 100644 src/IconBookOnlineSharp.tsx create mode 100644 src/IconBookOnlineTwoTone.tsx create mode 100644 src/IconBookOutlined.tsx create mode 100644 src/IconBookRound.tsx create mode 100644 src/IconBookSharp.tsx create mode 100644 src/IconBookTwoTone.tsx create mode 100644 src/IconBookmarkAddOutlined.tsx create mode 100644 src/IconBookmarkAddRound.tsx create mode 100644 src/IconBookmarkAddSharp.tsx create mode 100644 src/IconBookmarkAddTwoTone.tsx create mode 100644 src/IconBookmarkAddedOutlined.tsx create mode 100644 src/IconBookmarkAddedRound.tsx create mode 100644 src/IconBookmarkAddedSharp.tsx create mode 100644 src/IconBookmarkAddedTwoTone.tsx create mode 100644 src/IconBookmarkBorderOutlined.tsx create mode 100644 src/IconBookmarkBorderRound.tsx create mode 100644 src/IconBookmarkBorderSharp.tsx create mode 100644 src/IconBookmarkBorderTwoTone.tsx create mode 100644 src/IconBookmarkOutlined.tsx create mode 100644 src/IconBookmarkRemoveOutlined.tsx create mode 100644 src/IconBookmarkRemoveRound.tsx create mode 100644 src/IconBookmarkRemoveSharp.tsx create mode 100644 src/IconBookmarkRemoveTwoTone.tsx create mode 100644 src/IconBookmarkRound.tsx create mode 100644 src/IconBookmarkSharp.tsx create mode 100644 src/IconBookmarkTwoTone.tsx create mode 100644 src/IconBookmarksOutlined.tsx create mode 100644 src/IconBookmarksRound.tsx create mode 100644 src/IconBookmarksSharp.tsx create mode 100644 src/IconBookmarksTwoTone.tsx create mode 100644 src/IconBorderAllOutlined.tsx create mode 100644 src/IconBorderAllRound.tsx create mode 100644 src/IconBorderAllSharp.tsx create mode 100644 src/IconBorderAllTwoTone.tsx create mode 100644 src/IconBorderBottomOutlined.tsx create mode 100644 src/IconBorderBottomRound.tsx create mode 100644 src/IconBorderBottomSharp.tsx create mode 100644 src/IconBorderBottomTwoTone.tsx create mode 100644 src/IconBorderClearOutlined.tsx create mode 100644 src/IconBorderClearRound.tsx create mode 100644 src/IconBorderClearSharp.tsx create mode 100644 src/IconBorderClearTwoTone.tsx create mode 100644 src/IconBorderColorOutlined.tsx create mode 100644 src/IconBorderColorRound.tsx create mode 100644 src/IconBorderColorSharp.tsx create mode 100644 src/IconBorderColorTwoTone.tsx create mode 100644 src/IconBorderHorizontalOutlined.tsx create mode 100644 src/IconBorderHorizontalRound.tsx create mode 100644 src/IconBorderHorizontalSharp.tsx create mode 100644 src/IconBorderHorizontalTwoTone.tsx create mode 100644 src/IconBorderInnerOutlined.tsx create mode 100644 src/IconBorderInnerRound.tsx create mode 100644 src/IconBorderInnerSharp.tsx create mode 100644 src/IconBorderInnerTwoTone.tsx create mode 100644 src/IconBorderLeftOutlined.tsx create mode 100644 src/IconBorderLeftRound.tsx create mode 100644 src/IconBorderLeftSharp.tsx create mode 100644 src/IconBorderLeftTwoTone.tsx create mode 100644 src/IconBorderOuterOutlined.tsx create mode 100644 src/IconBorderOuterRound.tsx create mode 100644 src/IconBorderOuterSharp.tsx create mode 100644 src/IconBorderOuterTwoTone.tsx create mode 100644 src/IconBorderRightOutlined.tsx create mode 100644 src/IconBorderRightRound.tsx create mode 100644 src/IconBorderRightSharp.tsx create mode 100644 src/IconBorderRightTwoTone.tsx create mode 100644 src/IconBorderStyleOutlined.tsx create mode 100644 src/IconBorderStyleRound.tsx create mode 100644 src/IconBorderStyleSharp.tsx create mode 100644 src/IconBorderStyleTwoTone.tsx create mode 100644 src/IconBorderTopOutlined.tsx create mode 100644 src/IconBorderTopRound.tsx create mode 100644 src/IconBorderTopSharp.tsx create mode 100644 src/IconBorderTopTwoTone.tsx create mode 100644 src/IconBorderVerticalOutlined.tsx create mode 100644 src/IconBorderVerticalRound.tsx create mode 100644 src/IconBorderVerticalSharp.tsx create mode 100644 src/IconBorderVerticalTwoTone.tsx create mode 100644 src/IconBoyOutlined.tsx create mode 100644 src/IconBoyRound.tsx create mode 100644 src/IconBoySharp.tsx create mode 100644 src/IconBoyTwoTone.tsx create mode 100644 src/IconBrandingWatermarkOutlined.tsx create mode 100644 src/IconBrandingWatermarkRound.tsx create mode 100644 src/IconBrandingWatermarkSharp.tsx create mode 100644 src/IconBrandingWatermarkTwoTone.tsx create mode 100644 src/IconBreakfastDiningOutlined.tsx create mode 100644 src/IconBreakfastDiningRound.tsx create mode 100644 src/IconBreakfastDiningSharp.tsx create mode 100644 src/IconBreakfastDiningTwoTone.tsx create mode 100644 src/IconBrightness1Outlined.tsx create mode 100644 src/IconBrightness1Round.tsx create mode 100644 src/IconBrightness1Sharp.tsx create mode 100644 src/IconBrightness1TwoTone.tsx create mode 100644 src/IconBrightness2Outlined.tsx create mode 100644 src/IconBrightness2Round.tsx create mode 100644 src/IconBrightness2Sharp.tsx create mode 100644 src/IconBrightness2TwoTone.tsx create mode 100644 src/IconBrightness3Outlined.tsx create mode 100644 src/IconBrightness3Round.tsx create mode 100644 src/IconBrightness3Sharp.tsx create mode 100644 src/IconBrightness3TwoTone.tsx create mode 100644 src/IconBrightness4Outlined.tsx create mode 100644 src/IconBrightness4Round.tsx create mode 100644 src/IconBrightness4Sharp.tsx create mode 100644 src/IconBrightness4TwoTone.tsx create mode 100644 src/IconBrightness5Outlined.tsx create mode 100644 src/IconBrightness5Round.tsx create mode 100644 src/IconBrightness5Sharp.tsx create mode 100644 src/IconBrightness5TwoTone.tsx create mode 100644 src/IconBrightness6Outlined.tsx create mode 100644 src/IconBrightness6Round.tsx create mode 100644 src/IconBrightness6Sharp.tsx create mode 100644 src/IconBrightness6TwoTone.tsx create mode 100644 src/IconBrightness7Outlined.tsx create mode 100644 src/IconBrightness7Round.tsx create mode 100644 src/IconBrightness7Sharp.tsx create mode 100644 src/IconBrightness7TwoTone.tsx create mode 100644 src/IconBrightnessAutoOutlined.tsx create mode 100644 src/IconBrightnessAutoRound.tsx create mode 100644 src/IconBrightnessAutoSharp.tsx create mode 100644 src/IconBrightnessAutoTwoTone.tsx create mode 100644 src/IconBrightnessHighOutlined.tsx create mode 100644 src/IconBrightnessHighRound.tsx create mode 100644 src/IconBrightnessHighSharp.tsx create mode 100644 src/IconBrightnessHighTwoTone.tsx create mode 100644 src/IconBrightnessLowOutlined.tsx create mode 100644 src/IconBrightnessLowRound.tsx create mode 100644 src/IconBrightnessLowSharp.tsx create mode 100644 src/IconBrightnessLowTwoTone.tsx create mode 100644 src/IconBrightnessMediumOutlined.tsx create mode 100644 src/IconBrightnessMediumRound.tsx create mode 100644 src/IconBrightnessMediumSharp.tsx create mode 100644 src/IconBrightnessMediumTwoTone.tsx create mode 100644 src/IconBroadcastOnHomeOutlined.tsx create mode 100644 src/IconBroadcastOnHomeRound.tsx create mode 100644 src/IconBroadcastOnHomeSharp.tsx create mode 100644 src/IconBroadcastOnHomeTwoTone.tsx create mode 100644 src/IconBroadcastOnPersonalOutlined.tsx create mode 100644 src/IconBroadcastOnPersonalRound.tsx create mode 100644 src/IconBroadcastOnPersonalSharp.tsx create mode 100644 src/IconBroadcastOnPersonalTwoTone.tsx create mode 100644 src/IconBrokenImageOutlined.tsx create mode 100644 src/IconBrokenImageRound.tsx create mode 100644 src/IconBrokenImageSharp.tsx create mode 100644 src/IconBrokenImageTwoTone.tsx create mode 100644 src/IconBrowseGalleryOutlined.tsx create mode 100644 src/IconBrowseGalleryRound.tsx create mode 100644 src/IconBrowseGallerySharp.tsx create mode 100644 src/IconBrowseGalleryTwoTone.tsx create mode 100644 src/IconBrowserNotSupportedOutlined.tsx create mode 100644 src/IconBrowserNotSupportedRound.tsx create mode 100644 src/IconBrowserNotSupportedSharp.tsx create mode 100644 src/IconBrowserNotSupportedTwoTone.tsx create mode 100644 src/IconBrowserUpdatedOutlined.tsx create mode 100644 src/IconBrowserUpdatedRound.tsx create mode 100644 src/IconBrowserUpdatedSharp.tsx create mode 100644 src/IconBrowserUpdatedTwoTone.tsx create mode 100644 src/IconBrunchDiningOutlined.tsx create mode 100644 src/IconBrunchDiningRound.tsx create mode 100644 src/IconBrunchDiningSharp.tsx create mode 100644 src/IconBrunchDiningTwoTone.tsx create mode 100644 src/IconBrushOutlined.tsx create mode 100644 src/IconBrushRound.tsx create mode 100644 src/IconBrushSharp.tsx create mode 100644 src/IconBrushTwoTone.tsx create mode 100644 src/IconBubbleChartOutlined.tsx create mode 100644 src/IconBubbleChartRound.tsx create mode 100644 src/IconBubbleChartSharp.tsx create mode 100644 src/IconBubbleChartTwoTone.tsx create mode 100644 src/IconBugReportOutlined.tsx create mode 100644 src/IconBugReportRound.tsx create mode 100644 src/IconBugReportSharp.tsx create mode 100644 src/IconBugReportTwoTone.tsx create mode 100644 src/IconBuildCircleOutlined.tsx create mode 100644 src/IconBuildCircleRound.tsx create mode 100644 src/IconBuildCircleSharp.tsx create mode 100644 src/IconBuildCircleTwoTone.tsx create mode 100644 src/IconBuildOutlined.tsx create mode 100644 src/IconBuildRound.tsx create mode 100644 src/IconBuildSharp.tsx create mode 100644 src/IconBuildTwoTone.tsx create mode 100644 src/IconBungalowOutlined.tsx create mode 100644 src/IconBungalowRound.tsx create mode 100644 src/IconBungalowSharp.tsx create mode 100644 src/IconBungalowTwoTone.tsx create mode 100644 src/IconBurstModeOutlined.tsx create mode 100644 src/IconBurstModeRound.tsx create mode 100644 src/IconBurstModeSharp.tsx create mode 100644 src/IconBurstModeTwoTone.tsx create mode 100644 src/IconBusAlertOutlined.tsx create mode 100644 src/IconBusAlertRound.tsx create mode 100644 src/IconBusAlertSharp.tsx create mode 100644 src/IconBusAlertTwoTone.tsx create mode 100644 src/IconBusinessCenterOutlined.tsx create mode 100644 src/IconBusinessCenterRound.tsx create mode 100644 src/IconBusinessCenterSharp.tsx create mode 100644 src/IconBusinessCenterTwoTone.tsx create mode 100644 src/IconBusinessOutlined.tsx create mode 100644 src/IconBusinessRound.tsx create mode 100644 src/IconBusinessSharp.tsx create mode 100644 src/IconBusinessTwoTone.tsx create mode 100644 src/IconCabinOutlined.tsx create mode 100644 src/IconCabinRound.tsx create mode 100644 src/IconCabinSharp.tsx create mode 100644 src/IconCabinTwoTone.tsx create mode 100644 src/IconCableOutlined.tsx create mode 100644 src/IconCableRound.tsx create mode 100644 src/IconCableSharp.tsx create mode 100644 src/IconCableTwoTone.tsx create mode 100644 src/IconCachedOutlined.tsx create mode 100644 src/IconCachedRound.tsx create mode 100644 src/IconCachedSharp.tsx create mode 100644 src/IconCachedTwoTone.tsx create mode 100644 src/IconCakeOutlined.tsx create mode 100644 src/IconCakeRound.tsx create mode 100644 src/IconCakeSharp.tsx create mode 100644 src/IconCakeTwoTone.tsx create mode 100644 src/IconCalculateOutlined.tsx create mode 100644 src/IconCalculateRound.tsx create mode 100644 src/IconCalculateSharp.tsx create mode 100644 src/IconCalculateTwoTone.tsx create mode 100644 src/IconCalendarMonthOutlined.tsx create mode 100644 src/IconCalendarMonthRound.tsx create mode 100644 src/IconCalendarMonthSharp.tsx create mode 100644 src/IconCalendarMonthTwoTone.tsx create mode 100644 src/IconCalendarTodayOutlined.tsx create mode 100644 src/IconCalendarTodayRound.tsx create mode 100644 src/IconCalendarTodaySharp.tsx create mode 100644 src/IconCalendarTodayTwoTone.tsx create mode 100644 src/IconCalendarViewDayOutlined.tsx create mode 100644 src/IconCalendarViewDayRound.tsx create mode 100644 src/IconCalendarViewDaySharp.tsx create mode 100644 src/IconCalendarViewDayTwoTone.tsx create mode 100644 src/IconCalendarViewMonthOutlined.tsx create mode 100644 src/IconCalendarViewMonthRound.tsx create mode 100644 src/IconCalendarViewMonthSharp.tsx create mode 100644 src/IconCalendarViewMonthTwoTone.tsx create mode 100644 src/IconCalendarViewWeekOutlined.tsx create mode 100644 src/IconCalendarViewWeekRound.tsx create mode 100644 src/IconCalendarViewWeekSharp.tsx create mode 100644 src/IconCalendarViewWeekTwoTone.tsx create mode 100644 src/IconCallEndOutlined.tsx create mode 100644 src/IconCallEndRound.tsx create mode 100644 src/IconCallEndSharp.tsx create mode 100644 src/IconCallEndTwoTone.tsx create mode 100644 src/IconCallMadeOutlined.tsx create mode 100644 src/IconCallMadeRound.tsx create mode 100644 src/IconCallMadeSharp.tsx create mode 100644 src/IconCallMadeTwoTone.tsx create mode 100644 src/IconCallMergeOutlined.tsx create mode 100644 src/IconCallMergeRound.tsx create mode 100644 src/IconCallMergeSharp.tsx create mode 100644 src/IconCallMergeTwoTone.tsx create mode 100644 src/IconCallMissedOutgoingOutlined.tsx create mode 100644 src/IconCallMissedOutgoingRound.tsx create mode 100644 src/IconCallMissedOutgoingSharp.tsx create mode 100644 src/IconCallMissedOutgoingTwoTone.tsx create mode 100644 src/IconCallMissedOutlined.tsx create mode 100644 src/IconCallMissedRound.tsx create mode 100644 src/IconCallMissedSharp.tsx create mode 100644 src/IconCallMissedTwoTone.tsx create mode 100644 src/IconCallOutlined.tsx create mode 100644 src/IconCallReceivedOutlined.tsx create mode 100644 src/IconCallReceivedRound.tsx create mode 100644 src/IconCallReceivedSharp.tsx create mode 100644 src/IconCallReceivedTwoTone.tsx create mode 100644 src/IconCallRound.tsx create mode 100644 src/IconCallSharp.tsx create mode 100644 src/IconCallSplitOutlined.tsx create mode 100644 src/IconCallSplitRound.tsx create mode 100644 src/IconCallSplitSharp.tsx create mode 100644 src/IconCallSplitTwoTone.tsx create mode 100644 src/IconCallToActionOutlined.tsx create mode 100644 src/IconCallToActionRound.tsx create mode 100644 src/IconCallToActionSharp.tsx create mode 100644 src/IconCallToActionTwoTone.tsx create mode 100644 src/IconCallTwoTone.tsx create mode 100644 src/IconCameraAltOutlined.tsx create mode 100644 src/IconCameraAltRound.tsx create mode 100644 src/IconCameraAltSharp.tsx create mode 100644 src/IconCameraAltTwoTone.tsx create mode 100644 src/IconCameraEnhanceOutlined.tsx create mode 100644 src/IconCameraEnhanceRound.tsx create mode 100644 src/IconCameraEnhanceSharp.tsx create mode 100644 src/IconCameraEnhanceTwoTone.tsx create mode 100644 src/IconCameraFrontOutlined.tsx create mode 100644 src/IconCameraFrontRound.tsx create mode 100644 src/IconCameraFrontSharp.tsx create mode 100644 src/IconCameraFrontTwoTone.tsx create mode 100644 src/IconCameraIndoorOutlined.tsx create mode 100644 src/IconCameraIndoorRound.tsx create mode 100644 src/IconCameraIndoorSharp.tsx create mode 100644 src/IconCameraIndoorTwoTone.tsx create mode 100644 src/IconCameraOutdoorOutlined.tsx create mode 100644 src/IconCameraOutdoorRound.tsx create mode 100644 src/IconCameraOutdoorSharp.tsx create mode 100644 src/IconCameraOutdoorTwoTone.tsx create mode 100644 src/IconCameraOutlined.tsx create mode 100644 src/IconCameraRearOutlined.tsx create mode 100644 src/IconCameraRearRound.tsx create mode 100644 src/IconCameraRearSharp.tsx create mode 100644 src/IconCameraRearTwoTone.tsx create mode 100644 src/IconCameraRollOutlined.tsx create mode 100644 src/IconCameraRollRound.tsx create mode 100644 src/IconCameraRollSharp.tsx create mode 100644 src/IconCameraRollTwoTone.tsx create mode 100644 src/IconCameraRound.tsx create mode 100644 src/IconCameraSharp.tsx create mode 100644 src/IconCameraTwoTone.tsx create mode 100644 src/IconCameraswitchOutlined.tsx create mode 100644 src/IconCameraswitchRound.tsx create mode 100644 src/IconCameraswitchSharp.tsx create mode 100644 src/IconCameraswitchTwoTone.tsx create mode 100644 src/IconCampaignOutlined.tsx create mode 100644 src/IconCampaignRound.tsx create mode 100644 src/IconCampaignSharp.tsx create mode 100644 src/IconCampaignTwoTone.tsx create mode 100644 src/IconCancelOutlined.tsx create mode 100644 src/IconCancelPresentationOutlined.tsx create mode 100644 src/IconCancelPresentationRound.tsx create mode 100644 src/IconCancelPresentationSharp.tsx create mode 100644 src/IconCancelPresentationTwoTone.tsx create mode 100644 src/IconCancelRound.tsx create mode 100644 src/IconCancelScheduleSendOutlined.tsx create mode 100644 src/IconCancelScheduleSendRound.tsx create mode 100644 src/IconCancelScheduleSendSharp.tsx create mode 100644 src/IconCancelScheduleSendTwoTone.tsx create mode 100644 src/IconCancelSharp.tsx create mode 100644 src/IconCancelTwoTone.tsx create mode 100644 src/IconCandlestickChartOutlined.tsx create mode 100644 src/IconCandlestickChartRound.tsx create mode 100644 src/IconCandlestickChartSharp.tsx create mode 100644 src/IconCandlestickChartTwoTone.tsx create mode 100644 src/IconCarCrashOutlined.tsx create mode 100644 src/IconCarCrashRound.tsx create mode 100644 src/IconCarCrashSharp.tsx create mode 100644 src/IconCarCrashTwoTone.tsx create mode 100644 src/IconCarRentalOutlined.tsx create mode 100644 src/IconCarRentalRound.tsx create mode 100644 src/IconCarRentalSharp.tsx create mode 100644 src/IconCarRentalTwoTone.tsx create mode 100644 src/IconCarRepairOutlined.tsx create mode 100644 src/IconCarRepairRound.tsx create mode 100644 src/IconCarRepairSharp.tsx create mode 100644 src/IconCarRepairTwoTone.tsx create mode 100644 src/IconCardGiftcardOutlined.tsx create mode 100644 src/IconCardGiftcardRound.tsx create mode 100644 src/IconCardGiftcardSharp.tsx create mode 100644 src/IconCardGiftcardTwoTone.tsx create mode 100644 src/IconCardMembershipOutlined.tsx create mode 100644 src/IconCardMembershipRound.tsx create mode 100644 src/IconCardMembershipSharp.tsx create mode 100644 src/IconCardMembershipTwoTone.tsx create mode 100644 src/IconCardTravelOutlined.tsx create mode 100644 src/IconCardTravelRound.tsx create mode 100644 src/IconCardTravelSharp.tsx create mode 100644 src/IconCardTravelTwoTone.tsx create mode 100644 src/IconCarpenterOutlined.tsx create mode 100644 src/IconCarpenterRound.tsx create mode 100644 src/IconCarpenterSharp.tsx create mode 100644 src/IconCarpenterTwoTone.tsx create mode 100644 src/IconCasesOutlined.tsx create mode 100644 src/IconCasesRound.tsx create mode 100644 src/IconCasesSharp.tsx create mode 100644 src/IconCasesTwoTone.tsx create mode 100644 src/IconCasinoOutlined.tsx create mode 100644 src/IconCasinoRound.tsx create mode 100644 src/IconCasinoSharp.tsx create mode 100644 src/IconCasinoTwoTone.tsx create mode 100644 src/IconCastConnectedOutlined.tsx create mode 100644 src/IconCastConnectedRound.tsx create mode 100644 src/IconCastConnectedSharp.tsx create mode 100644 src/IconCastConnectedTwoTone.tsx create mode 100644 src/IconCastForEducationOutlined.tsx create mode 100644 src/IconCastForEducationRound.tsx create mode 100644 src/IconCastForEducationSharp.tsx create mode 100644 src/IconCastForEducationTwoTone.tsx create mode 100644 src/IconCastOutlined.tsx create mode 100644 src/IconCastRound.tsx create mode 100644 src/IconCastSharp.tsx create mode 100644 src/IconCastTwoTone.tsx create mode 100644 src/IconCastleOutlined.tsx create mode 100644 src/IconCastleRound.tsx create mode 100644 src/IconCastleSharp.tsx create mode 100644 src/IconCastleTwoTone.tsx create mode 100644 src/IconCatchingPokemonOutlined.tsx create mode 100644 src/IconCatchingPokemonRound.tsx create mode 100644 src/IconCatchingPokemonSharp.tsx create mode 100644 src/IconCatchingPokemonTwoTone.tsx create mode 100644 src/IconCategoryOutlined.tsx create mode 100644 src/IconCategoryRound.tsx create mode 100644 src/IconCategorySharp.tsx create mode 100644 src/IconCategoryTwoTone.tsx create mode 100644 src/IconCelebrationOutlined.tsx create mode 100644 src/IconCelebrationRound.tsx create mode 100644 src/IconCelebrationSharp.tsx create mode 100644 src/IconCelebrationTwoTone.tsx create mode 100644 src/IconCellTowerOutlined.tsx create mode 100644 src/IconCellTowerRound.tsx create mode 100644 src/IconCellTowerSharp.tsx create mode 100644 src/IconCellTowerTwoTone.tsx create mode 100644 src/IconCellWifiOutlined.tsx create mode 100644 src/IconCellWifiRound.tsx create mode 100644 src/IconCellWifiSharp.tsx create mode 100644 src/IconCellWifiTwoTone.tsx create mode 100644 src/IconCenterFocusStrongOutlined.tsx create mode 100644 src/IconCenterFocusStrongRound.tsx create mode 100644 src/IconCenterFocusStrongSharp.tsx create mode 100644 src/IconCenterFocusStrongTwoTone.tsx create mode 100644 src/IconCenterFocusWeakOutlined.tsx create mode 100644 src/IconCenterFocusWeakRound.tsx create mode 100644 src/IconCenterFocusWeakSharp.tsx create mode 100644 src/IconCenterFocusWeakTwoTone.tsx create mode 100644 src/IconChairAltOutlined.tsx create mode 100644 src/IconChairAltRound.tsx create mode 100644 src/IconChairAltSharp.tsx create mode 100644 src/IconChairAltTwoTone.tsx create mode 100644 src/IconChairOutlined.tsx create mode 100644 src/IconChairRound.tsx create mode 100644 src/IconChairSharp.tsx create mode 100644 src/IconChairTwoTone.tsx create mode 100644 src/IconChaletOutlined.tsx create mode 100644 src/IconChaletRound.tsx create mode 100644 src/IconChaletSharp.tsx create mode 100644 src/IconChaletTwoTone.tsx create mode 100644 src/IconChangeCircleOutlined.tsx create mode 100644 src/IconChangeCircleRound.tsx create mode 100644 src/IconChangeCircleSharp.tsx create mode 100644 src/IconChangeCircleTwoTone.tsx create mode 100644 src/IconChangeHistoryOutlined.tsx create mode 100644 src/IconChangeHistoryRound.tsx create mode 100644 src/IconChangeHistorySharp.tsx create mode 100644 src/IconChangeHistoryTwoTone.tsx create mode 100644 src/IconChargingStationOutlined.tsx create mode 100644 src/IconChargingStationRound.tsx create mode 100644 src/IconChargingStationSharp.tsx create mode 100644 src/IconChargingStationTwoTone.tsx create mode 100644 src/IconChatBubbleOutlineOutlined.tsx create mode 100644 src/IconChatBubbleOutlineRound.tsx create mode 100644 src/IconChatBubbleOutlineSharp.tsx create mode 100644 src/IconChatBubbleOutlineTwoTone.tsx create mode 100644 src/IconChatBubbleOutlined.tsx create mode 100644 src/IconChatBubbleRound.tsx create mode 100644 src/IconChatBubbleSharp.tsx create mode 100644 src/IconChatBubbleTwoTone.tsx create mode 100644 src/IconChatOutlined.tsx create mode 100644 src/IconChatRound.tsx create mode 100644 src/IconChatSharp.tsx create mode 100644 src/IconChatTwoTone.tsx create mode 100644 src/IconCheckBoxOutlineBlankOutlined.tsx create mode 100644 src/IconCheckBoxOutlineBlankRound.tsx create mode 100644 src/IconCheckBoxOutlineBlankSharp.tsx create mode 100644 src/IconCheckBoxOutlineBlankTwoTone.tsx create mode 100644 src/IconCheckBoxOutlined.tsx create mode 100644 src/IconCheckBoxRound.tsx create mode 100644 src/IconCheckBoxSharp.tsx create mode 100644 src/IconCheckBoxTwoTone.tsx create mode 100644 src/IconCheckCircleOutlineOutlined.tsx create mode 100644 src/IconCheckCircleOutlineRound.tsx create mode 100644 src/IconCheckCircleOutlineSharp.tsx create mode 100644 src/IconCheckCircleOutlineTwoTone.tsx create mode 100644 src/IconCheckCircleOutlined.tsx create mode 100644 src/IconCheckCircleRound.tsx create mode 100644 src/IconCheckCircleSharp.tsx create mode 100644 src/IconCheckCircleTwoTone.tsx create mode 100644 src/IconCheckOutlined.tsx create mode 100644 src/IconCheckRound.tsx create mode 100644 src/IconCheckSharp.tsx create mode 100644 src/IconCheckTwoTone.tsx create mode 100644 src/IconChecklistOutlined.tsx create mode 100644 src/IconChecklistRound.tsx create mode 100644 src/IconChecklistRtlOutlined.tsx create mode 100644 src/IconChecklistRtlRound.tsx create mode 100644 src/IconChecklistRtlSharp.tsx create mode 100644 src/IconChecklistRtlTwoTone.tsx create mode 100644 src/IconChecklistSharp.tsx create mode 100644 src/IconChecklistTwoTone.tsx create mode 100644 src/IconCheckroomOutlined.tsx create mode 100644 src/IconCheckroomRound.tsx create mode 100644 src/IconCheckroomSharp.tsx create mode 100644 src/IconCheckroomTwoTone.tsx create mode 100644 src/IconChevronLeftOutlined.tsx create mode 100644 src/IconChevronLeftRound.tsx create mode 100644 src/IconChevronLeftSharp.tsx create mode 100644 src/IconChevronLeftTwoTone.tsx create mode 100644 src/IconChevronRightOutlined.tsx create mode 100644 src/IconChevronRightRound.tsx create mode 100644 src/IconChevronRightSharp.tsx create mode 100644 src/IconChevronRightTwoTone.tsx create mode 100644 src/IconChildCareOutlined.tsx create mode 100644 src/IconChildCareRound.tsx create mode 100644 src/IconChildCareSharp.tsx create mode 100644 src/IconChildCareTwoTone.tsx create mode 100644 src/IconChildFriendlyOutlined.tsx create mode 100644 src/IconChildFriendlyRound.tsx create mode 100644 src/IconChildFriendlySharp.tsx create mode 100644 src/IconChildFriendlyTwoTone.tsx create mode 100644 src/IconChromeReaderModeOutlined.tsx create mode 100644 src/IconChromeReaderModeRound.tsx create mode 100644 src/IconChromeReaderModeSharp.tsx create mode 100644 src/IconChromeReaderModeTwoTone.tsx create mode 100644 src/IconChurchOutlined.tsx create mode 100644 src/IconChurchRound.tsx create mode 100644 src/IconChurchSharp.tsx create mode 100644 src/IconChurchTwoTone.tsx create mode 100644 src/IconCircleNotificationsOutlined.tsx create mode 100644 src/IconCircleNotificationsRound.tsx create mode 100644 src/IconCircleNotificationsSharp.tsx create mode 100644 src/IconCircleNotificationsTwoTone.tsx create mode 100644 src/IconCircleOutlined.tsx create mode 100644 src/IconCircleRound.tsx create mode 100644 src/IconCircleSharp.tsx create mode 100644 src/IconCircleTwoTone.tsx create mode 100644 src/IconClassOutlined.tsx create mode 100644 src/IconClassRound.tsx create mode 100644 src/IconClassSharp.tsx create mode 100644 src/IconClassTwoTone.tsx create mode 100644 src/IconCleanHandsOutlined.tsx create mode 100644 src/IconCleanHandsRound.tsx create mode 100644 src/IconCleanHandsSharp.tsx create mode 100644 src/IconCleanHandsTwoTone.tsx create mode 100644 src/IconCleaningServicesOutlined.tsx create mode 100644 src/IconCleaningServicesRound.tsx create mode 100644 src/IconCleaningServicesSharp.tsx create mode 100644 src/IconCleaningServicesTwoTone.tsx create mode 100644 src/IconClearAllOutlined.tsx create mode 100644 src/IconClearAllRound.tsx create mode 100644 src/IconClearAllSharp.tsx create mode 100644 src/IconClearAllTwoTone.tsx create mode 100644 src/IconClearOutlined.tsx create mode 100644 src/IconClearRound.tsx create mode 100644 src/IconClearSharp.tsx create mode 100644 src/IconClearTwoTone.tsx create mode 100644 src/IconCloseFullscreenOutlined.tsx create mode 100644 src/IconCloseFullscreenRound.tsx create mode 100644 src/IconCloseFullscreenSharp.tsx create mode 100644 src/IconCloseFullscreenTwoTone.tsx create mode 100644 src/IconCloseOutlined.tsx create mode 100644 src/IconCloseRound.tsx create mode 100644 src/IconCloseSharp.tsx create mode 100644 src/IconCloseTwoTone.tsx create mode 100644 src/IconClosedCaptionDisabledOutlined.tsx create mode 100644 src/IconClosedCaptionDisabledRound.tsx create mode 100644 src/IconClosedCaptionDisabledSharp.tsx create mode 100644 src/IconClosedCaptionDisabledTwoTone.tsx create mode 100644 src/IconClosedCaptionOffOutlined.tsx create mode 100644 src/IconClosedCaptionOffRound.tsx create mode 100644 src/IconClosedCaptionOffSharp.tsx create mode 100644 src/IconClosedCaptionOffTwoTone.tsx create mode 100644 src/IconClosedCaptionOutlined.tsx create mode 100644 src/IconClosedCaptionRound.tsx create mode 100644 src/IconClosedCaptionSharp.tsx create mode 100644 src/IconClosedCaptionTwoTone.tsx create mode 100644 src/IconCloudCircleOutlined.tsx create mode 100644 src/IconCloudCircleRound.tsx create mode 100644 src/IconCloudCircleSharp.tsx create mode 100644 src/IconCloudCircleTwoTone.tsx create mode 100644 src/IconCloudDoneOutlined.tsx create mode 100644 src/IconCloudDoneRound.tsx create mode 100644 src/IconCloudDoneSharp.tsx create mode 100644 src/IconCloudDoneTwoTone.tsx create mode 100644 src/IconCloudDownloadOutlined.tsx create mode 100644 src/IconCloudDownloadRound.tsx create mode 100644 src/IconCloudDownloadSharp.tsx create mode 100644 src/IconCloudDownloadTwoTone.tsx create mode 100644 src/IconCloudOffOutlined.tsx create mode 100644 src/IconCloudOffRound.tsx create mode 100644 src/IconCloudOffSharp.tsx create mode 100644 src/IconCloudOffTwoTone.tsx create mode 100644 src/IconCloudOutlined.tsx create mode 100644 src/IconCloudQueueOutlined.tsx create mode 100644 src/IconCloudQueueRound.tsx create mode 100644 src/IconCloudQueueSharp.tsx create mode 100644 src/IconCloudQueueTwoTone.tsx create mode 100644 src/IconCloudRound.tsx create mode 100644 src/IconCloudSharp.tsx create mode 100644 src/IconCloudSyncOutlined.tsx create mode 100644 src/IconCloudSyncRound.tsx create mode 100644 src/IconCloudSyncSharp.tsx create mode 100644 src/IconCloudSyncTwoTone.tsx create mode 100644 src/IconCloudTwoTone.tsx create mode 100644 src/IconCloudUploadOutlined.tsx create mode 100644 src/IconCloudUploadRound.tsx create mode 100644 src/IconCloudUploadSharp.tsx create mode 100644 src/IconCloudUploadTwoTone.tsx create mode 100644 src/IconCo2Outlined.tsx create mode 100644 src/IconCo2Round.tsx create mode 100644 src/IconCo2Sharp.tsx create mode 100644 src/IconCo2TwoTone.tsx create mode 100644 src/IconCoPresentOutlined.tsx create mode 100644 src/IconCoPresentRound.tsx create mode 100644 src/IconCoPresentSharp.tsx create mode 100644 src/IconCoPresentTwoTone.tsx create mode 100644 src/IconCodeOffOutlined.tsx create mode 100644 src/IconCodeOffRound.tsx create mode 100644 src/IconCodeOffSharp.tsx create mode 100644 src/IconCodeOffTwoTone.tsx create mode 100644 src/IconCodeOutlined.tsx create mode 100644 src/IconCodeRound.tsx create mode 100644 src/IconCodeSharp.tsx create mode 100644 src/IconCodeTwoTone.tsx create mode 100644 src/IconCoffeeMakerOutlined.tsx create mode 100644 src/IconCoffeeMakerRound.tsx create mode 100644 src/IconCoffeeMakerSharp.tsx create mode 100644 src/IconCoffeeMakerTwoTone.tsx create mode 100644 src/IconCoffeeOutlined.tsx create mode 100644 src/IconCoffeeRound.tsx create mode 100644 src/IconCoffeeSharp.tsx create mode 100644 src/IconCoffeeTwoTone.tsx create mode 100644 src/IconCollectionsBookmarkOutlined.tsx create mode 100644 src/IconCollectionsBookmarkRound.tsx create mode 100644 src/IconCollectionsBookmarkSharp.tsx create mode 100644 src/IconCollectionsBookmarkTwoTone.tsx create mode 100644 src/IconCollectionsOutlined.tsx create mode 100644 src/IconCollectionsRound.tsx create mode 100644 src/IconCollectionsSharp.tsx create mode 100644 src/IconCollectionsTwoTone.tsx create mode 100644 src/IconColorLensOutlined.tsx create mode 100644 src/IconColorLensRound.tsx create mode 100644 src/IconColorLensSharp.tsx create mode 100644 src/IconColorLensTwoTone.tsx create mode 100644 src/IconColorizeOutlined.tsx create mode 100644 src/IconColorizeRound.tsx create mode 100644 src/IconColorizeSharp.tsx create mode 100644 src/IconColorizeTwoTone.tsx create mode 100644 src/IconCommentBankOutlined.tsx create mode 100644 src/IconCommentBankRound.tsx create mode 100644 src/IconCommentBankSharp.tsx create mode 100644 src/IconCommentBankTwoTone.tsx create mode 100644 src/IconCommentOutlined.tsx create mode 100644 src/IconCommentRound.tsx create mode 100644 src/IconCommentSharp.tsx create mode 100644 src/IconCommentTwoTone.tsx create mode 100644 src/IconCommentsDisabledOutlined.tsx create mode 100644 src/IconCommentsDisabledRound.tsx create mode 100644 src/IconCommentsDisabledSharp.tsx create mode 100644 src/IconCommentsDisabledTwoTone.tsx create mode 100644 src/IconCommitOutlined.tsx create mode 100644 src/IconCommitRound.tsx create mode 100644 src/IconCommitSharp.tsx create mode 100644 src/IconCommitTwoTone.tsx create mode 100644 src/IconCommuteOutlined.tsx create mode 100644 src/IconCommuteRound.tsx create mode 100644 src/IconCommuteSharp.tsx create mode 100644 src/IconCommuteTwoTone.tsx create mode 100644 src/IconCompareArrowsOutlined.tsx create mode 100644 src/IconCompareArrowsRound.tsx create mode 100644 src/IconCompareArrowsSharp.tsx create mode 100644 src/IconCompareArrowsTwoTone.tsx create mode 100644 src/IconCompareOutlined.tsx create mode 100644 src/IconCompareRound.tsx create mode 100644 src/IconCompareSharp.tsx create mode 100644 src/IconCompareTwoTone.tsx create mode 100644 src/IconCompassCalibrationOutlined.tsx create mode 100644 src/IconCompassCalibrationRound.tsx create mode 100644 src/IconCompassCalibrationSharp.tsx create mode 100644 src/IconCompassCalibrationTwoTone.tsx create mode 100644 src/IconCompostOutlined.tsx create mode 100644 src/IconCompostRound.tsx create mode 100644 src/IconCompostSharp.tsx create mode 100644 src/IconCompostTwoTone.tsx create mode 100644 src/IconCompressOutlined.tsx create mode 100644 src/IconCompressRound.tsx create mode 100644 src/IconCompressSharp.tsx create mode 100644 src/IconCompressTwoTone.tsx create mode 100644 src/IconComputerOutlined.tsx create mode 100644 src/IconComputerRound.tsx create mode 100644 src/IconComputerSharp.tsx create mode 100644 src/IconComputerTwoTone.tsx create mode 100644 src/IconConfirmationNumberOutlined.tsx create mode 100644 src/IconConfirmationNumberRound.tsx create mode 100644 src/IconConfirmationNumberSharp.tsx create mode 100644 src/IconConfirmationNumberTwoTone.tsx create mode 100644 src/IconConnectWithoutContactOutlined.tsx create mode 100644 src/IconConnectWithoutContactRound.tsx create mode 100644 src/IconConnectWithoutContactSharp.tsx create mode 100644 src/IconConnectWithoutContactTwoTone.tsx create mode 100644 src/IconConnectedTvOutlined.tsx create mode 100644 src/IconConnectedTvRound.tsx create mode 100644 src/IconConnectedTvSharp.tsx create mode 100644 src/IconConnectedTvTwoTone.tsx create mode 100644 src/IconConnectingAirportsOutlined.tsx create mode 100644 src/IconConnectingAirportsRound.tsx create mode 100644 src/IconConnectingAirportsSharp.tsx create mode 100644 src/IconConnectingAirportsTwoTone.tsx create mode 100644 src/IconConstructionOutlined.tsx create mode 100644 src/IconConstructionRound.tsx create mode 100644 src/IconConstructionSharp.tsx create mode 100644 src/IconConstructionTwoTone.tsx create mode 100644 src/IconContactEmergencyOutlined.tsx create mode 100644 src/IconContactEmergencyRound.tsx create mode 100644 src/IconContactEmergencySharp.tsx create mode 100644 src/IconContactEmergencyTwoTone.tsx create mode 100644 src/IconContactMailOutlined.tsx create mode 100644 src/IconContactMailRound.tsx create mode 100644 src/IconContactMailSharp.tsx create mode 100644 src/IconContactMailTwoTone.tsx create mode 100644 src/IconContactPageOutlined.tsx create mode 100644 src/IconContactPageRound.tsx create mode 100644 src/IconContactPageSharp.tsx create mode 100644 src/IconContactPageTwoTone.tsx create mode 100644 src/IconContactPhoneOutlined.tsx create mode 100644 src/IconContactPhoneRound.tsx create mode 100644 src/IconContactPhoneSharp.tsx create mode 100644 src/IconContactPhoneTwoTone.tsx create mode 100644 src/IconContactSupportOutlined.tsx create mode 100644 src/IconContactSupportRound.tsx create mode 100644 src/IconContactSupportSharp.tsx create mode 100644 src/IconContactSupportTwoTone.tsx create mode 100644 src/IconContactlessOutlined.tsx create mode 100644 src/IconContactlessRound.tsx create mode 100644 src/IconContactlessSharp.tsx create mode 100644 src/IconContactlessTwoTone.tsx create mode 100644 src/IconContactsOutlined.tsx create mode 100644 src/IconContactsRound.tsx create mode 100644 src/IconContactsSharp.tsx create mode 100644 src/IconContactsTwoTone.tsx create mode 100644 src/IconContentCopyOutlined.tsx create mode 100644 src/IconContentCopyRound.tsx create mode 100644 src/IconContentCopySharp.tsx create mode 100644 src/IconContentCopyTwoTone.tsx create mode 100644 src/IconContentCutOutlined.tsx create mode 100644 src/IconContentCutRound.tsx create mode 100644 src/IconContentCutSharp.tsx create mode 100644 src/IconContentCutTwoTone.tsx create mode 100644 src/IconContentPasteGoOutlined.tsx create mode 100644 src/IconContentPasteGoRound.tsx create mode 100644 src/IconContentPasteGoSharp.tsx create mode 100644 src/IconContentPasteGoTwoTone.tsx create mode 100644 src/IconContentPasteOffOutlined.tsx create mode 100644 src/IconContentPasteOffRound.tsx create mode 100644 src/IconContentPasteOffSharp.tsx create mode 100644 src/IconContentPasteOffTwoTone.tsx create mode 100644 src/IconContentPasteOutlined.tsx create mode 100644 src/IconContentPasteRound.tsx create mode 100644 src/IconContentPasteSearchOutlined.tsx create mode 100644 src/IconContentPasteSearchRound.tsx create mode 100644 src/IconContentPasteSearchSharp.tsx create mode 100644 src/IconContentPasteSearchTwoTone.tsx create mode 100644 src/IconContentPasteSharp.tsx create mode 100644 src/IconContentPasteTwoTone.tsx create mode 100644 src/IconContrastOutlined.tsx create mode 100644 src/IconContrastRound.tsx create mode 100644 src/IconContrastSharp.tsx create mode 100644 src/IconContrastTwoTone.tsx create mode 100644 src/IconControlCameraOutlined.tsx create mode 100644 src/IconControlCameraRound.tsx create mode 100644 src/IconControlCameraSharp.tsx create mode 100644 src/IconControlCameraTwoTone.tsx create mode 100644 src/IconControlPointDuplicateOutlined.tsx create mode 100644 src/IconControlPointDuplicateRound.tsx create mode 100644 src/IconControlPointDuplicateSharp.tsx create mode 100644 src/IconControlPointDuplicateTwoTone.tsx create mode 100644 src/IconControlPointOutlined.tsx create mode 100644 src/IconControlPointRound.tsx create mode 100644 src/IconControlPointSharp.tsx create mode 100644 src/IconControlPointTwoTone.tsx create mode 100644 src/IconCookieOutlined.tsx create mode 100644 src/IconCookieRound.tsx create mode 100644 src/IconCookieSharp.tsx create mode 100644 src/IconCookieTwoTone.tsx create mode 100644 src/IconCopyAllOutlined.tsx create mode 100644 src/IconCopyAllRound.tsx create mode 100644 src/IconCopyAllSharp.tsx create mode 100644 src/IconCopyAllTwoTone.tsx create mode 100644 src/IconCopyrightOutlined.tsx create mode 100644 src/IconCopyrightRound.tsx create mode 100644 src/IconCopyrightSharp.tsx create mode 100644 src/IconCopyrightTwoTone.tsx create mode 100644 src/IconCoronavirusOutlined.tsx create mode 100644 src/IconCoronavirusRound.tsx create mode 100644 src/IconCoronavirusSharp.tsx create mode 100644 src/IconCoronavirusTwoTone.tsx create mode 100644 src/IconCorporateFareOutlined.tsx create mode 100644 src/IconCorporateFareRound.tsx create mode 100644 src/IconCorporateFareSharp.tsx create mode 100644 src/IconCorporateFareTwoTone.tsx create mode 100644 src/IconCottageOutlined.tsx create mode 100644 src/IconCottageRound.tsx create mode 100644 src/IconCottageSharp.tsx create mode 100644 src/IconCottageTwoTone.tsx create mode 100644 src/IconCountertopsOutlined.tsx create mode 100644 src/IconCountertopsRound.tsx create mode 100644 src/IconCountertopsSharp.tsx create mode 100644 src/IconCountertopsTwoTone.tsx create mode 100644 src/IconCreateNewFolderOutlined.tsx create mode 100644 src/IconCreateNewFolderRound.tsx create mode 100644 src/IconCreateNewFolderSharp.tsx create mode 100644 src/IconCreateNewFolderTwoTone.tsx create mode 100644 src/IconCreateOutlined.tsx create mode 100644 src/IconCreateRound.tsx create mode 100644 src/IconCreateSharp.tsx create mode 100644 src/IconCreateTwoTone.tsx create mode 100644 src/IconCreditCardOffOutlined.tsx create mode 100644 src/IconCreditCardOffRound.tsx create mode 100644 src/IconCreditCardOffSharp.tsx create mode 100644 src/IconCreditCardOffTwoTone.tsx create mode 100644 src/IconCreditCardOutlined.tsx create mode 100644 src/IconCreditCardRound.tsx create mode 100644 src/IconCreditCardSharp.tsx create mode 100644 src/IconCreditCardTwoTone.tsx create mode 100644 src/IconCreditScoreOutlined.tsx create mode 100644 src/IconCreditScoreRound.tsx create mode 100644 src/IconCreditScoreSharp.tsx create mode 100644 src/IconCreditScoreTwoTone.tsx create mode 100644 src/IconCribOutlined.tsx create mode 100644 src/IconCribRound.tsx create mode 100644 src/IconCribSharp.tsx create mode 100644 src/IconCribTwoTone.tsx create mode 100644 src/IconCrisisAlertOutlined.tsx create mode 100644 src/IconCrisisAlertRound.tsx create mode 100644 src/IconCrisisAlertSharp.tsx create mode 100644 src/IconCrisisAlertTwoTone.tsx create mode 100644 src/IconCrop169Outlined.tsx create mode 100644 src/IconCrop169Round.tsx create mode 100644 src/IconCrop169Sharp.tsx create mode 100644 src/IconCrop169TwoTone.tsx create mode 100644 src/IconCrop32Outlined.tsx create mode 100644 src/IconCrop32Round.tsx create mode 100644 src/IconCrop32Sharp.tsx create mode 100644 src/IconCrop32TwoTone.tsx create mode 100644 src/IconCrop54Outlined.tsx create mode 100644 src/IconCrop54Round.tsx create mode 100644 src/IconCrop54Sharp.tsx create mode 100644 src/IconCrop54TwoTone.tsx create mode 100644 src/IconCrop75Outlined.tsx create mode 100644 src/IconCrop75Round.tsx create mode 100644 src/IconCrop75Sharp.tsx create mode 100644 src/IconCrop75TwoTone.tsx create mode 100644 src/IconCropDinOutlined.tsx create mode 100644 src/IconCropDinRound.tsx create mode 100644 src/IconCropDinSharp.tsx create mode 100644 src/IconCropDinTwoTone.tsx create mode 100644 src/IconCropFreeOutlined.tsx create mode 100644 src/IconCropFreeRound.tsx create mode 100644 src/IconCropFreeSharp.tsx create mode 100644 src/IconCropFreeTwoTone.tsx create mode 100644 src/IconCropLandscapeOutlined.tsx create mode 100644 src/IconCropLandscapeRound.tsx create mode 100644 src/IconCropLandscapeSharp.tsx create mode 100644 src/IconCropLandscapeTwoTone.tsx create mode 100644 src/IconCropOriginalOutlined.tsx create mode 100644 src/IconCropOriginalRound.tsx create mode 100644 src/IconCropOriginalSharp.tsx create mode 100644 src/IconCropOriginalTwoTone.tsx create mode 100644 src/IconCropOutlined.tsx create mode 100644 src/IconCropPortraitOutlined.tsx create mode 100644 src/IconCropPortraitRound.tsx create mode 100644 src/IconCropPortraitSharp.tsx create mode 100644 src/IconCropPortraitTwoTone.tsx create mode 100644 src/IconCropRotateOutlined.tsx create mode 100644 src/IconCropRotateRound.tsx create mode 100644 src/IconCropRotateSharp.tsx create mode 100644 src/IconCropRotateTwoTone.tsx create mode 100644 src/IconCropRound.tsx create mode 100644 src/IconCropSharp.tsx create mode 100644 src/IconCropSquareOutlined.tsx create mode 100644 src/IconCropSquareRound.tsx create mode 100644 src/IconCropSquareSharp.tsx create mode 100644 src/IconCropSquareTwoTone.tsx create mode 100644 src/IconCropTwoTone.tsx create mode 100644 src/IconCrueltyFreeOutlined.tsx create mode 100644 src/IconCrueltyFreeRound.tsx create mode 100644 src/IconCrueltyFreeSharp.tsx create mode 100644 src/IconCrueltyFreeTwoTone.tsx create mode 100644 src/IconCssOutlined.tsx create mode 100644 src/IconCssRound.tsx create mode 100644 src/IconCssSharp.tsx create mode 100644 src/IconCssTwoTone.tsx create mode 100644 src/IconCurrencyBitcoinOutlined.tsx create mode 100644 src/IconCurrencyBitcoinRound.tsx create mode 100644 src/IconCurrencyBitcoinSharp.tsx create mode 100644 src/IconCurrencyBitcoinTwoTone.tsx create mode 100644 src/IconCurrencyExchangeOutlined.tsx create mode 100644 src/IconCurrencyExchangeRound.tsx create mode 100644 src/IconCurrencyExchangeSharp.tsx create mode 100644 src/IconCurrencyExchangeTwoTone.tsx create mode 100644 src/IconCurrencyFrancOutlined.tsx create mode 100644 src/IconCurrencyFrancRound.tsx create mode 100644 src/IconCurrencyFrancSharp.tsx create mode 100644 src/IconCurrencyFrancTwoTone.tsx create mode 100644 src/IconCurrencyLiraOutlined.tsx create mode 100644 src/IconCurrencyLiraRound.tsx create mode 100644 src/IconCurrencyLiraSharp.tsx create mode 100644 src/IconCurrencyLiraTwoTone.tsx create mode 100644 src/IconCurrencyPoundOutlined.tsx create mode 100644 src/IconCurrencyPoundRound.tsx create mode 100644 src/IconCurrencyPoundSharp.tsx create mode 100644 src/IconCurrencyPoundTwoTone.tsx create mode 100644 src/IconCurrencyRubleOutlined.tsx create mode 100644 src/IconCurrencyRubleRound.tsx create mode 100644 src/IconCurrencyRubleSharp.tsx create mode 100644 src/IconCurrencyRubleTwoTone.tsx create mode 100644 src/IconCurrencyRupeeOutlined.tsx create mode 100644 src/IconCurrencyRupeeRound.tsx create mode 100644 src/IconCurrencyRupeeSharp.tsx create mode 100644 src/IconCurrencyRupeeTwoTone.tsx create mode 100644 src/IconCurrencyYenOutlined.tsx create mode 100644 src/IconCurrencyYenRound.tsx create mode 100644 src/IconCurrencyYenSharp.tsx create mode 100644 src/IconCurrencyYenTwoTone.tsx create mode 100644 src/IconCurrencyYuanOutlined.tsx create mode 100644 src/IconCurrencyYuanRound.tsx create mode 100644 src/IconCurrencyYuanSharp.tsx create mode 100644 src/IconCurrencyYuanTwoTone.tsx create mode 100644 src/IconCurtainsClosedOutlined.tsx create mode 100644 src/IconCurtainsClosedRound.tsx create mode 100644 src/IconCurtainsClosedSharp.tsx create mode 100644 src/IconCurtainsClosedTwoTone.tsx create mode 100644 src/IconCurtainsOutlined.tsx create mode 100644 src/IconCurtainsRound.tsx create mode 100644 src/IconCurtainsSharp.tsx create mode 100644 src/IconCurtainsTwoTone.tsx create mode 100644 src/IconCycloneOutlined.tsx create mode 100644 src/IconCycloneRound.tsx create mode 100644 src/IconCycloneSharp.tsx create mode 100644 src/IconCycloneTwoTone.tsx create mode 100644 src/IconDangerousOutlined.tsx create mode 100644 src/IconDangerousRound.tsx create mode 100644 src/IconDangerousSharp.tsx create mode 100644 src/IconDangerousTwoTone.tsx create mode 100644 src/IconDarkModeOutlined.tsx create mode 100644 src/IconDarkModeRound.tsx create mode 100644 src/IconDarkModeSharp.tsx create mode 100644 src/IconDarkModeTwoTone.tsx create mode 100644 src/IconDashboardCustomizeOutlined.tsx create mode 100644 src/IconDashboardCustomizeRound.tsx create mode 100644 src/IconDashboardCustomizeSharp.tsx create mode 100644 src/IconDashboardCustomizeTwoTone.tsx create mode 100644 src/IconDashboardOutlined.tsx create mode 100644 src/IconDashboardRound.tsx create mode 100644 src/IconDashboardSharp.tsx create mode 100644 src/IconDashboardTwoTone.tsx create mode 100644 src/IconDataArrayOutlined.tsx create mode 100644 src/IconDataArrayRound.tsx create mode 100644 src/IconDataArraySharp.tsx create mode 100644 src/IconDataArrayTwoTone.tsx create mode 100644 src/IconDataExplorationOutlined.tsx create mode 100644 src/IconDataExplorationRound.tsx create mode 100644 src/IconDataExplorationSharp.tsx create mode 100644 src/IconDataExplorationTwoTone.tsx create mode 100644 src/IconDataObjectOutlined.tsx create mode 100644 src/IconDataObjectRound.tsx create mode 100644 src/IconDataObjectSharp.tsx create mode 100644 src/IconDataObjectTwoTone.tsx create mode 100644 src/IconDataSaverOffOutlined.tsx create mode 100644 src/IconDataSaverOffRound.tsx create mode 100644 src/IconDataSaverOffSharp.tsx create mode 100644 src/IconDataSaverOffTwoTone.tsx create mode 100644 src/IconDataSaverOnOutlined.tsx create mode 100644 src/IconDataSaverOnRound.tsx create mode 100644 src/IconDataSaverOnSharp.tsx create mode 100644 src/IconDataSaverOnTwoTone.tsx create mode 100644 src/IconDataThresholdingOutlined.tsx create mode 100644 src/IconDataThresholdingRound.tsx create mode 100644 src/IconDataThresholdingSharp.tsx create mode 100644 src/IconDataThresholdingTwoTone.tsx create mode 100644 src/IconDataUsageOutlined.tsx create mode 100644 src/IconDataUsageRound.tsx create mode 100644 src/IconDataUsageSharp.tsx create mode 100644 src/IconDataUsageTwoTone.tsx create mode 100644 src/IconDatasetLinkedOutlined.tsx create mode 100644 src/IconDatasetLinkedRound.tsx create mode 100644 src/IconDatasetLinkedSharp.tsx create mode 100644 src/IconDatasetLinkedTwoTone.tsx create mode 100644 src/IconDatasetOutlined.tsx create mode 100644 src/IconDatasetRound.tsx create mode 100644 src/IconDatasetSharp.tsx create mode 100644 src/IconDatasetTwoTone.tsx create mode 100644 src/IconDateRangeOutlined.tsx create mode 100644 src/IconDateRangeRound.tsx create mode 100644 src/IconDateRangeSharp.tsx create mode 100644 src/IconDateRangeTwoTone.tsx create mode 100644 src/IconDeblurOutlined.tsx create mode 100644 src/IconDeblurRound.tsx create mode 100644 src/IconDeblurSharp.tsx create mode 100644 src/IconDeblurTwoTone.tsx create mode 100644 src/IconDeckOutlined.tsx create mode 100644 src/IconDeckRound.tsx create mode 100644 src/IconDeckSharp.tsx create mode 100644 src/IconDeckTwoTone.tsx create mode 100644 src/IconDehazeOutlined.tsx create mode 100644 src/IconDehazeRound.tsx create mode 100644 src/IconDehazeSharp.tsx create mode 100644 src/IconDehazeTwoTone.tsx create mode 100644 src/IconDeleteForeverOutlined.tsx create mode 100644 src/IconDeleteForeverRound.tsx create mode 100644 src/IconDeleteForeverSharp.tsx create mode 100644 src/IconDeleteForeverTwoTone.tsx create mode 100644 src/IconDeleteOutlineOutlined.tsx create mode 100644 src/IconDeleteOutlineRound.tsx create mode 100644 src/IconDeleteOutlineSharp.tsx create mode 100644 src/IconDeleteOutlineTwoTone.tsx create mode 100644 src/IconDeleteOutlined.tsx create mode 100644 src/IconDeleteRound.tsx create mode 100644 src/IconDeleteSharp.tsx create mode 100644 src/IconDeleteSweepOutlined.tsx create mode 100644 src/IconDeleteSweepRound.tsx create mode 100644 src/IconDeleteSweepSharp.tsx create mode 100644 src/IconDeleteSweepTwoTone.tsx create mode 100644 src/IconDeleteTwoTone.tsx create mode 100644 src/IconDeliveryDiningOutlined.tsx create mode 100644 src/IconDeliveryDiningRound.tsx create mode 100644 src/IconDeliveryDiningSharp.tsx create mode 100644 src/IconDeliveryDiningTwoTone.tsx create mode 100644 src/IconDensityLargeOutlined.tsx create mode 100644 src/IconDensityLargeRound.tsx create mode 100644 src/IconDensityLargeSharp.tsx create mode 100644 src/IconDensityLargeTwoTone.tsx create mode 100644 src/IconDensityMediumOutlined.tsx create mode 100644 src/IconDensityMediumRound.tsx create mode 100644 src/IconDensityMediumSharp.tsx create mode 100644 src/IconDensityMediumTwoTone.tsx create mode 100644 src/IconDensitySmallOutlined.tsx create mode 100644 src/IconDensitySmallRound.tsx create mode 100644 src/IconDensitySmallSharp.tsx create mode 100644 src/IconDensitySmallTwoTone.tsx create mode 100644 src/IconDepartureBoardOutlined.tsx create mode 100644 src/IconDepartureBoardRound.tsx create mode 100644 src/IconDepartureBoardSharp.tsx create mode 100644 src/IconDepartureBoardTwoTone.tsx create mode 100644 src/IconDescriptionOutlined.tsx create mode 100644 src/IconDescriptionRound.tsx create mode 100644 src/IconDescriptionSharp.tsx create mode 100644 src/IconDescriptionTwoTone.tsx create mode 100644 src/IconDeselectOutlined.tsx create mode 100644 src/IconDeselectRound.tsx create mode 100644 src/IconDeselectSharp.tsx create mode 100644 src/IconDeselectTwoTone.tsx create mode 100644 src/IconDesignServicesOutlined.tsx create mode 100644 src/IconDesignServicesRound.tsx create mode 100644 src/IconDesignServicesSharp.tsx create mode 100644 src/IconDesignServicesTwoTone.tsx create mode 100644 src/IconDeskOutlined.tsx create mode 100644 src/IconDeskRound.tsx create mode 100644 src/IconDeskSharp.tsx create mode 100644 src/IconDeskTwoTone.tsx create mode 100644 src/IconDesktopAccessDisabledOutlined.tsx create mode 100644 src/IconDesktopAccessDisabledRound.tsx create mode 100644 src/IconDesktopAccessDisabledSharp.tsx create mode 100644 src/IconDesktopAccessDisabledTwoTone.tsx create mode 100644 src/IconDesktopMacOutlined.tsx create mode 100644 src/IconDesktopMacRound.tsx create mode 100644 src/IconDesktopMacSharp.tsx create mode 100644 src/IconDesktopMacTwoTone.tsx create mode 100644 src/IconDesktopWindowsOutlined.tsx create mode 100644 src/IconDesktopWindowsRound.tsx create mode 100644 src/IconDesktopWindowsSharp.tsx create mode 100644 src/IconDesktopWindowsTwoTone.tsx create mode 100644 src/IconDetailsOutlined.tsx create mode 100644 src/IconDetailsRound.tsx create mode 100644 src/IconDetailsSharp.tsx create mode 100644 src/IconDetailsTwoTone.tsx create mode 100644 src/IconDeveloperBoardOffOutlined.tsx create mode 100644 src/IconDeveloperBoardOffRound.tsx create mode 100644 src/IconDeveloperBoardOffSharp.tsx create mode 100644 src/IconDeveloperBoardOffTwoTone.tsx create mode 100644 src/IconDeveloperBoardOutlined.tsx create mode 100644 src/IconDeveloperBoardRound.tsx create mode 100644 src/IconDeveloperBoardSharp.tsx create mode 100644 src/IconDeveloperBoardTwoTone.tsx create mode 100644 src/IconDeveloperModeOutlined.tsx create mode 100644 src/IconDeveloperModeRound.tsx create mode 100644 src/IconDeveloperModeSharp.tsx create mode 100644 src/IconDeveloperModeTwoTone.tsx create mode 100644 src/IconDeviceHubOutlined.tsx create mode 100644 src/IconDeviceHubRound.tsx create mode 100644 src/IconDeviceHubSharp.tsx create mode 100644 src/IconDeviceHubTwoTone.tsx create mode 100644 src/IconDeviceThermostatOutlined.tsx create mode 100644 src/IconDeviceThermostatRound.tsx create mode 100644 src/IconDeviceThermostatSharp.tsx create mode 100644 src/IconDeviceThermostatTwoTone.tsx create mode 100644 src/IconDeviceUnknownOutlined.tsx create mode 100644 src/IconDeviceUnknownRound.tsx create mode 100644 src/IconDeviceUnknownSharp.tsx create mode 100644 src/IconDeviceUnknownTwoTone.tsx create mode 100644 src/IconDevicesFoldOutlined.tsx create mode 100644 src/IconDevicesFoldRound.tsx create mode 100644 src/IconDevicesFoldSharp.tsx create mode 100644 src/IconDevicesFoldTwoTone.tsx create mode 100644 src/IconDevicesOtherOutlined.tsx create mode 100644 src/IconDevicesOtherRound.tsx create mode 100644 src/IconDevicesOtherSharp.tsx create mode 100644 src/IconDevicesOtherTwoTone.tsx create mode 100644 src/IconDevicesOutlined.tsx create mode 100644 src/IconDevicesRound.tsx create mode 100644 src/IconDevicesSharp.tsx create mode 100644 src/IconDevicesTwoTone.tsx create mode 100644 src/IconDialerSipOutlined.tsx create mode 100644 src/IconDialerSipRound.tsx create mode 100644 src/IconDialerSipSharp.tsx create mode 100644 src/IconDialerSipTwoTone.tsx create mode 100644 src/IconDialpadOutlined.tsx create mode 100644 src/IconDialpadRound.tsx create mode 100644 src/IconDialpadSharp.tsx create mode 100644 src/IconDialpadTwoTone.tsx create mode 100644 src/IconDiamondOutlined.tsx create mode 100644 src/IconDiamondRound.tsx create mode 100644 src/IconDiamondSharp.tsx create mode 100644 src/IconDiamondTwoTone.tsx create mode 100644 src/IconDifferenceOutlined.tsx create mode 100644 src/IconDifferenceRound.tsx create mode 100644 src/IconDifferenceSharp.tsx create mode 100644 src/IconDifferenceTwoTone.tsx create mode 100644 src/IconDiningOutlined.tsx create mode 100644 src/IconDiningRound.tsx create mode 100644 src/IconDiningSharp.tsx create mode 100644 src/IconDiningTwoTone.tsx create mode 100644 src/IconDinnerDiningOutlined.tsx create mode 100644 src/IconDinnerDiningRound.tsx create mode 100644 src/IconDinnerDiningSharp.tsx create mode 100644 src/IconDinnerDiningTwoTone.tsx create mode 100644 src/IconDirectionsBikeOutlined.tsx create mode 100644 src/IconDirectionsBikeRound.tsx create mode 100644 src/IconDirectionsBikeSharp.tsx create mode 100644 src/IconDirectionsBikeTwoTone.tsx create mode 100644 src/IconDirectionsBoatFilledOutlined.tsx create mode 100644 src/IconDirectionsBoatFilledRound.tsx create mode 100644 src/IconDirectionsBoatFilledSharp.tsx create mode 100644 src/IconDirectionsBoatFilledTwoTone.tsx create mode 100644 src/IconDirectionsBoatOutlined.tsx create mode 100644 src/IconDirectionsBoatRound.tsx create mode 100644 src/IconDirectionsBoatSharp.tsx create mode 100644 src/IconDirectionsBoatTwoTone.tsx create mode 100644 src/IconDirectionsBusFilledOutlined.tsx create mode 100644 src/IconDirectionsBusFilledRound.tsx create mode 100644 src/IconDirectionsBusFilledSharp.tsx create mode 100644 src/IconDirectionsBusFilledTwoTone.tsx create mode 100644 src/IconDirectionsBusOutlined.tsx create mode 100644 src/IconDirectionsBusRound.tsx create mode 100644 src/IconDirectionsBusSharp.tsx create mode 100644 src/IconDirectionsBusTwoTone.tsx create mode 100644 src/IconDirectionsCarFilledOutlined.tsx create mode 100644 src/IconDirectionsCarFilledRound.tsx create mode 100644 src/IconDirectionsCarFilledSharp.tsx create mode 100644 src/IconDirectionsCarFilledTwoTone.tsx create mode 100644 src/IconDirectionsCarOutlined.tsx create mode 100644 src/IconDirectionsCarRound.tsx create mode 100644 src/IconDirectionsCarSharp.tsx create mode 100644 src/IconDirectionsCarTwoTone.tsx create mode 100644 src/IconDirectionsOffOutlined.tsx create mode 100644 src/IconDirectionsOffRound.tsx create mode 100644 src/IconDirectionsOffSharp.tsx create mode 100644 src/IconDirectionsOffTwoTone.tsx create mode 100644 src/IconDirectionsOutlined.tsx create mode 100644 src/IconDirectionsRailwayFilledOutlined.tsx create mode 100644 src/IconDirectionsRailwayFilledRound.tsx create mode 100644 src/IconDirectionsRailwayFilledSharp.tsx create mode 100644 src/IconDirectionsRailwayFilledTwoTone.tsx create mode 100644 src/IconDirectionsRailwayOutlined.tsx create mode 100644 src/IconDirectionsRailwayRound.tsx create mode 100644 src/IconDirectionsRailwaySharp.tsx create mode 100644 src/IconDirectionsRailwayTwoTone.tsx create mode 100644 src/IconDirectionsRound.tsx create mode 100644 src/IconDirectionsRunOutlined.tsx create mode 100644 src/IconDirectionsRunRound.tsx create mode 100644 src/IconDirectionsRunSharp.tsx create mode 100644 src/IconDirectionsRunTwoTone.tsx create mode 100644 src/IconDirectionsSharp.tsx create mode 100644 src/IconDirectionsSubwayFilledOutlined.tsx create mode 100644 src/IconDirectionsSubwayFilledRound.tsx create mode 100644 src/IconDirectionsSubwayFilledSharp.tsx create mode 100644 src/IconDirectionsSubwayFilledTwoTone.tsx create mode 100644 src/IconDirectionsSubwayOutlined.tsx create mode 100644 src/IconDirectionsSubwayRound.tsx create mode 100644 src/IconDirectionsSubwaySharp.tsx create mode 100644 src/IconDirectionsSubwayTwoTone.tsx create mode 100644 src/IconDirectionsTransitFilledOutlined.tsx create mode 100644 src/IconDirectionsTransitFilledRound.tsx create mode 100644 src/IconDirectionsTransitFilledSharp.tsx create mode 100644 src/IconDirectionsTransitFilledTwoTone.tsx create mode 100644 src/IconDirectionsTransitOutlined.tsx create mode 100644 src/IconDirectionsTransitRound.tsx create mode 100644 src/IconDirectionsTransitSharp.tsx create mode 100644 src/IconDirectionsTransitTwoTone.tsx create mode 100644 src/IconDirectionsTwoTone.tsx create mode 100644 src/IconDirectionsWalkOutlined.tsx create mode 100644 src/IconDirectionsWalkRound.tsx create mode 100644 src/IconDirectionsWalkSharp.tsx create mode 100644 src/IconDirectionsWalkTwoTone.tsx create mode 100644 src/IconDirtyLensOutlined.tsx create mode 100644 src/IconDirtyLensRound.tsx create mode 100644 src/IconDirtyLensSharp.tsx create mode 100644 src/IconDirtyLensTwoTone.tsx create mode 100644 src/IconDisabledByDefaultOutlined.tsx create mode 100644 src/IconDisabledByDefaultRound.tsx create mode 100644 src/IconDisabledByDefaultSharp.tsx create mode 100644 src/IconDisabledByDefaultTwoTone.tsx create mode 100644 src/IconDisabledVisibleOutlined.tsx create mode 100644 src/IconDisabledVisibleRound.tsx create mode 100644 src/IconDisabledVisibleSharp.tsx create mode 100644 src/IconDisabledVisibleTwoTone.tsx create mode 100644 src/IconDiscFullOutlined.tsx create mode 100644 src/IconDiscFullRound.tsx create mode 100644 src/IconDiscFullSharp.tsx create mode 100644 src/IconDiscFullTwoTone.tsx create mode 100644 src/IconDiscountOutlined.tsx create mode 100644 src/IconDiscountRound.tsx create mode 100644 src/IconDiscountSharp.tsx create mode 100644 src/IconDiscountTwoTone.tsx create mode 100644 src/IconDisplaySettingsOutlined.tsx create mode 100644 src/IconDisplaySettingsRound.tsx create mode 100644 src/IconDisplaySettingsSharp.tsx create mode 100644 src/IconDisplaySettingsTwoTone.tsx create mode 100644 src/IconDiversity1Outlined.tsx create mode 100644 src/IconDiversity1Round.tsx create mode 100644 src/IconDiversity1Sharp.tsx create mode 100644 src/IconDiversity1TwoTone.tsx create mode 100644 src/IconDiversity2Outlined.tsx create mode 100644 src/IconDiversity2Round.tsx create mode 100644 src/IconDiversity2Sharp.tsx create mode 100644 src/IconDiversity2TwoTone.tsx create mode 100644 src/IconDiversity3Outlined.tsx create mode 100644 src/IconDiversity3Round.tsx create mode 100644 src/IconDiversity3Sharp.tsx create mode 100644 src/IconDiversity3TwoTone.tsx create mode 100644 src/IconDnsOutlined.tsx create mode 100644 src/IconDnsRound.tsx create mode 100644 src/IconDnsSharp.tsx create mode 100644 src/IconDnsTwoTone.tsx create mode 100644 src/IconDoDisturbAltOutlined.tsx create mode 100644 src/IconDoDisturbAltRound.tsx create mode 100644 src/IconDoDisturbAltSharp.tsx create mode 100644 src/IconDoDisturbAltTwoTone.tsx create mode 100644 src/IconDoDisturbOffOutlined.tsx create mode 100644 src/IconDoDisturbOffRound.tsx create mode 100644 src/IconDoDisturbOffSharp.tsx create mode 100644 src/IconDoDisturbOffTwoTone.tsx create mode 100644 src/IconDoDisturbOnOutlined.tsx create mode 100644 src/IconDoDisturbOnRound.tsx create mode 100644 src/IconDoDisturbOnSharp.tsx create mode 100644 src/IconDoDisturbOnTwoTone.tsx create mode 100644 src/IconDoDisturbOutlined.tsx create mode 100644 src/IconDoDisturbRound.tsx create mode 100644 src/IconDoDisturbSharp.tsx create mode 100644 src/IconDoDisturbTwoTone.tsx create mode 100644 src/IconDoNotDisturbAltOutlined.tsx create mode 100644 src/IconDoNotDisturbAltRound.tsx create mode 100644 src/IconDoNotDisturbAltSharp.tsx create mode 100644 src/IconDoNotDisturbAltTwoTone.tsx create mode 100644 src/IconDoNotDisturbOffOutlined.tsx create mode 100644 src/IconDoNotDisturbOffRound.tsx create mode 100644 src/IconDoNotDisturbOffSharp.tsx create mode 100644 src/IconDoNotDisturbOffTwoTone.tsx create mode 100644 src/IconDoNotDisturbOnOutlined.tsx create mode 100644 src/IconDoNotDisturbOnRound.tsx create mode 100644 src/IconDoNotDisturbOnSharp.tsx create mode 100644 src/IconDoNotDisturbOnTotalSilenceOutlined.tsx create mode 100644 src/IconDoNotDisturbOnTotalSilenceRound.tsx create mode 100644 src/IconDoNotDisturbOnTotalSilenceSharp.tsx create mode 100644 src/IconDoNotDisturbOnTotalSilenceTwoTone.tsx create mode 100644 src/IconDoNotDisturbOnTwoTone.tsx create mode 100644 src/IconDoNotDisturbOutlined.tsx create mode 100644 src/IconDoNotDisturbRound.tsx create mode 100644 src/IconDoNotDisturbSharp.tsx create mode 100644 src/IconDoNotDisturbTwoTone.tsx create mode 100644 src/IconDoNotStepOutlined.tsx create mode 100644 src/IconDoNotStepRound.tsx create mode 100644 src/IconDoNotStepSharp.tsx create mode 100644 src/IconDoNotStepTwoTone.tsx create mode 100644 src/IconDoNotTouchOutlined.tsx create mode 100644 src/IconDoNotTouchRound.tsx create mode 100644 src/IconDoNotTouchSharp.tsx create mode 100644 src/IconDoNotTouchTwoTone.tsx create mode 100644 src/IconDockOutlined.tsx create mode 100644 src/IconDockRound.tsx create mode 100644 src/IconDockSharp.tsx create mode 100644 src/IconDockTwoTone.tsx create mode 100644 src/IconDocumentScannerOutlined.tsx create mode 100644 src/IconDocumentScannerRound.tsx create mode 100644 src/IconDocumentScannerSharp.tsx create mode 100644 src/IconDocumentScannerTwoTone.tsx create mode 100644 src/IconDomainAddOutlined.tsx create mode 100644 src/IconDomainAddRound.tsx create mode 100644 src/IconDomainAddSharp.tsx create mode 100644 src/IconDomainAddTwoTone.tsx create mode 100644 src/IconDomainDisabledOutlined.tsx create mode 100644 src/IconDomainDisabledRound.tsx create mode 100644 src/IconDomainDisabledSharp.tsx create mode 100644 src/IconDomainDisabledTwoTone.tsx create mode 100644 src/IconDomainOutlined.tsx create mode 100644 src/IconDomainRound.tsx create mode 100644 src/IconDomainSharp.tsx create mode 100644 src/IconDomainTwoTone.tsx create mode 100644 src/IconDomainVerificationOutlined.tsx create mode 100644 src/IconDomainVerificationRound.tsx create mode 100644 src/IconDomainVerificationSharp.tsx create mode 100644 src/IconDomainVerificationTwoTone.tsx create mode 100644 src/IconDoneAllOutlined.tsx create mode 100644 src/IconDoneAllRound.tsx create mode 100644 src/IconDoneAllSharp.tsx create mode 100644 src/IconDoneAllTwoTone.tsx create mode 100644 src/IconDoneOutlineOutlined.tsx create mode 100644 src/IconDoneOutlineRound.tsx create mode 100644 src/IconDoneOutlineSharp.tsx create mode 100644 src/IconDoneOutlineTwoTone.tsx create mode 100644 src/IconDoneOutlined.tsx create mode 100644 src/IconDoneRound.tsx create mode 100644 src/IconDoneSharp.tsx create mode 100644 src/IconDoneTwoTone.tsx create mode 100644 src/IconDonutLargeOutlined.tsx create mode 100644 src/IconDonutLargeRound.tsx create mode 100644 src/IconDonutLargeSharp.tsx create mode 100644 src/IconDonutLargeTwoTone.tsx create mode 100644 src/IconDonutSmallOutlined.tsx create mode 100644 src/IconDonutSmallRound.tsx create mode 100644 src/IconDonutSmallSharp.tsx create mode 100644 src/IconDonutSmallTwoTone.tsx create mode 100644 src/IconDoorBackOutlined.tsx create mode 100644 src/IconDoorBackRound.tsx create mode 100644 src/IconDoorBackSharp.tsx create mode 100644 src/IconDoorBackTwoTone.tsx create mode 100644 src/IconDoorFrontOutlined.tsx create mode 100644 src/IconDoorFrontRound.tsx create mode 100644 src/IconDoorFrontSharp.tsx create mode 100644 src/IconDoorFrontTwoTone.tsx create mode 100644 src/IconDoorSlidingOutlined.tsx create mode 100644 src/IconDoorSlidingRound.tsx create mode 100644 src/IconDoorSlidingSharp.tsx create mode 100644 src/IconDoorSlidingTwoTone.tsx create mode 100644 src/IconDoorbellOutlined.tsx create mode 100644 src/IconDoorbellRound.tsx create mode 100644 src/IconDoorbellSharp.tsx create mode 100644 src/IconDoorbellTwoTone.tsx create mode 100644 src/IconDoubleArrowOutlined.tsx create mode 100644 src/IconDoubleArrowRound.tsx create mode 100644 src/IconDoubleArrowSharp.tsx create mode 100644 src/IconDoubleArrowTwoTone.tsx create mode 100644 src/IconDownhillSkiingOutlined.tsx create mode 100644 src/IconDownhillSkiingRound.tsx create mode 100644 src/IconDownhillSkiingSharp.tsx create mode 100644 src/IconDownhillSkiingTwoTone.tsx create mode 100644 src/IconDownloadDoneOutlined.tsx create mode 100644 src/IconDownloadDoneRound.tsx create mode 100644 src/IconDownloadDoneSharp.tsx create mode 100644 src/IconDownloadDoneTwoTone.tsx create mode 100644 src/IconDownloadForOfflineOutlined.tsx create mode 100644 src/IconDownloadForOfflineRound.tsx create mode 100644 src/IconDownloadForOfflineSharp.tsx create mode 100644 src/IconDownloadForOfflineTwoTone.tsx create mode 100644 src/IconDownloadOutlined.tsx create mode 100644 src/IconDownloadRound.tsx create mode 100644 src/IconDownloadSharp.tsx create mode 100644 src/IconDownloadTwoTone.tsx create mode 100644 src/IconDownloadingOutlined.tsx create mode 100644 src/IconDownloadingRound.tsx create mode 100644 src/IconDownloadingSharp.tsx create mode 100644 src/IconDownloadingTwoTone.tsx create mode 100644 src/IconDraftsOutlined.tsx create mode 100644 src/IconDraftsRound.tsx create mode 100644 src/IconDraftsSharp.tsx create mode 100644 src/IconDraftsTwoTone.tsx create mode 100644 src/IconDragHandleOutlined.tsx create mode 100644 src/IconDragHandleRound.tsx create mode 100644 src/IconDragHandleSharp.tsx create mode 100644 src/IconDragHandleTwoTone.tsx create mode 100644 src/IconDragIndicatorOutlined.tsx create mode 100644 src/IconDragIndicatorRound.tsx create mode 100644 src/IconDragIndicatorSharp.tsx create mode 100644 src/IconDragIndicatorTwoTone.tsx create mode 100644 src/IconDrawOutlined.tsx create mode 100644 src/IconDrawRound.tsx create mode 100644 src/IconDrawSharp.tsx create mode 100644 src/IconDrawTwoTone.tsx create mode 100644 src/IconDriveEtaOutlined.tsx create mode 100644 src/IconDriveEtaRound.tsx create mode 100644 src/IconDriveEtaSharp.tsx create mode 100644 src/IconDriveEtaTwoTone.tsx create mode 100644 src/IconDriveFileMoveOutlined.tsx create mode 100644 src/IconDriveFileMoveRound.tsx create mode 100644 src/IconDriveFileMoveRtlOutlined.tsx create mode 100644 src/IconDriveFileMoveRtlRound.tsx create mode 100644 src/IconDriveFileMoveRtlSharp.tsx create mode 100644 src/IconDriveFileMoveRtlTwoTone.tsx create mode 100644 src/IconDriveFileMoveSharp.tsx create mode 100644 src/IconDriveFileMoveTwoTone.tsx create mode 100644 src/IconDriveFileRenameOutlineOutlined.tsx create mode 100644 src/IconDriveFileRenameOutlineRound.tsx create mode 100644 src/IconDriveFileRenameOutlineSharp.tsx create mode 100644 src/IconDriveFileRenameOutlineTwoTone.tsx create mode 100644 src/IconDriveFolderUploadOutlined.tsx create mode 100644 src/IconDriveFolderUploadRound.tsx create mode 100644 src/IconDriveFolderUploadSharp.tsx create mode 100644 src/IconDriveFolderUploadTwoTone.tsx create mode 100644 src/IconDryCleaningOutlined.tsx create mode 100644 src/IconDryCleaningRound.tsx create mode 100644 src/IconDryCleaningSharp.tsx create mode 100644 src/IconDryCleaningTwoTone.tsx create mode 100644 src/IconDryOutlined.tsx create mode 100644 src/IconDryRound.tsx create mode 100644 src/IconDrySharp.tsx create mode 100644 src/IconDryTwoTone.tsx create mode 100644 src/IconDuoOutlined.tsx create mode 100644 src/IconDuoRound.tsx create mode 100644 src/IconDuoSharp.tsx create mode 100644 src/IconDuoTwoTone.tsx create mode 100644 src/IconDvrOutlined.tsx create mode 100644 src/IconDvrRound.tsx create mode 100644 src/IconDvrSharp.tsx create mode 100644 src/IconDvrTwoTone.tsx create mode 100644 src/IconDynamicFeedOutlined.tsx create mode 100644 src/IconDynamicFeedRound.tsx create mode 100644 src/IconDynamicFeedSharp.tsx create mode 100644 src/IconDynamicFeedTwoTone.tsx create mode 100644 src/IconDynamicFormOutlined.tsx create mode 100644 src/IconDynamicFormRound.tsx create mode 100644 src/IconDynamicFormSharp.tsx create mode 100644 src/IconDynamicFormTwoTone.tsx create mode 100644 src/IconEMobiledataOutlined.tsx create mode 100644 src/IconEMobiledataRound.tsx create mode 100644 src/IconEMobiledataSharp.tsx create mode 100644 src/IconEMobiledataTwoTone.tsx create mode 100644 src/IconEarbudsBatteryOutlined.tsx create mode 100644 src/IconEarbudsBatteryRound.tsx create mode 100644 src/IconEarbudsBatterySharp.tsx create mode 100644 src/IconEarbudsBatteryTwoTone.tsx create mode 100644 src/IconEarbudsOutlined.tsx create mode 100644 src/IconEarbudsRound.tsx create mode 100644 src/IconEarbudsSharp.tsx create mode 100644 src/IconEarbudsTwoTone.tsx create mode 100644 src/IconEastOutlined.tsx create mode 100644 src/IconEastRound.tsx create mode 100644 src/IconEastSharp.tsx create mode 100644 src/IconEastTwoTone.tsx create mode 100644 src/IconEdgesensorHighOutlined.tsx create mode 100644 src/IconEdgesensorHighRound.tsx create mode 100644 src/IconEdgesensorHighSharp.tsx create mode 100644 src/IconEdgesensorHighTwoTone.tsx create mode 100644 src/IconEdgesensorLowOutlined.tsx create mode 100644 src/IconEdgesensorLowRound.tsx create mode 100644 src/IconEdgesensorLowSharp.tsx create mode 100644 src/IconEdgesensorLowTwoTone.tsx create mode 100644 src/IconEditAttributesOutlined.tsx create mode 100644 src/IconEditAttributesRound.tsx create mode 100644 src/IconEditAttributesSharp.tsx create mode 100644 src/IconEditAttributesTwoTone.tsx create mode 100644 src/IconEditCalendarOutlined.tsx create mode 100644 src/IconEditCalendarRound.tsx create mode 100644 src/IconEditCalendarSharp.tsx create mode 100644 src/IconEditCalendarTwoTone.tsx create mode 100644 src/IconEditLocationAltOutlined.tsx create mode 100644 src/IconEditLocationAltRound.tsx create mode 100644 src/IconEditLocationAltSharp.tsx create mode 100644 src/IconEditLocationAltTwoTone.tsx create mode 100644 src/IconEditLocationOutlined.tsx create mode 100644 src/IconEditLocationRound.tsx create mode 100644 src/IconEditLocationSharp.tsx create mode 100644 src/IconEditLocationTwoTone.tsx create mode 100644 src/IconEditNoteOutlined.tsx create mode 100644 src/IconEditNoteRound.tsx create mode 100644 src/IconEditNoteSharp.tsx create mode 100644 src/IconEditNoteTwoTone.tsx create mode 100644 src/IconEditNotificationsOutlined.tsx create mode 100644 src/IconEditNotificationsRound.tsx create mode 100644 src/IconEditNotificationsSharp.tsx create mode 100644 src/IconEditNotificationsTwoTone.tsx create mode 100644 src/IconEditOffOutlined.tsx create mode 100644 src/IconEditOffRound.tsx create mode 100644 src/IconEditOffSharp.tsx create mode 100644 src/IconEditOffTwoTone.tsx create mode 100644 src/IconEditOutlined.tsx create mode 100644 src/IconEditRoadOutlined.tsx create mode 100644 src/IconEditRoadRound.tsx create mode 100644 src/IconEditRoadSharp.tsx create mode 100644 src/IconEditRoadTwoTone.tsx create mode 100644 src/IconEditRound.tsx create mode 100644 src/IconEditSharp.tsx create mode 100644 src/IconEditTwoTone.tsx create mode 100644 src/IconEggAltOutlined.tsx create mode 100644 src/IconEggAltRound.tsx create mode 100644 src/IconEggAltSharp.tsx create mode 100644 src/IconEggAltTwoTone.tsx create mode 100644 src/IconEggOutlined.tsx create mode 100644 src/IconEggRound.tsx create mode 100644 src/IconEggSharp.tsx create mode 100644 src/IconEggTwoTone.tsx create mode 100644 src/IconEjectOutlined.tsx create mode 100644 src/IconEjectRound.tsx create mode 100644 src/IconEjectSharp.tsx create mode 100644 src/IconEjectTwoTone.tsx create mode 100644 src/IconElderlyOutlined.tsx create mode 100644 src/IconElderlyRound.tsx create mode 100644 src/IconElderlySharp.tsx create mode 100644 src/IconElderlyTwoTone.tsx create mode 100644 src/IconElderlyWomanOutlined.tsx create mode 100644 src/IconElderlyWomanRound.tsx create mode 100644 src/IconElderlyWomanSharp.tsx create mode 100644 src/IconElderlyWomanTwoTone.tsx create mode 100644 src/IconElectricBikeOutlined.tsx create mode 100644 src/IconElectricBikeRound.tsx create mode 100644 src/IconElectricBikeSharp.tsx create mode 100644 src/IconElectricBikeTwoTone.tsx create mode 100644 src/IconElectricBoltOutlined.tsx create mode 100644 src/IconElectricBoltRound.tsx create mode 100644 src/IconElectricBoltSharp.tsx create mode 100644 src/IconElectricBoltTwoTone.tsx create mode 100644 src/IconElectricCarOutlined.tsx create mode 100644 src/IconElectricCarRound.tsx create mode 100644 src/IconElectricCarSharp.tsx create mode 100644 src/IconElectricCarTwoTone.tsx create mode 100644 src/IconElectricMeterOutlined.tsx create mode 100644 src/IconElectricMeterRound.tsx create mode 100644 src/IconElectricMeterSharp.tsx create mode 100644 src/IconElectricMeterTwoTone.tsx create mode 100644 src/IconElectricMopedOutlined.tsx create mode 100644 src/IconElectricMopedRound.tsx create mode 100644 src/IconElectricMopedSharp.tsx create mode 100644 src/IconElectricMopedTwoTone.tsx create mode 100644 src/IconElectricRickshawOutlined.tsx create mode 100644 src/IconElectricRickshawRound.tsx create mode 100644 src/IconElectricRickshawSharp.tsx create mode 100644 src/IconElectricRickshawTwoTone.tsx create mode 100644 src/IconElectricScooterOutlined.tsx create mode 100644 src/IconElectricScooterRound.tsx create mode 100644 src/IconElectricScooterSharp.tsx create mode 100644 src/IconElectricScooterTwoTone.tsx create mode 100644 src/IconElectricalServicesOutlined.tsx create mode 100644 src/IconElectricalServicesRound.tsx create mode 100644 src/IconElectricalServicesSharp.tsx create mode 100644 src/IconElectricalServicesTwoTone.tsx create mode 100644 src/IconElevatorOutlined.tsx create mode 100644 src/IconElevatorRound.tsx create mode 100644 src/IconElevatorSharp.tsx create mode 100644 src/IconElevatorTwoTone.tsx create mode 100644 src/IconEmailOutlined.tsx create mode 100644 src/IconEmailRound.tsx create mode 100644 src/IconEmailSharp.tsx create mode 100644 src/IconEmailTwoTone.tsx create mode 100644 src/IconEmergencyOutlined.tsx create mode 100644 src/IconEmergencyRecordingOutlined.tsx create mode 100644 src/IconEmergencyRecordingRound.tsx create mode 100644 src/IconEmergencyRecordingSharp.tsx create mode 100644 src/IconEmergencyRecordingTwoTone.tsx create mode 100644 src/IconEmergencyRound.tsx create mode 100644 src/IconEmergencyShareOutlined.tsx create mode 100644 src/IconEmergencyShareRound.tsx create mode 100644 src/IconEmergencyShareSharp.tsx create mode 100644 src/IconEmergencyShareTwoTone.tsx create mode 100644 src/IconEmergencySharp.tsx create mode 100644 src/IconEmergencyTwoTone.tsx create mode 100644 src/IconEmojiEmotionsOutlined.tsx create mode 100644 src/IconEmojiEmotionsRound.tsx create mode 100644 src/IconEmojiEmotionsSharp.tsx create mode 100644 src/IconEmojiEmotionsTwoTone.tsx create mode 100644 src/IconEmojiEventsOutlined.tsx create mode 100644 src/IconEmojiEventsRound.tsx create mode 100644 src/IconEmojiEventsSharp.tsx create mode 100644 src/IconEmojiEventsTwoTone.tsx create mode 100644 src/IconEmojiFoodBeverageOutlined.tsx create mode 100644 src/IconEmojiFoodBeverageRound.tsx create mode 100644 src/IconEmojiFoodBeverageSharp.tsx create mode 100644 src/IconEmojiFoodBeverageTwoTone.tsx create mode 100644 src/IconEmojiNatureOutlined.tsx create mode 100644 src/IconEmojiNatureRound.tsx create mode 100644 src/IconEmojiNatureSharp.tsx create mode 100644 src/IconEmojiNatureTwoTone.tsx create mode 100644 src/IconEmojiObjectsOutlined.tsx create mode 100644 src/IconEmojiObjectsRound.tsx create mode 100644 src/IconEmojiObjectsSharp.tsx create mode 100644 src/IconEmojiObjectsTwoTone.tsx create mode 100644 src/IconEmojiPeopleOutlined.tsx create mode 100644 src/IconEmojiPeopleRound.tsx create mode 100644 src/IconEmojiPeopleSharp.tsx create mode 100644 src/IconEmojiPeopleTwoTone.tsx create mode 100644 src/IconEmojiSymbolsOutlined.tsx create mode 100644 src/IconEmojiSymbolsRound.tsx create mode 100644 src/IconEmojiSymbolsSharp.tsx create mode 100644 src/IconEmojiSymbolsTwoTone.tsx create mode 100644 src/IconEmojiTransportationOutlined.tsx create mode 100644 src/IconEmojiTransportationRound.tsx create mode 100644 src/IconEmojiTransportationSharp.tsx create mode 100644 src/IconEmojiTransportationTwoTone.tsx create mode 100644 src/IconEnergySavingsLeafOutlined.tsx create mode 100644 src/IconEnergySavingsLeafRound.tsx create mode 100644 src/IconEnergySavingsLeafSharp.tsx create mode 100644 src/IconEnergySavingsLeafTwoTone.tsx create mode 100644 src/IconEngineeringOutlined.tsx create mode 100644 src/IconEngineeringRound.tsx create mode 100644 src/IconEngineeringSharp.tsx create mode 100644 src/IconEngineeringTwoTone.tsx create mode 100644 src/IconEnhancedEncryptionOutlined.tsx create mode 100644 src/IconEnhancedEncryptionRound.tsx create mode 100644 src/IconEnhancedEncryptionSharp.tsx create mode 100644 src/IconEnhancedEncryptionTwoTone.tsx create mode 100644 src/IconEqualizerOutlined.tsx create mode 100644 src/IconEqualizerRound.tsx create mode 100644 src/IconEqualizerSharp.tsx create mode 100644 src/IconEqualizerTwoTone.tsx create mode 100644 src/IconErrorOutlineOutlined.tsx create mode 100644 src/IconErrorOutlineRound.tsx create mode 100644 src/IconErrorOutlineSharp.tsx create mode 100644 src/IconErrorOutlineTwoTone.tsx create mode 100644 src/IconErrorOutlined.tsx create mode 100644 src/IconErrorRound.tsx create mode 100644 src/IconErrorSharp.tsx create mode 100644 src/IconErrorTwoTone.tsx create mode 100644 src/IconEscalatorOutlined.tsx create mode 100644 src/IconEscalatorRound.tsx create mode 100644 src/IconEscalatorSharp.tsx create mode 100644 src/IconEscalatorTwoTone.tsx create mode 100644 src/IconEscalatorWarningOutlined.tsx create mode 100644 src/IconEscalatorWarningRound.tsx create mode 100644 src/IconEscalatorWarningSharp.tsx create mode 100644 src/IconEscalatorWarningTwoTone.tsx create mode 100644 src/IconEuroOutlined.tsx create mode 100644 src/IconEuroRound.tsx create mode 100644 src/IconEuroSharp.tsx create mode 100644 src/IconEuroSymbolOutlined.tsx create mode 100644 src/IconEuroSymbolRound.tsx create mode 100644 src/IconEuroSymbolSharp.tsx create mode 100644 src/IconEuroSymbolTwoTone.tsx create mode 100644 src/IconEuroTwoTone.tsx create mode 100644 src/IconEvStationOutlined.tsx create mode 100644 src/IconEvStationRound.tsx create mode 100644 src/IconEvStationSharp.tsx create mode 100644 src/IconEvStationTwoTone.tsx create mode 100644 src/IconEventAvailableOutlined.tsx create mode 100644 src/IconEventAvailableRound.tsx create mode 100644 src/IconEventAvailableSharp.tsx create mode 100644 src/IconEventAvailableTwoTone.tsx create mode 100644 src/IconEventBusyOutlined.tsx create mode 100644 src/IconEventBusyRound.tsx create mode 100644 src/IconEventBusySharp.tsx create mode 100644 src/IconEventBusyTwoTone.tsx create mode 100644 src/IconEventNoteOutlined.tsx create mode 100644 src/IconEventNoteRound.tsx create mode 100644 src/IconEventNoteSharp.tsx create mode 100644 src/IconEventNoteTwoTone.tsx create mode 100644 src/IconEventOutlined.tsx create mode 100644 src/IconEventRepeatOutlined.tsx create mode 100644 src/IconEventRepeatRound.tsx create mode 100644 src/IconEventRepeatSharp.tsx create mode 100644 src/IconEventRepeatTwoTone.tsx create mode 100644 src/IconEventRound.tsx create mode 100644 src/IconEventSeatOutlined.tsx create mode 100644 src/IconEventSeatRound.tsx create mode 100644 src/IconEventSeatSharp.tsx create mode 100644 src/IconEventSeatTwoTone.tsx create mode 100644 src/IconEventSharp.tsx create mode 100644 src/IconEventTwoTone.tsx create mode 100644 src/IconExitToAppOutlined.tsx create mode 100644 src/IconExitToAppRound.tsx create mode 100644 src/IconExitToAppSharp.tsx create mode 100644 src/IconExitToAppTwoTone.tsx create mode 100644 src/IconExpandCircleDownOutlined.tsx create mode 100644 src/IconExpandCircleDownRound.tsx create mode 100644 src/IconExpandCircleDownSharp.tsx create mode 100644 src/IconExpandCircleDownTwoTone.tsx create mode 100644 src/IconExpandLessOutlined.tsx create mode 100644 src/IconExpandLessRound.tsx create mode 100644 src/IconExpandLessSharp.tsx create mode 100644 src/IconExpandLessTwoTone.tsx create mode 100644 src/IconExpandMoreOutlined.tsx create mode 100644 src/IconExpandMoreRound.tsx create mode 100644 src/IconExpandMoreSharp.tsx create mode 100644 src/IconExpandMoreTwoTone.tsx create mode 100644 src/IconExpandOutlined.tsx create mode 100644 src/IconExpandRound.tsx create mode 100644 src/IconExpandSharp.tsx create mode 100644 src/IconExpandTwoTone.tsx create mode 100644 src/IconExplicitOutlined.tsx create mode 100644 src/IconExplicitRound.tsx create mode 100644 src/IconExplicitSharp.tsx create mode 100644 src/IconExplicitTwoTone.tsx create mode 100644 src/IconExploreOffOutlined.tsx create mode 100644 src/IconExploreOffRound.tsx create mode 100644 src/IconExploreOffSharp.tsx create mode 100644 src/IconExploreOffTwoTone.tsx create mode 100644 src/IconExploreOutlined.tsx create mode 100644 src/IconExploreRound.tsx create mode 100644 src/IconExploreSharp.tsx create mode 100644 src/IconExploreTwoTone.tsx create mode 100644 src/IconExposureNeg1Outlined.tsx create mode 100644 src/IconExposureNeg1Round.tsx create mode 100644 src/IconExposureNeg1Sharp.tsx create mode 100644 src/IconExposureNeg1TwoTone.tsx create mode 100644 src/IconExposureNeg2Outlined.tsx create mode 100644 src/IconExposureNeg2Round.tsx create mode 100644 src/IconExposureNeg2Sharp.tsx create mode 100644 src/IconExposureNeg2TwoTone.tsx create mode 100644 src/IconExposureOutlined.tsx create mode 100644 src/IconExposurePlus1Outlined.tsx create mode 100644 src/IconExposurePlus1Round.tsx create mode 100644 src/IconExposurePlus1Sharp.tsx create mode 100644 src/IconExposurePlus1TwoTone.tsx create mode 100644 src/IconExposurePlus2Outlined.tsx create mode 100644 src/IconExposurePlus2Round.tsx create mode 100644 src/IconExposurePlus2Sharp.tsx create mode 100644 src/IconExposurePlus2TwoTone.tsx create mode 100644 src/IconExposureRound.tsx create mode 100644 src/IconExposureSharp.tsx create mode 100644 src/IconExposureTwoTone.tsx create mode 100644 src/IconExposureZeroOutlined.tsx create mode 100644 src/IconExposureZeroRound.tsx create mode 100644 src/IconExposureZeroSharp.tsx create mode 100644 src/IconExposureZeroTwoTone.tsx create mode 100644 src/IconExtensionOffOutlined.tsx create mode 100644 src/IconExtensionOffRound.tsx create mode 100644 src/IconExtensionOffSharp.tsx create mode 100644 src/IconExtensionOffTwoTone.tsx create mode 100644 src/IconExtensionOutlined.tsx create mode 100644 src/IconExtensionRound.tsx create mode 100644 src/IconExtensionSharp.tsx create mode 100644 src/IconExtensionTwoTone.tsx create mode 100644 src/IconFace2Outlined.tsx create mode 100644 src/IconFace2Round.tsx create mode 100644 src/IconFace2Sharp.tsx create mode 100644 src/IconFace2TwoTone.tsx create mode 100644 src/IconFace3Outlined.tsx create mode 100644 src/IconFace3Round.tsx create mode 100644 src/IconFace3Sharp.tsx create mode 100644 src/IconFace3TwoTone.tsx create mode 100644 src/IconFace4Outlined.tsx create mode 100644 src/IconFace4Round.tsx create mode 100644 src/IconFace4Sharp.tsx create mode 100644 src/IconFace4TwoTone.tsx create mode 100644 src/IconFace5Outlined.tsx create mode 100644 src/IconFace5Round.tsx create mode 100644 src/IconFace5Sharp.tsx create mode 100644 src/IconFace5TwoTone.tsx create mode 100644 src/IconFace6Outlined.tsx create mode 100644 src/IconFace6Round.tsx create mode 100644 src/IconFace6Sharp.tsx create mode 100644 src/IconFace6TwoTone.tsx create mode 100644 src/IconFaceOutlined.tsx create mode 100644 src/IconFaceRetouchingNaturalOutlined.tsx create mode 100644 src/IconFaceRetouchingNaturalRound.tsx create mode 100644 src/IconFaceRetouchingNaturalSharp.tsx create mode 100644 src/IconFaceRetouchingNaturalTwoTone.tsx create mode 100644 src/IconFaceRetouchingOffOutlined.tsx create mode 100644 src/IconFaceRetouchingOffRound.tsx create mode 100644 src/IconFaceRetouchingOffSharp.tsx create mode 100644 src/IconFaceRetouchingOffTwoTone.tsx create mode 100644 src/IconFaceRound.tsx create mode 100644 src/IconFaceSharp.tsx create mode 100644 src/IconFaceTwoTone.tsx create mode 100644 src/IconFactCheckOutlined.tsx create mode 100644 src/IconFactCheckRound.tsx create mode 100644 src/IconFactCheckSharp.tsx create mode 100644 src/IconFactCheckTwoTone.tsx create mode 100644 src/IconFactoryOutlined.tsx create mode 100644 src/IconFactoryRound.tsx create mode 100644 src/IconFactorySharp.tsx create mode 100644 src/IconFactoryTwoTone.tsx create mode 100644 src/IconFamilyRestroomOutlined.tsx create mode 100644 src/IconFamilyRestroomRound.tsx create mode 100644 src/IconFamilyRestroomSharp.tsx create mode 100644 src/IconFamilyRestroomTwoTone.tsx create mode 100644 src/IconFastForwardOutlined.tsx create mode 100644 src/IconFastForwardRound.tsx create mode 100644 src/IconFastForwardSharp.tsx create mode 100644 src/IconFastForwardTwoTone.tsx create mode 100644 src/IconFastRewindOutlined.tsx create mode 100644 src/IconFastRewindRound.tsx create mode 100644 src/IconFastRewindSharp.tsx create mode 100644 src/IconFastRewindTwoTone.tsx create mode 100644 src/IconFastfoodOutlined.tsx create mode 100644 src/IconFastfoodRound.tsx create mode 100644 src/IconFastfoodSharp.tsx create mode 100644 src/IconFastfoodTwoTone.tsx create mode 100644 src/IconFavoriteBorderOutlined.tsx create mode 100644 src/IconFavoriteBorderRound.tsx create mode 100644 src/IconFavoriteBorderSharp.tsx create mode 100644 src/IconFavoriteBorderTwoTone.tsx create mode 100644 src/IconFavoriteOutlined.tsx create mode 100644 src/IconFavoriteRound.tsx create mode 100644 src/IconFavoriteSharp.tsx create mode 100644 src/IconFavoriteTwoTone.tsx create mode 100644 src/IconFaxOutlined.tsx create mode 100644 src/IconFaxRound.tsx create mode 100644 src/IconFaxSharp.tsx create mode 100644 src/IconFaxTwoTone.tsx create mode 100644 src/IconFeaturedPlayListOutlined.tsx create mode 100644 src/IconFeaturedPlayListRound.tsx create mode 100644 src/IconFeaturedPlayListSharp.tsx create mode 100644 src/IconFeaturedPlayListTwoTone.tsx create mode 100644 src/IconFeaturedVideoOutlined.tsx create mode 100644 src/IconFeaturedVideoRound.tsx create mode 100644 src/IconFeaturedVideoSharp.tsx create mode 100644 src/IconFeaturedVideoTwoTone.tsx create mode 100644 src/IconFeedOutlined.tsx create mode 100644 src/IconFeedRound.tsx create mode 100644 src/IconFeedSharp.tsx create mode 100644 src/IconFeedTwoTone.tsx create mode 100644 src/IconFeedbackOutlined.tsx create mode 100644 src/IconFeedbackRound.tsx create mode 100644 src/IconFeedbackSharp.tsx create mode 100644 src/IconFeedbackTwoTone.tsx create mode 100644 src/IconFemaleOutlined.tsx create mode 100644 src/IconFemaleRound.tsx create mode 100644 src/IconFemaleSharp.tsx create mode 100644 src/IconFemaleTwoTone.tsx create mode 100644 src/IconFenceOutlined.tsx create mode 100644 src/IconFenceRound.tsx create mode 100644 src/IconFenceSharp.tsx create mode 100644 src/IconFenceTwoTone.tsx create mode 100644 src/IconFestivalOutlined.tsx create mode 100644 src/IconFestivalRound.tsx create mode 100644 src/IconFestivalSharp.tsx create mode 100644 src/IconFestivalTwoTone.tsx create mode 100644 src/IconFiberDvrOutlined.tsx create mode 100644 src/IconFiberDvrRound.tsx create mode 100644 src/IconFiberDvrSharp.tsx create mode 100644 src/IconFiberDvrTwoTone.tsx create mode 100644 src/IconFiberManualRecordOutlined.tsx create mode 100644 src/IconFiberManualRecordRound.tsx create mode 100644 src/IconFiberManualRecordSharp.tsx create mode 100644 src/IconFiberManualRecordTwoTone.tsx create mode 100644 src/IconFiberNewOutlined.tsx create mode 100644 src/IconFiberNewRound.tsx create mode 100644 src/IconFiberNewSharp.tsx create mode 100644 src/IconFiberNewTwoTone.tsx create mode 100644 src/IconFiberPinOutlined.tsx create mode 100644 src/IconFiberPinRound.tsx create mode 100644 src/IconFiberPinSharp.tsx create mode 100644 src/IconFiberPinTwoTone.tsx create mode 100644 src/IconFiberSmartRecordOutlined.tsx create mode 100644 src/IconFiberSmartRecordRound.tsx create mode 100644 src/IconFiberSmartRecordSharp.tsx create mode 100644 src/IconFiberSmartRecordTwoTone.tsx create mode 100644 src/IconFileCopyOutlined.tsx create mode 100644 src/IconFileCopyRound.tsx create mode 100644 src/IconFileCopySharp.tsx create mode 100644 src/IconFileCopyTwoTone.tsx create mode 100644 src/IconFileDownloadDoneOutlined.tsx create mode 100644 src/IconFileDownloadDoneRound.tsx create mode 100644 src/IconFileDownloadDoneSharp.tsx create mode 100644 src/IconFileDownloadDoneTwoTone.tsx create mode 100644 src/IconFileDownloadOffOutlined.tsx create mode 100644 src/IconFileDownloadOffRound.tsx create mode 100644 src/IconFileDownloadOffSharp.tsx create mode 100644 src/IconFileDownloadOffTwoTone.tsx create mode 100644 src/IconFileDownloadOutlined.tsx create mode 100644 src/IconFileDownloadRound.tsx create mode 100644 src/IconFileDownloadSharp.tsx create mode 100644 src/IconFileDownloadTwoTone.tsx create mode 100644 src/IconFileOpenOutlined.tsx create mode 100644 src/IconFileOpenRound.tsx create mode 100644 src/IconFileOpenSharp.tsx create mode 100644 src/IconFileOpenTwoTone.tsx create mode 100644 src/IconFilePresentOutlined.tsx create mode 100644 src/IconFilePresentRound.tsx create mode 100644 src/IconFilePresentSharp.tsx create mode 100644 src/IconFilePresentTwoTone.tsx create mode 100644 src/IconFileUploadOutlined.tsx create mode 100644 src/IconFileUploadRound.tsx create mode 100644 src/IconFileUploadSharp.tsx create mode 100644 src/IconFileUploadTwoTone.tsx create mode 100644 src/IconFilter1Outlined.tsx create mode 100644 src/IconFilter1Round.tsx create mode 100644 src/IconFilter1Sharp.tsx create mode 100644 src/IconFilter1TwoTone.tsx create mode 100644 src/IconFilter2Outlined.tsx create mode 100644 src/IconFilter2Round.tsx create mode 100644 src/IconFilter2Sharp.tsx create mode 100644 src/IconFilter2TwoTone.tsx create mode 100644 src/IconFilter3Outlined.tsx create mode 100644 src/IconFilter3Round.tsx create mode 100644 src/IconFilter3Sharp.tsx create mode 100644 src/IconFilter3TwoTone.tsx create mode 100644 src/IconFilter4Outlined.tsx create mode 100644 src/IconFilter4Round.tsx create mode 100644 src/IconFilter4Sharp.tsx create mode 100644 src/IconFilter4TwoTone.tsx create mode 100644 src/IconFilter5Outlined.tsx create mode 100644 src/IconFilter5Round.tsx create mode 100644 src/IconFilter5Sharp.tsx create mode 100644 src/IconFilter5TwoTone.tsx create mode 100644 src/IconFilter6Outlined.tsx create mode 100644 src/IconFilter6Round.tsx create mode 100644 src/IconFilter6Sharp.tsx create mode 100644 src/IconFilter6TwoTone.tsx create mode 100644 src/IconFilter7Outlined.tsx create mode 100644 src/IconFilter7Round.tsx create mode 100644 src/IconFilter7Sharp.tsx create mode 100644 src/IconFilter7TwoTone.tsx create mode 100644 src/IconFilter8Outlined.tsx create mode 100644 src/IconFilter8Round.tsx create mode 100644 src/IconFilter8Sharp.tsx create mode 100644 src/IconFilter8TwoTone.tsx create mode 100644 src/IconFilter9Outlined.tsx create mode 100644 src/IconFilter9PlusOutlined.tsx create mode 100644 src/IconFilter9PlusRound.tsx create mode 100644 src/IconFilter9PlusSharp.tsx create mode 100644 src/IconFilter9PlusTwoTone.tsx create mode 100644 src/IconFilter9Round.tsx create mode 100644 src/IconFilter9Sharp.tsx create mode 100644 src/IconFilter9TwoTone.tsx create mode 100644 src/IconFilterAltOffOutlined.tsx create mode 100644 src/IconFilterAltOffRound.tsx create mode 100644 src/IconFilterAltOffSharp.tsx create mode 100644 src/IconFilterAltOffTwoTone.tsx create mode 100644 src/IconFilterAltOutlined.tsx create mode 100644 src/IconFilterAltRound.tsx create mode 100644 src/IconFilterAltSharp.tsx create mode 100644 src/IconFilterAltTwoTone.tsx create mode 100644 src/IconFilterBAndWOutlined.tsx create mode 100644 src/IconFilterBAndWRound.tsx create mode 100644 src/IconFilterBAndWSharp.tsx create mode 100644 src/IconFilterBAndWTwoTone.tsx create mode 100644 src/IconFilterCenterFocusOutlined.tsx create mode 100644 src/IconFilterCenterFocusRound.tsx create mode 100644 src/IconFilterCenterFocusSharp.tsx create mode 100644 src/IconFilterCenterFocusTwoTone.tsx create mode 100644 src/IconFilterDramaOutlined.tsx create mode 100644 src/IconFilterDramaRound.tsx create mode 100644 src/IconFilterDramaSharp.tsx create mode 100644 src/IconFilterDramaTwoTone.tsx create mode 100644 src/IconFilterFramesOutlined.tsx create mode 100644 src/IconFilterFramesRound.tsx create mode 100644 src/IconFilterFramesSharp.tsx create mode 100644 src/IconFilterFramesTwoTone.tsx create mode 100644 src/IconFilterHdrOutlined.tsx create mode 100644 src/IconFilterHdrRound.tsx create mode 100644 src/IconFilterHdrSharp.tsx create mode 100644 src/IconFilterHdrTwoTone.tsx create mode 100644 src/IconFilterListOffOutlined.tsx create mode 100644 src/IconFilterListOffRound.tsx create mode 100644 src/IconFilterListOffSharp.tsx create mode 100644 src/IconFilterListOffTwoTone.tsx create mode 100644 src/IconFilterListOutlined.tsx create mode 100644 src/IconFilterListRound.tsx create mode 100644 src/IconFilterListSharp.tsx create mode 100644 src/IconFilterListTwoTone.tsx create mode 100644 src/IconFilterNoneOutlined.tsx create mode 100644 src/IconFilterNoneRound.tsx create mode 100644 src/IconFilterNoneSharp.tsx create mode 100644 src/IconFilterNoneTwoTone.tsx create mode 100644 src/IconFilterOutlined.tsx create mode 100644 src/IconFilterRound.tsx create mode 100644 src/IconFilterSharp.tsx create mode 100644 src/IconFilterTiltShiftOutlined.tsx create mode 100644 src/IconFilterTiltShiftRound.tsx create mode 100644 src/IconFilterTiltShiftSharp.tsx create mode 100644 src/IconFilterTiltShiftTwoTone.tsx create mode 100644 src/IconFilterTwoTone.tsx create mode 100644 src/IconFilterVintageOutlined.tsx create mode 100644 src/IconFilterVintageRound.tsx create mode 100644 src/IconFilterVintageSharp.tsx create mode 100644 src/IconFilterVintageTwoTone.tsx create mode 100644 src/IconFindInPageOutlined.tsx create mode 100644 src/IconFindInPageRound.tsx create mode 100644 src/IconFindInPageSharp.tsx create mode 100644 src/IconFindInPageTwoTone.tsx create mode 100644 src/IconFindReplaceOutlined.tsx create mode 100644 src/IconFindReplaceRound.tsx create mode 100644 src/IconFindReplaceSharp.tsx create mode 100644 src/IconFindReplaceTwoTone.tsx create mode 100644 src/IconFingerprintOutlined.tsx create mode 100644 src/IconFingerprintRound.tsx create mode 100644 src/IconFingerprintSharp.tsx create mode 100644 src/IconFingerprintTwoTone.tsx create mode 100644 src/IconFireExtinguisherOutlined.tsx create mode 100644 src/IconFireExtinguisherRound.tsx create mode 100644 src/IconFireExtinguisherSharp.tsx create mode 100644 src/IconFireExtinguisherTwoTone.tsx create mode 100644 src/IconFireHydrantAltOutlined.tsx create mode 100644 src/IconFireHydrantAltRound.tsx create mode 100644 src/IconFireHydrantAltSharp.tsx create mode 100644 src/IconFireHydrantAltTwoTone.tsx create mode 100644 src/IconFireTruckOutlined.tsx create mode 100644 src/IconFireTruckRound.tsx create mode 100644 src/IconFireTruckSharp.tsx create mode 100644 src/IconFireTruckTwoTone.tsx create mode 100644 src/IconFireplaceOutlined.tsx create mode 100644 src/IconFireplaceRound.tsx create mode 100644 src/IconFireplaceSharp.tsx create mode 100644 src/IconFireplaceTwoTone.tsx create mode 100644 src/IconFirstPageOutlined.tsx create mode 100644 src/IconFirstPageRound.tsx create mode 100644 src/IconFirstPageSharp.tsx create mode 100644 src/IconFirstPageTwoTone.tsx create mode 100644 src/IconFitScreenOutlined.tsx create mode 100644 src/IconFitScreenRound.tsx create mode 100644 src/IconFitScreenSharp.tsx create mode 100644 src/IconFitScreenTwoTone.tsx create mode 100644 src/IconFitbitOutlined.tsx create mode 100644 src/IconFitbitRound.tsx create mode 100644 src/IconFitbitSharp.tsx create mode 100644 src/IconFitbitTwoTone.tsx create mode 100644 src/IconFitnessCenterOutlined.tsx create mode 100644 src/IconFitnessCenterRound.tsx create mode 100644 src/IconFitnessCenterSharp.tsx create mode 100644 src/IconFitnessCenterTwoTone.tsx create mode 100644 src/IconFlagCircleOutlined.tsx create mode 100644 src/IconFlagCircleRound.tsx create mode 100644 src/IconFlagCircleSharp.tsx create mode 100644 src/IconFlagCircleTwoTone.tsx create mode 100644 src/IconFlagOutlined.tsx create mode 100644 src/IconFlagRound.tsx create mode 100644 src/IconFlagSharp.tsx create mode 100644 src/IconFlagTwoTone.tsx create mode 100644 src/IconFlakyOutlined.tsx create mode 100644 src/IconFlakyRound.tsx create mode 100644 src/IconFlakySharp.tsx create mode 100644 src/IconFlakyTwoTone.tsx create mode 100644 src/IconFlareOutlined.tsx create mode 100644 src/IconFlareRound.tsx create mode 100644 src/IconFlareSharp.tsx create mode 100644 src/IconFlareTwoTone.tsx create mode 100644 src/IconFlashAutoOutlined.tsx create mode 100644 src/IconFlashAutoRound.tsx create mode 100644 src/IconFlashAutoSharp.tsx create mode 100644 src/IconFlashAutoTwoTone.tsx create mode 100644 src/IconFlashOffOutlined.tsx create mode 100644 src/IconFlashOffRound.tsx create mode 100644 src/IconFlashOffSharp.tsx create mode 100644 src/IconFlashOffTwoTone.tsx create mode 100644 src/IconFlashOnOutlined.tsx create mode 100644 src/IconFlashOnRound.tsx create mode 100644 src/IconFlashOnSharp.tsx create mode 100644 src/IconFlashOnTwoTone.tsx create mode 100644 src/IconFlashlightOffOutlined.tsx create mode 100644 src/IconFlashlightOffRound.tsx create mode 100644 src/IconFlashlightOffSharp.tsx create mode 100644 src/IconFlashlightOffTwoTone.tsx create mode 100644 src/IconFlashlightOnOutlined.tsx create mode 100644 src/IconFlashlightOnRound.tsx create mode 100644 src/IconFlashlightOnSharp.tsx create mode 100644 src/IconFlashlightOnTwoTone.tsx create mode 100644 src/IconFlatwareOutlined.tsx create mode 100644 src/IconFlatwareRound.tsx create mode 100644 src/IconFlatwareSharp.tsx create mode 100644 src/IconFlatwareTwoTone.tsx create mode 100644 src/IconFlightClassOutlined.tsx create mode 100644 src/IconFlightClassRound.tsx create mode 100644 src/IconFlightClassSharp.tsx create mode 100644 src/IconFlightClassTwoTone.tsx create mode 100644 src/IconFlightLandOutlined.tsx create mode 100644 src/IconFlightLandRound.tsx create mode 100644 src/IconFlightLandSharp.tsx create mode 100644 src/IconFlightLandTwoTone.tsx create mode 100644 src/IconFlightOutlined.tsx create mode 100644 src/IconFlightRound.tsx create mode 100644 src/IconFlightSharp.tsx create mode 100644 src/IconFlightTakeoffOutlined.tsx create mode 100644 src/IconFlightTakeoffRound.tsx create mode 100644 src/IconFlightTakeoffSharp.tsx create mode 100644 src/IconFlightTakeoffTwoTone.tsx create mode 100644 src/IconFlightTwoTone.tsx create mode 100644 src/IconFlipCameraAndroidOutlined.tsx create mode 100644 src/IconFlipCameraAndroidRound.tsx create mode 100644 src/IconFlipCameraAndroidSharp.tsx create mode 100644 src/IconFlipCameraAndroidTwoTone.tsx create mode 100644 src/IconFlipCameraIosOutlined.tsx create mode 100644 src/IconFlipCameraIosRound.tsx create mode 100644 src/IconFlipCameraIosSharp.tsx create mode 100644 src/IconFlipCameraIosTwoTone.tsx create mode 100644 src/IconFlipOutlined.tsx create mode 100644 src/IconFlipRound.tsx create mode 100644 src/IconFlipSharp.tsx create mode 100644 src/IconFlipToBackOutlined.tsx create mode 100644 src/IconFlipToBackRound.tsx create mode 100644 src/IconFlipToBackSharp.tsx create mode 100644 src/IconFlipToBackTwoTone.tsx create mode 100644 src/IconFlipToFrontOutlined.tsx create mode 100644 src/IconFlipToFrontRound.tsx create mode 100644 src/IconFlipToFrontSharp.tsx create mode 100644 src/IconFlipToFrontTwoTone.tsx create mode 100644 src/IconFlipTwoTone.tsx create mode 100644 src/IconFloodOutlined.tsx create mode 100644 src/IconFloodRound.tsx create mode 100644 src/IconFloodSharp.tsx create mode 100644 src/IconFloodTwoTone.tsx create mode 100644 src/IconFluorescentOutlined.tsx create mode 100644 src/IconFluorescentRound.tsx create mode 100644 src/IconFluorescentSharp.tsx create mode 100644 src/IconFluorescentTwoTone.tsx create mode 100644 src/IconFlutterDashOutlined.tsx create mode 100644 src/IconFlutterDashRound.tsx create mode 100644 src/IconFlutterDashSharp.tsx create mode 100644 src/IconFlutterDashTwoTone.tsx create mode 100644 src/IconFmdBadOutlined.tsx create mode 100644 src/IconFmdBadRound.tsx create mode 100644 src/IconFmdBadSharp.tsx create mode 100644 src/IconFmdBadTwoTone.tsx create mode 100644 src/IconFmdGoodOutlined.tsx create mode 100644 src/IconFmdGoodRound.tsx create mode 100644 src/IconFmdGoodSharp.tsx create mode 100644 src/IconFmdGoodTwoTone.tsx create mode 100644 src/IconFolderCopyOutlined.tsx create mode 100644 src/IconFolderCopyRound.tsx create mode 100644 src/IconFolderCopySharp.tsx create mode 100644 src/IconFolderCopyTwoTone.tsx create mode 100644 src/IconFolderDeleteOutlined.tsx create mode 100644 src/IconFolderDeleteRound.tsx create mode 100644 src/IconFolderDeleteSharp.tsx create mode 100644 src/IconFolderDeleteTwoTone.tsx create mode 100644 src/IconFolderOffOutlined.tsx create mode 100644 src/IconFolderOffRound.tsx create mode 100644 src/IconFolderOffSharp.tsx create mode 100644 src/IconFolderOffTwoTone.tsx create mode 100644 src/IconFolderOpenOutlined.tsx create mode 100644 src/IconFolderOpenRound.tsx create mode 100644 src/IconFolderOpenSharp.tsx create mode 100644 src/IconFolderOpenTwoTone.tsx create mode 100644 src/IconFolderOutlined.tsx create mode 100644 src/IconFolderRound.tsx create mode 100644 src/IconFolderSharedOutlined.tsx create mode 100644 src/IconFolderSharedRound.tsx create mode 100644 src/IconFolderSharedSharp.tsx create mode 100644 src/IconFolderSharedTwoTone.tsx create mode 100644 src/IconFolderSharp.tsx create mode 100644 src/IconFolderSpecialOutlined.tsx create mode 100644 src/IconFolderSpecialRound.tsx create mode 100644 src/IconFolderSpecialSharp.tsx create mode 100644 src/IconFolderSpecialTwoTone.tsx create mode 100644 src/IconFolderTwoTone.tsx create mode 100644 src/IconFolderZipOutlined.tsx create mode 100644 src/IconFolderZipRound.tsx create mode 100644 src/IconFolderZipSharp.tsx create mode 100644 src/IconFolderZipTwoTone.tsx create mode 100644 src/IconFollowTheSignsOutlined.tsx create mode 100644 src/IconFollowTheSignsRound.tsx create mode 100644 src/IconFollowTheSignsSharp.tsx create mode 100644 src/IconFollowTheSignsTwoTone.tsx create mode 100644 src/IconFontDownloadOffOutlined.tsx create mode 100644 src/IconFontDownloadOffRound.tsx create mode 100644 src/IconFontDownloadOffSharp.tsx create mode 100644 src/IconFontDownloadOffTwoTone.tsx create mode 100644 src/IconFontDownloadOutlined.tsx create mode 100644 src/IconFontDownloadRound.tsx create mode 100644 src/IconFontDownloadSharp.tsx create mode 100644 src/IconFontDownloadTwoTone.tsx create mode 100644 src/IconFoodBankOutlined.tsx create mode 100644 src/IconFoodBankRound.tsx create mode 100644 src/IconFoodBankSharp.tsx create mode 100644 src/IconFoodBankTwoTone.tsx create mode 100644 src/IconForestOutlined.tsx create mode 100644 src/IconForestRound.tsx create mode 100644 src/IconForestSharp.tsx create mode 100644 src/IconForestTwoTone.tsx create mode 100644 src/IconForkLeftOutlined.tsx create mode 100644 src/IconForkLeftRound.tsx create mode 100644 src/IconForkLeftSharp.tsx create mode 100644 src/IconForkLeftTwoTone.tsx create mode 100644 src/IconForkRightOutlined.tsx create mode 100644 src/IconForkRightRound.tsx create mode 100644 src/IconForkRightSharp.tsx create mode 100644 src/IconForkRightTwoTone.tsx create mode 100644 src/IconFormatAlignCenterOutlined.tsx create mode 100644 src/IconFormatAlignCenterRound.tsx create mode 100644 src/IconFormatAlignCenterSharp.tsx create mode 100644 src/IconFormatAlignCenterTwoTone.tsx create mode 100644 src/IconFormatAlignJustifyOutlined.tsx create mode 100644 src/IconFormatAlignJustifyRound.tsx create mode 100644 src/IconFormatAlignJustifySharp.tsx create mode 100644 src/IconFormatAlignJustifyTwoTone.tsx create mode 100644 src/IconFormatAlignLeftOutlined.tsx create mode 100644 src/IconFormatAlignLeftRound.tsx create mode 100644 src/IconFormatAlignLeftSharp.tsx create mode 100644 src/IconFormatAlignLeftTwoTone.tsx create mode 100644 src/IconFormatAlignRightOutlined.tsx create mode 100644 src/IconFormatAlignRightRound.tsx create mode 100644 src/IconFormatAlignRightSharp.tsx create mode 100644 src/IconFormatAlignRightTwoTone.tsx create mode 100644 src/IconFormatBoldOutlined.tsx create mode 100644 src/IconFormatBoldRound.tsx create mode 100644 src/IconFormatBoldSharp.tsx create mode 100644 src/IconFormatBoldTwoTone.tsx create mode 100644 src/IconFormatClearOutlined.tsx create mode 100644 src/IconFormatClearRound.tsx create mode 100644 src/IconFormatClearSharp.tsx create mode 100644 src/IconFormatClearTwoTone.tsx create mode 100644 src/IconFormatColorFillOutlined.tsx create mode 100644 src/IconFormatColorFillRound.tsx create mode 100644 src/IconFormatColorFillSharp.tsx create mode 100644 src/IconFormatColorFillTwoTone.tsx create mode 100644 src/IconFormatColorResetOutlined.tsx create mode 100644 src/IconFormatColorResetRound.tsx create mode 100644 src/IconFormatColorResetSharp.tsx create mode 100644 src/IconFormatColorResetTwoTone.tsx create mode 100644 src/IconFormatColorTextOutlined.tsx create mode 100644 src/IconFormatColorTextRound.tsx create mode 100644 src/IconFormatColorTextSharp.tsx create mode 100644 src/IconFormatColorTextTwoTone.tsx create mode 100644 src/IconFormatIndentDecreaseOutlined.tsx create mode 100644 src/IconFormatIndentDecreaseRound.tsx create mode 100644 src/IconFormatIndentDecreaseSharp.tsx create mode 100644 src/IconFormatIndentDecreaseTwoTone.tsx create mode 100644 src/IconFormatIndentIncreaseOutlined.tsx create mode 100644 src/IconFormatIndentIncreaseRound.tsx create mode 100644 src/IconFormatIndentIncreaseSharp.tsx create mode 100644 src/IconFormatIndentIncreaseTwoTone.tsx create mode 100644 src/IconFormatItalicOutlined.tsx create mode 100644 src/IconFormatItalicRound.tsx create mode 100644 src/IconFormatItalicSharp.tsx create mode 100644 src/IconFormatItalicTwoTone.tsx create mode 100644 src/IconFormatLineSpacingOutlined.tsx create mode 100644 src/IconFormatLineSpacingRound.tsx create mode 100644 src/IconFormatLineSpacingSharp.tsx create mode 100644 src/IconFormatLineSpacingTwoTone.tsx create mode 100644 src/IconFormatListBulletedOutlined.tsx create mode 100644 src/IconFormatListBulletedRound.tsx create mode 100644 src/IconFormatListBulletedSharp.tsx create mode 100644 src/IconFormatListBulletedTwoTone.tsx create mode 100644 src/IconFormatListNumberedOutlined.tsx create mode 100644 src/IconFormatListNumberedRound.tsx create mode 100644 src/IconFormatListNumberedRtlOutlined.tsx create mode 100644 src/IconFormatListNumberedRtlRound.tsx create mode 100644 src/IconFormatListNumberedRtlSharp.tsx create mode 100644 src/IconFormatListNumberedRtlTwoTone.tsx create mode 100644 src/IconFormatListNumberedSharp.tsx create mode 100644 src/IconFormatListNumberedTwoTone.tsx create mode 100644 src/IconFormatOverlineOutlined.tsx create mode 100644 src/IconFormatOverlineRound.tsx create mode 100644 src/IconFormatOverlineSharp.tsx create mode 100644 src/IconFormatOverlineTwoTone.tsx create mode 100644 src/IconFormatPaintOutlined.tsx create mode 100644 src/IconFormatPaintRound.tsx create mode 100644 src/IconFormatPaintSharp.tsx create mode 100644 src/IconFormatPaintTwoTone.tsx create mode 100644 src/IconFormatQuoteOutlined.tsx create mode 100644 src/IconFormatQuoteRound.tsx create mode 100644 src/IconFormatQuoteSharp.tsx create mode 100644 src/IconFormatQuoteTwoTone.tsx create mode 100644 src/IconFormatShapesOutlined.tsx create mode 100644 src/IconFormatShapesRound.tsx create mode 100644 src/IconFormatShapesSharp.tsx create mode 100644 src/IconFormatShapesTwoTone.tsx create mode 100644 src/IconFormatSizeOutlined.tsx create mode 100644 src/IconFormatSizeRound.tsx create mode 100644 src/IconFormatSizeSharp.tsx create mode 100644 src/IconFormatSizeTwoTone.tsx create mode 100644 src/IconFormatStrikethroughOutlined.tsx create mode 100644 src/IconFormatStrikethroughRound.tsx create mode 100644 src/IconFormatStrikethroughSharp.tsx create mode 100644 src/IconFormatStrikethroughTwoTone.tsx create mode 100644 src/IconFormatTextdirectionLToROutlined.tsx create mode 100644 src/IconFormatTextdirectionLToRRound.tsx create mode 100644 src/IconFormatTextdirectionLToRSharp.tsx create mode 100644 src/IconFormatTextdirectionLToRTwoTone.tsx create mode 100644 src/IconFormatTextdirectionRToLOutlined.tsx create mode 100644 src/IconFormatTextdirectionRToLRound.tsx create mode 100644 src/IconFormatTextdirectionRToLSharp.tsx create mode 100644 src/IconFormatTextdirectionRToLTwoTone.tsx create mode 100644 src/IconFormatUnderlinedOutlined.tsx create mode 100644 src/IconFormatUnderlinedRound.tsx create mode 100644 src/IconFormatUnderlinedSharp.tsx create mode 100644 src/IconFormatUnderlinedTwoTone.tsx create mode 100644 src/IconFortOutlined.tsx create mode 100644 src/IconFortRound.tsx create mode 100644 src/IconFortSharp.tsx create mode 100644 src/IconFortTwoTone.tsx create mode 100644 src/IconForumOutlined.tsx create mode 100644 src/IconForumRound.tsx create mode 100644 src/IconForumSharp.tsx create mode 100644 src/IconForumTwoTone.tsx create mode 100644 src/IconForward10Outlined.tsx create mode 100644 src/IconForward10Round.tsx create mode 100644 src/IconForward10Sharp.tsx create mode 100644 src/IconForward10TwoTone.tsx create mode 100644 src/IconForward30Outlined.tsx create mode 100644 src/IconForward30Round.tsx create mode 100644 src/IconForward30Sharp.tsx create mode 100644 src/IconForward30TwoTone.tsx create mode 100644 src/IconForward5Outlined.tsx create mode 100644 src/IconForward5Round.tsx create mode 100644 src/IconForward5Sharp.tsx create mode 100644 src/IconForward5TwoTone.tsx create mode 100644 src/IconForwardOutlined.tsx create mode 100644 src/IconForwardRound.tsx create mode 100644 src/IconForwardSharp.tsx create mode 100644 src/IconForwardToInboxOutlined.tsx create mode 100644 src/IconForwardToInboxRound.tsx create mode 100644 src/IconForwardToInboxSharp.tsx create mode 100644 src/IconForwardToInboxTwoTone.tsx create mode 100644 src/IconForwardTwoTone.tsx create mode 100644 src/IconFoundationOutlined.tsx create mode 100644 src/IconFoundationRound.tsx create mode 100644 src/IconFoundationSharp.tsx create mode 100644 src/IconFoundationTwoTone.tsx create mode 100644 src/IconFreeBreakfastOutlined.tsx create mode 100644 src/IconFreeBreakfastRound.tsx create mode 100644 src/IconFreeBreakfastSharp.tsx create mode 100644 src/IconFreeBreakfastTwoTone.tsx create mode 100644 src/IconFreeCancellationOutlined.tsx create mode 100644 src/IconFreeCancellationRound.tsx create mode 100644 src/IconFreeCancellationSharp.tsx create mode 100644 src/IconFreeCancellationTwoTone.tsx create mode 100644 src/IconFrontHandOutlined.tsx create mode 100644 src/IconFrontHandRound.tsx create mode 100644 src/IconFrontHandSharp.tsx create mode 100644 src/IconFrontHandTwoTone.tsx create mode 100644 src/IconFullscreenExitOutlined.tsx create mode 100644 src/IconFullscreenExitRound.tsx create mode 100644 src/IconFullscreenExitSharp.tsx create mode 100644 src/IconFullscreenExitTwoTone.tsx create mode 100644 src/IconFullscreenOutlined.tsx create mode 100644 src/IconFullscreenRound.tsx create mode 100644 src/IconFullscreenSharp.tsx create mode 100644 src/IconFullscreenTwoTone.tsx create mode 100644 src/IconFunctionsOutlined.tsx create mode 100644 src/IconFunctionsRound.tsx create mode 100644 src/IconFunctionsSharp.tsx create mode 100644 src/IconFunctionsTwoTone.tsx create mode 100644 src/IconGMobiledataOutlined.tsx create mode 100644 src/IconGMobiledataRound.tsx create mode 100644 src/IconGMobiledataSharp.tsx create mode 100644 src/IconGMobiledataTwoTone.tsx create mode 100644 src/IconGTranslateOutlined.tsx create mode 100644 src/IconGTranslateRound.tsx create mode 100644 src/IconGTranslateSharp.tsx create mode 100644 src/IconGTranslateTwoTone.tsx create mode 100644 src/IconGamepadOutlined.tsx create mode 100644 src/IconGamepadRound.tsx create mode 100644 src/IconGamepadSharp.tsx create mode 100644 src/IconGamepadTwoTone.tsx create mode 100644 src/IconGamesOutlined.tsx create mode 100644 src/IconGamesRound.tsx create mode 100644 src/IconGamesSharp.tsx create mode 100644 src/IconGamesTwoTone.tsx create mode 100644 src/IconGarageOutlined.tsx create mode 100644 src/IconGarageRound.tsx create mode 100644 src/IconGarageSharp.tsx create mode 100644 src/IconGarageTwoTone.tsx create mode 100644 src/IconGasMeterOutlined.tsx create mode 100644 src/IconGasMeterRound.tsx create mode 100644 src/IconGasMeterSharp.tsx create mode 100644 src/IconGasMeterTwoTone.tsx create mode 100644 src/IconGavelOutlined.tsx create mode 100644 src/IconGavelRound.tsx create mode 100644 src/IconGavelSharp.tsx create mode 100644 src/IconGavelTwoTone.tsx create mode 100644 src/IconGeneratingTokensOutlined.tsx create mode 100644 src/IconGeneratingTokensRound.tsx create mode 100644 src/IconGeneratingTokensSharp.tsx create mode 100644 src/IconGeneratingTokensTwoTone.tsx create mode 100644 src/IconGestureOutlined.tsx create mode 100644 src/IconGestureRound.tsx create mode 100644 src/IconGestureSharp.tsx create mode 100644 src/IconGestureTwoTone.tsx create mode 100644 src/IconGetAppOutlined.tsx create mode 100644 src/IconGetAppRound.tsx create mode 100644 src/IconGetAppSharp.tsx create mode 100644 src/IconGetAppTwoTone.tsx create mode 100644 src/IconGifBoxOutlined.tsx create mode 100644 src/IconGifBoxRound.tsx create mode 100644 src/IconGifBoxSharp.tsx create mode 100644 src/IconGifBoxTwoTone.tsx create mode 100644 src/IconGifOutlined.tsx create mode 100644 src/IconGifRound.tsx create mode 100644 src/IconGifSharp.tsx create mode 100644 src/IconGifTwoTone.tsx create mode 100644 src/IconGirlOutlined.tsx create mode 100644 src/IconGirlRound.tsx create mode 100644 src/IconGirlSharp.tsx create mode 100644 src/IconGirlTwoTone.tsx create mode 100644 src/IconGiteOutlined.tsx create mode 100644 src/IconGiteRound.tsx create mode 100644 src/IconGiteSharp.tsx create mode 100644 src/IconGiteTwoTone.tsx create mode 100644 src/IconGolfCourseOutlined.tsx create mode 100644 src/IconGolfCourseRound.tsx create mode 100644 src/IconGolfCourseSharp.tsx create mode 100644 src/IconGolfCourseTwoTone.tsx create mode 100644 src/IconGppBadOutlined.tsx create mode 100644 src/IconGppBadRound.tsx create mode 100644 src/IconGppBadSharp.tsx create mode 100644 src/IconGppBadTwoTone.tsx create mode 100644 src/IconGppGoodOutlined.tsx create mode 100644 src/IconGppGoodRound.tsx create mode 100644 src/IconGppGoodSharp.tsx create mode 100644 src/IconGppGoodTwoTone.tsx create mode 100644 src/IconGppMaybeOutlined.tsx create mode 100644 src/IconGppMaybeRound.tsx create mode 100644 src/IconGppMaybeSharp.tsx create mode 100644 src/IconGppMaybeTwoTone.tsx create mode 100644 src/IconGpsFixedOutlined.tsx create mode 100644 src/IconGpsFixedRound.tsx create mode 100644 src/IconGpsFixedSharp.tsx create mode 100644 src/IconGpsFixedTwoTone.tsx create mode 100644 src/IconGpsNotFixedOutlined.tsx create mode 100644 src/IconGpsNotFixedRound.tsx create mode 100644 src/IconGpsNotFixedSharp.tsx create mode 100644 src/IconGpsNotFixedTwoTone.tsx create mode 100644 src/IconGpsOffOutlined.tsx create mode 100644 src/IconGpsOffRound.tsx create mode 100644 src/IconGpsOffSharp.tsx create mode 100644 src/IconGpsOffTwoTone.tsx create mode 100644 src/IconGradeOutlined.tsx create mode 100644 src/IconGradeRound.tsx create mode 100644 src/IconGradeSharp.tsx create mode 100644 src/IconGradeTwoTone.tsx create mode 100644 src/IconGradientOutlined.tsx create mode 100644 src/IconGradientRound.tsx create mode 100644 src/IconGradientSharp.tsx create mode 100644 src/IconGradientTwoTone.tsx create mode 100644 src/IconGradingOutlined.tsx create mode 100644 src/IconGradingRound.tsx create mode 100644 src/IconGradingSharp.tsx create mode 100644 src/IconGradingTwoTone.tsx create mode 100644 src/IconGrainOutlined.tsx create mode 100644 src/IconGrainRound.tsx create mode 100644 src/IconGrainSharp.tsx create mode 100644 src/IconGrainTwoTone.tsx create mode 100644 src/IconGraphicEqOutlined.tsx create mode 100644 src/IconGraphicEqRound.tsx create mode 100644 src/IconGraphicEqSharp.tsx create mode 100644 src/IconGraphicEqTwoTone.tsx create mode 100644 src/IconGrassOutlined.tsx create mode 100644 src/IconGrassRound.tsx create mode 100644 src/IconGrassSharp.tsx create mode 100644 src/IconGrassTwoTone.tsx create mode 100644 src/IconGrid3x3Outlined.tsx create mode 100644 src/IconGrid3x3Round.tsx create mode 100644 src/IconGrid3x3Sharp.tsx create mode 100644 src/IconGrid3x3TwoTone.tsx create mode 100644 src/IconGrid4x4Outlined.tsx create mode 100644 src/IconGrid4x4Round.tsx create mode 100644 src/IconGrid4x4Sharp.tsx create mode 100644 src/IconGrid4x4TwoTone.tsx create mode 100644 src/IconGridGoldenratioOutlined.tsx create mode 100644 src/IconGridGoldenratioRound.tsx create mode 100644 src/IconGridGoldenratioSharp.tsx create mode 100644 src/IconGridGoldenratioTwoTone.tsx create mode 100644 src/IconGridOffOutlined.tsx create mode 100644 src/IconGridOffRound.tsx create mode 100644 src/IconGridOffSharp.tsx create mode 100644 src/IconGridOffTwoTone.tsx create mode 100644 src/IconGridOnOutlined.tsx create mode 100644 src/IconGridOnRound.tsx create mode 100644 src/IconGridOnSharp.tsx create mode 100644 src/IconGridOnTwoTone.tsx create mode 100644 src/IconGridViewOutlined.tsx create mode 100644 src/IconGridViewRound.tsx create mode 100644 src/IconGridViewSharp.tsx create mode 100644 src/IconGridViewTwoTone.tsx create mode 100644 src/IconGroupAddOutlined.tsx create mode 100644 src/IconGroupAddRound.tsx create mode 100644 src/IconGroupAddSharp.tsx create mode 100644 src/IconGroupAddTwoTone.tsx create mode 100644 src/IconGroupOffOutlined.tsx create mode 100644 src/IconGroupOffRound.tsx create mode 100644 src/IconGroupOffSharp.tsx create mode 100644 src/IconGroupOffTwoTone.tsx create mode 100644 src/IconGroupOutlined.tsx create mode 100644 src/IconGroupRemoveOutlined.tsx create mode 100644 src/IconGroupRemoveRound.tsx create mode 100644 src/IconGroupRemoveSharp.tsx create mode 100644 src/IconGroupRemoveTwoTone.tsx create mode 100644 src/IconGroupRound.tsx create mode 100644 src/IconGroupSharp.tsx create mode 100644 src/IconGroupTwoTone.tsx create mode 100644 src/IconGroupWorkOutlined.tsx create mode 100644 src/IconGroupWorkRound.tsx create mode 100644 src/IconGroupWorkSharp.tsx create mode 100644 src/IconGroupWorkTwoTone.tsx create mode 100644 src/IconGroups2Outlined.tsx create mode 100644 src/IconGroups2Round.tsx create mode 100644 src/IconGroups2Sharp.tsx create mode 100644 src/IconGroups2TwoTone.tsx create mode 100644 src/IconGroups3Outlined.tsx create mode 100644 src/IconGroups3Round.tsx create mode 100644 src/IconGroups3Sharp.tsx create mode 100644 src/IconGroups3TwoTone.tsx create mode 100644 src/IconGroupsOutlined.tsx create mode 100644 src/IconGroupsRound.tsx create mode 100644 src/IconGroupsSharp.tsx create mode 100644 src/IconGroupsTwoTone.tsx create mode 100644 src/IconHMobiledataOutlined.tsx create mode 100644 src/IconHMobiledataRound.tsx create mode 100644 src/IconHMobiledataSharp.tsx create mode 100644 src/IconHMobiledataTwoTone.tsx create mode 100644 src/IconHPlusMobiledataOutlined.tsx create mode 100644 src/IconHPlusMobiledataRound.tsx create mode 100644 src/IconHPlusMobiledataSharp.tsx create mode 100644 src/IconHPlusMobiledataTwoTone.tsx create mode 100644 src/IconHailOutlined.tsx create mode 100644 src/IconHailRound.tsx create mode 100644 src/IconHailSharp.tsx create mode 100644 src/IconHailTwoTone.tsx create mode 100644 src/IconHandshakeOutlined.tsx create mode 100644 src/IconHandshakeRound.tsx create mode 100644 src/IconHandshakeSharp.tsx create mode 100644 src/IconHandshakeTwoTone.tsx create mode 100644 src/IconHandymanOutlined.tsx create mode 100644 src/IconHandymanRound.tsx create mode 100644 src/IconHandymanSharp.tsx create mode 100644 src/IconHandymanTwoTone.tsx create mode 100644 src/IconHardwareOutlined.tsx create mode 100644 src/IconHardwareRound.tsx create mode 100644 src/IconHardwareSharp.tsx create mode 100644 src/IconHardwareTwoTone.tsx create mode 100644 src/IconHdOutlined.tsx create mode 100644 src/IconHdRound.tsx create mode 100644 src/IconHdSharp.tsx create mode 100644 src/IconHdTwoTone.tsx create mode 100644 src/IconHdrAutoOutlined.tsx create mode 100644 src/IconHdrAutoRound.tsx create mode 100644 src/IconHdrAutoSelectOutlined.tsx create mode 100644 src/IconHdrAutoSelectRound.tsx create mode 100644 src/IconHdrAutoSelectSharp.tsx create mode 100644 src/IconHdrAutoSelectTwoTone.tsx create mode 100644 src/IconHdrAutoSharp.tsx create mode 100644 src/IconHdrAutoTwoTone.tsx create mode 100644 src/IconHdrEnhancedSelectOutlined.tsx create mode 100644 src/IconHdrEnhancedSelectRound.tsx create mode 100644 src/IconHdrEnhancedSelectSharp.tsx create mode 100644 src/IconHdrEnhancedSelectTwoTone.tsx create mode 100644 src/IconHdrOffOutlined.tsx create mode 100644 src/IconHdrOffRound.tsx create mode 100644 src/IconHdrOffSelectOutlined.tsx create mode 100644 src/IconHdrOffSelectRound.tsx create mode 100644 src/IconHdrOffSelectSharp.tsx create mode 100644 src/IconHdrOffSelectTwoTone.tsx create mode 100644 src/IconHdrOffSharp.tsx create mode 100644 src/IconHdrOffTwoTone.tsx create mode 100644 src/IconHdrOnOutlined.tsx create mode 100644 src/IconHdrOnRound.tsx create mode 100644 src/IconHdrOnSelectOutlined.tsx create mode 100644 src/IconHdrOnSelectRound.tsx create mode 100644 src/IconHdrOnSelectSharp.tsx create mode 100644 src/IconHdrOnSelectTwoTone.tsx create mode 100644 src/IconHdrOnSharp.tsx create mode 100644 src/IconHdrOnTwoTone.tsx create mode 100644 src/IconHdrPlusOutlined.tsx create mode 100644 src/IconHdrPlusRound.tsx create mode 100644 src/IconHdrPlusSharp.tsx create mode 100644 src/IconHdrPlusTwoTone.tsx create mode 100644 src/IconHdrStrongOutlined.tsx create mode 100644 src/IconHdrStrongRound.tsx create mode 100644 src/IconHdrStrongSharp.tsx create mode 100644 src/IconHdrStrongTwoTone.tsx create mode 100644 src/IconHdrWeakOutlined.tsx create mode 100644 src/IconHdrWeakRound.tsx create mode 100644 src/IconHdrWeakSharp.tsx create mode 100644 src/IconHdrWeakTwoTone.tsx create mode 100644 src/IconHeadphonesBatteryOutlined.tsx create mode 100644 src/IconHeadphonesBatteryRound.tsx create mode 100644 src/IconHeadphonesBatterySharp.tsx create mode 100644 src/IconHeadphonesBatteryTwoTone.tsx create mode 100644 src/IconHeadphonesOutlined.tsx create mode 100644 src/IconHeadphonesRound.tsx create mode 100644 src/IconHeadphonesSharp.tsx create mode 100644 src/IconHeadphonesTwoTone.tsx create mode 100644 src/IconHeadsetMicOutlined.tsx create mode 100644 src/IconHeadsetMicRound.tsx create mode 100644 src/IconHeadsetMicSharp.tsx create mode 100644 src/IconHeadsetMicTwoTone.tsx create mode 100644 src/IconHeadsetOffOutlined.tsx create mode 100644 src/IconHeadsetOffRound.tsx create mode 100644 src/IconHeadsetOffSharp.tsx create mode 100644 src/IconHeadsetOffTwoTone.tsx create mode 100644 src/IconHeadsetOutlined.tsx create mode 100644 src/IconHeadsetRound.tsx create mode 100644 src/IconHeadsetSharp.tsx create mode 100644 src/IconHeadsetTwoTone.tsx create mode 100644 src/IconHealingOutlined.tsx create mode 100644 src/IconHealingRound.tsx create mode 100644 src/IconHealingSharp.tsx create mode 100644 src/IconHealingTwoTone.tsx create mode 100644 src/IconHealthAndSafetyOutlined.tsx create mode 100644 src/IconHealthAndSafetyRound.tsx create mode 100644 src/IconHealthAndSafetySharp.tsx create mode 100644 src/IconHealthAndSafetyTwoTone.tsx create mode 100644 src/IconHearingDisabledOutlined.tsx create mode 100644 src/IconHearingDisabledRound.tsx create mode 100644 src/IconHearingDisabledSharp.tsx create mode 100644 src/IconHearingDisabledTwoTone.tsx create mode 100644 src/IconHearingOutlined.tsx create mode 100644 src/IconHearingRound.tsx create mode 100644 src/IconHearingSharp.tsx create mode 100644 src/IconHearingTwoTone.tsx create mode 100644 src/IconHeartBrokenOutlined.tsx create mode 100644 src/IconHeartBrokenRound.tsx create mode 100644 src/IconHeartBrokenSharp.tsx create mode 100644 src/IconHeartBrokenTwoTone.tsx create mode 100644 src/IconHeatPumpOutlined.tsx create mode 100644 src/IconHeatPumpRound.tsx create mode 100644 src/IconHeatPumpSharp.tsx create mode 100644 src/IconHeatPumpTwoTone.tsx create mode 100644 src/IconHeightOutlined.tsx create mode 100644 src/IconHeightRound.tsx create mode 100644 src/IconHeightSharp.tsx create mode 100644 src/IconHeightTwoTone.tsx create mode 100644 src/IconHelpCenterOutlined.tsx create mode 100644 src/IconHelpCenterRound.tsx create mode 100644 src/IconHelpCenterSharp.tsx create mode 100644 src/IconHelpCenterTwoTone.tsx create mode 100644 src/IconHelpOutlineOutlined.tsx create mode 100644 src/IconHelpOutlineRound.tsx create mode 100644 src/IconHelpOutlineSharp.tsx create mode 100644 src/IconHelpOutlineTwoTone.tsx create mode 100644 src/IconHelpOutlined.tsx create mode 100644 src/IconHelpRound.tsx create mode 100644 src/IconHelpSharp.tsx create mode 100644 src/IconHelpTwoTone.tsx create mode 100644 src/IconHevcOutlined.tsx create mode 100644 src/IconHevcRound.tsx create mode 100644 src/IconHevcSharp.tsx create mode 100644 src/IconHevcTwoTone.tsx create mode 100644 src/IconHexagonOutlined.tsx create mode 100644 src/IconHexagonRound.tsx create mode 100644 src/IconHexagonSharp.tsx create mode 100644 src/IconHexagonTwoTone.tsx create mode 100644 src/IconHideImageOutlined.tsx create mode 100644 src/IconHideImageRound.tsx create mode 100644 src/IconHideImageSharp.tsx create mode 100644 src/IconHideImageTwoTone.tsx create mode 100644 src/IconHideSourceOutlined.tsx create mode 100644 src/IconHideSourceRound.tsx create mode 100644 src/IconHideSourceSharp.tsx create mode 100644 src/IconHideSourceTwoTone.tsx create mode 100644 src/IconHighQualityOutlined.tsx create mode 100644 src/IconHighQualityRound.tsx create mode 100644 src/IconHighQualitySharp.tsx create mode 100644 src/IconHighQualityTwoTone.tsx create mode 100644 src/IconHighlightAltOutlined.tsx create mode 100644 src/IconHighlightAltRound.tsx create mode 100644 src/IconHighlightAltSharp.tsx create mode 100644 src/IconHighlightAltTwoTone.tsx create mode 100644 src/IconHighlightOffOutlined.tsx create mode 100644 src/IconHighlightOffRound.tsx create mode 100644 src/IconHighlightOffSharp.tsx create mode 100644 src/IconHighlightOffTwoTone.tsx create mode 100644 src/IconHighlightOutlined.tsx create mode 100644 src/IconHighlightRound.tsx create mode 100644 src/IconHighlightSharp.tsx create mode 100644 src/IconHighlightTwoTone.tsx create mode 100644 src/IconHikingOutlined.tsx create mode 100644 src/IconHikingRound.tsx create mode 100644 src/IconHikingSharp.tsx create mode 100644 src/IconHikingTwoTone.tsx create mode 100644 src/IconHistoryEduOutlined.tsx create mode 100644 src/IconHistoryEduRound.tsx create mode 100644 src/IconHistoryEduSharp.tsx create mode 100644 src/IconHistoryEduTwoTone.tsx create mode 100644 src/IconHistoryOutlined.tsx create mode 100644 src/IconHistoryRound.tsx create mode 100644 src/IconHistorySharp.tsx create mode 100644 src/IconHistoryToggleOffOutlined.tsx create mode 100644 src/IconHistoryToggleOffRound.tsx create mode 100644 src/IconHistoryToggleOffSharp.tsx create mode 100644 src/IconHistoryToggleOffTwoTone.tsx create mode 100644 src/IconHistoryTwoTone.tsx create mode 100644 src/IconHiveOutlined.tsx create mode 100644 src/IconHiveRound.tsx create mode 100644 src/IconHiveSharp.tsx create mode 100644 src/IconHiveTwoTone.tsx create mode 100644 src/IconHlsOffOutlined.tsx create mode 100644 src/IconHlsOffRound.tsx create mode 100644 src/IconHlsOffSharp.tsx create mode 100644 src/IconHlsOffTwoTone.tsx create mode 100644 src/IconHlsOutlined.tsx create mode 100644 src/IconHlsRound.tsx create mode 100644 src/IconHlsSharp.tsx create mode 100644 src/IconHlsTwoTone.tsx create mode 100644 src/IconHolidayVillageOutlined.tsx create mode 100644 src/IconHolidayVillageRound.tsx create mode 100644 src/IconHolidayVillageSharp.tsx create mode 100644 src/IconHolidayVillageTwoTone.tsx create mode 100644 src/IconHomeMaxOutlined.tsx create mode 100644 src/IconHomeMaxRound.tsx create mode 100644 src/IconHomeMaxSharp.tsx create mode 100644 src/IconHomeMaxTwoTone.tsx create mode 100644 src/IconHomeMiniOutlined.tsx create mode 100644 src/IconHomeMiniRound.tsx create mode 100644 src/IconHomeMiniSharp.tsx create mode 100644 src/IconHomeMiniTwoTone.tsx create mode 100644 src/IconHomeOutlined.tsx create mode 100644 src/IconHomeRepairServiceOutlined.tsx create mode 100644 src/IconHomeRepairServiceRound.tsx create mode 100644 src/IconHomeRepairServiceSharp.tsx create mode 100644 src/IconHomeRepairServiceTwoTone.tsx create mode 100644 src/IconHomeRound.tsx create mode 100644 src/IconHomeSharp.tsx create mode 100644 src/IconHomeTwoTone.tsx create mode 100644 src/IconHomeWorkOutlined.tsx create mode 100644 src/IconHomeWorkRound.tsx create mode 100644 src/IconHomeWorkSharp.tsx create mode 100644 src/IconHomeWorkTwoTone.tsx create mode 100644 src/IconHorizontalDistributeOutlined.tsx create mode 100644 src/IconHorizontalDistributeRound.tsx create mode 100644 src/IconHorizontalDistributeSharp.tsx create mode 100644 src/IconHorizontalDistributeTwoTone.tsx create mode 100644 src/IconHorizontalRuleOutlined.tsx create mode 100644 src/IconHorizontalRuleRound.tsx create mode 100644 src/IconHorizontalRuleSharp.tsx create mode 100644 src/IconHorizontalRuleTwoTone.tsx create mode 100644 src/IconHorizontalSplitOutlined.tsx create mode 100644 src/IconHorizontalSplitRound.tsx create mode 100644 src/IconHorizontalSplitSharp.tsx create mode 100644 src/IconHorizontalSplitTwoTone.tsx create mode 100644 src/IconHotTubOutlined.tsx create mode 100644 src/IconHotTubRound.tsx create mode 100644 src/IconHotTubSharp.tsx create mode 100644 src/IconHotTubTwoTone.tsx create mode 100644 src/IconHotelClassOutlined.tsx create mode 100644 src/IconHotelClassRound.tsx create mode 100644 src/IconHotelClassSharp.tsx create mode 100644 src/IconHotelClassTwoTone.tsx create mode 100644 src/IconHotelOutlined.tsx create mode 100644 src/IconHotelRound.tsx create mode 100644 src/IconHotelSharp.tsx create mode 100644 src/IconHotelTwoTone.tsx create mode 100644 src/IconHourglassBottomOutlined.tsx create mode 100644 src/IconHourglassBottomRound.tsx create mode 100644 src/IconHourglassBottomSharp.tsx create mode 100644 src/IconHourglassBottomTwoTone.tsx create mode 100644 src/IconHourglassDisabledOutlined.tsx create mode 100644 src/IconHourglassDisabledRound.tsx create mode 100644 src/IconHourglassDisabledSharp.tsx create mode 100644 src/IconHourglassDisabledTwoTone.tsx create mode 100644 src/IconHourglassEmptyOutlined.tsx create mode 100644 src/IconHourglassEmptyRound.tsx create mode 100644 src/IconHourglassEmptySharp.tsx create mode 100644 src/IconHourglassEmptyTwoTone.tsx create mode 100644 src/IconHourglassFullOutlined.tsx create mode 100644 src/IconHourglassFullRound.tsx create mode 100644 src/IconHourglassFullSharp.tsx create mode 100644 src/IconHourglassFullTwoTone.tsx create mode 100644 src/IconHourglassTopOutlined.tsx create mode 100644 src/IconHourglassTopRound.tsx create mode 100644 src/IconHourglassTopSharp.tsx create mode 100644 src/IconHourglassTopTwoTone.tsx create mode 100644 src/IconHouseOutlined.tsx create mode 100644 src/IconHouseRound.tsx create mode 100644 src/IconHouseSharp.tsx create mode 100644 src/IconHouseSidingOutlined.tsx create mode 100644 src/IconHouseSidingRound.tsx create mode 100644 src/IconHouseSidingSharp.tsx create mode 100644 src/IconHouseSidingTwoTone.tsx create mode 100644 src/IconHouseTwoTone.tsx create mode 100644 src/IconHouseboatOutlined.tsx create mode 100644 src/IconHouseboatRound.tsx create mode 100644 src/IconHouseboatSharp.tsx create mode 100644 src/IconHouseboatTwoTone.tsx create mode 100644 src/IconHowToRegOutlined.tsx create mode 100644 src/IconHowToRegRound.tsx create mode 100644 src/IconHowToRegSharp.tsx create mode 100644 src/IconHowToRegTwoTone.tsx create mode 100644 src/IconHowToVoteOutlined.tsx create mode 100644 src/IconHowToVoteRound.tsx create mode 100644 src/IconHowToVoteSharp.tsx create mode 100644 src/IconHowToVoteTwoTone.tsx create mode 100644 src/IconHtmlOutlined.tsx create mode 100644 src/IconHtmlRound.tsx create mode 100644 src/IconHtmlSharp.tsx create mode 100644 src/IconHtmlTwoTone.tsx create mode 100644 src/IconHttpOutlined.tsx create mode 100644 src/IconHttpRound.tsx create mode 100644 src/IconHttpSharp.tsx create mode 100644 src/IconHttpTwoTone.tsx create mode 100644 src/IconHttpsOutlined.tsx create mode 100644 src/IconHttpsRound.tsx create mode 100644 src/IconHttpsSharp.tsx create mode 100644 src/IconHttpsTwoTone.tsx create mode 100644 src/IconHubOutlined.tsx create mode 100644 src/IconHubRound.tsx create mode 100644 src/IconHubSharp.tsx create mode 100644 src/IconHubTwoTone.tsx create mode 100644 src/IconHvacOutlined.tsx create mode 100644 src/IconHvacRound.tsx create mode 100644 src/IconHvacSharp.tsx create mode 100644 src/IconHvacTwoTone.tsx create mode 100644 src/IconIceSkatingOutlined.tsx create mode 100644 src/IconIceSkatingRound.tsx create mode 100644 src/IconIceSkatingSharp.tsx create mode 100644 src/IconIceSkatingTwoTone.tsx create mode 100644 src/IconIcecreamOutlined.tsx create mode 100644 src/IconIcecreamRound.tsx create mode 100644 src/IconIcecreamSharp.tsx create mode 100644 src/IconIcecreamTwoTone.tsx create mode 100644 src/IconImageAspectRatioOutlined.tsx create mode 100644 src/IconImageAspectRatioRound.tsx create mode 100644 src/IconImageAspectRatioSharp.tsx create mode 100644 src/IconImageAspectRatioTwoTone.tsx create mode 100644 src/IconImageNotSupportedOutlined.tsx create mode 100644 src/IconImageNotSupportedRound.tsx create mode 100644 src/IconImageNotSupportedSharp.tsx create mode 100644 src/IconImageNotSupportedTwoTone.tsx create mode 100644 src/IconImageOutlined.tsx create mode 100644 src/IconImageRound.tsx create mode 100644 src/IconImageSearchOutlined.tsx create mode 100644 src/IconImageSearchRound.tsx create mode 100644 src/IconImageSearchSharp.tsx create mode 100644 src/IconImageSearchTwoTone.tsx create mode 100644 src/IconImageSharp.tsx create mode 100644 src/IconImageTwoTone.tsx create mode 100644 src/IconImagesearchRollerOutlined.tsx create mode 100644 src/IconImagesearchRollerRound.tsx create mode 100644 src/IconImagesearchRollerSharp.tsx create mode 100644 src/IconImagesearchRollerTwoTone.tsx create mode 100644 src/IconImportContactsOutlined.tsx create mode 100644 src/IconImportContactsRound.tsx create mode 100644 src/IconImportContactsSharp.tsx create mode 100644 src/IconImportContactsTwoTone.tsx create mode 100644 src/IconImportExportOutlined.tsx create mode 100644 src/IconImportExportRound.tsx create mode 100644 src/IconImportExportSharp.tsx create mode 100644 src/IconImportExportTwoTone.tsx create mode 100644 src/IconImportantDevicesOutlined.tsx create mode 100644 src/IconImportantDevicesRound.tsx create mode 100644 src/IconImportantDevicesSharp.tsx create mode 100644 src/IconImportantDevicesTwoTone.tsx create mode 100644 src/IconInboxOutlined.tsx create mode 100644 src/IconInboxRound.tsx create mode 100644 src/IconInboxSharp.tsx create mode 100644 src/IconInboxTwoTone.tsx create mode 100644 src/IconIncompleteCircleOutlined.tsx create mode 100644 src/IconIncompleteCircleRound.tsx create mode 100644 src/IconIncompleteCircleSharp.tsx create mode 100644 src/IconIncompleteCircleTwoTone.tsx create mode 100644 src/IconIndeterminateCheckBoxOutlined.tsx create mode 100644 src/IconIndeterminateCheckBoxRound.tsx create mode 100644 src/IconIndeterminateCheckBoxSharp.tsx create mode 100644 src/IconIndeterminateCheckBoxTwoTone.tsx create mode 100644 src/IconInfoOutlined.tsx create mode 100644 src/IconInfoRound.tsx create mode 100644 src/IconInfoSharp.tsx create mode 100644 src/IconInfoTwoTone.tsx create mode 100644 src/IconInputOutlined.tsx create mode 100644 src/IconInputRound.tsx create mode 100644 src/IconInputSharp.tsx create mode 100644 src/IconInputTwoTone.tsx create mode 100644 src/IconInsertChartOutlinedOutlined.tsx create mode 100644 src/IconInsertChartOutlinedRound.tsx create mode 100644 src/IconInsertChartOutlinedSharp.tsx create mode 100644 src/IconInsertChartOutlinedTwoTone.tsx create mode 100644 src/IconInsertChartRound.tsx create mode 100644 src/IconInsertChartSharp.tsx create mode 100644 src/IconInsertChartTwoTone.tsx create mode 100644 src/IconInsertCommentOutlined.tsx create mode 100644 src/IconInsertCommentRound.tsx create mode 100644 src/IconInsertCommentSharp.tsx create mode 100644 src/IconInsertCommentTwoTone.tsx create mode 100644 src/IconInsertDriveFileOutlined.tsx create mode 100644 src/IconInsertDriveFileRound.tsx create mode 100644 src/IconInsertDriveFileSharp.tsx create mode 100644 src/IconInsertDriveFileTwoTone.tsx create mode 100644 src/IconInsertEmoticonOutlined.tsx create mode 100644 src/IconInsertEmoticonRound.tsx create mode 100644 src/IconInsertEmoticonSharp.tsx create mode 100644 src/IconInsertEmoticonTwoTone.tsx create mode 100644 src/IconInsertInvitationOutlined.tsx create mode 100644 src/IconInsertInvitationRound.tsx create mode 100644 src/IconInsertInvitationSharp.tsx create mode 100644 src/IconInsertInvitationTwoTone.tsx create mode 100644 src/IconInsertLinkOutlined.tsx create mode 100644 src/IconInsertLinkRound.tsx create mode 100644 src/IconInsertLinkSharp.tsx create mode 100644 src/IconInsertLinkTwoTone.tsx create mode 100644 src/IconInsertPageBreakOutlined.tsx create mode 100644 src/IconInsertPageBreakRound.tsx create mode 100644 src/IconInsertPageBreakSharp.tsx create mode 100644 src/IconInsertPageBreakTwoTone.tsx create mode 100644 src/IconInsertPhotoOutlined.tsx create mode 100644 src/IconInsertPhotoRound.tsx create mode 100644 src/IconInsertPhotoSharp.tsx create mode 100644 src/IconInsertPhotoTwoTone.tsx create mode 100644 src/IconInsightsOutlined.tsx create mode 100644 src/IconInsightsRound.tsx create mode 100644 src/IconInsightsSharp.tsx create mode 100644 src/IconInsightsTwoTone.tsx create mode 100644 src/IconInstallDesktopOutlined.tsx create mode 100644 src/IconInstallDesktopRound.tsx create mode 100644 src/IconInstallDesktopSharp.tsx create mode 100644 src/IconInstallDesktopTwoTone.tsx create mode 100644 src/IconInstallMobileOutlined.tsx create mode 100644 src/IconInstallMobileRound.tsx create mode 100644 src/IconInstallMobileSharp.tsx create mode 100644 src/IconInstallMobileTwoTone.tsx create mode 100644 src/IconIntegrationInstructionsOutlined.tsx create mode 100644 src/IconIntegrationInstructionsRound.tsx create mode 100644 src/IconIntegrationInstructionsSharp.tsx create mode 100644 src/IconIntegrationInstructionsTwoTone.tsx create mode 100644 src/IconInterestsOutlined.tsx create mode 100644 src/IconInterestsRound.tsx create mode 100644 src/IconInterestsSharp.tsx create mode 100644 src/IconInterestsTwoTone.tsx create mode 100644 src/IconInterpreterModeOutlined.tsx create mode 100644 src/IconInterpreterModeRound.tsx create mode 100644 src/IconInterpreterModeSharp.tsx create mode 100644 src/IconInterpreterModeTwoTone.tsx create mode 100644 src/IconInventory2Outlined.tsx create mode 100644 src/IconInventory2Round.tsx create mode 100644 src/IconInventory2Sharp.tsx create mode 100644 src/IconInventory2TwoTone.tsx create mode 100644 src/IconInventoryOutlined.tsx create mode 100644 src/IconInventoryRound.tsx create mode 100644 src/IconInventorySharp.tsx create mode 100644 src/IconInventoryTwoTone.tsx create mode 100644 src/IconInvertColorsOffOutlined.tsx create mode 100644 src/IconInvertColorsOffRound.tsx create mode 100644 src/IconInvertColorsOffSharp.tsx create mode 100644 src/IconInvertColorsOffTwoTone.tsx create mode 100644 src/IconInvertColorsOutlined.tsx create mode 100644 src/IconInvertColorsRound.tsx create mode 100644 src/IconInvertColorsSharp.tsx create mode 100644 src/IconInvertColorsTwoTone.tsx create mode 100644 src/IconIosShareOutlined.tsx create mode 100644 src/IconIosShareRound.tsx create mode 100644 src/IconIosShareSharp.tsx create mode 100644 src/IconIosShareTwoTone.tsx create mode 100644 src/IconIronOutlined.tsx create mode 100644 src/IconIronRound.tsx create mode 100644 src/IconIronSharp.tsx create mode 100644 src/IconIronTwoTone.tsx create mode 100644 src/IconIsoOutlined.tsx create mode 100644 src/IconIsoRound.tsx create mode 100644 src/IconIsoSharp.tsx create mode 100644 src/IconIsoTwoTone.tsx create mode 100644 src/IconJavascriptOutlined.tsx create mode 100644 src/IconJavascriptRound.tsx create mode 100644 src/IconJavascriptSharp.tsx create mode 100644 src/IconJavascriptTwoTone.tsx create mode 100644 src/IconJoinFullOutlined.tsx create mode 100644 src/IconJoinFullRound.tsx create mode 100644 src/IconJoinFullSharp.tsx create mode 100644 src/IconJoinFullTwoTone.tsx create mode 100644 src/IconJoinInnerOutlined.tsx create mode 100644 src/IconJoinInnerRound.tsx create mode 100644 src/IconJoinInnerSharp.tsx create mode 100644 src/IconJoinInnerTwoTone.tsx create mode 100644 src/IconJoinLeftOutlined.tsx create mode 100644 src/IconJoinLeftRound.tsx create mode 100644 src/IconJoinLeftSharp.tsx create mode 100644 src/IconJoinLeftTwoTone.tsx create mode 100644 src/IconJoinRightOutlined.tsx create mode 100644 src/IconJoinRightRound.tsx create mode 100644 src/IconJoinRightSharp.tsx create mode 100644 src/IconJoinRightTwoTone.tsx create mode 100644 src/IconKayakingOutlined.tsx create mode 100644 src/IconKayakingRound.tsx create mode 100644 src/IconKayakingSharp.tsx create mode 100644 src/IconKayakingTwoTone.tsx create mode 100644 src/IconKebabDiningOutlined.tsx create mode 100644 src/IconKebabDiningRound.tsx create mode 100644 src/IconKebabDiningSharp.tsx create mode 100644 src/IconKebabDiningTwoTone.tsx create mode 100644 src/IconKeyOffOutlined.tsx create mode 100644 src/IconKeyOffRound.tsx create mode 100644 src/IconKeyOffSharp.tsx create mode 100644 src/IconKeyOffTwoTone.tsx create mode 100644 src/IconKeyOutlined.tsx create mode 100644 src/IconKeyRound.tsx create mode 100644 src/IconKeySharp.tsx create mode 100644 src/IconKeyTwoTone.tsx create mode 100644 src/IconKeyboardAltOutlined.tsx create mode 100644 src/IconKeyboardAltRound.tsx create mode 100644 src/IconKeyboardAltSharp.tsx create mode 100644 src/IconKeyboardAltTwoTone.tsx create mode 100644 src/IconKeyboardArrowDownOutlined.tsx create mode 100644 src/IconKeyboardArrowDownRound.tsx create mode 100644 src/IconKeyboardArrowDownSharp.tsx create mode 100644 src/IconKeyboardArrowDownTwoTone.tsx create mode 100644 src/IconKeyboardArrowLeftOutlined.tsx create mode 100644 src/IconKeyboardArrowLeftRound.tsx create mode 100644 src/IconKeyboardArrowLeftSharp.tsx create mode 100644 src/IconKeyboardArrowLeftTwoTone.tsx create mode 100644 src/IconKeyboardArrowRightOutlined.tsx create mode 100644 src/IconKeyboardArrowRightRound.tsx create mode 100644 src/IconKeyboardArrowRightSharp.tsx create mode 100644 src/IconKeyboardArrowRightTwoTone.tsx create mode 100644 src/IconKeyboardArrowUpOutlined.tsx create mode 100644 src/IconKeyboardArrowUpRound.tsx create mode 100644 src/IconKeyboardArrowUpSharp.tsx create mode 100644 src/IconKeyboardArrowUpTwoTone.tsx create mode 100644 src/IconKeyboardBackspaceOutlined.tsx create mode 100644 src/IconKeyboardBackspaceRound.tsx create mode 100644 src/IconKeyboardBackspaceSharp.tsx create mode 100644 src/IconKeyboardBackspaceTwoTone.tsx create mode 100644 src/IconKeyboardCapslockOutlined.tsx create mode 100644 src/IconKeyboardCapslockRound.tsx create mode 100644 src/IconKeyboardCapslockSharp.tsx create mode 100644 src/IconKeyboardCapslockTwoTone.tsx create mode 100644 src/IconKeyboardCommandKeyOutlined.tsx create mode 100644 src/IconKeyboardCommandKeyRound.tsx create mode 100644 src/IconKeyboardCommandKeySharp.tsx create mode 100644 src/IconKeyboardCommandKeyTwoTone.tsx create mode 100644 src/IconKeyboardControlKeyOutlined.tsx create mode 100644 src/IconKeyboardControlKeyRound.tsx create mode 100644 src/IconKeyboardControlKeySharp.tsx create mode 100644 src/IconKeyboardControlKeyTwoTone.tsx create mode 100644 src/IconKeyboardDoubleArrowDownOutlined.tsx create mode 100644 src/IconKeyboardDoubleArrowDownRound.tsx create mode 100644 src/IconKeyboardDoubleArrowDownSharp.tsx create mode 100644 src/IconKeyboardDoubleArrowDownTwoTone.tsx create mode 100644 src/IconKeyboardDoubleArrowLeftOutlined.tsx create mode 100644 src/IconKeyboardDoubleArrowLeftRound.tsx create mode 100644 src/IconKeyboardDoubleArrowLeftSharp.tsx create mode 100644 src/IconKeyboardDoubleArrowLeftTwoTone.tsx create mode 100644 src/IconKeyboardDoubleArrowRightOutlined.tsx create mode 100644 src/IconKeyboardDoubleArrowRightRound.tsx create mode 100644 src/IconKeyboardDoubleArrowRightSharp.tsx create mode 100644 src/IconKeyboardDoubleArrowRightTwoTone.tsx create mode 100644 src/IconKeyboardDoubleArrowUpOutlined.tsx create mode 100644 src/IconKeyboardDoubleArrowUpRound.tsx create mode 100644 src/IconKeyboardDoubleArrowUpSharp.tsx create mode 100644 src/IconKeyboardDoubleArrowUpTwoTone.tsx create mode 100644 src/IconKeyboardHideOutlined.tsx create mode 100644 src/IconKeyboardHideRound.tsx create mode 100644 src/IconKeyboardHideSharp.tsx create mode 100644 src/IconKeyboardHideTwoTone.tsx create mode 100644 src/IconKeyboardOptionKeyOutlined.tsx create mode 100644 src/IconKeyboardOptionKeyRound.tsx create mode 100644 src/IconKeyboardOptionKeySharp.tsx create mode 100644 src/IconKeyboardOptionKeyTwoTone.tsx create mode 100644 src/IconKeyboardOutlined.tsx create mode 100644 src/IconKeyboardReturnOutlined.tsx create mode 100644 src/IconKeyboardReturnRound.tsx create mode 100644 src/IconKeyboardReturnSharp.tsx create mode 100644 src/IconKeyboardReturnTwoTone.tsx create mode 100644 src/IconKeyboardRound.tsx create mode 100644 src/IconKeyboardSharp.tsx create mode 100644 src/IconKeyboardTabOutlined.tsx create mode 100644 src/IconKeyboardTabRound.tsx create mode 100644 src/IconKeyboardTabSharp.tsx create mode 100644 src/IconKeyboardTabTwoTone.tsx create mode 100644 src/IconKeyboardTwoTone.tsx create mode 100644 src/IconKeyboardVoiceOutlined.tsx create mode 100644 src/IconKeyboardVoiceRound.tsx create mode 100644 src/IconKeyboardVoiceSharp.tsx create mode 100644 src/IconKeyboardVoiceTwoTone.tsx create mode 100644 src/IconKingBedOutlined.tsx create mode 100644 src/IconKingBedRound.tsx create mode 100644 src/IconKingBedSharp.tsx create mode 100644 src/IconKingBedTwoTone.tsx create mode 100644 src/IconKitchenOutlined.tsx create mode 100644 src/IconKitchenRound.tsx create mode 100644 src/IconKitchenSharp.tsx create mode 100644 src/IconKitchenTwoTone.tsx create mode 100644 src/IconKitesurfingOutlined.tsx create mode 100644 src/IconKitesurfingRound.tsx create mode 100644 src/IconKitesurfingSharp.tsx create mode 100644 src/IconKitesurfingTwoTone.tsx create mode 100644 src/IconLabelImportantOutlined.tsx create mode 100644 src/IconLabelImportantRound.tsx create mode 100644 src/IconLabelImportantSharp.tsx create mode 100644 src/IconLabelImportantTwoTone.tsx create mode 100644 src/IconLabelOffOutlined.tsx create mode 100644 src/IconLabelOffRound.tsx create mode 100644 src/IconLabelOffSharp.tsx create mode 100644 src/IconLabelOffTwoTone.tsx create mode 100644 src/IconLabelOutlined.tsx create mode 100644 src/IconLabelRound.tsx create mode 100644 src/IconLabelSharp.tsx create mode 100644 src/IconLabelTwoTone.tsx create mode 100644 src/IconLanOutlined.tsx create mode 100644 src/IconLanRound.tsx create mode 100644 src/IconLanSharp.tsx create mode 100644 src/IconLanTwoTone.tsx create mode 100644 src/IconLandscapeOutlined.tsx create mode 100644 src/IconLandscapeRound.tsx create mode 100644 src/IconLandscapeSharp.tsx create mode 100644 src/IconLandscapeTwoTone.tsx create mode 100644 src/IconLandslideOutlined.tsx create mode 100644 src/IconLandslideRound.tsx create mode 100644 src/IconLandslideSharp.tsx create mode 100644 src/IconLandslideTwoTone.tsx create mode 100644 src/IconLanguageOutlined.tsx create mode 100644 src/IconLanguageRound.tsx create mode 100644 src/IconLanguageSharp.tsx create mode 100644 src/IconLanguageTwoTone.tsx create mode 100644 src/IconLaptopChromebookOutlined.tsx create mode 100644 src/IconLaptopChromebookRound.tsx create mode 100644 src/IconLaptopChromebookSharp.tsx create mode 100644 src/IconLaptopChromebookTwoTone.tsx create mode 100644 src/IconLaptopMacOutlined.tsx create mode 100644 src/IconLaptopMacRound.tsx create mode 100644 src/IconLaptopMacSharp.tsx create mode 100644 src/IconLaptopMacTwoTone.tsx create mode 100644 src/IconLaptopOutlined.tsx create mode 100644 src/IconLaptopRound.tsx create mode 100644 src/IconLaptopSharp.tsx create mode 100644 src/IconLaptopTwoTone.tsx create mode 100644 src/IconLaptopWindowsOutlined.tsx create mode 100644 src/IconLaptopWindowsRound.tsx create mode 100644 src/IconLaptopWindowsSharp.tsx create mode 100644 src/IconLaptopWindowsTwoTone.tsx create mode 100644 src/IconLastPageOutlined.tsx create mode 100644 src/IconLastPageRound.tsx create mode 100644 src/IconLastPageSharp.tsx create mode 100644 src/IconLastPageTwoTone.tsx create mode 100644 src/IconLaunchOutlined.tsx create mode 100644 src/IconLaunchRound.tsx create mode 100644 src/IconLaunchSharp.tsx create mode 100644 src/IconLaunchTwoTone.tsx create mode 100644 src/IconLayersClearOutlined.tsx create mode 100644 src/IconLayersClearRound.tsx create mode 100644 src/IconLayersClearSharp.tsx create mode 100644 src/IconLayersClearTwoTone.tsx create mode 100644 src/IconLayersOutlined.tsx create mode 100644 src/IconLayersRound.tsx create mode 100644 src/IconLayersSharp.tsx create mode 100644 src/IconLayersTwoTone.tsx create mode 100644 src/IconLeaderboardOutlined.tsx create mode 100644 src/IconLeaderboardRound.tsx create mode 100644 src/IconLeaderboardSharp.tsx create mode 100644 src/IconLeaderboardTwoTone.tsx create mode 100644 src/IconLeakAddOutlined.tsx create mode 100644 src/IconLeakAddRound.tsx create mode 100644 src/IconLeakAddSharp.tsx create mode 100644 src/IconLeakAddTwoTone.tsx create mode 100644 src/IconLeakRemoveOutlined.tsx create mode 100644 src/IconLeakRemoveRound.tsx create mode 100644 src/IconLeakRemoveSharp.tsx create mode 100644 src/IconLeakRemoveTwoTone.tsx create mode 100644 src/IconLegendToggleOutlined.tsx create mode 100644 src/IconLegendToggleRound.tsx create mode 100644 src/IconLegendToggleSharp.tsx create mode 100644 src/IconLegendToggleTwoTone.tsx create mode 100644 src/IconLensBlurOutlined.tsx create mode 100644 src/IconLensBlurRound.tsx create mode 100644 src/IconLensBlurSharp.tsx create mode 100644 src/IconLensBlurTwoTone.tsx create mode 100644 src/IconLensOutlined.tsx create mode 100644 src/IconLensRound.tsx create mode 100644 src/IconLensSharp.tsx create mode 100644 src/IconLensTwoTone.tsx create mode 100644 src/IconLibraryAddCheckOutlined.tsx create mode 100644 src/IconLibraryAddCheckRound.tsx create mode 100644 src/IconLibraryAddCheckSharp.tsx create mode 100644 src/IconLibraryAddCheckTwoTone.tsx create mode 100644 src/IconLibraryAddOutlined.tsx create mode 100644 src/IconLibraryAddRound.tsx create mode 100644 src/IconLibraryAddSharp.tsx create mode 100644 src/IconLibraryAddTwoTone.tsx create mode 100644 src/IconLibraryBooksOutlined.tsx create mode 100644 src/IconLibraryBooksRound.tsx create mode 100644 src/IconLibraryBooksSharp.tsx create mode 100644 src/IconLibraryBooksTwoTone.tsx create mode 100644 src/IconLibraryMusicOutlined.tsx create mode 100644 src/IconLibraryMusicRound.tsx create mode 100644 src/IconLibraryMusicSharp.tsx create mode 100644 src/IconLibraryMusicTwoTone.tsx create mode 100644 src/IconLightModeOutlined.tsx create mode 100644 src/IconLightModeRound.tsx create mode 100644 src/IconLightModeSharp.tsx create mode 100644 src/IconLightModeTwoTone.tsx create mode 100644 src/IconLightOutlined.tsx create mode 100644 src/IconLightRound.tsx create mode 100644 src/IconLightSharp.tsx create mode 100644 src/IconLightTwoTone.tsx create mode 100644 src/IconLightbulbCircleOutlined.tsx create mode 100644 src/IconLightbulbCircleRound.tsx create mode 100644 src/IconLightbulbCircleSharp.tsx create mode 100644 src/IconLightbulbCircleTwoTone.tsx create mode 100644 src/IconLightbulbOutlined.tsx create mode 100644 src/IconLightbulbRound.tsx create mode 100644 src/IconLightbulbSharp.tsx create mode 100644 src/IconLightbulbTwoTone.tsx create mode 100644 src/IconLineAxisOutlined.tsx create mode 100644 src/IconLineAxisRound.tsx create mode 100644 src/IconLineAxisSharp.tsx create mode 100644 src/IconLineAxisTwoTone.tsx create mode 100644 src/IconLineStyleOutlined.tsx create mode 100644 src/IconLineStyleRound.tsx create mode 100644 src/IconLineStyleSharp.tsx create mode 100644 src/IconLineStyleTwoTone.tsx create mode 100644 src/IconLineWeightOutlined.tsx create mode 100644 src/IconLineWeightRound.tsx create mode 100644 src/IconLineWeightSharp.tsx create mode 100644 src/IconLineWeightTwoTone.tsx create mode 100644 src/IconLinearScaleOutlined.tsx create mode 100644 src/IconLinearScaleRound.tsx create mode 100644 src/IconLinearScaleSharp.tsx create mode 100644 src/IconLinearScaleTwoTone.tsx create mode 100644 src/IconLinkOffOutlined.tsx create mode 100644 src/IconLinkOffRound.tsx create mode 100644 src/IconLinkOffSharp.tsx create mode 100644 src/IconLinkOffTwoTone.tsx create mode 100644 src/IconLinkOutlined.tsx create mode 100644 src/IconLinkRound.tsx create mode 100644 src/IconLinkSharp.tsx create mode 100644 src/IconLinkTwoTone.tsx create mode 100644 src/IconLinkedCameraOutlined.tsx create mode 100644 src/IconLinkedCameraRound.tsx create mode 100644 src/IconLinkedCameraSharp.tsx create mode 100644 src/IconLinkedCameraTwoTone.tsx create mode 100644 src/IconLiquorOutlined.tsx create mode 100644 src/IconLiquorRound.tsx create mode 100644 src/IconLiquorSharp.tsx create mode 100644 src/IconLiquorTwoTone.tsx create mode 100644 src/IconListAltOutlined.tsx create mode 100644 src/IconListAltRound.tsx create mode 100644 src/IconListAltSharp.tsx create mode 100644 src/IconListAltTwoTone.tsx create mode 100644 src/IconListOutlined.tsx create mode 100644 src/IconListRound.tsx create mode 100644 src/IconListSharp.tsx create mode 100644 src/IconListTwoTone.tsx create mode 100644 src/IconLiveHelpOutlined.tsx create mode 100644 src/IconLiveHelpRound.tsx create mode 100644 src/IconLiveHelpSharp.tsx create mode 100644 src/IconLiveHelpTwoTone.tsx create mode 100644 src/IconLiveTvOutlined.tsx create mode 100644 src/IconLiveTvRound.tsx create mode 100644 src/IconLiveTvSharp.tsx create mode 100644 src/IconLiveTvTwoTone.tsx create mode 100644 src/IconLivingOutlined.tsx create mode 100644 src/IconLivingRound.tsx create mode 100644 src/IconLivingSharp.tsx create mode 100644 src/IconLivingTwoTone.tsx create mode 100644 src/IconLocalActivityOutlined.tsx create mode 100644 src/IconLocalActivityRound.tsx create mode 100644 src/IconLocalActivitySharp.tsx create mode 100644 src/IconLocalActivityTwoTone.tsx create mode 100644 src/IconLocalAirportOutlined.tsx create mode 100644 src/IconLocalAirportRound.tsx create mode 100644 src/IconLocalAirportSharp.tsx create mode 100644 src/IconLocalAirportTwoTone.tsx create mode 100644 src/IconLocalAtmOutlined.tsx create mode 100644 src/IconLocalAtmRound.tsx create mode 100644 src/IconLocalAtmSharp.tsx create mode 100644 src/IconLocalAtmTwoTone.tsx create mode 100644 src/IconLocalBarOutlined.tsx create mode 100644 src/IconLocalBarRound.tsx create mode 100644 src/IconLocalBarSharp.tsx create mode 100644 src/IconLocalBarTwoTone.tsx create mode 100644 src/IconLocalCafeOutlined.tsx create mode 100644 src/IconLocalCafeRound.tsx create mode 100644 src/IconLocalCafeSharp.tsx create mode 100644 src/IconLocalCafeTwoTone.tsx create mode 100644 src/IconLocalCarWashOutlined.tsx create mode 100644 src/IconLocalCarWashRound.tsx create mode 100644 src/IconLocalCarWashSharp.tsx create mode 100644 src/IconLocalCarWashTwoTone.tsx create mode 100644 src/IconLocalConvenienceStoreOutlined.tsx create mode 100644 src/IconLocalConvenienceStoreRound.tsx create mode 100644 src/IconLocalConvenienceStoreSharp.tsx create mode 100644 src/IconLocalConvenienceStoreTwoTone.tsx create mode 100644 src/IconLocalDiningOutlined.tsx create mode 100644 src/IconLocalDiningRound.tsx create mode 100644 src/IconLocalDiningSharp.tsx create mode 100644 src/IconLocalDiningTwoTone.tsx create mode 100644 src/IconLocalDrinkOutlined.tsx create mode 100644 src/IconLocalDrinkRound.tsx create mode 100644 src/IconLocalDrinkSharp.tsx create mode 100644 src/IconLocalDrinkTwoTone.tsx create mode 100644 src/IconLocalFireDepartmentOutlined.tsx create mode 100644 src/IconLocalFireDepartmentRound.tsx create mode 100644 src/IconLocalFireDepartmentSharp.tsx create mode 100644 src/IconLocalFireDepartmentTwoTone.tsx create mode 100644 src/IconLocalFloristOutlined.tsx create mode 100644 src/IconLocalFloristRound.tsx create mode 100644 src/IconLocalFloristSharp.tsx create mode 100644 src/IconLocalFloristTwoTone.tsx create mode 100644 src/IconLocalGasStationOutlined.tsx create mode 100644 src/IconLocalGasStationRound.tsx create mode 100644 src/IconLocalGasStationSharp.tsx create mode 100644 src/IconLocalGasStationTwoTone.tsx create mode 100644 src/IconLocalGroceryStoreOutlined.tsx create mode 100644 src/IconLocalGroceryStoreRound.tsx create mode 100644 src/IconLocalGroceryStoreSharp.tsx create mode 100644 src/IconLocalGroceryStoreTwoTone.tsx create mode 100644 src/IconLocalHospitalOutlined.tsx create mode 100644 src/IconLocalHospitalRound.tsx create mode 100644 src/IconLocalHospitalSharp.tsx create mode 100644 src/IconLocalHospitalTwoTone.tsx create mode 100644 src/IconLocalHotelOutlined.tsx create mode 100644 src/IconLocalHotelRound.tsx create mode 100644 src/IconLocalHotelSharp.tsx create mode 100644 src/IconLocalHotelTwoTone.tsx create mode 100644 src/IconLocalLaundryServiceOutlined.tsx create mode 100644 src/IconLocalLaundryServiceRound.tsx create mode 100644 src/IconLocalLaundryServiceSharp.tsx create mode 100644 src/IconLocalLaundryServiceTwoTone.tsx create mode 100644 src/IconLocalLibraryOutlined.tsx create mode 100644 src/IconLocalLibraryRound.tsx create mode 100644 src/IconLocalLibrarySharp.tsx create mode 100644 src/IconLocalLibraryTwoTone.tsx create mode 100644 src/IconLocalMallOutlined.tsx create mode 100644 src/IconLocalMallRound.tsx create mode 100644 src/IconLocalMallSharp.tsx create mode 100644 src/IconLocalMallTwoTone.tsx create mode 100644 src/IconLocalMoviesOutlined.tsx create mode 100644 src/IconLocalMoviesRound.tsx create mode 100644 src/IconLocalMoviesSharp.tsx create mode 100644 src/IconLocalMoviesTwoTone.tsx create mode 100644 src/IconLocalOfferOutlined.tsx create mode 100644 src/IconLocalOfferRound.tsx create mode 100644 src/IconLocalOfferSharp.tsx create mode 100644 src/IconLocalOfferTwoTone.tsx create mode 100644 src/IconLocalParkingOutlined.tsx create mode 100644 src/IconLocalParkingRound.tsx create mode 100644 src/IconLocalParkingSharp.tsx create mode 100644 src/IconLocalParkingTwoTone.tsx create mode 100644 src/IconLocalPharmacyOutlined.tsx create mode 100644 src/IconLocalPharmacyRound.tsx create mode 100644 src/IconLocalPharmacySharp.tsx create mode 100644 src/IconLocalPharmacyTwoTone.tsx create mode 100644 src/IconLocalPhoneOutlined.tsx create mode 100644 src/IconLocalPhoneRound.tsx create mode 100644 src/IconLocalPhoneSharp.tsx create mode 100644 src/IconLocalPhoneTwoTone.tsx create mode 100644 src/IconLocalPizzaOutlined.tsx create mode 100644 src/IconLocalPizzaRound.tsx create mode 100644 src/IconLocalPizzaSharp.tsx create mode 100644 src/IconLocalPizzaTwoTone.tsx create mode 100644 src/IconLocalPlayOutlined.tsx create mode 100644 src/IconLocalPlayRound.tsx create mode 100644 src/IconLocalPlaySharp.tsx create mode 100644 src/IconLocalPlayTwoTone.tsx create mode 100644 src/IconLocalPoliceOutlined.tsx create mode 100644 src/IconLocalPoliceRound.tsx create mode 100644 src/IconLocalPoliceSharp.tsx create mode 100644 src/IconLocalPoliceTwoTone.tsx create mode 100644 src/IconLocalPostOfficeOutlined.tsx create mode 100644 src/IconLocalPostOfficeRound.tsx create mode 100644 src/IconLocalPostOfficeSharp.tsx create mode 100644 src/IconLocalPostOfficeTwoTone.tsx create mode 100644 src/IconLocalPrintshopOutlined.tsx create mode 100644 src/IconLocalPrintshopRound.tsx create mode 100644 src/IconLocalPrintshopSharp.tsx create mode 100644 src/IconLocalPrintshopTwoTone.tsx create mode 100644 src/IconLocalSeeOutlined.tsx create mode 100644 src/IconLocalSeeRound.tsx create mode 100644 src/IconLocalSeeSharp.tsx create mode 100644 src/IconLocalSeeTwoTone.tsx create mode 100644 src/IconLocalShippingOutlined.tsx create mode 100644 src/IconLocalShippingRound.tsx create mode 100644 src/IconLocalShippingSharp.tsx create mode 100644 src/IconLocalShippingTwoTone.tsx create mode 100644 src/IconLocalTaxiOutlined.tsx create mode 100644 src/IconLocalTaxiRound.tsx create mode 100644 src/IconLocalTaxiSharp.tsx create mode 100644 src/IconLocalTaxiTwoTone.tsx create mode 100644 src/IconLocationCityOutlined.tsx create mode 100644 src/IconLocationCityRound.tsx create mode 100644 src/IconLocationCitySharp.tsx create mode 100644 src/IconLocationCityTwoTone.tsx create mode 100644 src/IconLocationDisabledOutlined.tsx create mode 100644 src/IconLocationDisabledRound.tsx create mode 100644 src/IconLocationDisabledSharp.tsx create mode 100644 src/IconLocationDisabledTwoTone.tsx create mode 100644 src/IconLocationOffOutlined.tsx create mode 100644 src/IconLocationOffRound.tsx create mode 100644 src/IconLocationOffSharp.tsx create mode 100644 src/IconLocationOffTwoTone.tsx create mode 100644 src/IconLocationOnOutlined.tsx create mode 100644 src/IconLocationOnRound.tsx create mode 100644 src/IconLocationOnSharp.tsx create mode 100644 src/IconLocationOnTwoTone.tsx create mode 100644 src/IconLocationSearchingOutlined.tsx create mode 100644 src/IconLocationSearchingRound.tsx create mode 100644 src/IconLocationSearchingSharp.tsx create mode 100644 src/IconLocationSearchingTwoTone.tsx create mode 100644 src/IconLockClockOutlined.tsx create mode 100644 src/IconLockClockRound.tsx create mode 100644 src/IconLockClockSharp.tsx create mode 100644 src/IconLockClockTwoTone.tsx create mode 100644 src/IconLockOpenOutlined.tsx create mode 100644 src/IconLockOpenRound.tsx create mode 100644 src/IconLockOpenSharp.tsx create mode 100644 src/IconLockOpenTwoTone.tsx create mode 100644 src/IconLockOutlined.tsx create mode 100644 src/IconLockPersonOutlined.tsx create mode 100644 src/IconLockPersonRound.tsx create mode 100644 src/IconLockPersonSharp.tsx create mode 100644 src/IconLockPersonTwoTone.tsx create mode 100644 src/IconLockResetOutlined.tsx create mode 100644 src/IconLockResetRound.tsx create mode 100644 src/IconLockResetSharp.tsx create mode 100644 src/IconLockResetTwoTone.tsx create mode 100644 src/IconLockRound.tsx create mode 100644 src/IconLockSharp.tsx create mode 100644 src/IconLockTwoTone.tsx create mode 100644 src/IconLoginOutlined.tsx create mode 100644 src/IconLoginRound.tsx create mode 100644 src/IconLoginSharp.tsx create mode 100644 src/IconLoginTwoTone.tsx create mode 100644 src/IconLogoDevOutlined.tsx create mode 100644 src/IconLogoDevRound.tsx create mode 100644 src/IconLogoDevSharp.tsx create mode 100644 src/IconLogoDevTwoTone.tsx create mode 100644 src/IconLogoutOutlined.tsx create mode 100644 src/IconLogoutRound.tsx create mode 100644 src/IconLogoutSharp.tsx create mode 100644 src/IconLogoutTwoTone.tsx create mode 100644 src/IconLooks3Outlined.tsx create mode 100644 src/IconLooks3Round.tsx create mode 100644 src/IconLooks3Sharp.tsx create mode 100644 src/IconLooks3TwoTone.tsx create mode 100644 src/IconLooks4Outlined.tsx create mode 100644 src/IconLooks4Round.tsx create mode 100644 src/IconLooks4Sharp.tsx create mode 100644 src/IconLooks4TwoTone.tsx create mode 100644 src/IconLooks5Outlined.tsx create mode 100644 src/IconLooks5Round.tsx create mode 100644 src/IconLooks5Sharp.tsx create mode 100644 src/IconLooks5TwoTone.tsx create mode 100644 src/IconLooks6Outlined.tsx create mode 100644 src/IconLooks6Round.tsx create mode 100644 src/IconLooks6Sharp.tsx create mode 100644 src/IconLooks6TwoTone.tsx create mode 100644 src/IconLooksOneOutlined.tsx create mode 100644 src/IconLooksOneRound.tsx create mode 100644 src/IconLooksOneSharp.tsx create mode 100644 src/IconLooksOneTwoTone.tsx create mode 100644 src/IconLooksOutlined.tsx create mode 100644 src/IconLooksRound.tsx create mode 100644 src/IconLooksSharp.tsx create mode 100644 src/IconLooksTwoOutlined.tsx create mode 100644 src/IconLooksTwoRound.tsx create mode 100644 src/IconLooksTwoSharp.tsx create mode 100644 src/IconLooksTwoTone.tsx create mode 100644 src/IconLooksTwoTwoTone.tsx create mode 100644 src/IconLoopOutlined.tsx create mode 100644 src/IconLoopRound.tsx create mode 100644 src/IconLoopSharp.tsx create mode 100644 src/IconLoopTwoTone.tsx create mode 100644 src/IconLoupeOutlined.tsx create mode 100644 src/IconLoupeRound.tsx create mode 100644 src/IconLoupeSharp.tsx create mode 100644 src/IconLoupeTwoTone.tsx create mode 100644 src/IconLowPriorityOutlined.tsx create mode 100644 src/IconLowPriorityRound.tsx create mode 100644 src/IconLowPrioritySharp.tsx create mode 100644 src/IconLowPriorityTwoTone.tsx create mode 100644 src/IconLoyaltyOutlined.tsx create mode 100644 src/IconLoyaltyRound.tsx create mode 100644 src/IconLoyaltySharp.tsx create mode 100644 src/IconLoyaltyTwoTone.tsx create mode 100644 src/IconLteMobiledataOutlined.tsx create mode 100644 src/IconLteMobiledataRound.tsx create mode 100644 src/IconLteMobiledataSharp.tsx create mode 100644 src/IconLteMobiledataTwoTone.tsx create mode 100644 src/IconLtePlusMobiledataOutlined.tsx create mode 100644 src/IconLtePlusMobiledataRound.tsx create mode 100644 src/IconLtePlusMobiledataSharp.tsx create mode 100644 src/IconLtePlusMobiledataTwoTone.tsx create mode 100644 src/IconLuggageOutlined.tsx create mode 100644 src/IconLuggageRound.tsx create mode 100644 src/IconLuggageSharp.tsx create mode 100644 src/IconLuggageTwoTone.tsx create mode 100644 src/IconLunchDiningOutlined.tsx create mode 100644 src/IconLunchDiningRound.tsx create mode 100644 src/IconLunchDiningSharp.tsx create mode 100644 src/IconLunchDiningTwoTone.tsx create mode 100644 src/IconLyricsOutlined.tsx create mode 100644 src/IconLyricsRound.tsx create mode 100644 src/IconLyricsSharp.tsx create mode 100644 src/IconLyricsTwoTone.tsx create mode 100644 src/IconMacroOffOutlined.tsx create mode 100644 src/IconMacroOffRound.tsx create mode 100644 src/IconMacroOffSharp.tsx create mode 100644 src/IconMacroOffTwoTone.tsx create mode 100644 src/IconMailLockOutlined.tsx create mode 100644 src/IconMailLockRound.tsx create mode 100644 src/IconMailLockSharp.tsx create mode 100644 src/IconMailLockTwoTone.tsx create mode 100644 src/IconMailOutlineOutlined.tsx create mode 100644 src/IconMailOutlineRound.tsx create mode 100644 src/IconMailOutlineSharp.tsx create mode 100644 src/IconMailOutlineTwoTone.tsx create mode 100644 src/IconMailOutlined.tsx create mode 100644 src/IconMailRound.tsx create mode 100644 src/IconMailSharp.tsx create mode 100644 src/IconMailTwoTone.tsx create mode 100644 src/IconMaleOutlined.tsx create mode 100644 src/IconMaleRound.tsx create mode 100644 src/IconMaleSharp.tsx create mode 100644 src/IconMaleTwoTone.tsx create mode 100644 src/IconMan2Outlined.tsx create mode 100644 src/IconMan2Round.tsx create mode 100644 src/IconMan2Sharp.tsx create mode 100644 src/IconMan2TwoTone.tsx create mode 100644 src/IconMan3Outlined.tsx create mode 100644 src/IconMan3Round.tsx create mode 100644 src/IconMan3Sharp.tsx create mode 100644 src/IconMan3TwoTone.tsx create mode 100644 src/IconMan4Outlined.tsx create mode 100644 src/IconMan4Round.tsx create mode 100644 src/IconMan4Sharp.tsx create mode 100644 src/IconMan4TwoTone.tsx create mode 100644 src/IconManOutlined.tsx create mode 100644 src/IconManRound.tsx create mode 100644 src/IconManSharp.tsx create mode 100644 src/IconManTwoTone.tsx create mode 100644 src/IconManageAccountsOutlined.tsx create mode 100644 src/IconManageAccountsRound.tsx create mode 100644 src/IconManageAccountsSharp.tsx create mode 100644 src/IconManageAccountsTwoTone.tsx create mode 100644 src/IconManageHistoryOutlined.tsx create mode 100644 src/IconManageHistoryRound.tsx create mode 100644 src/IconManageHistorySharp.tsx create mode 100644 src/IconManageHistoryTwoTone.tsx create mode 100644 src/IconManageSearchOutlined.tsx create mode 100644 src/IconManageSearchRound.tsx create mode 100644 src/IconManageSearchSharp.tsx create mode 100644 src/IconManageSearchTwoTone.tsx create mode 100644 src/IconMapOutlined.tsx create mode 100644 src/IconMapRound.tsx create mode 100644 src/IconMapSharp.tsx create mode 100644 src/IconMapTwoTone.tsx create mode 100644 src/IconMapsHomeWorkOutlined.tsx create mode 100644 src/IconMapsHomeWorkRound.tsx create mode 100644 src/IconMapsHomeWorkSharp.tsx create mode 100644 src/IconMapsHomeWorkTwoTone.tsx create mode 100644 src/IconMapsUgcOutlined.tsx create mode 100644 src/IconMapsUgcRound.tsx create mode 100644 src/IconMapsUgcSharp.tsx create mode 100644 src/IconMapsUgcTwoTone.tsx create mode 100644 src/IconMarginOutlined.tsx create mode 100644 src/IconMarginRound.tsx create mode 100644 src/IconMarginSharp.tsx create mode 100644 src/IconMarginTwoTone.tsx create mode 100644 src/IconMarkAsUnreadOutlined.tsx create mode 100644 src/IconMarkAsUnreadRound.tsx create mode 100644 src/IconMarkAsUnreadSharp.tsx create mode 100644 src/IconMarkAsUnreadTwoTone.tsx create mode 100644 src/IconMarkChatReadOutlined.tsx create mode 100644 src/IconMarkChatReadRound.tsx create mode 100644 src/IconMarkChatReadSharp.tsx create mode 100644 src/IconMarkChatReadTwoTone.tsx create mode 100644 src/IconMarkChatUnreadOutlined.tsx create mode 100644 src/IconMarkChatUnreadRound.tsx create mode 100644 src/IconMarkChatUnreadSharp.tsx create mode 100644 src/IconMarkChatUnreadTwoTone.tsx create mode 100644 src/IconMarkEmailReadOutlined.tsx create mode 100644 src/IconMarkEmailReadRound.tsx create mode 100644 src/IconMarkEmailReadSharp.tsx create mode 100644 src/IconMarkEmailReadTwoTone.tsx create mode 100644 src/IconMarkEmailUnreadOutlined.tsx create mode 100644 src/IconMarkEmailUnreadRound.tsx create mode 100644 src/IconMarkEmailUnreadSharp.tsx create mode 100644 src/IconMarkEmailUnreadTwoTone.tsx create mode 100644 src/IconMarkUnreadChatAltOutlined.tsx create mode 100644 src/IconMarkUnreadChatAltRound.tsx create mode 100644 src/IconMarkUnreadChatAltSharp.tsx create mode 100644 src/IconMarkUnreadChatAltTwoTone.tsx create mode 100644 src/IconMarkunreadMailboxOutlined.tsx create mode 100644 src/IconMarkunreadMailboxRound.tsx create mode 100644 src/IconMarkunreadMailboxSharp.tsx create mode 100644 src/IconMarkunreadMailboxTwoTone.tsx create mode 100644 src/IconMarkunreadOutlined.tsx create mode 100644 src/IconMarkunreadRound.tsx create mode 100644 src/IconMarkunreadSharp.tsx create mode 100644 src/IconMarkunreadTwoTone.tsx create mode 100644 src/IconMasksOutlined.tsx create mode 100644 src/IconMasksRound.tsx create mode 100644 src/IconMasksSharp.tsx create mode 100644 src/IconMasksTwoTone.tsx create mode 100644 src/IconMaximizeOutlined.tsx create mode 100644 src/IconMaximizeRound.tsx create mode 100644 src/IconMaximizeSharp.tsx create mode 100644 src/IconMaximizeTwoTone.tsx create mode 100644 src/IconMediaBluetoothOffOutlined.tsx create mode 100644 src/IconMediaBluetoothOffRound.tsx create mode 100644 src/IconMediaBluetoothOffSharp.tsx create mode 100644 src/IconMediaBluetoothOffTwoTone.tsx create mode 100644 src/IconMediaBluetoothOnOutlined.tsx create mode 100644 src/IconMediaBluetoothOnRound.tsx create mode 100644 src/IconMediaBluetoothOnSharp.tsx create mode 100644 src/IconMediaBluetoothOnTwoTone.tsx create mode 100644 src/IconMediationOutlined.tsx create mode 100644 src/IconMediationRound.tsx create mode 100644 src/IconMediationSharp.tsx create mode 100644 src/IconMediationTwoTone.tsx create mode 100644 src/IconMedicalInformationOutlined.tsx create mode 100644 src/IconMedicalInformationRound.tsx create mode 100644 src/IconMedicalInformationSharp.tsx create mode 100644 src/IconMedicalInformationTwoTone.tsx create mode 100644 src/IconMedicalServicesOutlined.tsx create mode 100644 src/IconMedicalServicesRound.tsx create mode 100644 src/IconMedicalServicesSharp.tsx create mode 100644 src/IconMedicalServicesTwoTone.tsx create mode 100644 src/IconMedicationLiquidOutlined.tsx create mode 100644 src/IconMedicationLiquidRound.tsx create mode 100644 src/IconMedicationLiquidSharp.tsx create mode 100644 src/IconMedicationLiquidTwoTone.tsx create mode 100644 src/IconMedicationOutlined.tsx create mode 100644 src/IconMedicationRound.tsx create mode 100644 src/IconMedicationSharp.tsx create mode 100644 src/IconMedicationTwoTone.tsx create mode 100644 src/IconMeetingRoomOutlined.tsx create mode 100644 src/IconMeetingRoomRound.tsx create mode 100644 src/IconMeetingRoomSharp.tsx create mode 100644 src/IconMeetingRoomTwoTone.tsx create mode 100644 src/IconMemoryOutlined.tsx create mode 100644 src/IconMemoryRound.tsx create mode 100644 src/IconMemorySharp.tsx create mode 100644 src/IconMemoryTwoTone.tsx create mode 100644 src/IconMenuBookOutlined.tsx create mode 100644 src/IconMenuBookRound.tsx create mode 100644 src/IconMenuBookSharp.tsx create mode 100644 src/IconMenuBookTwoTone.tsx create mode 100644 src/IconMenuOpenOutlined.tsx create mode 100644 src/IconMenuOpenRound.tsx create mode 100644 src/IconMenuOpenSharp.tsx create mode 100644 src/IconMenuOpenTwoTone.tsx create mode 100644 src/IconMenuOutlined.tsx create mode 100644 src/IconMenuRound.tsx create mode 100644 src/IconMenuSharp.tsx create mode 100644 src/IconMenuTwoTone.tsx create mode 100644 src/IconMergeOutlined.tsx create mode 100644 src/IconMergeRound.tsx create mode 100644 src/IconMergeSharp.tsx create mode 100644 src/IconMergeTwoTone.tsx create mode 100644 src/IconMergeTypeOutlined.tsx create mode 100644 src/IconMergeTypeRound.tsx create mode 100644 src/IconMergeTypeSharp.tsx create mode 100644 src/IconMergeTypeTwoTone.tsx create mode 100644 src/IconMessageOutlined.tsx create mode 100644 src/IconMessageRound.tsx create mode 100644 src/IconMessageSharp.tsx create mode 100644 src/IconMessageTwoTone.tsx create mode 100644 src/IconMicExternalOffOutlined.tsx create mode 100644 src/IconMicExternalOffRound.tsx create mode 100644 src/IconMicExternalOffSharp.tsx create mode 100644 src/IconMicExternalOffTwoTone.tsx create mode 100644 src/IconMicExternalOnOutlined.tsx create mode 100644 src/IconMicExternalOnRound.tsx create mode 100644 src/IconMicExternalOnSharp.tsx create mode 100644 src/IconMicExternalOnTwoTone.tsx create mode 100644 src/IconMicNoneOutlined.tsx create mode 100644 src/IconMicNoneRound.tsx create mode 100644 src/IconMicNoneSharp.tsx create mode 100644 src/IconMicNoneTwoTone.tsx create mode 100644 src/IconMicOffOutlined.tsx create mode 100644 src/IconMicOffRound.tsx create mode 100644 src/IconMicOffSharp.tsx create mode 100644 src/IconMicOffTwoTone.tsx create mode 100644 src/IconMicOutlined.tsx create mode 100644 src/IconMicRound.tsx create mode 100644 src/IconMicSharp.tsx create mode 100644 src/IconMicTwoTone.tsx create mode 100644 src/IconMicrowaveOutlined.tsx create mode 100644 src/IconMicrowaveRound.tsx create mode 100644 src/IconMicrowaveSharp.tsx create mode 100644 src/IconMicrowaveTwoTone.tsx create mode 100644 src/IconMilitaryTechOutlined.tsx create mode 100644 src/IconMilitaryTechRound.tsx create mode 100644 src/IconMilitaryTechSharp.tsx create mode 100644 src/IconMilitaryTechTwoTone.tsx create mode 100644 src/IconMinimizeOutlined.tsx create mode 100644 src/IconMinimizeRound.tsx create mode 100644 src/IconMinimizeSharp.tsx create mode 100644 src/IconMinimizeTwoTone.tsx create mode 100644 src/IconMinorCrashOutlined.tsx create mode 100644 src/IconMinorCrashRound.tsx create mode 100644 src/IconMinorCrashSharp.tsx create mode 100644 src/IconMinorCrashTwoTone.tsx create mode 100644 src/IconMiscellaneousServicesOutlined.tsx create mode 100644 src/IconMiscellaneousServicesRound.tsx create mode 100644 src/IconMiscellaneousServicesSharp.tsx create mode 100644 src/IconMiscellaneousServicesTwoTone.tsx create mode 100644 src/IconMissedVideoCallOutlined.tsx create mode 100644 src/IconMissedVideoCallRound.tsx create mode 100644 src/IconMissedVideoCallSharp.tsx create mode 100644 src/IconMissedVideoCallTwoTone.tsx create mode 100644 src/IconMmsOutlined.tsx create mode 100644 src/IconMmsRound.tsx create mode 100644 src/IconMmsSharp.tsx create mode 100644 src/IconMmsTwoTone.tsx create mode 100644 src/IconMobileFriendlyOutlined.tsx create mode 100644 src/IconMobileFriendlyRound.tsx create mode 100644 src/IconMobileFriendlySharp.tsx create mode 100644 src/IconMobileFriendlyTwoTone.tsx create mode 100644 src/IconMobileOffOutlined.tsx create mode 100644 src/IconMobileOffRound.tsx create mode 100644 src/IconMobileOffSharp.tsx create mode 100644 src/IconMobileOffTwoTone.tsx create mode 100644 src/IconMobileScreenShareOutlined.tsx create mode 100644 src/IconMobileScreenShareRound.tsx create mode 100644 src/IconMobileScreenShareSharp.tsx create mode 100644 src/IconMobileScreenShareTwoTone.tsx create mode 100644 src/IconMobiledataOffOutlined.tsx create mode 100644 src/IconMobiledataOffRound.tsx create mode 100644 src/IconMobiledataOffSharp.tsx create mode 100644 src/IconMobiledataOffTwoTone.tsx create mode 100644 src/IconModeCommentOutlined.tsx create mode 100644 src/IconModeCommentRound.tsx create mode 100644 src/IconModeCommentSharp.tsx create mode 100644 src/IconModeCommentTwoTone.tsx create mode 100644 src/IconModeEditOutlineOutlined.tsx create mode 100644 src/IconModeEditOutlineRound.tsx create mode 100644 src/IconModeEditOutlineSharp.tsx create mode 100644 src/IconModeEditOutlineTwoTone.tsx create mode 100644 src/IconModeEditOutlined.tsx create mode 100644 src/IconModeEditRound.tsx create mode 100644 src/IconModeEditSharp.tsx create mode 100644 src/IconModeEditTwoTone.tsx create mode 100644 src/IconModeFanOffOutlined.tsx create mode 100644 src/IconModeFanOffRound.tsx create mode 100644 src/IconModeFanOffSharp.tsx create mode 100644 src/IconModeFanOffTwoTone.tsx create mode 100644 src/IconModeNightOutlined.tsx create mode 100644 src/IconModeNightRound.tsx create mode 100644 src/IconModeNightSharp.tsx create mode 100644 src/IconModeNightTwoTone.tsx create mode 100644 src/IconModeOfTravelOutlined.tsx create mode 100644 src/IconModeOfTravelRound.tsx create mode 100644 src/IconModeOfTravelSharp.tsx create mode 100644 src/IconModeOfTravelTwoTone.tsx create mode 100644 src/IconModeOutlined.tsx create mode 100644 src/IconModeRound.tsx create mode 100644 src/IconModeSharp.tsx create mode 100644 src/IconModeStandbyOutlined.tsx create mode 100644 src/IconModeStandbyRound.tsx create mode 100644 src/IconModeStandbySharp.tsx create mode 100644 src/IconModeStandbyTwoTone.tsx create mode 100644 src/IconModeTwoTone.tsx create mode 100644 src/IconModelTrainingOutlined.tsx create mode 100644 src/IconModelTrainingRound.tsx create mode 100644 src/IconModelTrainingSharp.tsx create mode 100644 src/IconModelTrainingTwoTone.tsx create mode 100644 src/IconMonetizationOnOutlined.tsx create mode 100644 src/IconMonetizationOnRound.tsx create mode 100644 src/IconMonetizationOnSharp.tsx create mode 100644 src/IconMonetizationOnTwoTone.tsx create mode 100644 src/IconMoneyOffCsredOutlined.tsx create mode 100644 src/IconMoneyOffCsredRound.tsx create mode 100644 src/IconMoneyOffCsredSharp.tsx create mode 100644 src/IconMoneyOffCsredTwoTone.tsx create mode 100644 src/IconMoneyOffOutlined.tsx create mode 100644 src/IconMoneyOffRound.tsx create mode 100644 src/IconMoneyOffSharp.tsx create mode 100644 src/IconMoneyOffTwoTone.tsx create mode 100644 src/IconMoneyOutlined.tsx create mode 100644 src/IconMoneyRound.tsx create mode 100644 src/IconMoneySharp.tsx create mode 100644 src/IconMoneyTwoTone.tsx create mode 100644 src/IconMonitorHeartOutlined.tsx create mode 100644 src/IconMonitorHeartRound.tsx create mode 100644 src/IconMonitorHeartSharp.tsx create mode 100644 src/IconMonitorHeartTwoTone.tsx create mode 100644 src/IconMonitorOutlined.tsx create mode 100644 src/IconMonitorRound.tsx create mode 100644 src/IconMonitorSharp.tsx create mode 100644 src/IconMonitorTwoTone.tsx create mode 100644 src/IconMonitorWeightOutlined.tsx create mode 100644 src/IconMonitorWeightRound.tsx create mode 100644 src/IconMonitorWeightSharp.tsx create mode 100644 src/IconMonitorWeightTwoTone.tsx create mode 100644 src/IconMonochromePhotosOutlined.tsx create mode 100644 src/IconMonochromePhotosRound.tsx create mode 100644 src/IconMonochromePhotosSharp.tsx create mode 100644 src/IconMonochromePhotosTwoTone.tsx create mode 100644 src/IconMoodBadOutlined.tsx create mode 100644 src/IconMoodBadRound.tsx create mode 100644 src/IconMoodBadSharp.tsx create mode 100644 src/IconMoodBadTwoTone.tsx create mode 100644 src/IconMoodOutlined.tsx create mode 100644 src/IconMoodRound.tsx create mode 100644 src/IconMoodSharp.tsx create mode 100644 src/IconMoodTwoTone.tsx create mode 100644 src/IconMopedOutlined.tsx create mode 100644 src/IconMopedRound.tsx create mode 100644 src/IconMopedSharp.tsx create mode 100644 src/IconMopedTwoTone.tsx create mode 100644 src/IconMoreHorizOutlined.tsx create mode 100644 src/IconMoreHorizRound.tsx create mode 100644 src/IconMoreHorizSharp.tsx create mode 100644 src/IconMoreHorizTwoTone.tsx create mode 100644 src/IconMoreOutlined.tsx create mode 100644 src/IconMoreRound.tsx create mode 100644 src/IconMoreSharp.tsx create mode 100644 src/IconMoreTimeOutlined.tsx create mode 100644 src/IconMoreTimeRound.tsx create mode 100644 src/IconMoreTimeSharp.tsx create mode 100644 src/IconMoreTimeTwoTone.tsx create mode 100644 src/IconMoreTwoTone.tsx create mode 100644 src/IconMoreVertOutlined.tsx create mode 100644 src/IconMoreVertRound.tsx create mode 100644 src/IconMoreVertSharp.tsx create mode 100644 src/IconMoreVertTwoTone.tsx create mode 100644 src/IconMosqueOutlined.tsx create mode 100644 src/IconMosqueRound.tsx create mode 100644 src/IconMosqueSharp.tsx create mode 100644 src/IconMosqueTwoTone.tsx create mode 100644 src/IconMotionPhotosAutoOutlined.tsx create mode 100644 src/IconMotionPhotosAutoRound.tsx create mode 100644 src/IconMotionPhotosAutoSharp.tsx create mode 100644 src/IconMotionPhotosAutoTwoTone.tsx create mode 100644 src/IconMotionPhotosOffOutlined.tsx create mode 100644 src/IconMotionPhotosOffRound.tsx create mode 100644 src/IconMotionPhotosOffSharp.tsx create mode 100644 src/IconMotionPhotosOffTwoTone.tsx create mode 100644 src/IconMotionPhotosOnOutlined.tsx create mode 100644 src/IconMotionPhotosOnRound.tsx create mode 100644 src/IconMotionPhotosOnSharp.tsx create mode 100644 src/IconMotionPhotosOnTwoTone.tsx create mode 100644 src/IconMotionPhotosPauseOutlined.tsx create mode 100644 src/IconMotionPhotosPauseRound.tsx create mode 100644 src/IconMotionPhotosPauseSharp.tsx create mode 100644 src/IconMotionPhotosPauseTwoTone.tsx create mode 100644 src/IconMotionPhotosPausedOutlined.tsx create mode 100644 src/IconMotionPhotosPausedRound.tsx create mode 100644 src/IconMotionPhotosPausedSharp.tsx create mode 100644 src/IconMotionPhotosPausedTwoTone.tsx create mode 100644 src/IconMouseOutlined.tsx create mode 100644 src/IconMouseRound.tsx create mode 100644 src/IconMouseSharp.tsx create mode 100644 src/IconMouseTwoTone.tsx create mode 100644 src/IconMoveDownOutlined.tsx create mode 100644 src/IconMoveDownRound.tsx create mode 100644 src/IconMoveDownSharp.tsx create mode 100644 src/IconMoveDownTwoTone.tsx create mode 100644 src/IconMoveToInboxOutlined.tsx create mode 100644 src/IconMoveToInboxRound.tsx create mode 100644 src/IconMoveToInboxSharp.tsx create mode 100644 src/IconMoveToInboxTwoTone.tsx create mode 100644 src/IconMoveUpOutlined.tsx create mode 100644 src/IconMoveUpRound.tsx create mode 100644 src/IconMoveUpSharp.tsx create mode 100644 src/IconMoveUpTwoTone.tsx create mode 100644 src/IconMovieCreationOutlined.tsx create mode 100644 src/IconMovieCreationRound.tsx create mode 100644 src/IconMovieCreationSharp.tsx create mode 100644 src/IconMovieCreationTwoTone.tsx create mode 100644 src/IconMovieFilterOutlined.tsx create mode 100644 src/IconMovieFilterRound.tsx create mode 100644 src/IconMovieFilterSharp.tsx create mode 100644 src/IconMovieFilterTwoTone.tsx create mode 100644 src/IconMovieOutlined.tsx create mode 100644 src/IconMovieRound.tsx create mode 100644 src/IconMovieSharp.tsx create mode 100644 src/IconMovieTwoTone.tsx create mode 100644 src/IconMovingOutlined.tsx create mode 100644 src/IconMovingRound.tsx create mode 100644 src/IconMovingSharp.tsx create mode 100644 src/IconMovingTwoTone.tsx create mode 100644 src/IconMpOutlined.tsx create mode 100644 src/IconMpRound.tsx create mode 100644 src/IconMpSharp.tsx create mode 100644 src/IconMpTwoTone.tsx create mode 100644 src/IconMultilineChartOutlined.tsx create mode 100644 src/IconMultilineChartRound.tsx create mode 100644 src/IconMultilineChartSharp.tsx create mode 100644 src/IconMultilineChartTwoTone.tsx create mode 100644 src/IconMultipleStopOutlined.tsx create mode 100644 src/IconMultipleStopRound.tsx create mode 100644 src/IconMultipleStopSharp.tsx create mode 100644 src/IconMultipleStopTwoTone.tsx create mode 100644 src/IconMuseumOutlined.tsx create mode 100644 src/IconMuseumRound.tsx create mode 100644 src/IconMuseumSharp.tsx create mode 100644 src/IconMuseumTwoTone.tsx create mode 100644 src/IconMusicNoteOutlined.tsx create mode 100644 src/IconMusicNoteRound.tsx create mode 100644 src/IconMusicNoteSharp.tsx create mode 100644 src/IconMusicNoteTwoTone.tsx create mode 100644 src/IconMusicOffOutlined.tsx create mode 100644 src/IconMusicOffRound.tsx create mode 100644 src/IconMusicOffSharp.tsx create mode 100644 src/IconMusicOffTwoTone.tsx create mode 100644 src/IconMusicVideoOutlined.tsx create mode 100644 src/IconMusicVideoRound.tsx create mode 100644 src/IconMusicVideoSharp.tsx create mode 100644 src/IconMusicVideoTwoTone.tsx create mode 100644 src/IconMyLocationOutlined.tsx create mode 100644 src/IconMyLocationRound.tsx create mode 100644 src/IconMyLocationSharp.tsx create mode 100644 src/IconMyLocationTwoTone.tsx create mode 100644 src/IconNatOutlined.tsx create mode 100644 src/IconNatRound.tsx create mode 100644 src/IconNatSharp.tsx create mode 100644 src/IconNatTwoTone.tsx create mode 100644 src/IconNatureOutlined.tsx create mode 100644 src/IconNaturePeopleOutlined.tsx create mode 100644 src/IconNaturePeopleRound.tsx create mode 100644 src/IconNaturePeopleSharp.tsx create mode 100644 src/IconNaturePeopleTwoTone.tsx create mode 100644 src/IconNatureRound.tsx create mode 100644 src/IconNatureSharp.tsx create mode 100644 src/IconNatureTwoTone.tsx create mode 100644 src/IconNavigateBeforeOutlined.tsx create mode 100644 src/IconNavigateBeforeRound.tsx create mode 100644 src/IconNavigateBeforeSharp.tsx create mode 100644 src/IconNavigateBeforeTwoTone.tsx create mode 100644 src/IconNavigateNextOutlined.tsx create mode 100644 src/IconNavigateNextRound.tsx create mode 100644 src/IconNavigateNextSharp.tsx create mode 100644 src/IconNavigateNextTwoTone.tsx create mode 100644 src/IconNavigationOutlined.tsx create mode 100644 src/IconNavigationRound.tsx create mode 100644 src/IconNavigationSharp.tsx create mode 100644 src/IconNavigationTwoTone.tsx create mode 100644 src/IconNearMeDisabledOutlined.tsx create mode 100644 src/IconNearMeDisabledRound.tsx create mode 100644 src/IconNearMeDisabledSharp.tsx create mode 100644 src/IconNearMeDisabledTwoTone.tsx create mode 100644 src/IconNearMeOutlined.tsx create mode 100644 src/IconNearMeRound.tsx create mode 100644 src/IconNearMeSharp.tsx create mode 100644 src/IconNearMeTwoTone.tsx create mode 100644 src/IconNearbyErrorOutlined.tsx create mode 100644 src/IconNearbyErrorRound.tsx create mode 100644 src/IconNearbyErrorSharp.tsx create mode 100644 src/IconNearbyErrorTwoTone.tsx create mode 100644 src/IconNearbyOffOutlined.tsx create mode 100644 src/IconNearbyOffRound.tsx create mode 100644 src/IconNearbyOffSharp.tsx create mode 100644 src/IconNearbyOffTwoTone.tsx create mode 100644 src/IconNestCamWiredStandOutlined.tsx create mode 100644 src/IconNestCamWiredStandRound.tsx create mode 100644 src/IconNestCamWiredStandSharp.tsx create mode 100644 src/IconNestCamWiredStandTwoTone.tsx create mode 100644 src/IconNetworkCellOutlined.tsx create mode 100644 src/IconNetworkCellRound.tsx create mode 100644 src/IconNetworkCellSharp.tsx create mode 100644 src/IconNetworkCellTwoTone.tsx create mode 100644 src/IconNetworkCheckOutlined.tsx create mode 100644 src/IconNetworkCheckRound.tsx create mode 100644 src/IconNetworkCheckSharp.tsx create mode 100644 src/IconNetworkCheckTwoTone.tsx create mode 100644 src/IconNetworkLockedOutlined.tsx create mode 100644 src/IconNetworkLockedRound.tsx create mode 100644 src/IconNetworkLockedSharp.tsx create mode 100644 src/IconNetworkLockedTwoTone.tsx create mode 100644 src/IconNetworkPingOutlined.tsx create mode 100644 src/IconNetworkPingRound.tsx create mode 100644 src/IconNetworkPingSharp.tsx create mode 100644 src/IconNetworkPingTwoTone.tsx create mode 100644 src/IconNetworkWifi1BarOutlined.tsx create mode 100644 src/IconNetworkWifi1BarRound.tsx create mode 100644 src/IconNetworkWifi1BarSharp.tsx create mode 100644 src/IconNetworkWifi1BarTwoTone.tsx create mode 100644 src/IconNetworkWifi2BarOutlined.tsx create mode 100644 src/IconNetworkWifi2BarRound.tsx create mode 100644 src/IconNetworkWifi2BarSharp.tsx create mode 100644 src/IconNetworkWifi2BarTwoTone.tsx create mode 100644 src/IconNetworkWifi3BarOutlined.tsx create mode 100644 src/IconNetworkWifi3BarRound.tsx create mode 100644 src/IconNetworkWifi3BarSharp.tsx create mode 100644 src/IconNetworkWifi3BarTwoTone.tsx create mode 100644 src/IconNetworkWifiOutlined.tsx create mode 100644 src/IconNetworkWifiRound.tsx create mode 100644 src/IconNetworkWifiSharp.tsx create mode 100644 src/IconNetworkWifiTwoTone.tsx create mode 100644 src/IconNewLabelOutlined.tsx create mode 100644 src/IconNewLabelRound.tsx create mode 100644 src/IconNewLabelSharp.tsx create mode 100644 src/IconNewLabelTwoTone.tsx create mode 100644 src/IconNewReleasesOutlined.tsx create mode 100644 src/IconNewReleasesRound.tsx create mode 100644 src/IconNewReleasesSharp.tsx create mode 100644 src/IconNewReleasesTwoTone.tsx create mode 100644 src/IconNewspaperOutlined.tsx create mode 100644 src/IconNewspaperRound.tsx create mode 100644 src/IconNewspaperSharp.tsx create mode 100644 src/IconNewspaperTwoTone.tsx create mode 100644 src/IconNextPlanOutlined.tsx create mode 100644 src/IconNextPlanRound.tsx create mode 100644 src/IconNextPlanSharp.tsx create mode 100644 src/IconNextPlanTwoTone.tsx create mode 100644 src/IconNextWeekOutlined.tsx create mode 100644 src/IconNextWeekRound.tsx create mode 100644 src/IconNextWeekSharp.tsx create mode 100644 src/IconNextWeekTwoTone.tsx create mode 100644 src/IconNfcOutlined.tsx create mode 100644 src/IconNfcRound.tsx create mode 100644 src/IconNfcSharp.tsx create mode 100644 src/IconNfcTwoTone.tsx create mode 100644 src/IconNightShelterOutlined.tsx create mode 100644 src/IconNightShelterRound.tsx create mode 100644 src/IconNightShelterSharp.tsx create mode 100644 src/IconNightShelterTwoTone.tsx create mode 100644 src/IconNightlifeOutlined.tsx create mode 100644 src/IconNightlifeRound.tsx create mode 100644 src/IconNightlifeSharp.tsx create mode 100644 src/IconNightlifeTwoTone.tsx create mode 100644 src/IconNightlightOutlined.tsx create mode 100644 src/IconNightlightRoundOutlined.tsx create mode 100644 src/IconNightlightRoundRound.tsx create mode 100644 src/IconNightlightRoundSharp.tsx create mode 100644 src/IconNightlightRoundTwoTone.tsx create mode 100644 src/IconNightlightSharp.tsx create mode 100644 src/IconNightlightTwoTone.tsx create mode 100644 src/IconNightsStayOutlined.tsx create mode 100644 src/IconNightsStayRound.tsx create mode 100644 src/IconNightsStaySharp.tsx create mode 100644 src/IconNightsStayTwoTone.tsx create mode 100644 src/IconNoAccountsOutlined.tsx create mode 100644 src/IconNoAccountsRound.tsx create mode 100644 src/IconNoAccountsSharp.tsx create mode 100644 src/IconNoAccountsTwoTone.tsx create mode 100644 src/IconNoAdultContentOutlined.tsx create mode 100644 src/IconNoAdultContentRound.tsx create mode 100644 src/IconNoAdultContentSharp.tsx create mode 100644 src/IconNoAdultContentTwoTone.tsx create mode 100644 src/IconNoBackpackOutlined.tsx create mode 100644 src/IconNoBackpackRound.tsx create mode 100644 src/IconNoBackpackSharp.tsx create mode 100644 src/IconNoBackpackTwoTone.tsx create mode 100644 src/IconNoCellOutlined.tsx create mode 100644 src/IconNoCellRound.tsx create mode 100644 src/IconNoCellSharp.tsx create mode 100644 src/IconNoCellTwoTone.tsx create mode 100644 src/IconNoCrashOutlined.tsx create mode 100644 src/IconNoCrashRound.tsx create mode 100644 src/IconNoCrashSharp.tsx create mode 100644 src/IconNoCrashTwoTone.tsx create mode 100644 src/IconNoDrinksOutlined.tsx create mode 100644 src/IconNoDrinksRound.tsx create mode 100644 src/IconNoDrinksSharp.tsx create mode 100644 src/IconNoDrinksTwoTone.tsx create mode 100644 src/IconNoEncryptionGmailerrorredOutlined.tsx create mode 100644 src/IconNoEncryptionGmailerrorredRound.tsx create mode 100644 src/IconNoEncryptionGmailerrorredSharp.tsx create mode 100644 src/IconNoEncryptionGmailerrorredTwoTone.tsx create mode 100644 src/IconNoEncryptionOutlined.tsx create mode 100644 src/IconNoEncryptionRound.tsx create mode 100644 src/IconNoEncryptionSharp.tsx create mode 100644 src/IconNoEncryptionTwoTone.tsx create mode 100644 src/IconNoFlashOutlined.tsx create mode 100644 src/IconNoFlashRound.tsx create mode 100644 src/IconNoFlashSharp.tsx create mode 100644 src/IconNoFlashTwoTone.tsx create mode 100644 src/IconNoFoodOutlined.tsx create mode 100644 src/IconNoFoodRound.tsx create mode 100644 src/IconNoFoodSharp.tsx create mode 100644 src/IconNoFoodTwoTone.tsx create mode 100644 src/IconNoLuggageOutlined.tsx create mode 100644 src/IconNoLuggageRound.tsx create mode 100644 src/IconNoLuggageSharp.tsx create mode 100644 src/IconNoLuggageTwoTone.tsx create mode 100644 src/IconNoMealsOutlined.tsx create mode 100644 src/IconNoMealsRound.tsx create mode 100644 src/IconNoMealsSharp.tsx create mode 100644 src/IconNoMealsTwoTone.tsx create mode 100644 src/IconNoMeetingRoomOutlined.tsx create mode 100644 src/IconNoMeetingRoomRound.tsx create mode 100644 src/IconNoMeetingRoomSharp.tsx create mode 100644 src/IconNoMeetingRoomTwoTone.tsx create mode 100644 src/IconNoPhotographyOutlined.tsx create mode 100644 src/IconNoPhotographyRound.tsx create mode 100644 src/IconNoPhotographySharp.tsx create mode 100644 src/IconNoPhotographyTwoTone.tsx create mode 100644 src/IconNoSimOutlined.tsx create mode 100644 src/IconNoSimRound.tsx create mode 100644 src/IconNoSimSharp.tsx create mode 100644 src/IconNoSimTwoTone.tsx create mode 100644 src/IconNoStrollerOutlined.tsx create mode 100644 src/IconNoStrollerRound.tsx create mode 100644 src/IconNoStrollerSharp.tsx create mode 100644 src/IconNoStrollerTwoTone.tsx create mode 100644 src/IconNoTransferOutlined.tsx create mode 100644 src/IconNoTransferRound.tsx create mode 100644 src/IconNoTransferSharp.tsx create mode 100644 src/IconNoTransferTwoTone.tsx create mode 100644 src/IconNoiseAwareOutlined.tsx create mode 100644 src/IconNoiseAwareRound.tsx create mode 100644 src/IconNoiseAwareSharp.tsx create mode 100644 src/IconNoiseAwareTwoTone.tsx create mode 100644 src/IconNoiseControlOffOutlined.tsx create mode 100644 src/IconNoiseControlOffRound.tsx create mode 100644 src/IconNoiseControlOffSharp.tsx create mode 100644 src/IconNoiseControlOffTwoTone.tsx create mode 100644 src/IconNordicWalkingOutlined.tsx create mode 100644 src/IconNordicWalkingRound.tsx create mode 100644 src/IconNordicWalkingSharp.tsx create mode 100644 src/IconNordicWalkingTwoTone.tsx create mode 100644 src/IconNorthEastOutlined.tsx create mode 100644 src/IconNorthEastRound.tsx create mode 100644 src/IconNorthEastSharp.tsx create mode 100644 src/IconNorthEastTwoTone.tsx create mode 100644 src/IconNorthOutlined.tsx create mode 100644 src/IconNorthRound.tsx create mode 100644 src/IconNorthSharp.tsx create mode 100644 src/IconNorthTwoTone.tsx create mode 100644 src/IconNorthWestOutlined.tsx create mode 100644 src/IconNorthWestRound.tsx create mode 100644 src/IconNorthWestSharp.tsx create mode 100644 src/IconNorthWestTwoTone.tsx create mode 100644 src/IconNotAccessibleOutlined.tsx create mode 100644 src/IconNotAccessibleRound.tsx create mode 100644 src/IconNotAccessibleSharp.tsx create mode 100644 src/IconNotAccessibleTwoTone.tsx create mode 100644 src/IconNotInterestedOutlined.tsx create mode 100644 src/IconNotInterestedRound.tsx create mode 100644 src/IconNotInterestedSharp.tsx create mode 100644 src/IconNotInterestedTwoTone.tsx create mode 100644 src/IconNotListedLocationOutlined.tsx create mode 100644 src/IconNotListedLocationRound.tsx create mode 100644 src/IconNotListedLocationSharp.tsx create mode 100644 src/IconNotListedLocationTwoTone.tsx create mode 100644 src/IconNotStartedOutlined.tsx create mode 100644 src/IconNotStartedRound.tsx create mode 100644 src/IconNotStartedSharp.tsx create mode 100644 src/IconNotStartedTwoTone.tsx create mode 100644 src/IconNoteAddOutlined.tsx create mode 100644 src/IconNoteAddRound.tsx create mode 100644 src/IconNoteAddSharp.tsx create mode 100644 src/IconNoteAddTwoTone.tsx create mode 100644 src/IconNoteAltOutlined.tsx create mode 100644 src/IconNoteAltRound.tsx create mode 100644 src/IconNoteAltSharp.tsx create mode 100644 src/IconNoteAltTwoTone.tsx create mode 100644 src/IconNoteOutlined.tsx create mode 100644 src/IconNoteRound.tsx create mode 100644 src/IconNoteSharp.tsx create mode 100644 src/IconNoteTwoTone.tsx create mode 100644 src/IconNotesOutlined.tsx create mode 100644 src/IconNotesRound.tsx create mode 100644 src/IconNotesSharp.tsx create mode 100644 src/IconNotesTwoTone.tsx create mode 100644 src/IconNotificationAddOutlined.tsx create mode 100644 src/IconNotificationAddRound.tsx create mode 100644 src/IconNotificationAddSharp.tsx create mode 100644 src/IconNotificationAddTwoTone.tsx create mode 100644 src/IconNotificationImportantOutlined.tsx create mode 100644 src/IconNotificationImportantRound.tsx create mode 100644 src/IconNotificationImportantSharp.tsx create mode 100644 src/IconNotificationImportantTwoTone.tsx create mode 100644 src/IconNotificationsActiveOutlined.tsx create mode 100644 src/IconNotificationsActiveRound.tsx create mode 100644 src/IconNotificationsActiveSharp.tsx create mode 100644 src/IconNotificationsActiveTwoTone.tsx create mode 100644 src/IconNotificationsNoneOutlined.tsx create mode 100644 src/IconNotificationsNoneRound.tsx create mode 100644 src/IconNotificationsNoneSharp.tsx create mode 100644 src/IconNotificationsNoneTwoTone.tsx create mode 100644 src/IconNotificationsOffOutlined.tsx create mode 100644 src/IconNotificationsOffRound.tsx create mode 100644 src/IconNotificationsOffSharp.tsx create mode 100644 src/IconNotificationsOffTwoTone.tsx create mode 100644 src/IconNotificationsOutlined.tsx create mode 100644 src/IconNotificationsPausedOutlined.tsx create mode 100644 src/IconNotificationsPausedRound.tsx create mode 100644 src/IconNotificationsPausedSharp.tsx create mode 100644 src/IconNotificationsPausedTwoTone.tsx create mode 100644 src/IconNotificationsRound.tsx create mode 100644 src/IconNotificationsSharp.tsx create mode 100644 src/IconNotificationsTwoTone.tsx create mode 100644 src/IconNumbersOutlined.tsx create mode 100644 src/IconNumbersRound.tsx create mode 100644 src/IconNumbersSharp.tsx create mode 100644 src/IconNumbersTwoTone.tsx create mode 100644 src/IconOfflineBoltOutlined.tsx create mode 100644 src/IconOfflineBoltRound.tsx create mode 100644 src/IconOfflineBoltSharp.tsx create mode 100644 src/IconOfflineBoltTwoTone.tsx create mode 100644 src/IconOfflinePinOutlined.tsx create mode 100644 src/IconOfflinePinRound.tsx create mode 100644 src/IconOfflinePinSharp.tsx create mode 100644 src/IconOfflinePinTwoTone.tsx create mode 100644 src/IconOfflineShareOutlined.tsx create mode 100644 src/IconOfflineShareRound.tsx create mode 100644 src/IconOfflineShareSharp.tsx create mode 100644 src/IconOfflineShareTwoTone.tsx create mode 100644 src/IconOilBarrelOutlined.tsx create mode 100644 src/IconOilBarrelRound.tsx create mode 100644 src/IconOilBarrelSharp.tsx create mode 100644 src/IconOilBarrelTwoTone.tsx create mode 100644 src/IconOnDeviceTrainingOutlined.tsx create mode 100644 src/IconOnDeviceTrainingRound.tsx create mode 100644 src/IconOnDeviceTrainingSharp.tsx create mode 100644 src/IconOnDeviceTrainingTwoTone.tsx create mode 100644 src/IconOndemandVideoOutlined.tsx create mode 100644 src/IconOndemandVideoRound.tsx create mode 100644 src/IconOndemandVideoSharp.tsx create mode 100644 src/IconOndemandVideoTwoTone.tsx create mode 100644 src/IconOnlinePredictionOutlined.tsx create mode 100644 src/IconOnlinePredictionRound.tsx create mode 100644 src/IconOnlinePredictionSharp.tsx create mode 100644 src/IconOnlinePredictionTwoTone.tsx create mode 100644 src/IconOpacityOutlined.tsx create mode 100644 src/IconOpacityRound.tsx create mode 100644 src/IconOpacitySharp.tsx create mode 100644 src/IconOpacityTwoTone.tsx create mode 100644 src/IconOpenInBrowserOutlined.tsx create mode 100644 src/IconOpenInBrowserRound.tsx create mode 100644 src/IconOpenInBrowserSharp.tsx create mode 100644 src/IconOpenInBrowserTwoTone.tsx create mode 100644 src/IconOpenInFullOutlined.tsx create mode 100644 src/IconOpenInFullRound.tsx create mode 100644 src/IconOpenInFullSharp.tsx create mode 100644 src/IconOpenInFullTwoTone.tsx create mode 100644 src/IconOpenInNewOffOutlined.tsx create mode 100644 src/IconOpenInNewOffRound.tsx create mode 100644 src/IconOpenInNewOffSharp.tsx create mode 100644 src/IconOpenInNewOffTwoTone.tsx create mode 100644 src/IconOpenInNewOutlined.tsx create mode 100644 src/IconOpenInNewRound.tsx create mode 100644 src/IconOpenInNewSharp.tsx create mode 100644 src/IconOpenInNewTwoTone.tsx create mode 100644 src/IconOpenWithOutlined.tsx create mode 100644 src/IconOpenWithRound.tsx create mode 100644 src/IconOpenWithSharp.tsx create mode 100644 src/IconOpenWithTwoTone.tsx create mode 100644 src/IconOtherHousesOutlined.tsx create mode 100644 src/IconOtherHousesRound.tsx create mode 100644 src/IconOtherHousesSharp.tsx create mode 100644 src/IconOtherHousesTwoTone.tsx create mode 100644 src/IconOutboundOutlined.tsx create mode 100644 src/IconOutboundRound.tsx create mode 100644 src/IconOutboundSharp.tsx create mode 100644 src/IconOutboundTwoTone.tsx create mode 100644 src/IconOutboxOutlined.tsx create mode 100644 src/IconOutboxRound.tsx create mode 100644 src/IconOutboxSharp.tsx create mode 100644 src/IconOutboxTwoTone.tsx create mode 100644 src/IconOutdoorGrillOutlined.tsx create mode 100644 src/IconOutdoorGrillRound.tsx create mode 100644 src/IconOutdoorGrillSharp.tsx create mode 100644 src/IconOutdoorGrillTwoTone.tsx create mode 100644 src/IconOutletOutlined.tsx create mode 100644 src/IconOutletRound.tsx create mode 100644 src/IconOutletSharp.tsx create mode 100644 src/IconOutletTwoTone.tsx create mode 100644 src/IconOutlinedFlagOutlined.tsx create mode 100644 src/IconOutlinedFlagRound.tsx create mode 100644 src/IconOutlinedFlagSharp.tsx create mode 100644 src/IconOutlinedFlagTwoTone.tsx create mode 100644 src/IconOutputOutlined.tsx create mode 100644 src/IconOutputRound.tsx create mode 100644 src/IconOutputSharp.tsx create mode 100644 src/IconOutputTwoTone.tsx create mode 100644 src/IconPaddingOutlined.tsx create mode 100644 src/IconPaddingRound.tsx create mode 100644 src/IconPaddingSharp.tsx create mode 100644 src/IconPaddingTwoTone.tsx create mode 100644 src/IconPagesOutlined.tsx create mode 100644 src/IconPagesRound.tsx create mode 100644 src/IconPagesSharp.tsx create mode 100644 src/IconPagesTwoTone.tsx create mode 100644 src/IconPageviewOutlined.tsx create mode 100644 src/IconPageviewRound.tsx create mode 100644 src/IconPageviewSharp.tsx create mode 100644 src/IconPageviewTwoTone.tsx create mode 100644 src/IconPaidOutlined.tsx create mode 100644 src/IconPaidRound.tsx create mode 100644 src/IconPaidSharp.tsx create mode 100644 src/IconPaidTwoTone.tsx create mode 100644 src/IconPaletteOutlined.tsx create mode 100644 src/IconPaletteRound.tsx create mode 100644 src/IconPaletteSharp.tsx create mode 100644 src/IconPaletteTwoTone.tsx create mode 100644 src/IconPanToolAltOutlined.tsx create mode 100644 src/IconPanToolAltRound.tsx create mode 100644 src/IconPanToolAltSharp.tsx create mode 100644 src/IconPanToolAltTwoTone.tsx create mode 100644 src/IconPanToolOutlined.tsx create mode 100644 src/IconPanToolRound.tsx create mode 100644 src/IconPanToolSharp.tsx create mode 100644 src/IconPanToolTwoTone.tsx create mode 100644 src/IconPanoramaFishEyeOutlined.tsx create mode 100644 src/IconPanoramaFishEyeRound.tsx create mode 100644 src/IconPanoramaFishEyeSharp.tsx create mode 100644 src/IconPanoramaFishEyeTwoTone.tsx create mode 100644 src/IconPanoramaHorizontalOutlined.tsx create mode 100644 src/IconPanoramaHorizontalRound.tsx create mode 100644 src/IconPanoramaHorizontalSelectOutlined.tsx create mode 100644 src/IconPanoramaHorizontalSelectRound.tsx create mode 100644 src/IconPanoramaHorizontalSelectSharp.tsx create mode 100644 src/IconPanoramaHorizontalSelectTwoTone.tsx create mode 100644 src/IconPanoramaHorizontalSharp.tsx create mode 100644 src/IconPanoramaHorizontalTwoTone.tsx create mode 100644 src/IconPanoramaOutlined.tsx create mode 100644 src/IconPanoramaPhotosphereOutlined.tsx create mode 100644 src/IconPanoramaPhotosphereRound.tsx create mode 100644 src/IconPanoramaPhotosphereSelectOutlined.tsx create mode 100644 src/IconPanoramaPhotosphereSelectRound.tsx create mode 100644 src/IconPanoramaPhotosphereSelectSharp.tsx create mode 100644 src/IconPanoramaPhotosphereSelectTwoTone.tsx create mode 100644 src/IconPanoramaPhotosphereSharp.tsx create mode 100644 src/IconPanoramaPhotosphereTwoTone.tsx create mode 100644 src/IconPanoramaRound.tsx create mode 100644 src/IconPanoramaSharp.tsx create mode 100644 src/IconPanoramaTwoTone.tsx create mode 100644 src/IconPanoramaVerticalOutlined.tsx create mode 100644 src/IconPanoramaVerticalRound.tsx create mode 100644 src/IconPanoramaVerticalSelectOutlined.tsx create mode 100644 src/IconPanoramaVerticalSelectRound.tsx create mode 100644 src/IconPanoramaVerticalSelectSharp.tsx create mode 100644 src/IconPanoramaVerticalSelectTwoTone.tsx create mode 100644 src/IconPanoramaVerticalSharp.tsx create mode 100644 src/IconPanoramaVerticalTwoTone.tsx create mode 100644 src/IconPanoramaWideAngleOutlined.tsx create mode 100644 src/IconPanoramaWideAngleRound.tsx create mode 100644 src/IconPanoramaWideAngleSelectOutlined.tsx create mode 100644 src/IconPanoramaWideAngleSelectRound.tsx create mode 100644 src/IconPanoramaWideAngleSelectSharp.tsx create mode 100644 src/IconPanoramaWideAngleSelectTwoTone.tsx create mode 100644 src/IconPanoramaWideAngleSharp.tsx create mode 100644 src/IconPanoramaWideAngleTwoTone.tsx create mode 100644 src/IconParaglidingOutlined.tsx create mode 100644 src/IconParaglidingRound.tsx create mode 100644 src/IconParaglidingSharp.tsx create mode 100644 src/IconParaglidingTwoTone.tsx create mode 100644 src/IconParkOutlined.tsx create mode 100644 src/IconParkRound.tsx create mode 100644 src/IconParkSharp.tsx create mode 100644 src/IconParkTwoTone.tsx create mode 100644 src/IconPartyModeOutlined.tsx create mode 100644 src/IconPartyModeRound.tsx create mode 100644 src/IconPartyModeSharp.tsx create mode 100644 src/IconPartyModeTwoTone.tsx create mode 100644 src/IconPasswordOutlined.tsx create mode 100644 src/IconPasswordRound.tsx create mode 100644 src/IconPasswordSharp.tsx create mode 100644 src/IconPasswordTwoTone.tsx create mode 100644 src/IconPatternOutlined.tsx create mode 100644 src/IconPatternRound.tsx create mode 100644 src/IconPatternSharp.tsx create mode 100644 src/IconPatternTwoTone.tsx create mode 100644 src/IconPauseCircleFilledOutlined.tsx create mode 100644 src/IconPauseCircleFilledRound.tsx create mode 100644 src/IconPauseCircleFilledSharp.tsx create mode 100644 src/IconPauseCircleFilledTwoTone.tsx create mode 100644 src/IconPauseCircleOutlineOutlined.tsx create mode 100644 src/IconPauseCircleOutlineRound.tsx create mode 100644 src/IconPauseCircleOutlineSharp.tsx create mode 100644 src/IconPauseCircleOutlineTwoTone.tsx create mode 100644 src/IconPauseCircleOutlined.tsx create mode 100644 src/IconPauseCircleRound.tsx create mode 100644 src/IconPauseCircleSharp.tsx create mode 100644 src/IconPauseCircleTwoTone.tsx create mode 100644 src/IconPauseOutlined.tsx create mode 100644 src/IconPausePresentationOutlined.tsx create mode 100644 src/IconPausePresentationRound.tsx create mode 100644 src/IconPausePresentationSharp.tsx create mode 100644 src/IconPausePresentationTwoTone.tsx create mode 100644 src/IconPauseRound.tsx create mode 100644 src/IconPauseSharp.tsx create mode 100644 src/IconPauseTwoTone.tsx create mode 100644 src/IconPaymentOutlined.tsx create mode 100644 src/IconPaymentRound.tsx create mode 100644 src/IconPaymentSharp.tsx create mode 100644 src/IconPaymentTwoTone.tsx create mode 100644 src/IconPaymentsOutlined.tsx create mode 100644 src/IconPaymentsRound.tsx create mode 100644 src/IconPaymentsSharp.tsx create mode 100644 src/IconPaymentsTwoTone.tsx create mode 100644 src/IconPedalBikeOutlined.tsx create mode 100644 src/IconPedalBikeRound.tsx create mode 100644 src/IconPedalBikeSharp.tsx create mode 100644 src/IconPedalBikeTwoTone.tsx create mode 100644 src/IconPendingActionsOutlined.tsx create mode 100644 src/IconPendingActionsRound.tsx create mode 100644 src/IconPendingActionsSharp.tsx create mode 100644 src/IconPendingActionsTwoTone.tsx create mode 100644 src/IconPendingOutlined.tsx create mode 100644 src/IconPendingRound.tsx create mode 100644 src/IconPendingSharp.tsx create mode 100644 src/IconPendingTwoTone.tsx create mode 100644 src/IconPentagonOutlined.tsx create mode 100644 src/IconPentagonRound.tsx create mode 100644 src/IconPentagonSharp.tsx create mode 100644 src/IconPentagonTwoTone.tsx create mode 100644 src/IconPeopleAltOutlined.tsx create mode 100644 src/IconPeopleAltRound.tsx create mode 100644 src/IconPeopleAltSharp.tsx create mode 100644 src/IconPeopleAltTwoTone.tsx create mode 100644 src/IconPeopleOutlineOutlined.tsx create mode 100644 src/IconPeopleOutlineRound.tsx create mode 100644 src/IconPeopleOutlineSharp.tsx create mode 100644 src/IconPeopleOutlineTwoTone.tsx create mode 100644 src/IconPeopleOutlined.tsx create mode 100644 src/IconPeopleRound.tsx create mode 100644 src/IconPeopleSharp.tsx create mode 100644 src/IconPeopleTwoTone.tsx create mode 100644 src/IconPercentOutlined.tsx create mode 100644 src/IconPercentRound.tsx create mode 100644 src/IconPercentSharp.tsx create mode 100644 src/IconPercentTwoTone.tsx create mode 100644 src/IconPermCameraMicOutlined.tsx create mode 100644 src/IconPermCameraMicRound.tsx create mode 100644 src/IconPermCameraMicSharp.tsx create mode 100644 src/IconPermCameraMicTwoTone.tsx create mode 100644 src/IconPermContactCalendarOutlined.tsx create mode 100644 src/IconPermContactCalendarRound.tsx create mode 100644 src/IconPermContactCalendarSharp.tsx create mode 100644 src/IconPermContactCalendarTwoTone.tsx create mode 100644 src/IconPermDataSettingOutlined.tsx create mode 100644 src/IconPermDataSettingRound.tsx create mode 100644 src/IconPermDataSettingSharp.tsx create mode 100644 src/IconPermDataSettingTwoTone.tsx create mode 100644 src/IconPermDeviceInformationOutlined.tsx create mode 100644 src/IconPermDeviceInformationRound.tsx create mode 100644 src/IconPermDeviceInformationSharp.tsx create mode 100644 src/IconPermDeviceInformationTwoTone.tsx create mode 100644 src/IconPermIdentityOutlined.tsx create mode 100644 src/IconPermIdentityRound.tsx create mode 100644 src/IconPermIdentitySharp.tsx create mode 100644 src/IconPermIdentityTwoTone.tsx create mode 100644 src/IconPermMediaOutlined.tsx create mode 100644 src/IconPermMediaRound.tsx create mode 100644 src/IconPermMediaSharp.tsx create mode 100644 src/IconPermMediaTwoTone.tsx create mode 100644 src/IconPermPhoneMsgOutlined.tsx create mode 100644 src/IconPermPhoneMsgRound.tsx create mode 100644 src/IconPermPhoneMsgSharp.tsx create mode 100644 src/IconPermPhoneMsgTwoTone.tsx create mode 100644 src/IconPermScanWifiOutlined.tsx create mode 100644 src/IconPermScanWifiRound.tsx create mode 100644 src/IconPermScanWifiSharp.tsx create mode 100644 src/IconPermScanWifiTwoTone.tsx create mode 100644 src/IconPerson2Outlined.tsx create mode 100644 src/IconPerson2Round.tsx create mode 100644 src/IconPerson2Sharp.tsx create mode 100644 src/IconPerson2TwoTone.tsx create mode 100644 src/IconPerson3Outlined.tsx create mode 100644 src/IconPerson3Round.tsx create mode 100644 src/IconPerson3Sharp.tsx create mode 100644 src/IconPerson3TwoTone.tsx create mode 100644 src/IconPerson4Outlined.tsx create mode 100644 src/IconPerson4Round.tsx create mode 100644 src/IconPerson4Sharp.tsx create mode 100644 src/IconPerson4TwoTone.tsx create mode 100644 src/IconPersonAddAlt1Outlined.tsx create mode 100644 src/IconPersonAddAlt1Round.tsx create mode 100644 src/IconPersonAddAlt1Sharp.tsx create mode 100644 src/IconPersonAddAlt1TwoTone.tsx create mode 100644 src/IconPersonAddAltOutlined.tsx create mode 100644 src/IconPersonAddAltRound.tsx create mode 100644 src/IconPersonAddAltSharp.tsx create mode 100644 src/IconPersonAddAltTwoTone.tsx create mode 100644 src/IconPersonAddDisabledOutlined.tsx create mode 100644 src/IconPersonAddDisabledRound.tsx create mode 100644 src/IconPersonAddDisabledSharp.tsx create mode 100644 src/IconPersonAddDisabledTwoTone.tsx create mode 100644 src/IconPersonAddOutlined.tsx create mode 100644 src/IconPersonAddRound.tsx create mode 100644 src/IconPersonAddSharp.tsx create mode 100644 src/IconPersonAddTwoTone.tsx create mode 100644 src/IconPersonOffOutlined.tsx create mode 100644 src/IconPersonOffRound.tsx create mode 100644 src/IconPersonOffSharp.tsx create mode 100644 src/IconPersonOffTwoTone.tsx create mode 100644 src/IconPersonOutlineOutlined.tsx create mode 100644 src/IconPersonOutlineRound.tsx create mode 100644 src/IconPersonOutlineSharp.tsx create mode 100644 src/IconPersonOutlineTwoTone.tsx create mode 100644 src/IconPersonOutlined.tsx create mode 100644 src/IconPersonPinCircleOutlined.tsx create mode 100644 src/IconPersonPinCircleRound.tsx create mode 100644 src/IconPersonPinCircleSharp.tsx create mode 100644 src/IconPersonPinCircleTwoTone.tsx create mode 100644 src/IconPersonPinOutlined.tsx create mode 100644 src/IconPersonPinRound.tsx create mode 100644 src/IconPersonPinSharp.tsx create mode 100644 src/IconPersonPinTwoTone.tsx create mode 100644 src/IconPersonRemoveAlt1Outlined.tsx create mode 100644 src/IconPersonRemoveAlt1Round.tsx create mode 100644 src/IconPersonRemoveAlt1Sharp.tsx create mode 100644 src/IconPersonRemoveAlt1TwoTone.tsx create mode 100644 src/IconPersonRemoveOutlined.tsx create mode 100644 src/IconPersonRemoveRound.tsx create mode 100644 src/IconPersonRemoveSharp.tsx create mode 100644 src/IconPersonRemoveTwoTone.tsx create mode 100644 src/IconPersonRound.tsx create mode 100644 src/IconPersonSearchOutlined.tsx create mode 100644 src/IconPersonSearchRound.tsx create mode 100644 src/IconPersonSearchSharp.tsx create mode 100644 src/IconPersonSearchTwoTone.tsx create mode 100644 src/IconPersonSharp.tsx create mode 100644 src/IconPersonTwoTone.tsx create mode 100644 src/IconPersonalInjuryOutlined.tsx create mode 100644 src/IconPersonalInjuryRound.tsx create mode 100644 src/IconPersonalInjurySharp.tsx create mode 100644 src/IconPersonalInjuryTwoTone.tsx create mode 100644 src/IconPersonalVideoOutlined.tsx create mode 100644 src/IconPersonalVideoRound.tsx create mode 100644 src/IconPersonalVideoSharp.tsx create mode 100644 src/IconPersonalVideoTwoTone.tsx create mode 100644 src/IconPestControlOutlined.tsx create mode 100644 src/IconPestControlRodentOutlined.tsx create mode 100644 src/IconPestControlRodentRound.tsx create mode 100644 src/IconPestControlRodentSharp.tsx create mode 100644 src/IconPestControlRodentTwoTone.tsx create mode 100644 src/IconPestControlRound.tsx create mode 100644 src/IconPestControlSharp.tsx create mode 100644 src/IconPestControlTwoTone.tsx create mode 100644 src/IconPetsOutlined.tsx create mode 100644 src/IconPetsRound.tsx create mode 100644 src/IconPetsSharp.tsx create mode 100644 src/IconPetsTwoTone.tsx create mode 100644 src/IconPhishingOutlined.tsx create mode 100644 src/IconPhishingRound.tsx create mode 100644 src/IconPhishingSharp.tsx create mode 100644 src/IconPhishingTwoTone.tsx create mode 100644 src/IconPhoneAndroidOutlined.tsx create mode 100644 src/IconPhoneAndroidRound.tsx create mode 100644 src/IconPhoneAndroidSharp.tsx create mode 100644 src/IconPhoneAndroidTwoTone.tsx create mode 100644 src/IconPhoneBluetoothSpeakerOutlined.tsx create mode 100644 src/IconPhoneBluetoothSpeakerRound.tsx create mode 100644 src/IconPhoneBluetoothSpeakerSharp.tsx create mode 100644 src/IconPhoneBluetoothSpeakerTwoTone.tsx create mode 100644 src/IconPhoneCallbackOutlined.tsx create mode 100644 src/IconPhoneCallbackRound.tsx create mode 100644 src/IconPhoneCallbackSharp.tsx create mode 100644 src/IconPhoneCallbackTwoTone.tsx create mode 100644 src/IconPhoneDisabledOutlined.tsx create mode 100644 src/IconPhoneDisabledRound.tsx create mode 100644 src/IconPhoneDisabledSharp.tsx create mode 100644 src/IconPhoneDisabledTwoTone.tsx create mode 100644 src/IconPhoneEnabledOutlined.tsx create mode 100644 src/IconPhoneEnabledRound.tsx create mode 100644 src/IconPhoneEnabledSharp.tsx create mode 100644 src/IconPhoneEnabledTwoTone.tsx create mode 100644 src/IconPhoneForwardedOutlined.tsx create mode 100644 src/IconPhoneForwardedRound.tsx create mode 100644 src/IconPhoneForwardedSharp.tsx create mode 100644 src/IconPhoneForwardedTwoTone.tsx create mode 100644 src/IconPhoneInTalkOutlined.tsx create mode 100644 src/IconPhoneInTalkRound.tsx create mode 100644 src/IconPhoneInTalkSharp.tsx create mode 100644 src/IconPhoneInTalkTwoTone.tsx create mode 100644 src/IconPhoneIphoneOutlined.tsx create mode 100644 src/IconPhoneIphoneRound.tsx create mode 100644 src/IconPhoneIphoneSharp.tsx create mode 100644 src/IconPhoneIphoneTwoTone.tsx create mode 100644 src/IconPhoneLockedOutlined.tsx create mode 100644 src/IconPhoneLockedRound.tsx create mode 100644 src/IconPhoneLockedSharp.tsx create mode 100644 src/IconPhoneLockedTwoTone.tsx create mode 100644 src/IconPhoneMissedOutlined.tsx create mode 100644 src/IconPhoneMissedRound.tsx create mode 100644 src/IconPhoneMissedSharp.tsx create mode 100644 src/IconPhoneMissedTwoTone.tsx create mode 100644 src/IconPhoneOutlined.tsx create mode 100644 src/IconPhonePausedOutlined.tsx create mode 100644 src/IconPhonePausedRound.tsx create mode 100644 src/IconPhonePausedSharp.tsx create mode 100644 src/IconPhonePausedTwoTone.tsx create mode 100644 src/IconPhoneRound.tsx create mode 100644 src/IconPhoneSharp.tsx create mode 100644 src/IconPhoneTwoTone.tsx create mode 100644 src/IconPhonelinkEraseOutlined.tsx create mode 100644 src/IconPhonelinkEraseRound.tsx create mode 100644 src/IconPhonelinkEraseSharp.tsx create mode 100644 src/IconPhonelinkEraseTwoTone.tsx create mode 100644 src/IconPhonelinkLockOutlined.tsx create mode 100644 src/IconPhonelinkLockRound.tsx create mode 100644 src/IconPhonelinkLockSharp.tsx create mode 100644 src/IconPhonelinkLockTwoTone.tsx create mode 100644 src/IconPhonelinkOffOutlined.tsx create mode 100644 src/IconPhonelinkOffRound.tsx create mode 100644 src/IconPhonelinkOffSharp.tsx create mode 100644 src/IconPhonelinkOffTwoTone.tsx create mode 100644 src/IconPhonelinkOutlined.tsx create mode 100644 src/IconPhonelinkRingOutlined.tsx create mode 100644 src/IconPhonelinkRingRound.tsx create mode 100644 src/IconPhonelinkRingSharp.tsx create mode 100644 src/IconPhonelinkRingTwoTone.tsx create mode 100644 src/IconPhonelinkRound.tsx create mode 100644 src/IconPhonelinkSetupOutlined.tsx create mode 100644 src/IconPhonelinkSetupRound.tsx create mode 100644 src/IconPhonelinkSetupSharp.tsx create mode 100644 src/IconPhonelinkSetupTwoTone.tsx create mode 100644 src/IconPhonelinkSharp.tsx create mode 100644 src/IconPhonelinkTwoTone.tsx create mode 100644 src/IconPhotoAlbumOutlined.tsx create mode 100644 src/IconPhotoAlbumRound.tsx create mode 100644 src/IconPhotoAlbumSharp.tsx create mode 100644 src/IconPhotoAlbumTwoTone.tsx create mode 100644 src/IconPhotoCameraBackOutlined.tsx create mode 100644 src/IconPhotoCameraBackRound.tsx create mode 100644 src/IconPhotoCameraBackSharp.tsx create mode 100644 src/IconPhotoCameraBackTwoTone.tsx create mode 100644 src/IconPhotoCameraFrontOutlined.tsx create mode 100644 src/IconPhotoCameraFrontRound.tsx create mode 100644 src/IconPhotoCameraFrontSharp.tsx create mode 100644 src/IconPhotoCameraFrontTwoTone.tsx create mode 100644 src/IconPhotoCameraOutlined.tsx create mode 100644 src/IconPhotoCameraRound.tsx create mode 100644 src/IconPhotoCameraSharp.tsx create mode 100644 src/IconPhotoCameraTwoTone.tsx create mode 100644 src/IconPhotoFilterOutlined.tsx create mode 100644 src/IconPhotoFilterRound.tsx create mode 100644 src/IconPhotoFilterSharp.tsx create mode 100644 src/IconPhotoFilterTwoTone.tsx create mode 100644 src/IconPhotoLibraryOutlined.tsx create mode 100644 src/IconPhotoLibraryRound.tsx create mode 100644 src/IconPhotoLibrarySharp.tsx create mode 100644 src/IconPhotoLibraryTwoTone.tsx create mode 100644 src/IconPhotoOutlined.tsx create mode 100644 src/IconPhotoRound.tsx create mode 100644 src/IconPhotoSharp.tsx create mode 100644 src/IconPhotoSizeSelectActualOutlined.tsx create mode 100644 src/IconPhotoSizeSelectActualRound.tsx create mode 100644 src/IconPhotoSizeSelectActualSharp.tsx create mode 100644 src/IconPhotoSizeSelectActualTwoTone.tsx create mode 100644 src/IconPhotoSizeSelectLargeOutlined.tsx create mode 100644 src/IconPhotoSizeSelectLargeRound.tsx create mode 100644 src/IconPhotoSizeSelectLargeSharp.tsx create mode 100644 src/IconPhotoSizeSelectLargeTwoTone.tsx create mode 100644 src/IconPhotoSizeSelectSmallOutlined.tsx create mode 100644 src/IconPhotoSizeSelectSmallRound.tsx create mode 100644 src/IconPhotoSizeSelectSmallSharp.tsx create mode 100644 src/IconPhotoSizeSelectSmallTwoTone.tsx create mode 100644 src/IconPhotoTwoTone.tsx create mode 100644 src/IconPhpOutlined.tsx create mode 100644 src/IconPhpRound.tsx create mode 100644 src/IconPhpSharp.tsx create mode 100644 src/IconPhpTwoTone.tsx create mode 100644 src/IconPianoOffOutlined.tsx create mode 100644 src/IconPianoOffRound.tsx create mode 100644 src/IconPianoOffSharp.tsx create mode 100644 src/IconPianoOffTwoTone.tsx create mode 100644 src/IconPianoOutlined.tsx create mode 100644 src/IconPianoRound.tsx create mode 100644 src/IconPianoSharp.tsx create mode 100644 src/IconPianoTwoTone.tsx create mode 100644 src/IconPictureAsPdfOutlined.tsx create mode 100644 src/IconPictureAsPdfRound.tsx create mode 100644 src/IconPictureAsPdfSharp.tsx create mode 100644 src/IconPictureAsPdfTwoTone.tsx create mode 100644 src/IconPictureInPictureAltOutlined.tsx create mode 100644 src/IconPictureInPictureAltRound.tsx create mode 100644 src/IconPictureInPictureAltSharp.tsx create mode 100644 src/IconPictureInPictureAltTwoTone.tsx create mode 100644 src/IconPictureInPictureOutlined.tsx create mode 100644 src/IconPictureInPictureRound.tsx create mode 100644 src/IconPictureInPictureSharp.tsx create mode 100644 src/IconPictureInPictureTwoTone.tsx create mode 100644 src/IconPieChartOutlineOutlined.tsx create mode 100644 src/IconPieChartOutlineRound.tsx create mode 100644 src/IconPieChartOutlineSharp.tsx create mode 100644 src/IconPieChartOutlineTwoTone.tsx create mode 100644 src/IconPieChartOutlined.tsx create mode 100644 src/IconPieChartRound.tsx create mode 100644 src/IconPieChartSharp.tsx create mode 100644 src/IconPieChartTwoTone.tsx create mode 100644 src/IconPinDropOutlined.tsx create mode 100644 src/IconPinDropRound.tsx create mode 100644 src/IconPinDropSharp.tsx create mode 100644 src/IconPinDropTwoTone.tsx create mode 100644 src/IconPinEndOutlined.tsx create mode 100644 src/IconPinEndRound.tsx create mode 100644 src/IconPinEndSharp.tsx create mode 100644 src/IconPinEndTwoTone.tsx create mode 100644 src/IconPinInvokeOutlined.tsx create mode 100644 src/IconPinInvokeRound.tsx create mode 100644 src/IconPinInvokeSharp.tsx create mode 100644 src/IconPinInvokeTwoTone.tsx create mode 100644 src/IconPinOutlined.tsx create mode 100644 src/IconPinRound.tsx create mode 100644 src/IconPinSharp.tsx create mode 100644 src/IconPinTwoTone.tsx create mode 100644 src/IconPinchOutlined.tsx create mode 100644 src/IconPinchRound.tsx create mode 100644 src/IconPinchSharp.tsx create mode 100644 src/IconPinchTwoTone.tsx create mode 100644 src/IconPivotTableChartOutlined.tsx create mode 100644 src/IconPivotTableChartRound.tsx create mode 100644 src/IconPivotTableChartSharp.tsx create mode 100644 src/IconPivotTableChartTwoTone.tsx create mode 100644 src/IconPixOutlined.tsx create mode 100644 src/IconPixRound.tsx create mode 100644 src/IconPixSharp.tsx create mode 100644 src/IconPixTwoTone.tsx create mode 100644 src/IconPlaceOutlined.tsx create mode 100644 src/IconPlaceRound.tsx create mode 100644 src/IconPlaceSharp.tsx create mode 100644 src/IconPlaceTwoTone.tsx create mode 100644 src/IconPlagiarismOutlined.tsx create mode 100644 src/IconPlagiarismRound.tsx create mode 100644 src/IconPlagiarismSharp.tsx create mode 100644 src/IconPlagiarismTwoTone.tsx create mode 100644 src/IconPlayArrowOutlined.tsx create mode 100644 src/IconPlayArrowRound.tsx create mode 100644 src/IconPlayArrowSharp.tsx create mode 100644 src/IconPlayArrowTwoTone.tsx create mode 100644 src/IconPlayCircleFilledOutlined.tsx create mode 100644 src/IconPlayCircleFilledRound.tsx create mode 100644 src/IconPlayCircleFilledSharp.tsx create mode 100644 src/IconPlayCircleFilledTwoTone.tsx create mode 100644 src/IconPlayCircleOutlineOutlined.tsx create mode 100644 src/IconPlayCircleOutlineRound.tsx create mode 100644 src/IconPlayCircleOutlineSharp.tsx create mode 100644 src/IconPlayCircleOutlineTwoTone.tsx create mode 100644 src/IconPlayCircleOutlined.tsx create mode 100644 src/IconPlayCircleRound.tsx create mode 100644 src/IconPlayCircleSharp.tsx create mode 100644 src/IconPlayCircleTwoTone.tsx create mode 100644 src/IconPlayDisabledOutlined.tsx create mode 100644 src/IconPlayDisabledRound.tsx create mode 100644 src/IconPlayDisabledSharp.tsx create mode 100644 src/IconPlayDisabledTwoTone.tsx create mode 100644 src/IconPlayForWorkOutlined.tsx create mode 100644 src/IconPlayForWorkRound.tsx create mode 100644 src/IconPlayForWorkSharp.tsx create mode 100644 src/IconPlayForWorkTwoTone.tsx create mode 100644 src/IconPlayLessonOutlined.tsx create mode 100644 src/IconPlayLessonRound.tsx create mode 100644 src/IconPlayLessonSharp.tsx create mode 100644 src/IconPlayLessonTwoTone.tsx create mode 100644 src/IconPlaylistAddCheckCircleOutlined.tsx create mode 100644 src/IconPlaylistAddCheckCircleRound.tsx create mode 100644 src/IconPlaylistAddCheckCircleSharp.tsx create mode 100644 src/IconPlaylistAddCheckCircleTwoTone.tsx create mode 100644 src/IconPlaylistAddCheckOutlined.tsx create mode 100644 src/IconPlaylistAddCheckRound.tsx create mode 100644 src/IconPlaylistAddCheckSharp.tsx create mode 100644 src/IconPlaylistAddCheckTwoTone.tsx create mode 100644 src/IconPlaylistAddCircleOutlined.tsx create mode 100644 src/IconPlaylistAddCircleRound.tsx create mode 100644 src/IconPlaylistAddCircleSharp.tsx create mode 100644 src/IconPlaylistAddCircleTwoTone.tsx create mode 100644 src/IconPlaylistAddOutlined.tsx create mode 100644 src/IconPlaylistAddRound.tsx create mode 100644 src/IconPlaylistAddSharp.tsx create mode 100644 src/IconPlaylistAddTwoTone.tsx create mode 100644 src/IconPlaylistPlayOutlined.tsx create mode 100644 src/IconPlaylistPlayRound.tsx create mode 100644 src/IconPlaylistPlaySharp.tsx create mode 100644 src/IconPlaylistPlayTwoTone.tsx create mode 100644 src/IconPlaylistRemoveOutlined.tsx create mode 100644 src/IconPlaylistRemoveRound.tsx create mode 100644 src/IconPlaylistRemoveSharp.tsx create mode 100644 src/IconPlaylistRemoveTwoTone.tsx create mode 100644 src/IconPlumbingOutlined.tsx create mode 100644 src/IconPlumbingRound.tsx create mode 100644 src/IconPlumbingSharp.tsx create mode 100644 src/IconPlumbingTwoTone.tsx create mode 100644 src/IconPlusOneOutlined.tsx create mode 100644 src/IconPlusOneRound.tsx create mode 100644 src/IconPlusOneSharp.tsx create mode 100644 src/IconPlusOneTwoTone.tsx create mode 100644 src/IconPodcastsOutlined.tsx create mode 100644 src/IconPodcastsRound.tsx create mode 100644 src/IconPodcastsSharp.tsx create mode 100644 src/IconPodcastsTwoTone.tsx create mode 100644 src/IconPointOfSaleOutlined.tsx create mode 100644 src/IconPointOfSaleRound.tsx create mode 100644 src/IconPointOfSaleSharp.tsx create mode 100644 src/IconPointOfSaleTwoTone.tsx create mode 100644 src/IconPolicyOutlined.tsx create mode 100644 src/IconPolicyRound.tsx create mode 100644 src/IconPolicySharp.tsx create mode 100644 src/IconPolicyTwoTone.tsx create mode 100644 src/IconPollOutlined.tsx create mode 100644 src/IconPollRound.tsx create mode 100644 src/IconPollSharp.tsx create mode 100644 src/IconPollTwoTone.tsx create mode 100644 src/IconPolylineOutlined.tsx create mode 100644 src/IconPolylineRound.tsx create mode 100644 src/IconPolylineSharp.tsx create mode 100644 src/IconPolylineTwoTone.tsx create mode 100644 src/IconPolymerOutlined.tsx create mode 100644 src/IconPolymerRound.tsx create mode 100644 src/IconPolymerSharp.tsx create mode 100644 src/IconPolymerTwoTone.tsx create mode 100644 src/IconPoolOutlined.tsx create mode 100644 src/IconPoolRound.tsx create mode 100644 src/IconPoolSharp.tsx create mode 100644 src/IconPoolTwoTone.tsx create mode 100644 src/IconPortableWifiOffOutlined.tsx create mode 100644 src/IconPortableWifiOffRound.tsx create mode 100644 src/IconPortableWifiOffSharp.tsx create mode 100644 src/IconPortableWifiOffTwoTone.tsx create mode 100644 src/IconPortraitOutlined.tsx create mode 100644 src/IconPortraitRound.tsx create mode 100644 src/IconPortraitSharp.tsx create mode 100644 src/IconPortraitTwoTone.tsx create mode 100644 src/IconPostAddOutlined.tsx create mode 100644 src/IconPostAddRound.tsx create mode 100644 src/IconPostAddSharp.tsx create mode 100644 src/IconPostAddTwoTone.tsx create mode 100644 src/IconPowerInputOutlined.tsx create mode 100644 src/IconPowerInputRound.tsx create mode 100644 src/IconPowerInputSharp.tsx create mode 100644 src/IconPowerInputTwoTone.tsx create mode 100644 src/IconPowerOffOutlined.tsx create mode 100644 src/IconPowerOffRound.tsx create mode 100644 src/IconPowerOffSharp.tsx create mode 100644 src/IconPowerOffTwoTone.tsx create mode 100644 src/IconPowerOutlined.tsx create mode 100644 src/IconPowerRound.tsx create mode 100644 src/IconPowerSettingsNewOutlined.tsx create mode 100644 src/IconPowerSettingsNewRound.tsx create mode 100644 src/IconPowerSettingsNewSharp.tsx create mode 100644 src/IconPowerSettingsNewTwoTone.tsx create mode 100644 src/IconPowerSharp.tsx create mode 100644 src/IconPowerTwoTone.tsx create mode 100644 src/IconPrecisionManufacturingOutlined.tsx create mode 100644 src/IconPrecisionManufacturingRound.tsx create mode 100644 src/IconPrecisionManufacturingSharp.tsx create mode 100644 src/IconPrecisionManufacturingTwoTone.tsx create mode 100644 src/IconPregnantWomanOutlined.tsx create mode 100644 src/IconPregnantWomanRound.tsx create mode 100644 src/IconPregnantWomanSharp.tsx create mode 100644 src/IconPregnantWomanTwoTone.tsx create mode 100644 src/IconPresentToAllOutlined.tsx create mode 100644 src/IconPresentToAllRound.tsx create mode 100644 src/IconPresentToAllSharp.tsx create mode 100644 src/IconPresentToAllTwoTone.tsx create mode 100644 src/IconPreviewOutlined.tsx create mode 100644 src/IconPreviewRound.tsx create mode 100644 src/IconPreviewSharp.tsx create mode 100644 src/IconPreviewTwoTone.tsx create mode 100644 src/IconPriceChangeOutlined.tsx create mode 100644 src/IconPriceChangeRound.tsx create mode 100644 src/IconPriceChangeSharp.tsx create mode 100644 src/IconPriceChangeTwoTone.tsx create mode 100644 src/IconPriceCheckOutlined.tsx create mode 100644 src/IconPriceCheckRound.tsx create mode 100644 src/IconPriceCheckSharp.tsx create mode 100644 src/IconPriceCheckTwoTone.tsx create mode 100644 src/IconPrintDisabledOutlined.tsx create mode 100644 src/IconPrintDisabledRound.tsx create mode 100644 src/IconPrintDisabledSharp.tsx create mode 100644 src/IconPrintDisabledTwoTone.tsx create mode 100644 src/IconPrintOutlined.tsx create mode 100644 src/IconPrintRound.tsx create mode 100644 src/IconPrintSharp.tsx create mode 100644 src/IconPrintTwoTone.tsx create mode 100644 src/IconPriorityHighOutlined.tsx create mode 100644 src/IconPriorityHighRound.tsx create mode 100644 src/IconPriorityHighSharp.tsx create mode 100644 src/IconPriorityHighTwoTone.tsx create mode 100644 src/IconPrivacyTipOutlined.tsx create mode 100644 src/IconPrivacyTipRound.tsx create mode 100644 src/IconPrivacyTipSharp.tsx create mode 100644 src/IconPrivacyTipTwoTone.tsx create mode 100644 src/IconPrivateConnectivityOutlined.tsx create mode 100644 src/IconPrivateConnectivityRound.tsx create mode 100644 src/IconPrivateConnectivitySharp.tsx create mode 100644 src/IconPrivateConnectivityTwoTone.tsx create mode 100644 src/IconProductionQuantityLimitsOutlined.tsx create mode 100644 src/IconProductionQuantityLimitsRound.tsx create mode 100644 src/IconProductionQuantityLimitsSharp.tsx create mode 100644 src/IconProductionQuantityLimitsTwoTone.tsx create mode 100644 src/IconPropaneOutlined.tsx create mode 100644 src/IconPropaneRound.tsx create mode 100644 src/IconPropaneSharp.tsx create mode 100644 src/IconPropaneTankOutlined.tsx create mode 100644 src/IconPropaneTankRound.tsx create mode 100644 src/IconPropaneTankSharp.tsx create mode 100644 src/IconPropaneTankTwoTone.tsx create mode 100644 src/IconPropaneTwoTone.tsx create mode 100644 src/IconPsychologyAltOutlined.tsx create mode 100644 src/IconPsychologyAltRound.tsx create mode 100644 src/IconPsychologyAltSharp.tsx create mode 100644 src/IconPsychologyAltTwoTone.tsx create mode 100644 src/IconPsychologyOutlined.tsx create mode 100644 src/IconPsychologyRound.tsx create mode 100644 src/IconPsychologySharp.tsx create mode 100644 src/IconPsychologyTwoTone.tsx create mode 100644 src/IconPublicOffOutlined.tsx create mode 100644 src/IconPublicOffRound.tsx create mode 100644 src/IconPublicOffSharp.tsx create mode 100644 src/IconPublicOffTwoTone.tsx create mode 100644 src/IconPublicOutlined.tsx create mode 100644 src/IconPublicRound.tsx create mode 100644 src/IconPublicSharp.tsx create mode 100644 src/IconPublicTwoTone.tsx create mode 100644 src/IconPublishOutlined.tsx create mode 100644 src/IconPublishRound.tsx create mode 100644 src/IconPublishSharp.tsx create mode 100644 src/IconPublishTwoTone.tsx create mode 100644 src/IconPublishedWithChangesOutlined.tsx create mode 100644 src/IconPublishedWithChangesRound.tsx create mode 100644 src/IconPublishedWithChangesSharp.tsx create mode 100644 src/IconPublishedWithChangesTwoTone.tsx create mode 100644 src/IconPunchClockOutlined.tsx create mode 100644 src/IconPunchClockRound.tsx create mode 100644 src/IconPunchClockSharp.tsx create mode 100644 src/IconPunchClockTwoTone.tsx create mode 100644 src/IconPushPinOutlined.tsx create mode 100644 src/IconPushPinRound.tsx create mode 100644 src/IconPushPinSharp.tsx create mode 100644 src/IconPushPinTwoTone.tsx create mode 100644 src/IconQrCode2Outlined.tsx create mode 100644 src/IconQrCode2Round.tsx create mode 100644 src/IconQrCode2Sharp.tsx create mode 100644 src/IconQrCode2TwoTone.tsx create mode 100644 src/IconQrCodeOutlined.tsx create mode 100644 src/IconQrCodeRound.tsx create mode 100644 src/IconQrCodeScannerOutlined.tsx create mode 100644 src/IconQrCodeScannerRound.tsx create mode 100644 src/IconQrCodeScannerSharp.tsx create mode 100644 src/IconQrCodeScannerTwoTone.tsx create mode 100644 src/IconQrCodeSharp.tsx create mode 100644 src/IconQrCodeTwoTone.tsx create mode 100644 src/IconQueryBuilderOutlined.tsx create mode 100644 src/IconQueryBuilderRound.tsx create mode 100644 src/IconQueryBuilderSharp.tsx create mode 100644 src/IconQueryBuilderTwoTone.tsx create mode 100644 src/IconQueryStatsOutlined.tsx create mode 100644 src/IconQueryStatsRound.tsx create mode 100644 src/IconQueryStatsSharp.tsx create mode 100644 src/IconQueryStatsTwoTone.tsx create mode 100644 src/IconQuestionAnswerOutlined.tsx create mode 100644 src/IconQuestionAnswerRound.tsx create mode 100644 src/IconQuestionAnswerSharp.tsx create mode 100644 src/IconQuestionAnswerTwoTone.tsx create mode 100644 src/IconQuestionMarkOutlined.tsx create mode 100644 src/IconQuestionMarkRound.tsx create mode 100644 src/IconQuestionMarkSharp.tsx create mode 100644 src/IconQuestionMarkTwoTone.tsx create mode 100644 src/IconQueueMusicOutlined.tsx create mode 100644 src/IconQueueMusicRound.tsx create mode 100644 src/IconQueueMusicSharp.tsx create mode 100644 src/IconQueueMusicTwoTone.tsx create mode 100644 src/IconQueueOutlined.tsx create mode 100644 src/IconQueuePlayNextOutlined.tsx create mode 100644 src/IconQueuePlayNextRound.tsx create mode 100644 src/IconQueuePlayNextSharp.tsx create mode 100644 src/IconQueuePlayNextTwoTone.tsx create mode 100644 src/IconQueueRound.tsx create mode 100644 src/IconQueueSharp.tsx create mode 100644 src/IconQueueTwoTone.tsx create mode 100644 src/IconQuickreplyOutlined.tsx create mode 100644 src/IconQuickreplyRound.tsx create mode 100644 src/IconQuickreplySharp.tsx create mode 100644 src/IconQuickreplyTwoTone.tsx create mode 100644 src/IconQuizOutlined.tsx create mode 100644 src/IconQuizRound.tsx create mode 100644 src/IconQuizSharp.tsx create mode 100644 src/IconQuizTwoTone.tsx create mode 100644 src/IconRMobiledataOutlined.tsx create mode 100644 src/IconRMobiledataRound.tsx create mode 100644 src/IconRMobiledataSharp.tsx create mode 100644 src/IconRMobiledataTwoTone.tsx create mode 100644 src/IconRadarOutlined.tsx create mode 100644 src/IconRadarRound.tsx create mode 100644 src/IconRadarSharp.tsx create mode 100644 src/IconRadarTwoTone.tsx create mode 100644 src/IconRadioButtonCheckedOutlined.tsx create mode 100644 src/IconRadioButtonCheckedRound.tsx create mode 100644 src/IconRadioButtonCheckedSharp.tsx create mode 100644 src/IconRadioButtonCheckedTwoTone.tsx create mode 100644 src/IconRadioButtonUncheckedOutlined.tsx create mode 100644 src/IconRadioButtonUncheckedRound.tsx create mode 100644 src/IconRadioButtonUncheckedSharp.tsx create mode 100644 src/IconRadioButtonUncheckedTwoTone.tsx create mode 100644 src/IconRadioOutlined.tsx create mode 100644 src/IconRadioRound.tsx create mode 100644 src/IconRadioSharp.tsx create mode 100644 src/IconRadioTwoTone.tsx create mode 100644 src/IconRailwayAlertOutlined.tsx create mode 100644 src/IconRailwayAlertRound.tsx create mode 100644 src/IconRailwayAlertSharp.tsx create mode 100644 src/IconRailwayAlertTwoTone.tsx create mode 100644 src/IconRamenDiningOutlined.tsx create mode 100644 src/IconRamenDiningRound.tsx create mode 100644 src/IconRamenDiningSharp.tsx create mode 100644 src/IconRamenDiningTwoTone.tsx create mode 100644 src/IconRampLeftOutlined.tsx create mode 100644 src/IconRampLeftRound.tsx create mode 100644 src/IconRampLeftSharp.tsx create mode 100644 src/IconRampLeftTwoTone.tsx create mode 100644 src/IconRampRightOutlined.tsx create mode 100644 src/IconRampRightRound.tsx create mode 100644 src/IconRampRightSharp.tsx create mode 100644 src/IconRampRightTwoTone.tsx create mode 100644 src/IconRateReviewOutlined.tsx create mode 100644 src/IconRateReviewRound.tsx create mode 100644 src/IconRateReviewSharp.tsx create mode 100644 src/IconRateReviewTwoTone.tsx create mode 100644 src/IconRawOffOutlined.tsx create mode 100644 src/IconRawOffRound.tsx create mode 100644 src/IconRawOffSharp.tsx create mode 100644 src/IconRawOffTwoTone.tsx create mode 100644 src/IconRawOnOutlined.tsx create mode 100644 src/IconRawOnRound.tsx create mode 100644 src/IconRawOnSharp.tsx create mode 100644 src/IconRawOnTwoTone.tsx create mode 100644 src/IconReadMoreOutlined.tsx create mode 100644 src/IconReadMoreRound.tsx create mode 100644 src/IconReadMoreSharp.tsx create mode 100644 src/IconReadMoreTwoTone.tsx create mode 100644 src/IconRealEstateAgentOutlined.tsx create mode 100644 src/IconRealEstateAgentRound.tsx create mode 100644 src/IconRealEstateAgentSharp.tsx create mode 100644 src/IconRealEstateAgentTwoTone.tsx create mode 100644 src/IconReceiptLongOutlined.tsx create mode 100644 src/IconReceiptLongRound.tsx create mode 100644 src/IconReceiptLongSharp.tsx create mode 100644 src/IconReceiptLongTwoTone.tsx create mode 100644 src/IconReceiptOutlined.tsx create mode 100644 src/IconReceiptRound.tsx create mode 100644 src/IconReceiptSharp.tsx create mode 100644 src/IconReceiptTwoTone.tsx create mode 100644 src/IconRecentActorsOutlined.tsx create mode 100644 src/IconRecentActorsRound.tsx create mode 100644 src/IconRecentActorsSharp.tsx create mode 100644 src/IconRecentActorsTwoTone.tsx create mode 100644 src/IconRecommendOutlined.tsx create mode 100644 src/IconRecommendRound.tsx create mode 100644 src/IconRecommendSharp.tsx create mode 100644 src/IconRecommendTwoTone.tsx create mode 100644 src/IconRecordVoiceOverOutlined.tsx create mode 100644 src/IconRecordVoiceOverRound.tsx create mode 100644 src/IconRecordVoiceOverSharp.tsx create mode 100644 src/IconRecordVoiceOverTwoTone.tsx create mode 100644 src/IconRectangleOutlined.tsx create mode 100644 src/IconRectangleRound.tsx create mode 100644 src/IconRectangleSharp.tsx create mode 100644 src/IconRectangleTwoTone.tsx create mode 100644 src/IconRecyclingOutlined.tsx create mode 100644 src/IconRecyclingRound.tsx create mode 100644 src/IconRecyclingSharp.tsx create mode 100644 src/IconRecyclingTwoTone.tsx create mode 100644 src/IconRedeemOutlined.tsx create mode 100644 src/IconRedeemRound.tsx create mode 100644 src/IconRedeemSharp.tsx create mode 100644 src/IconRedeemTwoTone.tsx create mode 100644 src/IconRedoOutlined.tsx create mode 100644 src/IconRedoRound.tsx create mode 100644 src/IconRedoSharp.tsx create mode 100644 src/IconRedoTwoTone.tsx create mode 100644 src/IconReduceCapacityOutlined.tsx create mode 100644 src/IconReduceCapacityRound.tsx create mode 100644 src/IconReduceCapacitySharp.tsx create mode 100644 src/IconReduceCapacityTwoTone.tsx create mode 100644 src/IconRefreshOutlined.tsx create mode 100644 src/IconRefreshRound.tsx create mode 100644 src/IconRefreshSharp.tsx create mode 100644 src/IconRefreshTwoTone.tsx create mode 100644 src/IconRememberMeOutlined.tsx create mode 100644 src/IconRememberMeRound.tsx create mode 100644 src/IconRememberMeSharp.tsx create mode 100644 src/IconRememberMeTwoTone.tsx create mode 100644 src/IconRemoveCircleOutlineOutlined.tsx create mode 100644 src/IconRemoveCircleOutlineRound.tsx create mode 100644 src/IconRemoveCircleOutlineSharp.tsx create mode 100644 src/IconRemoveCircleOutlineTwoTone.tsx create mode 100644 src/IconRemoveCircleOutlined.tsx create mode 100644 src/IconRemoveCircleRound.tsx create mode 100644 src/IconRemoveCircleSharp.tsx create mode 100644 src/IconRemoveCircleTwoTone.tsx create mode 100644 src/IconRemoveDoneOutlined.tsx create mode 100644 src/IconRemoveDoneRound.tsx create mode 100644 src/IconRemoveDoneSharp.tsx create mode 100644 src/IconRemoveDoneTwoTone.tsx create mode 100644 src/IconRemoveFromQueueOutlined.tsx create mode 100644 src/IconRemoveFromQueueRound.tsx create mode 100644 src/IconRemoveFromQueueSharp.tsx create mode 100644 src/IconRemoveFromQueueTwoTone.tsx create mode 100644 src/IconRemoveModeratorOutlined.tsx create mode 100644 src/IconRemoveModeratorRound.tsx create mode 100644 src/IconRemoveModeratorSharp.tsx create mode 100644 src/IconRemoveModeratorTwoTone.tsx create mode 100644 src/IconRemoveOutlined.tsx create mode 100644 src/IconRemoveRedEyeOutlined.tsx create mode 100644 src/IconRemoveRedEyeRound.tsx create mode 100644 src/IconRemoveRedEyeSharp.tsx create mode 100644 src/IconRemoveRedEyeTwoTone.tsx create mode 100644 src/IconRemoveRoadOutlined.tsx create mode 100644 src/IconRemoveRoadRound.tsx create mode 100644 src/IconRemoveRoadSharp.tsx create mode 100644 src/IconRemoveRoadTwoTone.tsx create mode 100644 src/IconRemoveRound.tsx create mode 100644 src/IconRemoveSharp.tsx create mode 100644 src/IconRemoveShoppingCartOutlined.tsx create mode 100644 src/IconRemoveShoppingCartRound.tsx create mode 100644 src/IconRemoveShoppingCartSharp.tsx create mode 100644 src/IconRemoveShoppingCartTwoTone.tsx create mode 100644 src/IconRemoveTwoTone.tsx create mode 100644 src/IconReorderOutlined.tsx create mode 100644 src/IconReorderRound.tsx create mode 100644 src/IconReorderSharp.tsx create mode 100644 src/IconReorderTwoTone.tsx create mode 100644 src/IconRepartitionOutlined.tsx create mode 100644 src/IconRepartitionRound.tsx create mode 100644 src/IconRepartitionSharp.tsx create mode 100644 src/IconRepartitionTwoTone.tsx create mode 100644 src/IconRepeatOnOutlined.tsx create mode 100644 src/IconRepeatOnRound.tsx create mode 100644 src/IconRepeatOnSharp.tsx create mode 100644 src/IconRepeatOnTwoTone.tsx create mode 100644 src/IconRepeatOneOnOutlined.tsx create mode 100644 src/IconRepeatOneOnRound.tsx create mode 100644 src/IconRepeatOneOnSharp.tsx create mode 100644 src/IconRepeatOneOnTwoTone.tsx create mode 100644 src/IconRepeatOneOutlined.tsx create mode 100644 src/IconRepeatOneRound.tsx create mode 100644 src/IconRepeatOneSharp.tsx create mode 100644 src/IconRepeatOneTwoTone.tsx create mode 100644 src/IconRepeatOutlined.tsx create mode 100644 src/IconRepeatRound.tsx create mode 100644 src/IconRepeatSharp.tsx create mode 100644 src/IconRepeatTwoTone.tsx create mode 100644 src/IconReplay10Outlined.tsx create mode 100644 src/IconReplay10Round.tsx create mode 100644 src/IconReplay10Sharp.tsx create mode 100644 src/IconReplay10TwoTone.tsx create mode 100644 src/IconReplay30Outlined.tsx create mode 100644 src/IconReplay30Round.tsx create mode 100644 src/IconReplay30Sharp.tsx create mode 100644 src/IconReplay30TwoTone.tsx create mode 100644 src/IconReplay5Outlined.tsx create mode 100644 src/IconReplay5Round.tsx create mode 100644 src/IconReplay5Sharp.tsx create mode 100644 src/IconReplay5TwoTone.tsx create mode 100644 src/IconReplayCircleFilledOutlined.tsx create mode 100644 src/IconReplayCircleFilledRound.tsx create mode 100644 src/IconReplayCircleFilledSharp.tsx create mode 100644 src/IconReplayCircleFilledTwoTone.tsx create mode 100644 src/IconReplayOutlined.tsx create mode 100644 src/IconReplayRound.tsx create mode 100644 src/IconReplaySharp.tsx create mode 100644 src/IconReplayTwoTone.tsx create mode 100644 src/IconReplyAllOutlined.tsx create mode 100644 src/IconReplyAllRound.tsx create mode 100644 src/IconReplyAllSharp.tsx create mode 100644 src/IconReplyAllTwoTone.tsx create mode 100644 src/IconReplyOutlined.tsx create mode 100644 src/IconReplyRound.tsx create mode 100644 src/IconReplySharp.tsx create mode 100644 src/IconReplyTwoTone.tsx create mode 100644 src/IconReportGmailerrorredOutlined.tsx create mode 100644 src/IconReportGmailerrorredRound.tsx create mode 100644 src/IconReportGmailerrorredSharp.tsx create mode 100644 src/IconReportGmailerrorredTwoTone.tsx create mode 100644 src/IconReportOffOutlined.tsx create mode 100644 src/IconReportOffRound.tsx create mode 100644 src/IconReportOffSharp.tsx create mode 100644 src/IconReportOffTwoTone.tsx create mode 100644 src/IconReportOutlined.tsx create mode 100644 src/IconReportProblemOutlined.tsx create mode 100644 src/IconReportProblemRound.tsx create mode 100644 src/IconReportProblemSharp.tsx create mode 100644 src/IconReportProblemTwoTone.tsx create mode 100644 src/IconReportRound.tsx create mode 100644 src/IconReportSharp.tsx create mode 100644 src/IconReportTwoTone.tsx create mode 100644 src/IconRequestPageOutlined.tsx create mode 100644 src/IconRequestPageRound.tsx create mode 100644 src/IconRequestPageSharp.tsx create mode 100644 src/IconRequestPageTwoTone.tsx create mode 100644 src/IconRequestQuoteOutlined.tsx create mode 100644 src/IconRequestQuoteRound.tsx create mode 100644 src/IconRequestQuoteSharp.tsx create mode 100644 src/IconRequestQuoteTwoTone.tsx create mode 100644 src/IconResetTvOutlined.tsx create mode 100644 src/IconResetTvRound.tsx create mode 100644 src/IconResetTvSharp.tsx create mode 100644 src/IconResetTvTwoTone.tsx create mode 100644 src/IconRestartAltOutlined.tsx create mode 100644 src/IconRestartAltRound.tsx create mode 100644 src/IconRestartAltSharp.tsx create mode 100644 src/IconRestartAltTwoTone.tsx create mode 100644 src/IconRestaurantMenuOutlined.tsx create mode 100644 src/IconRestaurantMenuRound.tsx create mode 100644 src/IconRestaurantMenuSharp.tsx create mode 100644 src/IconRestaurantMenuTwoTone.tsx create mode 100644 src/IconRestaurantOutlined.tsx create mode 100644 src/IconRestaurantRound.tsx create mode 100644 src/IconRestaurantSharp.tsx create mode 100644 src/IconRestaurantTwoTone.tsx create mode 100644 src/IconRestoreFromTrashOutlined.tsx create mode 100644 src/IconRestoreFromTrashRound.tsx create mode 100644 src/IconRestoreFromTrashSharp.tsx create mode 100644 src/IconRestoreFromTrashTwoTone.tsx create mode 100644 src/IconRestoreOutlined.tsx create mode 100644 src/IconRestorePageOutlined.tsx create mode 100644 src/IconRestorePageRound.tsx create mode 100644 src/IconRestorePageSharp.tsx create mode 100644 src/IconRestorePageTwoTone.tsx create mode 100644 src/IconRestoreRound.tsx create mode 100644 src/IconRestoreSharp.tsx create mode 100644 src/IconRestoreTwoTone.tsx create mode 100644 src/IconReviewsOutlined.tsx create mode 100644 src/IconReviewsRound.tsx create mode 100644 src/IconReviewsSharp.tsx create mode 100644 src/IconReviewsTwoTone.tsx create mode 100644 src/IconRiceBowlOutlined.tsx create mode 100644 src/IconRiceBowlRound.tsx create mode 100644 src/IconRiceBowlSharp.tsx create mode 100644 src/IconRiceBowlTwoTone.tsx create mode 100644 src/IconRingVolumeOutlined.tsx create mode 100644 src/IconRingVolumeRound.tsx create mode 100644 src/IconRingVolumeSharp.tsx create mode 100644 src/IconRingVolumeTwoTone.tsx create mode 100644 src/IconRocketLaunchOutlined.tsx create mode 100644 src/IconRocketLaunchRound.tsx create mode 100644 src/IconRocketLaunchSharp.tsx create mode 100644 src/IconRocketLaunchTwoTone.tsx create mode 100644 src/IconRocketOutlined.tsx create mode 100644 src/IconRocketRound.tsx create mode 100644 src/IconRocketSharp.tsx create mode 100644 src/IconRocketTwoTone.tsx create mode 100644 src/IconRollerShadesClosedOutlined.tsx create mode 100644 src/IconRollerShadesClosedRound.tsx create mode 100644 src/IconRollerShadesClosedSharp.tsx create mode 100644 src/IconRollerShadesClosedTwoTone.tsx create mode 100644 src/IconRollerShadesOutlined.tsx create mode 100644 src/IconRollerShadesRound.tsx create mode 100644 src/IconRollerShadesSharp.tsx create mode 100644 src/IconRollerShadesTwoTone.tsx create mode 100644 src/IconRollerSkatingOutlined.tsx create mode 100644 src/IconRollerSkatingRound.tsx create mode 100644 src/IconRollerSkatingSharp.tsx create mode 100644 src/IconRollerSkatingTwoTone.tsx create mode 100644 src/IconRoofingOutlined.tsx create mode 100644 src/IconRoofingRound.tsx create mode 100644 src/IconRoofingSharp.tsx create mode 100644 src/IconRoofingTwoTone.tsx create mode 100644 src/IconRoomOutlined.tsx create mode 100644 src/IconRoomPreferencesOutlined.tsx create mode 100644 src/IconRoomPreferencesRound.tsx create mode 100644 src/IconRoomPreferencesSharp.tsx create mode 100644 src/IconRoomPreferencesTwoTone.tsx create mode 100644 src/IconRoomRound.tsx create mode 100644 src/IconRoomServiceOutlined.tsx create mode 100644 src/IconRoomServiceRound.tsx create mode 100644 src/IconRoomServiceSharp.tsx create mode 100644 src/IconRoomServiceTwoTone.tsx create mode 100644 src/IconRoomSharp.tsx create mode 100644 src/IconRoomTwoTone.tsx create mode 100644 src/IconRotate90DegreesCcwOutlined.tsx create mode 100644 src/IconRotate90DegreesCcwRound.tsx create mode 100644 src/IconRotate90DegreesCcwSharp.tsx create mode 100644 src/IconRotate90DegreesCcwTwoTone.tsx create mode 100644 src/IconRotate90DegreesCwOutlined.tsx create mode 100644 src/IconRotate90DegreesCwRound.tsx create mode 100644 src/IconRotate90DegreesCwSharp.tsx create mode 100644 src/IconRotate90DegreesCwTwoTone.tsx create mode 100644 src/IconRotateLeftOutlined.tsx create mode 100644 src/IconRotateLeftRound.tsx create mode 100644 src/IconRotateLeftSharp.tsx create mode 100644 src/IconRotateLeftTwoTone.tsx create mode 100644 src/IconRotateRightOutlined.tsx create mode 100644 src/IconRotateRightRound.tsx create mode 100644 src/IconRotateRightSharp.tsx create mode 100644 src/IconRotateRightTwoTone.tsx create mode 100644 src/IconRoundaboutLeftOutlined.tsx create mode 100644 src/IconRoundaboutLeftRound.tsx create mode 100644 src/IconRoundaboutLeftSharp.tsx create mode 100644 src/IconRoundaboutLeftTwoTone.tsx create mode 100644 src/IconRoundaboutRightOutlined.tsx create mode 100644 src/IconRoundaboutRightRound.tsx create mode 100644 src/IconRoundaboutRightSharp.tsx create mode 100644 src/IconRoundaboutRightTwoTone.tsx create mode 100644 src/IconRoundedCornerOutlined.tsx create mode 100644 src/IconRoundedCornerRound.tsx create mode 100644 src/IconRoundedCornerSharp.tsx create mode 100644 src/IconRoundedCornerTwoTone.tsx create mode 100644 src/IconRouteOutlined.tsx create mode 100644 src/IconRouteRound.tsx create mode 100644 src/IconRouteSharp.tsx create mode 100644 src/IconRouteTwoTone.tsx create mode 100644 src/IconRouterOutlined.tsx create mode 100644 src/IconRouterRound.tsx create mode 100644 src/IconRouterSharp.tsx create mode 100644 src/IconRouterTwoTone.tsx create mode 100644 src/IconRowingOutlined.tsx create mode 100644 src/IconRowingRound.tsx create mode 100644 src/IconRowingSharp.tsx create mode 100644 src/IconRowingTwoTone.tsx create mode 100644 src/IconRssFeedOutlined.tsx create mode 100644 src/IconRssFeedRound.tsx create mode 100644 src/IconRssFeedSharp.tsx create mode 100644 src/IconRssFeedTwoTone.tsx create mode 100644 src/IconRsvpOutlined.tsx create mode 100644 src/IconRsvpRound.tsx create mode 100644 src/IconRsvpSharp.tsx create mode 100644 src/IconRsvpTwoTone.tsx create mode 100644 src/IconRttOutlined.tsx create mode 100644 src/IconRttRound.tsx create mode 100644 src/IconRttSharp.tsx create mode 100644 src/IconRttTwoTone.tsx create mode 100644 src/IconRuleFolderOutlined.tsx create mode 100644 src/IconRuleFolderRound.tsx create mode 100644 src/IconRuleFolderSharp.tsx create mode 100644 src/IconRuleFolderTwoTone.tsx create mode 100644 src/IconRuleOutlined.tsx create mode 100644 src/IconRuleRound.tsx create mode 100644 src/IconRuleSharp.tsx create mode 100644 src/IconRuleTwoTone.tsx create mode 100644 src/IconRunCircleOutlined.tsx create mode 100644 src/IconRunCircleRound.tsx create mode 100644 src/IconRunCircleSharp.tsx create mode 100644 src/IconRunCircleTwoTone.tsx create mode 100644 src/IconRunningWithErrorsOutlined.tsx create mode 100644 src/IconRunningWithErrorsRound.tsx create mode 100644 src/IconRunningWithErrorsSharp.tsx create mode 100644 src/IconRunningWithErrorsTwoTone.tsx create mode 100644 src/IconRvHookupOutlined.tsx create mode 100644 src/IconRvHookupRound.tsx create mode 100644 src/IconRvHookupSharp.tsx create mode 100644 src/IconRvHookupTwoTone.tsx create mode 100644 src/IconSafetyCheckOutlined.tsx create mode 100644 src/IconSafetyCheckRound.tsx create mode 100644 src/IconSafetyCheckSharp.tsx create mode 100644 src/IconSafetyCheckTwoTone.tsx create mode 100644 src/IconSafetyDividerOutlined.tsx create mode 100644 src/IconSafetyDividerRound.tsx create mode 100644 src/IconSafetyDividerSharp.tsx create mode 100644 src/IconSafetyDividerTwoTone.tsx create mode 100644 src/IconSailingOutlined.tsx create mode 100644 src/IconSailingRound.tsx create mode 100644 src/IconSailingSharp.tsx create mode 100644 src/IconSailingTwoTone.tsx create mode 100644 src/IconSanitizerOutlined.tsx create mode 100644 src/IconSanitizerRound.tsx create mode 100644 src/IconSanitizerSharp.tsx create mode 100644 src/IconSanitizerTwoTone.tsx create mode 100644 src/IconSatelliteAltOutlined.tsx create mode 100644 src/IconSatelliteAltRound.tsx create mode 100644 src/IconSatelliteAltSharp.tsx create mode 100644 src/IconSatelliteAltTwoTone.tsx create mode 100644 src/IconSatelliteOutlined.tsx create mode 100644 src/IconSatelliteRound.tsx create mode 100644 src/IconSatelliteSharp.tsx create mode 100644 src/IconSatelliteTwoTone.tsx create mode 100644 src/IconSaveAltOutlined.tsx create mode 100644 src/IconSaveAltRound.tsx create mode 100644 src/IconSaveAltSharp.tsx create mode 100644 src/IconSaveAltTwoTone.tsx create mode 100644 src/IconSaveAsOutlined.tsx create mode 100644 src/IconSaveAsRound.tsx create mode 100644 src/IconSaveAsSharp.tsx create mode 100644 src/IconSaveAsTwoTone.tsx create mode 100644 src/IconSaveOutlined.tsx create mode 100644 src/IconSaveRound.tsx create mode 100644 src/IconSaveSharp.tsx create mode 100644 src/IconSaveTwoTone.tsx create mode 100644 src/IconSavedSearchOutlined.tsx create mode 100644 src/IconSavedSearchRound.tsx create mode 100644 src/IconSavedSearchSharp.tsx create mode 100644 src/IconSavedSearchTwoTone.tsx create mode 100644 src/IconSavingsOutlined.tsx create mode 100644 src/IconSavingsRound.tsx create mode 100644 src/IconSavingsSharp.tsx create mode 100644 src/IconSavingsTwoTone.tsx create mode 100644 src/IconScaleOutlined.tsx create mode 100644 src/IconScaleRound.tsx create mode 100644 src/IconScaleSharp.tsx create mode 100644 src/IconScaleTwoTone.tsx create mode 100644 src/IconScannerOutlined.tsx create mode 100644 src/IconScannerRound.tsx create mode 100644 src/IconScannerSharp.tsx create mode 100644 src/IconScannerTwoTone.tsx create mode 100644 src/IconScatterPlotOutlined.tsx create mode 100644 src/IconScatterPlotRound.tsx create mode 100644 src/IconScatterPlotSharp.tsx create mode 100644 src/IconScatterPlotTwoTone.tsx create mode 100644 src/IconScheduleOutlined.tsx create mode 100644 src/IconScheduleRound.tsx create mode 100644 src/IconScheduleSendOutlined.tsx create mode 100644 src/IconScheduleSendRound.tsx create mode 100644 src/IconScheduleSendSharp.tsx create mode 100644 src/IconScheduleSendTwoTone.tsx create mode 100644 src/IconScheduleSharp.tsx create mode 100644 src/IconScheduleTwoTone.tsx create mode 100644 src/IconSchemaOutlined.tsx create mode 100644 src/IconSchemaRound.tsx create mode 100644 src/IconSchemaSharp.tsx create mode 100644 src/IconSchemaTwoTone.tsx create mode 100644 src/IconSchoolOutlined.tsx create mode 100644 src/IconSchoolRound.tsx create mode 100644 src/IconSchoolSharp.tsx create mode 100644 src/IconSchoolTwoTone.tsx create mode 100644 src/IconScienceOutlined.tsx create mode 100644 src/IconScienceRound.tsx create mode 100644 src/IconScienceSharp.tsx create mode 100644 src/IconScienceTwoTone.tsx create mode 100644 src/IconScoreOutlined.tsx create mode 100644 src/IconScoreRound.tsx create mode 100644 src/IconScoreSharp.tsx create mode 100644 src/IconScoreTwoTone.tsx create mode 100644 src/IconScoreboardOutlined.tsx create mode 100644 src/IconScoreboardRound.tsx create mode 100644 src/IconScoreboardSharp.tsx create mode 100644 src/IconScoreboardTwoTone.tsx create mode 100644 src/IconScreenLockLandscapeOutlined.tsx create mode 100644 src/IconScreenLockLandscapeRound.tsx create mode 100644 src/IconScreenLockLandscapeSharp.tsx create mode 100644 src/IconScreenLockLandscapeTwoTone.tsx create mode 100644 src/IconScreenLockPortraitOutlined.tsx create mode 100644 src/IconScreenLockPortraitRound.tsx create mode 100644 src/IconScreenLockPortraitSharp.tsx create mode 100644 src/IconScreenLockPortraitTwoTone.tsx create mode 100644 src/IconScreenLockRotationOutlined.tsx create mode 100644 src/IconScreenLockRotationRound.tsx create mode 100644 src/IconScreenLockRotationSharp.tsx create mode 100644 src/IconScreenLockRotationTwoTone.tsx create mode 100644 src/IconScreenRotationAltOutlined.tsx create mode 100644 src/IconScreenRotationAltRound.tsx create mode 100644 src/IconScreenRotationAltSharp.tsx create mode 100644 src/IconScreenRotationAltTwoTone.tsx create mode 100644 src/IconScreenRotationOutlined.tsx create mode 100644 src/IconScreenRotationRound.tsx create mode 100644 src/IconScreenRotationSharp.tsx create mode 100644 src/IconScreenRotationTwoTone.tsx create mode 100644 src/IconScreenSearchDesktopOutlined.tsx create mode 100644 src/IconScreenSearchDesktopRound.tsx create mode 100644 src/IconScreenSearchDesktopSharp.tsx create mode 100644 src/IconScreenSearchDesktopTwoTone.tsx create mode 100644 src/IconScreenShareOutlined.tsx create mode 100644 src/IconScreenShareRound.tsx create mode 100644 src/IconScreenShareSharp.tsx create mode 100644 src/IconScreenShareTwoTone.tsx create mode 100644 src/IconScreenshotMonitorOutlined.tsx create mode 100644 src/IconScreenshotMonitorRound.tsx create mode 100644 src/IconScreenshotMonitorSharp.tsx create mode 100644 src/IconScreenshotMonitorTwoTone.tsx create mode 100644 src/IconScreenshotOutlined.tsx create mode 100644 src/IconScreenshotRound.tsx create mode 100644 src/IconScreenshotSharp.tsx create mode 100644 src/IconScreenshotTwoTone.tsx create mode 100644 src/IconScubaDivingOutlined.tsx create mode 100644 src/IconScubaDivingRound.tsx create mode 100644 src/IconScubaDivingSharp.tsx create mode 100644 src/IconScubaDivingTwoTone.tsx create mode 100644 src/IconSdCardAlertOutlined.tsx create mode 100644 src/IconSdCardAlertRound.tsx create mode 100644 src/IconSdCardAlertSharp.tsx create mode 100644 src/IconSdCardAlertTwoTone.tsx create mode 100644 src/IconSdCardOutlined.tsx create mode 100644 src/IconSdCardRound.tsx create mode 100644 src/IconSdCardSharp.tsx create mode 100644 src/IconSdCardTwoTone.tsx create mode 100644 src/IconSdOutlined.tsx create mode 100644 src/IconSdRound.tsx create mode 100644 src/IconSdSharp.tsx create mode 100644 src/IconSdStorageOutlined.tsx create mode 100644 src/IconSdStorageRound.tsx create mode 100644 src/IconSdStorageSharp.tsx create mode 100644 src/IconSdStorageTwoTone.tsx create mode 100644 src/IconSdTwoTone.tsx create mode 100644 src/IconSearchOffOutlined.tsx create mode 100644 src/IconSearchOffRound.tsx create mode 100644 src/IconSearchOffSharp.tsx create mode 100644 src/IconSearchOffTwoTone.tsx create mode 100644 src/IconSearchOutlined.tsx create mode 100644 src/IconSearchRound.tsx create mode 100644 src/IconSearchSharp.tsx create mode 100644 src/IconSearchTwoTone.tsx create mode 100644 src/IconSecurityOutlined.tsx create mode 100644 src/IconSecurityRound.tsx create mode 100644 src/IconSecuritySharp.tsx create mode 100644 src/IconSecurityTwoTone.tsx create mode 100644 src/IconSecurityUpdateGoodOutlined.tsx create mode 100644 src/IconSecurityUpdateGoodRound.tsx create mode 100644 src/IconSecurityUpdateGoodSharp.tsx create mode 100644 src/IconSecurityUpdateGoodTwoTone.tsx create mode 100644 src/IconSecurityUpdateOutlined.tsx create mode 100644 src/IconSecurityUpdateRound.tsx create mode 100644 src/IconSecurityUpdateSharp.tsx create mode 100644 src/IconSecurityUpdateTwoTone.tsx create mode 100644 src/IconSecurityUpdateWarningOutlined.tsx create mode 100644 src/IconSecurityUpdateWarningRound.tsx create mode 100644 src/IconSecurityUpdateWarningSharp.tsx create mode 100644 src/IconSecurityUpdateWarningTwoTone.tsx create mode 100644 src/IconSegmentOutlined.tsx create mode 100644 src/IconSegmentRound.tsx create mode 100644 src/IconSegmentSharp.tsx create mode 100644 src/IconSegmentTwoTone.tsx create mode 100644 src/IconSelectAllOutlined.tsx create mode 100644 src/IconSelectAllRound.tsx create mode 100644 src/IconSelectAllSharp.tsx create mode 100644 src/IconSelectAllTwoTone.tsx create mode 100644 src/IconSelfImprovementOutlined.tsx create mode 100644 src/IconSelfImprovementRound.tsx create mode 100644 src/IconSelfImprovementSharp.tsx create mode 100644 src/IconSelfImprovementTwoTone.tsx create mode 100644 src/IconSellOutlined.tsx create mode 100644 src/IconSellRound.tsx create mode 100644 src/IconSellSharp.tsx create mode 100644 src/IconSellTwoTone.tsx create mode 100644 src/IconSendAndArchiveOutlined.tsx create mode 100644 src/IconSendAndArchiveRound.tsx create mode 100644 src/IconSendAndArchiveSharp.tsx create mode 100644 src/IconSendAndArchiveTwoTone.tsx create mode 100644 src/IconSendOutlined.tsx create mode 100644 src/IconSendRound.tsx create mode 100644 src/IconSendSharp.tsx create mode 100644 src/IconSendTimeExtensionOutlined.tsx create mode 100644 src/IconSendTimeExtensionRound.tsx create mode 100644 src/IconSendTimeExtensionSharp.tsx create mode 100644 src/IconSendTimeExtensionTwoTone.tsx create mode 100644 src/IconSendToMobileOutlined.tsx create mode 100644 src/IconSendToMobileRound.tsx create mode 100644 src/IconSendToMobileSharp.tsx create mode 100644 src/IconSendToMobileTwoTone.tsx create mode 100644 src/IconSendTwoTone.tsx create mode 100644 src/IconSensorDoorOutlined.tsx create mode 100644 src/IconSensorDoorRound.tsx create mode 100644 src/IconSensorDoorSharp.tsx create mode 100644 src/IconSensorDoorTwoTone.tsx create mode 100644 src/IconSensorOccupiedOutlined.tsx create mode 100644 src/IconSensorOccupiedRound.tsx create mode 100644 src/IconSensorOccupiedSharp.tsx create mode 100644 src/IconSensorOccupiedTwoTone.tsx create mode 100644 src/IconSensorWindowOutlined.tsx create mode 100644 src/IconSensorWindowRound.tsx create mode 100644 src/IconSensorWindowSharp.tsx create mode 100644 src/IconSensorWindowTwoTone.tsx create mode 100644 src/IconSensorsOffOutlined.tsx create mode 100644 src/IconSensorsOffRound.tsx create mode 100644 src/IconSensorsOffSharp.tsx create mode 100644 src/IconSensorsOffTwoTone.tsx create mode 100644 src/IconSensorsOutlined.tsx create mode 100644 src/IconSensorsRound.tsx create mode 100644 src/IconSensorsSharp.tsx create mode 100644 src/IconSensorsTwoTone.tsx create mode 100644 src/IconSentimentDissatisfiedOutlined.tsx create mode 100644 src/IconSentimentDissatisfiedRound.tsx create mode 100644 src/IconSentimentDissatisfiedSharp.tsx create mode 100644 src/IconSentimentDissatisfiedTwoTone.tsx create mode 100644 src/IconSentimentNeutralOutlined.tsx create mode 100644 src/IconSentimentNeutralRound.tsx create mode 100644 src/IconSentimentNeutralSharp.tsx create mode 100644 src/IconSentimentNeutralTwoTone.tsx create mode 100644 src/IconSentimentSatisfiedAltOutlined.tsx create mode 100644 src/IconSentimentSatisfiedAltRound.tsx create mode 100644 src/IconSentimentSatisfiedAltSharp.tsx create mode 100644 src/IconSentimentSatisfiedAltTwoTone.tsx create mode 100644 src/IconSentimentSatisfiedOutlined.tsx create mode 100644 src/IconSentimentSatisfiedRound.tsx create mode 100644 src/IconSentimentSatisfiedSharp.tsx create mode 100644 src/IconSentimentSatisfiedTwoTone.tsx create mode 100644 src/IconSentimentVeryDissatisfiedOutlined.tsx create mode 100644 src/IconSentimentVeryDissatisfiedRound.tsx create mode 100644 src/IconSentimentVeryDissatisfiedSharp.tsx create mode 100644 src/IconSentimentVeryDissatisfiedTwoTone.tsx create mode 100644 src/IconSentimentVerySatisfiedOutlined.tsx create mode 100644 src/IconSentimentVerySatisfiedRound.tsx create mode 100644 src/IconSentimentVerySatisfiedSharp.tsx create mode 100644 src/IconSentimentVerySatisfiedTwoTone.tsx create mode 100644 src/IconSetMealOutlined.tsx create mode 100644 src/IconSetMealRound.tsx create mode 100644 src/IconSetMealSharp.tsx create mode 100644 src/IconSetMealTwoTone.tsx create mode 100644 src/IconSettingsAccessibilityOutlined.tsx create mode 100644 src/IconSettingsAccessibilityRound.tsx create mode 100644 src/IconSettingsAccessibilitySharp.tsx create mode 100644 src/IconSettingsAccessibilityTwoTone.tsx create mode 100644 src/IconSettingsApplicationsOutlined.tsx create mode 100644 src/IconSettingsApplicationsRound.tsx create mode 100644 src/IconSettingsApplicationsSharp.tsx create mode 100644 src/IconSettingsApplicationsTwoTone.tsx create mode 100644 src/IconSettingsBackupRestoreOutlined.tsx create mode 100644 src/IconSettingsBackupRestoreRound.tsx create mode 100644 src/IconSettingsBackupRestoreSharp.tsx create mode 100644 src/IconSettingsBackupRestoreTwoTone.tsx create mode 100644 src/IconSettingsBluetoothOutlined.tsx create mode 100644 src/IconSettingsBluetoothRound.tsx create mode 100644 src/IconSettingsBluetoothSharp.tsx create mode 100644 src/IconSettingsBluetoothTwoTone.tsx create mode 100644 src/IconSettingsBrightnessOutlined.tsx create mode 100644 src/IconSettingsBrightnessRound.tsx create mode 100644 src/IconSettingsBrightnessSharp.tsx create mode 100644 src/IconSettingsBrightnessTwoTone.tsx create mode 100644 src/IconSettingsCellOutlined.tsx create mode 100644 src/IconSettingsCellRound.tsx create mode 100644 src/IconSettingsCellSharp.tsx create mode 100644 src/IconSettingsCellTwoTone.tsx create mode 100644 src/IconSettingsEthernetOutlined.tsx create mode 100644 src/IconSettingsEthernetRound.tsx create mode 100644 src/IconSettingsEthernetSharp.tsx create mode 100644 src/IconSettingsEthernetTwoTone.tsx create mode 100644 src/IconSettingsInputAntennaOutlined.tsx create mode 100644 src/IconSettingsInputAntennaRound.tsx create mode 100644 src/IconSettingsInputAntennaSharp.tsx create mode 100644 src/IconSettingsInputAntennaTwoTone.tsx create mode 100644 src/IconSettingsInputComponentOutlined.tsx create mode 100644 src/IconSettingsInputComponentRound.tsx create mode 100644 src/IconSettingsInputComponentSharp.tsx create mode 100644 src/IconSettingsInputComponentTwoTone.tsx create mode 100644 src/IconSettingsInputCompositeOutlined.tsx create mode 100644 src/IconSettingsInputCompositeRound.tsx create mode 100644 src/IconSettingsInputCompositeSharp.tsx create mode 100644 src/IconSettingsInputCompositeTwoTone.tsx create mode 100644 src/IconSettingsInputHdmiOutlined.tsx create mode 100644 src/IconSettingsInputHdmiRound.tsx create mode 100644 src/IconSettingsInputHdmiSharp.tsx create mode 100644 src/IconSettingsInputHdmiTwoTone.tsx create mode 100644 src/IconSettingsInputSvideoOutlined.tsx create mode 100644 src/IconSettingsInputSvideoRound.tsx create mode 100644 src/IconSettingsInputSvideoSharp.tsx create mode 100644 src/IconSettingsInputSvideoTwoTone.tsx create mode 100644 src/IconSettingsOutlined.tsx create mode 100644 src/IconSettingsOverscanOutlined.tsx create mode 100644 src/IconSettingsOverscanRound.tsx create mode 100644 src/IconSettingsOverscanSharp.tsx create mode 100644 src/IconSettingsOverscanTwoTone.tsx create mode 100644 src/IconSettingsPhoneOutlined.tsx create mode 100644 src/IconSettingsPhoneRound.tsx create mode 100644 src/IconSettingsPhoneSharp.tsx create mode 100644 src/IconSettingsPhoneTwoTone.tsx create mode 100644 src/IconSettingsPowerOutlined.tsx create mode 100644 src/IconSettingsPowerRound.tsx create mode 100644 src/IconSettingsPowerSharp.tsx create mode 100644 src/IconSettingsPowerTwoTone.tsx create mode 100644 src/IconSettingsRemoteOutlined.tsx create mode 100644 src/IconSettingsRemoteRound.tsx create mode 100644 src/IconSettingsRemoteSharp.tsx create mode 100644 src/IconSettingsRemoteTwoTone.tsx create mode 100644 src/IconSettingsRound.tsx create mode 100644 src/IconSettingsSharp.tsx create mode 100644 src/IconSettingsSuggestOutlined.tsx create mode 100644 src/IconSettingsSuggestRound.tsx create mode 100644 src/IconSettingsSuggestSharp.tsx create mode 100644 src/IconSettingsSuggestTwoTone.tsx create mode 100644 src/IconSettingsSystemDaydreamOutlined.tsx create mode 100644 src/IconSettingsSystemDaydreamRound.tsx create mode 100644 src/IconSettingsSystemDaydreamSharp.tsx create mode 100644 src/IconSettingsSystemDaydreamTwoTone.tsx create mode 100644 src/IconSettingsTwoTone.tsx create mode 100644 src/IconSettingsVoiceOutlined.tsx create mode 100644 src/IconSettingsVoiceRound.tsx create mode 100644 src/IconSettingsVoiceSharp.tsx create mode 100644 src/IconSettingsVoiceTwoTone.tsx create mode 100644 src/IconSevereColdOutlined.tsx create mode 100644 src/IconSevereColdRound.tsx create mode 100644 src/IconSevereColdSharp.tsx create mode 100644 src/IconSevereColdTwoTone.tsx create mode 100644 src/IconShapeLineOutlined.tsx create mode 100644 src/IconShapeLineRound.tsx create mode 100644 src/IconShapeLineSharp.tsx create mode 100644 src/IconShapeLineTwoTone.tsx create mode 100644 src/IconShareLocationOutlined.tsx create mode 100644 src/IconShareLocationRound.tsx create mode 100644 src/IconShareLocationSharp.tsx create mode 100644 src/IconShareLocationTwoTone.tsx create mode 100644 src/IconShareOutlined.tsx create mode 100644 src/IconShareRound.tsx create mode 100644 src/IconShareSharp.tsx create mode 100644 src/IconShareTwoTone.tsx create mode 100644 src/IconShieldMoonOutlined.tsx create mode 100644 src/IconShieldMoonRound.tsx create mode 100644 src/IconShieldMoonSharp.tsx create mode 100644 src/IconShieldMoonTwoTone.tsx create mode 100644 src/IconShieldOutlined.tsx create mode 100644 src/IconShieldRound.tsx create mode 100644 src/IconShieldSharp.tsx create mode 100644 src/IconShieldTwoTone.tsx create mode 100644 src/IconShop2Outlined.tsx create mode 100644 src/IconShop2Round.tsx create mode 100644 src/IconShop2Sharp.tsx create mode 100644 src/IconShop2TwoTone.tsx create mode 100644 src/IconShopOutlined.tsx create mode 100644 src/IconShopRound.tsx create mode 100644 src/IconShopSharp.tsx create mode 100644 src/IconShopTwoOutlined.tsx create mode 100644 src/IconShopTwoRound.tsx create mode 100644 src/IconShopTwoSharp.tsx create mode 100644 src/IconShopTwoTone.tsx create mode 100644 src/IconShopTwoTwoTone.tsx create mode 100644 src/IconShoppingBagOutlined.tsx create mode 100644 src/IconShoppingBagRound.tsx create mode 100644 src/IconShoppingBagSharp.tsx create mode 100644 src/IconShoppingBagTwoTone.tsx create mode 100644 src/IconShoppingBasketOutlined.tsx create mode 100644 src/IconShoppingBasketRound.tsx create mode 100644 src/IconShoppingBasketSharp.tsx create mode 100644 src/IconShoppingBasketTwoTone.tsx create mode 100644 src/IconShoppingCartCheckoutOutlined.tsx create mode 100644 src/IconShoppingCartCheckoutRound.tsx create mode 100644 src/IconShoppingCartCheckoutSharp.tsx create mode 100644 src/IconShoppingCartCheckoutTwoTone.tsx create mode 100644 src/IconShoppingCartOutlined.tsx create mode 100644 src/IconShoppingCartRound.tsx create mode 100644 src/IconShoppingCartSharp.tsx create mode 100644 src/IconShoppingCartTwoTone.tsx create mode 100644 src/IconShortTextOutlined.tsx create mode 100644 src/IconShortTextRound.tsx create mode 100644 src/IconShortTextSharp.tsx create mode 100644 src/IconShortTextTwoTone.tsx create mode 100644 src/IconShortcutOutlined.tsx create mode 100644 src/IconShortcutRound.tsx create mode 100644 src/IconShortcutSharp.tsx create mode 100644 src/IconShortcutTwoTone.tsx create mode 100644 src/IconShowChartOutlined.tsx create mode 100644 src/IconShowChartRound.tsx create mode 100644 src/IconShowChartSharp.tsx create mode 100644 src/IconShowChartTwoTone.tsx create mode 100644 src/IconShowerOutlined.tsx create mode 100644 src/IconShowerRound.tsx create mode 100644 src/IconShowerSharp.tsx create mode 100644 src/IconShowerTwoTone.tsx create mode 100644 src/IconShuffleOnOutlined.tsx create mode 100644 src/IconShuffleOnRound.tsx create mode 100644 src/IconShuffleOnSharp.tsx create mode 100644 src/IconShuffleOnTwoTone.tsx create mode 100644 src/IconShuffleOutlined.tsx create mode 100644 src/IconShuffleRound.tsx create mode 100644 src/IconShuffleSharp.tsx create mode 100644 src/IconShuffleTwoTone.tsx create mode 100644 src/IconShutterSpeedOutlined.tsx create mode 100644 src/IconShutterSpeedRound.tsx create mode 100644 src/IconShutterSpeedSharp.tsx create mode 100644 src/IconShutterSpeedTwoTone.tsx create mode 100644 src/IconSickOutlined.tsx create mode 100644 src/IconSickRound.tsx create mode 100644 src/IconSickSharp.tsx create mode 100644 src/IconSickTwoTone.tsx create mode 100644 src/IconSignLanguageOutlined.tsx create mode 100644 src/IconSignLanguageRound.tsx create mode 100644 src/IconSignLanguageSharp.tsx create mode 100644 src/IconSignLanguageTwoTone.tsx create mode 100644 src/IconSignalCellular0BarOutlined.tsx create mode 100644 src/IconSignalCellular0BarRound.tsx create mode 100644 src/IconSignalCellular0BarSharp.tsx create mode 100644 src/IconSignalCellular0BarTwoTone.tsx create mode 100644 src/IconSignalCellular4BarOutlined.tsx create mode 100644 src/IconSignalCellular4BarRound.tsx create mode 100644 src/IconSignalCellular4BarSharp.tsx create mode 100644 src/IconSignalCellular4BarTwoTone.tsx create mode 100644 src/IconSignalCellularAlt1BarOutlined.tsx create mode 100644 src/IconSignalCellularAlt1BarRound.tsx create mode 100644 src/IconSignalCellularAlt1BarSharp.tsx create mode 100644 src/IconSignalCellularAlt1BarTwoTone.tsx create mode 100644 src/IconSignalCellularAlt2BarOutlined.tsx create mode 100644 src/IconSignalCellularAlt2BarRound.tsx create mode 100644 src/IconSignalCellularAlt2BarSharp.tsx create mode 100644 src/IconSignalCellularAlt2BarTwoTone.tsx create mode 100644 src/IconSignalCellularAltOutlined.tsx create mode 100644 src/IconSignalCellularAltRound.tsx create mode 100644 src/IconSignalCellularAltSharp.tsx create mode 100644 src/IconSignalCellularAltTwoTone.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet0BarRound.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet0BarSharp.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet0BarTwoTone.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet4BarRound.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet4BarSharp.tsx create mode 100644 src/IconSignalCellularConnectedNoInternet4BarTwoTone.tsx create mode 100644 src/IconSignalCellularNoSimOutlined.tsx create mode 100644 src/IconSignalCellularNoSimRound.tsx create mode 100644 src/IconSignalCellularNoSimSharp.tsx create mode 100644 src/IconSignalCellularNoSimTwoTone.tsx create mode 100644 src/IconSignalCellularNodataOutlined.tsx create mode 100644 src/IconSignalCellularNodataRound.tsx create mode 100644 src/IconSignalCellularNodataSharp.tsx create mode 100644 src/IconSignalCellularNodataTwoTone.tsx create mode 100644 src/IconSignalCellularNullOutlined.tsx create mode 100644 src/IconSignalCellularNullRound.tsx create mode 100644 src/IconSignalCellularNullSharp.tsx create mode 100644 src/IconSignalCellularNullTwoTone.tsx create mode 100644 src/IconSignalCellularOffOutlined.tsx create mode 100644 src/IconSignalCellularOffRound.tsx create mode 100644 src/IconSignalCellularOffSharp.tsx create mode 100644 src/IconSignalCellularOffTwoTone.tsx create mode 100644 src/IconSignalWifi0BarOutlined.tsx create mode 100644 src/IconSignalWifi0BarRound.tsx create mode 100644 src/IconSignalWifi0BarSharp.tsx create mode 100644 src/IconSignalWifi0BarTwoTone.tsx create mode 100644 src/IconSignalWifi4BarLockOutlined.tsx create mode 100644 src/IconSignalWifi4BarLockRound.tsx create mode 100644 src/IconSignalWifi4BarLockSharp.tsx create mode 100644 src/IconSignalWifi4BarLockTwoTone.tsx create mode 100644 src/IconSignalWifi4BarOutlined.tsx create mode 100644 src/IconSignalWifi4BarRound.tsx create mode 100644 src/IconSignalWifi4BarSharp.tsx create mode 100644 src/IconSignalWifi4BarTwoTone.tsx create mode 100644 src/IconSignalWifiBadOutlined.tsx create mode 100644 src/IconSignalWifiBadRound.tsx create mode 100644 src/IconSignalWifiBadSharp.tsx create mode 100644 src/IconSignalWifiBadTwoTone.tsx create mode 100644 src/IconSignalWifiConnectedNoInternet4Outlined.tsx create mode 100644 src/IconSignalWifiConnectedNoInternet4Round.tsx create mode 100644 src/IconSignalWifiConnectedNoInternet4Sharp.tsx create mode 100644 src/IconSignalWifiConnectedNoInternet4TwoTone.tsx create mode 100644 src/IconSignalWifiOffOutlined.tsx create mode 100644 src/IconSignalWifiOffRound.tsx create mode 100644 src/IconSignalWifiOffSharp.tsx create mode 100644 src/IconSignalWifiOffTwoTone.tsx create mode 100644 src/IconSignalWifiStatusbar4BarOutlined.tsx create mode 100644 src/IconSignalWifiStatusbar4BarRound.tsx create mode 100644 src/IconSignalWifiStatusbar4BarSharp.tsx create mode 100644 src/IconSignalWifiStatusbar4BarTwoTone.tsx create mode 100644 src/IconSignalWifiStatusbarConnectedNoInternet4Outlined.tsx create mode 100644 src/IconSignalWifiStatusbarConnectedNoInternet4Round.tsx create mode 100644 src/IconSignalWifiStatusbarConnectedNoInternet4Sharp.tsx create mode 100644 src/IconSignalWifiStatusbarConnectedNoInternet4TwoTone.tsx create mode 100644 src/IconSignalWifiStatusbarNullOutlined.tsx create mode 100644 src/IconSignalWifiStatusbarNullRound.tsx create mode 100644 src/IconSignalWifiStatusbarNullSharp.tsx create mode 100644 src/IconSignalWifiStatusbarNullTwoTone.tsx create mode 100644 src/IconSignpostOutlined.tsx create mode 100644 src/IconSignpostRound.tsx create mode 100644 src/IconSignpostSharp.tsx create mode 100644 src/IconSignpostTwoTone.tsx create mode 100644 src/IconSimCardAlertOutlined.tsx create mode 100644 src/IconSimCardAlertRound.tsx create mode 100644 src/IconSimCardAlertSharp.tsx create mode 100644 src/IconSimCardAlertTwoTone.tsx create mode 100644 src/IconSimCardDownloadOutlined.tsx create mode 100644 src/IconSimCardDownloadRound.tsx create mode 100644 src/IconSimCardDownloadSharp.tsx create mode 100644 src/IconSimCardDownloadTwoTone.tsx create mode 100644 src/IconSimCardOutlined.tsx create mode 100644 src/IconSimCardRound.tsx create mode 100644 src/IconSimCardSharp.tsx create mode 100644 src/IconSimCardTwoTone.tsx create mode 100644 src/IconSingleBedOutlined.tsx create mode 100644 src/IconSingleBedRound.tsx create mode 100644 src/IconSingleBedSharp.tsx create mode 100644 src/IconSingleBedTwoTone.tsx create mode 100644 src/IconSipOutlined.tsx create mode 100644 src/IconSipRound.tsx create mode 100644 src/IconSipSharp.tsx create mode 100644 src/IconSipTwoTone.tsx create mode 100644 src/IconSkateboardingOutlined.tsx create mode 100644 src/IconSkateboardingRound.tsx create mode 100644 src/IconSkateboardingSharp.tsx create mode 100644 src/IconSkateboardingTwoTone.tsx create mode 100644 src/IconSkipNextOutlined.tsx create mode 100644 src/IconSkipNextRound.tsx create mode 100644 src/IconSkipNextSharp.tsx create mode 100644 src/IconSkipNextTwoTone.tsx create mode 100644 src/IconSkipPreviousOutlined.tsx create mode 100644 src/IconSkipPreviousRound.tsx create mode 100644 src/IconSkipPreviousSharp.tsx create mode 100644 src/IconSkipPreviousTwoTone.tsx create mode 100644 src/IconSleddingOutlined.tsx create mode 100644 src/IconSleddingRound.tsx create mode 100644 src/IconSleddingSharp.tsx create mode 100644 src/IconSleddingTwoTone.tsx create mode 100644 src/IconSlideshowOutlined.tsx create mode 100644 src/IconSlideshowRound.tsx create mode 100644 src/IconSlideshowSharp.tsx create mode 100644 src/IconSlideshowTwoTone.tsx create mode 100644 src/IconSlowMotionVideoOutlined.tsx create mode 100644 src/IconSlowMotionVideoRound.tsx create mode 100644 src/IconSlowMotionVideoSharp.tsx create mode 100644 src/IconSlowMotionVideoTwoTone.tsx create mode 100644 src/IconSmartButtonOutlined.tsx create mode 100644 src/IconSmartButtonRound.tsx create mode 100644 src/IconSmartButtonSharp.tsx create mode 100644 src/IconSmartButtonTwoTone.tsx create mode 100644 src/IconSmartDisplayOutlined.tsx create mode 100644 src/IconSmartDisplayRound.tsx create mode 100644 src/IconSmartDisplaySharp.tsx create mode 100644 src/IconSmartDisplayTwoTone.tsx create mode 100644 src/IconSmartScreenOutlined.tsx create mode 100644 src/IconSmartScreenRound.tsx create mode 100644 src/IconSmartScreenSharp.tsx create mode 100644 src/IconSmartScreenTwoTone.tsx create mode 100644 src/IconSmartToyOutlined.tsx create mode 100644 src/IconSmartToyRound.tsx create mode 100644 src/IconSmartToySharp.tsx create mode 100644 src/IconSmartToyTwoTone.tsx create mode 100644 src/IconSmartphoneOutlined.tsx create mode 100644 src/IconSmartphoneRound.tsx create mode 100644 src/IconSmartphoneSharp.tsx create mode 100644 src/IconSmartphoneTwoTone.tsx create mode 100644 src/IconSmokeFreeOutlined.tsx create mode 100644 src/IconSmokeFreeRound.tsx create mode 100644 src/IconSmokeFreeSharp.tsx create mode 100644 src/IconSmokeFreeTwoTone.tsx create mode 100644 src/IconSmokingRoomsOutlined.tsx create mode 100644 src/IconSmokingRoomsRound.tsx create mode 100644 src/IconSmokingRoomsSharp.tsx create mode 100644 src/IconSmokingRoomsTwoTone.tsx create mode 100644 src/IconSmsFailedOutlined.tsx create mode 100644 src/IconSmsFailedRound.tsx create mode 100644 src/IconSmsFailedSharp.tsx create mode 100644 src/IconSmsFailedTwoTone.tsx create mode 100644 src/IconSmsOutlined.tsx create mode 100644 src/IconSmsRound.tsx create mode 100644 src/IconSmsSharp.tsx create mode 100644 src/IconSmsTwoTone.tsx create mode 100644 src/IconSnippetFolderOutlined.tsx create mode 100644 src/IconSnippetFolderRound.tsx create mode 100644 src/IconSnippetFolderSharp.tsx create mode 100644 src/IconSnippetFolderTwoTone.tsx create mode 100644 src/IconSnoozeOutlined.tsx create mode 100644 src/IconSnoozeRound.tsx create mode 100644 src/IconSnoozeSharp.tsx create mode 100644 src/IconSnoozeTwoTone.tsx create mode 100644 src/IconSnowboardingOutlined.tsx create mode 100644 src/IconSnowboardingRound.tsx create mode 100644 src/IconSnowboardingSharp.tsx create mode 100644 src/IconSnowboardingTwoTone.tsx create mode 100644 src/IconSnowmobileOutlined.tsx create mode 100644 src/IconSnowmobileRound.tsx create mode 100644 src/IconSnowmobileSharp.tsx create mode 100644 src/IconSnowmobileTwoTone.tsx create mode 100644 src/IconSnowshoeingOutlined.tsx create mode 100644 src/IconSnowshoeingRound.tsx create mode 100644 src/IconSnowshoeingSharp.tsx create mode 100644 src/IconSnowshoeingTwoTone.tsx create mode 100644 src/IconSoapOutlined.tsx create mode 100644 src/IconSoapRound.tsx create mode 100644 src/IconSoapSharp.tsx create mode 100644 src/IconSoapTwoTone.tsx create mode 100644 src/IconSocialDistanceOutlined.tsx create mode 100644 src/IconSocialDistanceRound.tsx create mode 100644 src/IconSocialDistanceSharp.tsx create mode 100644 src/IconSocialDistanceTwoTone.tsx create mode 100644 src/IconSolarPowerOutlined.tsx create mode 100644 src/IconSolarPowerRound.tsx create mode 100644 src/IconSolarPowerSharp.tsx create mode 100644 src/IconSolarPowerTwoTone.tsx create mode 100644 src/IconSortByAlphaOutlined.tsx create mode 100644 src/IconSortByAlphaRound.tsx create mode 100644 src/IconSortByAlphaSharp.tsx create mode 100644 src/IconSortByAlphaTwoTone.tsx create mode 100644 src/IconSortOutlined.tsx create mode 100644 src/IconSortRound.tsx create mode 100644 src/IconSortSharp.tsx create mode 100644 src/IconSortTwoTone.tsx create mode 100644 src/IconSosOutlined.tsx create mode 100644 src/IconSosRound.tsx create mode 100644 src/IconSosSharp.tsx create mode 100644 src/IconSosTwoTone.tsx create mode 100644 src/IconSoupKitchenOutlined.tsx create mode 100644 src/IconSoupKitchenRound.tsx create mode 100644 src/IconSoupKitchenSharp.tsx create mode 100644 src/IconSoupKitchenTwoTone.tsx create mode 100644 src/IconSourceOutlined.tsx create mode 100644 src/IconSourceRound.tsx create mode 100644 src/IconSourceSharp.tsx create mode 100644 src/IconSourceTwoTone.tsx create mode 100644 src/IconSouthAmericaOutlined.tsx create mode 100644 src/IconSouthAmericaRound.tsx create mode 100644 src/IconSouthAmericaSharp.tsx create mode 100644 src/IconSouthAmericaTwoTone.tsx create mode 100644 src/IconSouthEastOutlined.tsx create mode 100644 src/IconSouthEastRound.tsx create mode 100644 src/IconSouthEastSharp.tsx create mode 100644 src/IconSouthEastTwoTone.tsx create mode 100644 src/IconSouthOutlined.tsx create mode 100644 src/IconSouthRound.tsx create mode 100644 src/IconSouthSharp.tsx create mode 100644 src/IconSouthTwoTone.tsx create mode 100644 src/IconSouthWestOutlined.tsx create mode 100644 src/IconSouthWestRound.tsx create mode 100644 src/IconSouthWestSharp.tsx create mode 100644 src/IconSouthWestTwoTone.tsx create mode 100644 src/IconSpaOutlined.tsx create mode 100644 src/IconSpaRound.tsx create mode 100644 src/IconSpaSharp.tsx create mode 100644 src/IconSpaTwoTone.tsx create mode 100644 src/IconSpaceBarOutlined.tsx create mode 100644 src/IconSpaceBarRound.tsx create mode 100644 src/IconSpaceBarSharp.tsx create mode 100644 src/IconSpaceBarTwoTone.tsx create mode 100644 src/IconSpaceDashboardOutlined.tsx create mode 100644 src/IconSpaceDashboardRound.tsx create mode 100644 src/IconSpaceDashboardSharp.tsx create mode 100644 src/IconSpaceDashboardTwoTone.tsx create mode 100644 src/IconSpatialAudioOffOutlined.tsx create mode 100644 src/IconSpatialAudioOffRound.tsx create mode 100644 src/IconSpatialAudioOffSharp.tsx create mode 100644 src/IconSpatialAudioOffTwoTone.tsx create mode 100644 src/IconSpatialAudioOutlined.tsx create mode 100644 src/IconSpatialAudioRound.tsx create mode 100644 src/IconSpatialAudioSharp.tsx create mode 100644 src/IconSpatialAudioTwoTone.tsx create mode 100644 src/IconSpatialTrackingOutlined.tsx create mode 100644 src/IconSpatialTrackingRound.tsx create mode 100644 src/IconSpatialTrackingSharp.tsx create mode 100644 src/IconSpatialTrackingTwoTone.tsx create mode 100644 src/IconSpeakerGroupOutlined.tsx create mode 100644 src/IconSpeakerGroupRound.tsx create mode 100644 src/IconSpeakerGroupSharp.tsx create mode 100644 src/IconSpeakerGroupTwoTone.tsx create mode 100644 src/IconSpeakerNotesOffOutlined.tsx create mode 100644 src/IconSpeakerNotesOffRound.tsx create mode 100644 src/IconSpeakerNotesOffSharp.tsx create mode 100644 src/IconSpeakerNotesOffTwoTone.tsx create mode 100644 src/IconSpeakerNotesOutlined.tsx create mode 100644 src/IconSpeakerNotesRound.tsx create mode 100644 src/IconSpeakerNotesSharp.tsx create mode 100644 src/IconSpeakerNotesTwoTone.tsx create mode 100644 src/IconSpeakerOutlined.tsx create mode 100644 src/IconSpeakerPhoneOutlined.tsx create mode 100644 src/IconSpeakerPhoneRound.tsx create mode 100644 src/IconSpeakerPhoneSharp.tsx create mode 100644 src/IconSpeakerPhoneTwoTone.tsx create mode 100644 src/IconSpeakerRound.tsx create mode 100644 src/IconSpeakerSharp.tsx create mode 100644 src/IconSpeakerTwoTone.tsx create mode 100644 src/IconSpeedOutlined.tsx create mode 100644 src/IconSpeedRound.tsx create mode 100644 src/IconSpeedSharp.tsx create mode 100644 src/IconSpeedTwoTone.tsx create mode 100644 src/IconSpellcheckOutlined.tsx create mode 100644 src/IconSpellcheckRound.tsx create mode 100644 src/IconSpellcheckSharp.tsx create mode 100644 src/IconSpellcheckTwoTone.tsx create mode 100644 src/IconSplitscreenOutlined.tsx create mode 100644 src/IconSplitscreenRound.tsx create mode 100644 src/IconSplitscreenSharp.tsx create mode 100644 src/IconSplitscreenTwoTone.tsx create mode 100644 src/IconSpokeOutlined.tsx create mode 100644 src/IconSpokeRound.tsx create mode 100644 src/IconSpokeSharp.tsx create mode 100644 src/IconSpokeTwoTone.tsx create mode 100644 src/IconSportsBarOutlined.tsx create mode 100644 src/IconSportsBarRound.tsx create mode 100644 src/IconSportsBarSharp.tsx create mode 100644 src/IconSportsBarTwoTone.tsx create mode 100644 src/IconSportsBaseballOutlined.tsx create mode 100644 src/IconSportsBaseballRound.tsx create mode 100644 src/IconSportsBaseballSharp.tsx create mode 100644 src/IconSportsBaseballTwoTone.tsx create mode 100644 src/IconSportsBasketballOutlined.tsx create mode 100644 src/IconSportsBasketballRound.tsx create mode 100644 src/IconSportsBasketballSharp.tsx create mode 100644 src/IconSportsBasketballTwoTone.tsx create mode 100644 src/IconSportsCricketOutlined.tsx create mode 100644 src/IconSportsCricketRound.tsx create mode 100644 src/IconSportsCricketSharp.tsx create mode 100644 src/IconSportsCricketTwoTone.tsx create mode 100644 src/IconSportsEsportsOutlined.tsx create mode 100644 src/IconSportsEsportsRound.tsx create mode 100644 src/IconSportsEsportsSharp.tsx create mode 100644 src/IconSportsEsportsTwoTone.tsx create mode 100644 src/IconSportsFootballOutlined.tsx create mode 100644 src/IconSportsFootballRound.tsx create mode 100644 src/IconSportsFootballSharp.tsx create mode 100644 src/IconSportsFootballTwoTone.tsx create mode 100644 src/IconSportsGolfOutlined.tsx create mode 100644 src/IconSportsGolfRound.tsx create mode 100644 src/IconSportsGolfSharp.tsx create mode 100644 src/IconSportsGolfTwoTone.tsx create mode 100644 src/IconSportsGymnasticsOutlined.tsx create mode 100644 src/IconSportsGymnasticsRound.tsx create mode 100644 src/IconSportsGymnasticsSharp.tsx create mode 100644 src/IconSportsGymnasticsTwoTone.tsx create mode 100644 src/IconSportsHandballOutlined.tsx create mode 100644 src/IconSportsHandballRound.tsx create mode 100644 src/IconSportsHandballSharp.tsx create mode 100644 src/IconSportsHandballTwoTone.tsx create mode 100644 src/IconSportsHockeyOutlined.tsx create mode 100644 src/IconSportsHockeyRound.tsx create mode 100644 src/IconSportsHockeySharp.tsx create mode 100644 src/IconSportsHockeyTwoTone.tsx create mode 100644 src/IconSportsKabaddiOutlined.tsx create mode 100644 src/IconSportsKabaddiRound.tsx create mode 100644 src/IconSportsKabaddiSharp.tsx create mode 100644 src/IconSportsKabaddiTwoTone.tsx create mode 100644 src/IconSportsMartialArtsOutlined.tsx create mode 100644 src/IconSportsMartialArtsRound.tsx create mode 100644 src/IconSportsMartialArtsSharp.tsx create mode 100644 src/IconSportsMartialArtsTwoTone.tsx create mode 100644 src/IconSportsMmaOutlined.tsx create mode 100644 src/IconSportsMmaRound.tsx create mode 100644 src/IconSportsMmaSharp.tsx create mode 100644 src/IconSportsMmaTwoTone.tsx create mode 100644 src/IconSportsMotorsportsOutlined.tsx create mode 100644 src/IconSportsMotorsportsRound.tsx create mode 100644 src/IconSportsMotorsportsSharp.tsx create mode 100644 src/IconSportsMotorsportsTwoTone.tsx create mode 100644 src/IconSportsOutlined.tsx create mode 100644 src/IconSportsRound.tsx create mode 100644 src/IconSportsRugbyOutlined.tsx create mode 100644 src/IconSportsRugbyRound.tsx create mode 100644 src/IconSportsRugbySharp.tsx create mode 100644 src/IconSportsRugbyTwoTone.tsx create mode 100644 src/IconSportsScoreOutlined.tsx create mode 100644 src/IconSportsScoreRound.tsx create mode 100644 src/IconSportsScoreSharp.tsx create mode 100644 src/IconSportsScoreTwoTone.tsx create mode 100644 src/IconSportsSharp.tsx create mode 100644 src/IconSportsSoccerOutlined.tsx create mode 100644 src/IconSportsSoccerRound.tsx create mode 100644 src/IconSportsSoccerSharp.tsx create mode 100644 src/IconSportsSoccerTwoTone.tsx create mode 100644 src/IconSportsTennisOutlined.tsx create mode 100644 src/IconSportsTennisRound.tsx create mode 100644 src/IconSportsTennisSharp.tsx create mode 100644 src/IconSportsTennisTwoTone.tsx create mode 100644 src/IconSportsTwoTone.tsx create mode 100644 src/IconSportsVolleyballOutlined.tsx create mode 100644 src/IconSportsVolleyballRound.tsx create mode 100644 src/IconSportsVolleyballSharp.tsx create mode 100644 src/IconSportsVolleyballTwoTone.tsx create mode 100644 src/IconSquareFootOutlined.tsx create mode 100644 src/IconSquareFootRound.tsx create mode 100644 src/IconSquareFootSharp.tsx create mode 100644 src/IconSquareFootTwoTone.tsx create mode 100644 src/IconSquareOutlined.tsx create mode 100644 src/IconSquareRound.tsx create mode 100644 src/IconSquareSharp.tsx create mode 100644 src/IconSquareTwoTone.tsx create mode 100644 src/IconSsidChartOutlined.tsx create mode 100644 src/IconSsidChartRound.tsx create mode 100644 src/IconSsidChartSharp.tsx create mode 100644 src/IconSsidChartTwoTone.tsx create mode 100644 src/IconStackedBarChartOutlined.tsx create mode 100644 src/IconStackedBarChartRound.tsx create mode 100644 src/IconStackedBarChartSharp.tsx create mode 100644 src/IconStackedBarChartTwoTone.tsx create mode 100644 src/IconStackedLineChartOutlined.tsx create mode 100644 src/IconStackedLineChartRound.tsx create mode 100644 src/IconStackedLineChartSharp.tsx create mode 100644 src/IconStackedLineChartTwoTone.tsx create mode 100644 src/IconStadiumOutlined.tsx create mode 100644 src/IconStadiumRound.tsx create mode 100644 src/IconStadiumSharp.tsx create mode 100644 src/IconStadiumTwoTone.tsx create mode 100644 src/IconStairsOutlined.tsx create mode 100644 src/IconStairsRound.tsx create mode 100644 src/IconStairsSharp.tsx create mode 100644 src/IconStairsTwoTone.tsx create mode 100644 src/IconStarBorderOutlined.tsx create mode 100644 src/IconStarBorderPurple500Outlined.tsx create mode 100644 src/IconStarBorderPurple500Round.tsx create mode 100644 src/IconStarBorderPurple500Sharp.tsx create mode 100644 src/IconStarBorderPurple500TwoTone.tsx create mode 100644 src/IconStarBorderRound.tsx create mode 100644 src/IconStarBorderSharp.tsx create mode 100644 src/IconStarBorderTwoTone.tsx create mode 100644 src/IconStarHalfOutlined.tsx create mode 100644 src/IconStarHalfRound.tsx create mode 100644 src/IconStarHalfSharp.tsx create mode 100644 src/IconStarHalfTwoTone.tsx create mode 100644 src/IconStarOutlineOutlined.tsx create mode 100644 src/IconStarOutlineRound.tsx create mode 100644 src/IconStarOutlineSharp.tsx create mode 100644 src/IconStarOutlineTwoTone.tsx create mode 100644 src/IconStarOutlined.tsx create mode 100644 src/IconStarPurple500Outlined.tsx create mode 100644 src/IconStarPurple500Round.tsx create mode 100644 src/IconStarPurple500Sharp.tsx create mode 100644 src/IconStarPurple500TwoTone.tsx create mode 100644 src/IconStarRateOutlined.tsx create mode 100644 src/IconStarRateRound.tsx create mode 100644 src/IconStarRateSharp.tsx create mode 100644 src/IconStarRateTwoTone.tsx create mode 100644 src/IconStarRound.tsx create mode 100644 src/IconStarSharp.tsx create mode 100644 src/IconStarTwoTone.tsx create mode 100644 src/IconStarsOutlined.tsx create mode 100644 src/IconStarsRound.tsx create mode 100644 src/IconStarsSharp.tsx create mode 100644 src/IconStarsTwoTone.tsx create mode 100644 src/IconStartOutlined.tsx create mode 100644 src/IconStartRound.tsx create mode 100644 src/IconStartSharp.tsx create mode 100644 src/IconStartTwoTone.tsx create mode 100644 src/IconStayCurrentLandscapeOutlined.tsx create mode 100644 src/IconStayCurrentLandscapeRound.tsx create mode 100644 src/IconStayCurrentLandscapeSharp.tsx create mode 100644 src/IconStayCurrentLandscapeTwoTone.tsx create mode 100644 src/IconStayCurrentPortraitOutlined.tsx create mode 100644 src/IconStayCurrentPortraitRound.tsx create mode 100644 src/IconStayCurrentPortraitSharp.tsx create mode 100644 src/IconStayCurrentPortraitTwoTone.tsx create mode 100644 src/IconStayPrimaryLandscapeOutlined.tsx create mode 100644 src/IconStayPrimaryLandscapeRound.tsx create mode 100644 src/IconStayPrimaryLandscapeSharp.tsx create mode 100644 src/IconStayPrimaryLandscapeTwoTone.tsx create mode 100644 src/IconStayPrimaryPortraitOutlined.tsx create mode 100644 src/IconStayPrimaryPortraitRound.tsx create mode 100644 src/IconStayPrimaryPortraitSharp.tsx create mode 100644 src/IconStayPrimaryPortraitTwoTone.tsx create mode 100644 src/IconStickyNote2Outlined.tsx create mode 100644 src/IconStickyNote2Round.tsx create mode 100644 src/IconStickyNote2Sharp.tsx create mode 100644 src/IconStickyNote2TwoTone.tsx create mode 100644 src/IconStopCircleOutlined.tsx create mode 100644 src/IconStopCircleRound.tsx create mode 100644 src/IconStopCircleSharp.tsx create mode 100644 src/IconStopCircleTwoTone.tsx create mode 100644 src/IconStopOutlined.tsx create mode 100644 src/IconStopRound.tsx create mode 100644 src/IconStopScreenShareOutlined.tsx create mode 100644 src/IconStopScreenShareRound.tsx create mode 100644 src/IconStopScreenShareSharp.tsx create mode 100644 src/IconStopScreenShareTwoTone.tsx create mode 100644 src/IconStopSharp.tsx create mode 100644 src/IconStopTwoTone.tsx create mode 100644 src/IconStorageOutlined.tsx create mode 100644 src/IconStorageRound.tsx create mode 100644 src/IconStorageSharp.tsx create mode 100644 src/IconStorageTwoTone.tsx create mode 100644 src/IconStoreMallDirectoryOutlined.tsx create mode 100644 src/IconStoreMallDirectoryRound.tsx create mode 100644 src/IconStoreMallDirectorySharp.tsx create mode 100644 src/IconStoreMallDirectoryTwoTone.tsx create mode 100644 src/IconStoreOutlined.tsx create mode 100644 src/IconStoreRound.tsx create mode 100644 src/IconStoreSharp.tsx create mode 100644 src/IconStoreTwoTone.tsx create mode 100644 src/IconStorefrontOutlined.tsx create mode 100644 src/IconStorefrontRound.tsx create mode 100644 src/IconStorefrontSharp.tsx create mode 100644 src/IconStorefrontTwoTone.tsx create mode 100644 src/IconStormOutlined.tsx create mode 100644 src/IconStormRound.tsx create mode 100644 src/IconStormSharp.tsx create mode 100644 src/IconStormTwoTone.tsx create mode 100644 src/IconStraightOutlined.tsx create mode 100644 src/IconStraightRound.tsx create mode 100644 src/IconStraightSharp.tsx create mode 100644 src/IconStraightTwoTone.tsx create mode 100644 src/IconStraightenOutlined.tsx create mode 100644 src/IconStraightenRound.tsx create mode 100644 src/IconStraightenSharp.tsx create mode 100644 src/IconStraightenTwoTone.tsx create mode 100644 src/IconStreamOutlined.tsx create mode 100644 src/IconStreamRound.tsx create mode 100644 src/IconStreamSharp.tsx create mode 100644 src/IconStreamTwoTone.tsx create mode 100644 src/IconStreetviewOutlined.tsx create mode 100644 src/IconStreetviewRound.tsx create mode 100644 src/IconStreetviewSharp.tsx create mode 100644 src/IconStreetviewTwoTone.tsx create mode 100644 src/IconStrikethroughSOutlined.tsx create mode 100644 src/IconStrikethroughSRound.tsx create mode 100644 src/IconStrikethroughSSharp.tsx create mode 100644 src/IconStrikethroughSTwoTone.tsx create mode 100644 src/IconStrollerOutlined.tsx create mode 100644 src/IconStrollerRound.tsx create mode 100644 src/IconStrollerSharp.tsx create mode 100644 src/IconStrollerTwoTone.tsx create mode 100644 src/IconStyleOutlined.tsx create mode 100644 src/IconStyleRound.tsx create mode 100644 src/IconStyleSharp.tsx create mode 100644 src/IconStyleTwoTone.tsx create mode 100644 src/IconSubdirectoryArrowLeftOutlined.tsx create mode 100644 src/IconSubdirectoryArrowLeftRound.tsx create mode 100644 src/IconSubdirectoryArrowLeftSharp.tsx create mode 100644 src/IconSubdirectoryArrowLeftTwoTone.tsx create mode 100644 src/IconSubdirectoryArrowRightOutlined.tsx create mode 100644 src/IconSubdirectoryArrowRightRound.tsx create mode 100644 src/IconSubdirectoryArrowRightSharp.tsx create mode 100644 src/IconSubdirectoryArrowRightTwoTone.tsx create mode 100644 src/IconSubjectOutlined.tsx create mode 100644 src/IconSubjectRound.tsx create mode 100644 src/IconSubjectSharp.tsx create mode 100644 src/IconSubjectTwoTone.tsx create mode 100644 src/IconSubscriptOutlined.tsx create mode 100644 src/IconSubscriptRound.tsx create mode 100644 src/IconSubscriptSharp.tsx create mode 100644 src/IconSubscriptTwoTone.tsx create mode 100644 src/IconSubscriptionsOutlined.tsx create mode 100644 src/IconSubscriptionsRound.tsx create mode 100644 src/IconSubscriptionsSharp.tsx create mode 100644 src/IconSubscriptionsTwoTone.tsx create mode 100644 src/IconSubtitlesOffOutlined.tsx create mode 100644 src/IconSubtitlesOffRound.tsx create mode 100644 src/IconSubtitlesOffSharp.tsx create mode 100644 src/IconSubtitlesOffTwoTone.tsx create mode 100644 src/IconSubtitlesOutlined.tsx create mode 100644 src/IconSubtitlesRound.tsx create mode 100644 src/IconSubtitlesSharp.tsx create mode 100644 src/IconSubtitlesTwoTone.tsx create mode 100644 src/IconSubwayOutlined.tsx create mode 100644 src/IconSubwayRound.tsx create mode 100644 src/IconSubwaySharp.tsx create mode 100644 src/IconSubwayTwoTone.tsx create mode 100644 src/IconSummarizeOutlined.tsx create mode 100644 src/IconSummarizeRound.tsx create mode 100644 src/IconSummarizeSharp.tsx create mode 100644 src/IconSummarizeTwoTone.tsx create mode 100644 src/IconSuperscriptOutlined.tsx create mode 100644 src/IconSuperscriptRound.tsx create mode 100644 src/IconSuperscriptSharp.tsx create mode 100644 src/IconSuperscriptTwoTone.tsx create mode 100644 src/IconSupervisedUserCircleOutlined.tsx create mode 100644 src/IconSupervisedUserCircleRound.tsx create mode 100644 src/IconSupervisedUserCircleSharp.tsx create mode 100644 src/IconSupervisedUserCircleTwoTone.tsx create mode 100644 src/IconSupervisorAccountOutlined.tsx create mode 100644 src/IconSupervisorAccountRound.tsx create mode 100644 src/IconSupervisorAccountSharp.tsx create mode 100644 src/IconSupervisorAccountTwoTone.tsx create mode 100644 src/IconSupportAgentOutlined.tsx create mode 100644 src/IconSupportAgentRound.tsx create mode 100644 src/IconSupportAgentSharp.tsx create mode 100644 src/IconSupportAgentTwoTone.tsx create mode 100644 src/IconSupportOutlined.tsx create mode 100644 src/IconSupportRound.tsx create mode 100644 src/IconSupportSharp.tsx create mode 100644 src/IconSupportTwoTone.tsx create mode 100644 src/IconSurfingOutlined.tsx create mode 100644 src/IconSurfingRound.tsx create mode 100644 src/IconSurfingSharp.tsx create mode 100644 src/IconSurfingTwoTone.tsx create mode 100644 src/IconSurroundSoundOutlined.tsx create mode 100644 src/IconSurroundSoundRound.tsx create mode 100644 src/IconSurroundSoundSharp.tsx create mode 100644 src/IconSurroundSoundTwoTone.tsx create mode 100644 src/IconSwapCallsOutlined.tsx create mode 100644 src/IconSwapCallsRound.tsx create mode 100644 src/IconSwapCallsSharp.tsx create mode 100644 src/IconSwapCallsTwoTone.tsx create mode 100644 src/IconSwapHorizOutlined.tsx create mode 100644 src/IconSwapHorizRound.tsx create mode 100644 src/IconSwapHorizSharp.tsx create mode 100644 src/IconSwapHorizTwoTone.tsx create mode 100644 src/IconSwapHorizontalCircleOutlined.tsx create mode 100644 src/IconSwapHorizontalCircleRound.tsx create mode 100644 src/IconSwapHorizontalCircleSharp.tsx create mode 100644 src/IconSwapHorizontalCircleTwoTone.tsx create mode 100644 src/IconSwapVertOutlined.tsx create mode 100644 src/IconSwapVertRound.tsx create mode 100644 src/IconSwapVertSharp.tsx create mode 100644 src/IconSwapVertTwoTone.tsx create mode 100644 src/IconSwapVerticalCircleOutlined.tsx create mode 100644 src/IconSwapVerticalCircleRound.tsx create mode 100644 src/IconSwapVerticalCircleSharp.tsx create mode 100644 src/IconSwapVerticalCircleTwoTone.tsx create mode 100644 src/IconSwipeDownAltOutlined.tsx create mode 100644 src/IconSwipeDownAltRound.tsx create mode 100644 src/IconSwipeDownAltSharp.tsx create mode 100644 src/IconSwipeDownAltTwoTone.tsx create mode 100644 src/IconSwipeDownOutlined.tsx create mode 100644 src/IconSwipeDownRound.tsx create mode 100644 src/IconSwipeDownSharp.tsx create mode 100644 src/IconSwipeDownTwoTone.tsx create mode 100644 src/IconSwipeLeftAltOutlined.tsx create mode 100644 src/IconSwipeLeftAltRound.tsx create mode 100644 src/IconSwipeLeftAltSharp.tsx create mode 100644 src/IconSwipeLeftAltTwoTone.tsx create mode 100644 src/IconSwipeLeftOutlined.tsx create mode 100644 src/IconSwipeLeftRound.tsx create mode 100644 src/IconSwipeLeftSharp.tsx create mode 100644 src/IconSwipeLeftTwoTone.tsx create mode 100644 src/IconSwipeOutlined.tsx create mode 100644 src/IconSwipeRightAltOutlined.tsx create mode 100644 src/IconSwipeRightAltRound.tsx create mode 100644 src/IconSwipeRightAltSharp.tsx create mode 100644 src/IconSwipeRightAltTwoTone.tsx create mode 100644 src/IconSwipeRightOutlined.tsx create mode 100644 src/IconSwipeRightRound.tsx create mode 100644 src/IconSwipeRightSharp.tsx create mode 100644 src/IconSwipeRightTwoTone.tsx create mode 100644 src/IconSwipeRound.tsx create mode 100644 src/IconSwipeSharp.tsx create mode 100644 src/IconSwipeTwoTone.tsx create mode 100644 src/IconSwipeUpAltOutlined.tsx create mode 100644 src/IconSwipeUpAltRound.tsx create mode 100644 src/IconSwipeUpAltSharp.tsx create mode 100644 src/IconSwipeUpAltTwoTone.tsx create mode 100644 src/IconSwipeUpOutlined.tsx create mode 100644 src/IconSwipeUpRound.tsx create mode 100644 src/IconSwipeUpSharp.tsx create mode 100644 src/IconSwipeUpTwoTone.tsx create mode 100644 src/IconSwipeVerticalOutlined.tsx create mode 100644 src/IconSwipeVerticalRound.tsx create mode 100644 src/IconSwipeVerticalSharp.tsx create mode 100644 src/IconSwipeVerticalTwoTone.tsx create mode 100644 src/IconSwitchAccessShortcutAddOutlined.tsx create mode 100644 src/IconSwitchAccessShortcutAddRound.tsx create mode 100644 src/IconSwitchAccessShortcutAddSharp.tsx create mode 100644 src/IconSwitchAccessShortcutAddTwoTone.tsx create mode 100644 src/IconSwitchAccessShortcutOutlined.tsx create mode 100644 src/IconSwitchAccessShortcutRound.tsx create mode 100644 src/IconSwitchAccessShortcutSharp.tsx create mode 100644 src/IconSwitchAccessShortcutTwoTone.tsx create mode 100644 src/IconSwitchAccountOutlined.tsx create mode 100644 src/IconSwitchAccountRound.tsx create mode 100644 src/IconSwitchAccountSharp.tsx create mode 100644 src/IconSwitchAccountTwoTone.tsx create mode 100644 src/IconSwitchCameraOutlined.tsx create mode 100644 src/IconSwitchCameraRound.tsx create mode 100644 src/IconSwitchCameraSharp.tsx create mode 100644 src/IconSwitchCameraTwoTone.tsx create mode 100644 src/IconSwitchLeftOutlined.tsx create mode 100644 src/IconSwitchLeftRound.tsx create mode 100644 src/IconSwitchLeftSharp.tsx create mode 100644 src/IconSwitchLeftTwoTone.tsx create mode 100644 src/IconSwitchRightOutlined.tsx create mode 100644 src/IconSwitchRightRound.tsx create mode 100644 src/IconSwitchRightSharp.tsx create mode 100644 src/IconSwitchRightTwoTone.tsx create mode 100644 src/IconSwitchVideoOutlined.tsx create mode 100644 src/IconSwitchVideoRound.tsx create mode 100644 src/IconSwitchVideoSharp.tsx create mode 100644 src/IconSwitchVideoTwoTone.tsx create mode 100644 src/IconSynagogueOutlined.tsx create mode 100644 src/IconSynagogueRound.tsx create mode 100644 src/IconSynagogueSharp.tsx create mode 100644 src/IconSynagogueTwoTone.tsx create mode 100644 src/IconSyncAltOutlined.tsx create mode 100644 src/IconSyncAltRound.tsx create mode 100644 src/IconSyncAltSharp.tsx create mode 100644 src/IconSyncAltTwoTone.tsx create mode 100644 src/IconSyncDisabledOutlined.tsx create mode 100644 src/IconSyncDisabledRound.tsx create mode 100644 src/IconSyncDisabledSharp.tsx create mode 100644 src/IconSyncDisabledTwoTone.tsx create mode 100644 src/IconSyncLockOutlined.tsx create mode 100644 src/IconSyncLockRound.tsx create mode 100644 src/IconSyncLockSharp.tsx create mode 100644 src/IconSyncLockTwoTone.tsx create mode 100644 src/IconSyncOutlined.tsx create mode 100644 src/IconSyncProblemOutlined.tsx create mode 100644 src/IconSyncProblemRound.tsx create mode 100644 src/IconSyncProblemSharp.tsx create mode 100644 src/IconSyncProblemTwoTone.tsx create mode 100644 src/IconSyncRound.tsx create mode 100644 src/IconSyncSharp.tsx create mode 100644 src/IconSyncTwoTone.tsx create mode 100644 src/IconSystemSecurityUpdateGoodOutlined.tsx create mode 100644 src/IconSystemSecurityUpdateGoodRound.tsx create mode 100644 src/IconSystemSecurityUpdateGoodSharp.tsx create mode 100644 src/IconSystemSecurityUpdateGoodTwoTone.tsx create mode 100644 src/IconSystemSecurityUpdateOutlined.tsx create mode 100644 src/IconSystemSecurityUpdateRound.tsx create mode 100644 src/IconSystemSecurityUpdateSharp.tsx create mode 100644 src/IconSystemSecurityUpdateTwoTone.tsx create mode 100644 src/IconSystemSecurityUpdateWarningOutlined.tsx create mode 100644 src/IconSystemSecurityUpdateWarningRound.tsx create mode 100644 src/IconSystemSecurityUpdateWarningSharp.tsx create mode 100644 src/IconSystemSecurityUpdateWarningTwoTone.tsx create mode 100644 src/IconSystemUpdateAltOutlined.tsx create mode 100644 src/IconSystemUpdateAltRound.tsx create mode 100644 src/IconSystemUpdateAltSharp.tsx create mode 100644 src/IconSystemUpdateAltTwoTone.tsx create mode 100644 src/IconSystemUpdateOutlined.tsx create mode 100644 src/IconSystemUpdateRound.tsx create mode 100644 src/IconSystemUpdateSharp.tsx create mode 100644 src/IconSystemUpdateTwoTone.tsx create mode 100644 src/IconTabOutlined.tsx create mode 100644 src/IconTabRound.tsx create mode 100644 src/IconTabSharp.tsx create mode 100644 src/IconTabTwoTone.tsx create mode 100644 src/IconTabUnselectedOutlined.tsx create mode 100644 src/IconTabUnselectedRound.tsx create mode 100644 src/IconTabUnselectedSharp.tsx create mode 100644 src/IconTabUnselectedTwoTone.tsx create mode 100644 src/IconTableBarOutlined.tsx create mode 100644 src/IconTableBarRound.tsx create mode 100644 src/IconTableBarSharp.tsx create mode 100644 src/IconTableBarTwoTone.tsx create mode 100644 src/IconTableChartOutlined.tsx create mode 100644 src/IconTableChartRound.tsx create mode 100644 src/IconTableChartSharp.tsx create mode 100644 src/IconTableChartTwoTone.tsx create mode 100644 src/IconTableRestaurantOutlined.tsx create mode 100644 src/IconTableRestaurantRound.tsx create mode 100644 src/IconTableRestaurantSharp.tsx create mode 100644 src/IconTableRestaurantTwoTone.tsx create mode 100644 src/IconTableRowsOutlined.tsx create mode 100644 src/IconTableRowsRound.tsx create mode 100644 src/IconTableRowsSharp.tsx create mode 100644 src/IconTableRowsTwoTone.tsx create mode 100644 src/IconTableViewOutlined.tsx create mode 100644 src/IconTableViewRound.tsx create mode 100644 src/IconTableViewSharp.tsx create mode 100644 src/IconTableViewTwoTone.tsx create mode 100644 src/IconTabletAndroidOutlined.tsx create mode 100644 src/IconTabletAndroidRound.tsx create mode 100644 src/IconTabletAndroidSharp.tsx create mode 100644 src/IconTabletAndroidTwoTone.tsx create mode 100644 src/IconTabletMacOutlined.tsx create mode 100644 src/IconTabletMacRound.tsx create mode 100644 src/IconTabletMacSharp.tsx create mode 100644 src/IconTabletMacTwoTone.tsx create mode 100644 src/IconTabletOutlined.tsx create mode 100644 src/IconTabletRound.tsx create mode 100644 src/IconTabletSharp.tsx create mode 100644 src/IconTabletTwoTone.tsx create mode 100644 src/IconTagFacesOutlined.tsx create mode 100644 src/IconTagFacesRound.tsx create mode 100644 src/IconTagFacesSharp.tsx create mode 100644 src/IconTagFacesTwoTone.tsx create mode 100644 src/IconTagOutlined.tsx create mode 100644 src/IconTagRound.tsx create mode 100644 src/IconTagSharp.tsx create mode 100644 src/IconTagTwoTone.tsx create mode 100644 src/IconTakeoutDiningOutlined.tsx create mode 100644 src/IconTakeoutDiningRound.tsx create mode 100644 src/IconTakeoutDiningSharp.tsx create mode 100644 src/IconTakeoutDiningTwoTone.tsx create mode 100644 src/IconTapAndPlayOutlined.tsx create mode 100644 src/IconTapAndPlayRound.tsx create mode 100644 src/IconTapAndPlaySharp.tsx create mode 100644 src/IconTapAndPlayTwoTone.tsx create mode 100644 src/IconTapasOutlined.tsx create mode 100644 src/IconTapasRound.tsx create mode 100644 src/IconTapasSharp.tsx create mode 100644 src/IconTapasTwoTone.tsx create mode 100644 src/IconTaskAltOutlined.tsx create mode 100644 src/IconTaskAltRound.tsx create mode 100644 src/IconTaskAltSharp.tsx create mode 100644 src/IconTaskAltTwoTone.tsx create mode 100644 src/IconTaskOutlined.tsx create mode 100644 src/IconTaskRound.tsx create mode 100644 src/IconTaskSharp.tsx create mode 100644 src/IconTaskTwoTone.tsx create mode 100644 src/IconTaxiAlertOutlined.tsx create mode 100644 src/IconTaxiAlertRound.tsx create mode 100644 src/IconTaxiAlertSharp.tsx create mode 100644 src/IconTaxiAlertTwoTone.tsx create mode 100644 src/IconTempleBuddhistOutlined.tsx create mode 100644 src/IconTempleBuddhistRound.tsx create mode 100644 src/IconTempleBuddhistSharp.tsx create mode 100644 src/IconTempleBuddhistTwoTone.tsx create mode 100644 src/IconTempleHinduOutlined.tsx create mode 100644 src/IconTempleHinduRound.tsx create mode 100644 src/IconTempleHinduSharp.tsx create mode 100644 src/IconTempleHinduTwoTone.tsx create mode 100644 src/IconTerminalOutlined.tsx create mode 100644 src/IconTerminalRound.tsx create mode 100644 src/IconTerminalSharp.tsx create mode 100644 src/IconTerminalTwoTone.tsx create mode 100644 src/IconTerrainOutlined.tsx create mode 100644 src/IconTerrainRound.tsx create mode 100644 src/IconTerrainSharp.tsx create mode 100644 src/IconTerrainTwoTone.tsx create mode 100644 src/IconTextDecreaseOutlined.tsx create mode 100644 src/IconTextDecreaseRound.tsx create mode 100644 src/IconTextDecreaseSharp.tsx create mode 100644 src/IconTextDecreaseTwoTone.tsx create mode 100644 src/IconTextFieldsOutlined.tsx create mode 100644 src/IconTextFieldsRound.tsx create mode 100644 src/IconTextFieldsSharp.tsx create mode 100644 src/IconTextFieldsTwoTone.tsx create mode 100644 src/IconTextFormatOutlined.tsx create mode 100644 src/IconTextFormatRound.tsx create mode 100644 src/IconTextFormatSharp.tsx create mode 100644 src/IconTextFormatTwoTone.tsx create mode 100644 src/IconTextIncreaseOutlined.tsx create mode 100644 src/IconTextIncreaseRound.tsx create mode 100644 src/IconTextIncreaseSharp.tsx create mode 100644 src/IconTextIncreaseTwoTone.tsx create mode 100644 src/IconTextRotateUpOutlined.tsx create mode 100644 src/IconTextRotateUpRound.tsx create mode 100644 src/IconTextRotateUpSharp.tsx create mode 100644 src/IconTextRotateUpTwoTone.tsx create mode 100644 src/IconTextRotateVerticalOutlined.tsx create mode 100644 src/IconTextRotateVerticalRound.tsx create mode 100644 src/IconTextRotateVerticalSharp.tsx create mode 100644 src/IconTextRotateVerticalTwoTone.tsx create mode 100644 src/IconTextRotationAngledownOutlined.tsx create mode 100644 src/IconTextRotationAngledownRound.tsx create mode 100644 src/IconTextRotationAngledownSharp.tsx create mode 100644 src/IconTextRotationAngledownTwoTone.tsx create mode 100644 src/IconTextRotationAngleupOutlined.tsx create mode 100644 src/IconTextRotationAngleupRound.tsx create mode 100644 src/IconTextRotationAngleupSharp.tsx create mode 100644 src/IconTextRotationAngleupTwoTone.tsx create mode 100644 src/IconTextRotationDownOutlined.tsx create mode 100644 src/IconTextRotationDownRound.tsx create mode 100644 src/IconTextRotationDownSharp.tsx create mode 100644 src/IconTextRotationDownTwoTone.tsx create mode 100644 src/IconTextRotationNoneOutlined.tsx create mode 100644 src/IconTextRotationNoneRound.tsx create mode 100644 src/IconTextRotationNoneSharp.tsx create mode 100644 src/IconTextRotationNoneTwoTone.tsx create mode 100644 src/IconTextSnippetOutlined.tsx create mode 100644 src/IconTextSnippetRound.tsx create mode 100644 src/IconTextSnippetSharp.tsx create mode 100644 src/IconTextSnippetTwoTone.tsx create mode 100644 src/IconTextsmsOutlined.tsx create mode 100644 src/IconTextsmsRound.tsx create mode 100644 src/IconTextsmsSharp.tsx create mode 100644 src/IconTextsmsTwoTone.tsx create mode 100644 src/IconTextureOutlined.tsx create mode 100644 src/IconTextureRound.tsx create mode 100644 src/IconTextureSharp.tsx create mode 100644 src/IconTextureTwoTone.tsx create mode 100644 src/IconTheaterComedyOutlined.tsx create mode 100644 src/IconTheaterComedyRound.tsx create mode 100644 src/IconTheaterComedySharp.tsx create mode 100644 src/IconTheaterComedyTwoTone.tsx create mode 100644 src/IconTheatersOutlined.tsx create mode 100644 src/IconTheatersRound.tsx create mode 100644 src/IconTheatersSharp.tsx create mode 100644 src/IconTheatersTwoTone.tsx create mode 100644 src/IconThermostatAutoOutlined.tsx create mode 100644 src/IconThermostatAutoRound.tsx create mode 100644 src/IconThermostatAutoSharp.tsx create mode 100644 src/IconThermostatAutoTwoTone.tsx create mode 100644 src/IconThermostatOutlined.tsx create mode 100644 src/IconThermostatRound.tsx create mode 100644 src/IconThermostatSharp.tsx create mode 100644 src/IconThermostatTwoTone.tsx create mode 100644 src/IconThumbDownAltOutlined.tsx create mode 100644 src/IconThumbDownAltRound.tsx create mode 100644 src/IconThumbDownAltSharp.tsx create mode 100644 src/IconThumbDownAltTwoTone.tsx create mode 100644 src/IconThumbDownOffAltOutlined.tsx create mode 100644 src/IconThumbDownOffAltRound.tsx create mode 100644 src/IconThumbDownOffAltSharp.tsx create mode 100644 src/IconThumbDownOffAltTwoTone.tsx create mode 100644 src/IconThumbDownOutlined.tsx create mode 100644 src/IconThumbDownRound.tsx create mode 100644 src/IconThumbDownSharp.tsx create mode 100644 src/IconThumbDownTwoTone.tsx create mode 100644 src/IconThumbUpAltOutlined.tsx create mode 100644 src/IconThumbUpAltRound.tsx create mode 100644 src/IconThumbUpAltSharp.tsx create mode 100644 src/IconThumbUpAltTwoTone.tsx create mode 100644 src/IconThumbUpOffAltOutlined.tsx create mode 100644 src/IconThumbUpOffAltRound.tsx create mode 100644 src/IconThumbUpOffAltSharp.tsx create mode 100644 src/IconThumbUpOffAltTwoTone.tsx create mode 100644 src/IconThumbUpOutlined.tsx create mode 100644 src/IconThumbUpRound.tsx create mode 100644 src/IconThumbUpSharp.tsx create mode 100644 src/IconThumbUpTwoTone.tsx create mode 100644 src/IconThumbsUpDownOutlined.tsx create mode 100644 src/IconThumbsUpDownRound.tsx create mode 100644 src/IconThumbsUpDownSharp.tsx create mode 100644 src/IconThumbsUpDownTwoTone.tsx create mode 100644 src/IconThunderstormOutlined.tsx create mode 100644 src/IconThunderstormRound.tsx create mode 100644 src/IconThunderstormSharp.tsx create mode 100644 src/IconThunderstormTwoTone.tsx create mode 100644 src/IconTimeToLeaveOutlined.tsx create mode 100644 src/IconTimeToLeaveRound.tsx create mode 100644 src/IconTimeToLeaveSharp.tsx create mode 100644 src/IconTimeToLeaveTwoTone.tsx create mode 100644 src/IconTimelapseOutlined.tsx create mode 100644 src/IconTimelapseRound.tsx create mode 100644 src/IconTimelapseSharp.tsx create mode 100644 src/IconTimelapseTwoTone.tsx create mode 100644 src/IconTimelineOutlined.tsx create mode 100644 src/IconTimelineRound.tsx create mode 100644 src/IconTimelineSharp.tsx create mode 100644 src/IconTimelineTwoTone.tsx create mode 100644 src/IconTimer10Outlined.tsx create mode 100644 src/IconTimer10Round.tsx create mode 100644 src/IconTimer10SelectOutlined.tsx create mode 100644 src/IconTimer10SelectRound.tsx create mode 100644 src/IconTimer10SelectSharp.tsx create mode 100644 src/IconTimer10SelectTwoTone.tsx create mode 100644 src/IconTimer10Sharp.tsx create mode 100644 src/IconTimer10TwoTone.tsx create mode 100644 src/IconTimer3Outlined.tsx create mode 100644 src/IconTimer3Round.tsx create mode 100644 src/IconTimer3SelectOutlined.tsx create mode 100644 src/IconTimer3SelectRound.tsx create mode 100644 src/IconTimer3SelectSharp.tsx create mode 100644 src/IconTimer3SelectTwoTone.tsx create mode 100644 src/IconTimer3Sharp.tsx create mode 100644 src/IconTimer3TwoTone.tsx create mode 100644 src/IconTimerOffOutlined.tsx create mode 100644 src/IconTimerOffRound.tsx create mode 100644 src/IconTimerOffSharp.tsx create mode 100644 src/IconTimerOffTwoTone.tsx create mode 100644 src/IconTimerOutlined.tsx create mode 100644 src/IconTimerRound.tsx create mode 100644 src/IconTimerSharp.tsx create mode 100644 src/IconTimerTwoTone.tsx create mode 100644 src/IconTipsAndUpdatesOutlined.tsx create mode 100644 src/IconTipsAndUpdatesRound.tsx create mode 100644 src/IconTipsAndUpdatesSharp.tsx create mode 100644 src/IconTipsAndUpdatesTwoTone.tsx create mode 100644 src/IconTireRepairOutlined.tsx create mode 100644 src/IconTireRepairRound.tsx create mode 100644 src/IconTireRepairSharp.tsx create mode 100644 src/IconTireRepairTwoTone.tsx create mode 100644 src/IconTitleOutlined.tsx create mode 100644 src/IconTitleRound.tsx create mode 100644 src/IconTitleSharp.tsx create mode 100644 src/IconTitleTwoTone.tsx create mode 100644 src/IconTocOutlined.tsx create mode 100644 src/IconTocRound.tsx create mode 100644 src/IconTocSharp.tsx create mode 100644 src/IconTocTwoTone.tsx create mode 100644 src/IconTodayOutlined.tsx create mode 100644 src/IconTodayRound.tsx create mode 100644 src/IconTodaySharp.tsx create mode 100644 src/IconTodayTwoTone.tsx create mode 100644 src/IconToggleOffOutlined.tsx create mode 100644 src/IconToggleOffRound.tsx create mode 100644 src/IconToggleOffSharp.tsx create mode 100644 src/IconToggleOffTwoTone.tsx create mode 100644 src/IconToggleOnOutlined.tsx create mode 100644 src/IconToggleOnRound.tsx create mode 100644 src/IconToggleOnSharp.tsx create mode 100644 src/IconToggleOnTwoTone.tsx create mode 100644 src/IconTokenOutlined.tsx create mode 100644 src/IconTokenRound.tsx create mode 100644 src/IconTokenSharp.tsx create mode 100644 src/IconTokenTwoTone.tsx create mode 100644 src/IconTollOutlined.tsx create mode 100644 src/IconTollRound.tsx create mode 100644 src/IconTollSharp.tsx create mode 100644 src/IconTollTwoTone.tsx create mode 100644 src/IconTonalityOutlined.tsx create mode 100644 src/IconTonalityRound.tsx create mode 100644 src/IconTonalitySharp.tsx create mode 100644 src/IconTonalityTwoTone.tsx create mode 100644 src/IconTopicOutlined.tsx create mode 100644 src/IconTopicRound.tsx create mode 100644 src/IconTopicSharp.tsx create mode 100644 src/IconTopicTwoTone.tsx create mode 100644 src/IconTornadoOutlined.tsx create mode 100644 src/IconTornadoRound.tsx create mode 100644 src/IconTornadoSharp.tsx create mode 100644 src/IconTornadoTwoTone.tsx create mode 100644 src/IconTouchAppOutlined.tsx create mode 100644 src/IconTouchAppRound.tsx create mode 100644 src/IconTouchAppSharp.tsx create mode 100644 src/IconTouchAppTwoTone.tsx create mode 100644 src/IconTourOutlined.tsx create mode 100644 src/IconTourRound.tsx create mode 100644 src/IconTourSharp.tsx create mode 100644 src/IconTourTwoTone.tsx create mode 100644 src/IconToysOutlined.tsx create mode 100644 src/IconToysRound.tsx create mode 100644 src/IconToysSharp.tsx create mode 100644 src/IconToysTwoTone.tsx create mode 100644 src/IconTrackChangesOutlined.tsx create mode 100644 src/IconTrackChangesRound.tsx create mode 100644 src/IconTrackChangesSharp.tsx create mode 100644 src/IconTrackChangesTwoTone.tsx create mode 100644 src/IconTrafficOutlined.tsx create mode 100644 src/IconTrafficRound.tsx create mode 100644 src/IconTrafficSharp.tsx create mode 100644 src/IconTrafficTwoTone.tsx create mode 100644 src/IconTrainOutlined.tsx create mode 100644 src/IconTrainRound.tsx create mode 100644 src/IconTrainSharp.tsx create mode 100644 src/IconTrainTwoTone.tsx create mode 100644 src/IconTramOutlined.tsx create mode 100644 src/IconTramRound.tsx create mode 100644 src/IconTramSharp.tsx create mode 100644 src/IconTramTwoTone.tsx create mode 100644 src/IconTranscribeOutlined.tsx create mode 100644 src/IconTranscribeRound.tsx create mode 100644 src/IconTranscribeSharp.tsx create mode 100644 src/IconTranscribeTwoTone.tsx create mode 100644 src/IconTransferWithinAStationOutlined.tsx create mode 100644 src/IconTransferWithinAStationRound.tsx create mode 100644 src/IconTransferWithinAStationSharp.tsx create mode 100644 src/IconTransferWithinAStationTwoTone.tsx create mode 100644 src/IconTransformOutlined.tsx create mode 100644 src/IconTransformRound.tsx create mode 100644 src/IconTransformSharp.tsx create mode 100644 src/IconTransformTwoTone.tsx create mode 100644 src/IconTransgenderOutlined.tsx create mode 100644 src/IconTransgenderRound.tsx create mode 100644 src/IconTransgenderSharp.tsx create mode 100644 src/IconTransgenderTwoTone.tsx create mode 100644 src/IconTransitEnterexitOutlined.tsx create mode 100644 src/IconTransitEnterexitRound.tsx create mode 100644 src/IconTransitEnterexitSharp.tsx create mode 100644 src/IconTransitEnterexitTwoTone.tsx create mode 100644 src/IconTranslateOutlined.tsx create mode 100644 src/IconTranslateRound.tsx create mode 100644 src/IconTranslateSharp.tsx create mode 100644 src/IconTranslateTwoTone.tsx create mode 100644 src/IconTravelExploreOutlined.tsx create mode 100644 src/IconTravelExploreRound.tsx create mode 100644 src/IconTravelExploreSharp.tsx create mode 100644 src/IconTravelExploreTwoTone.tsx create mode 100644 src/IconTrendingDownOutlined.tsx create mode 100644 src/IconTrendingDownRound.tsx create mode 100644 src/IconTrendingDownSharp.tsx create mode 100644 src/IconTrendingDownTwoTone.tsx create mode 100644 src/IconTrendingFlatOutlined.tsx create mode 100644 src/IconTrendingFlatRound.tsx create mode 100644 src/IconTrendingFlatSharp.tsx create mode 100644 src/IconTrendingFlatTwoTone.tsx create mode 100644 src/IconTrendingUpOutlined.tsx create mode 100644 src/IconTrendingUpRound.tsx create mode 100644 src/IconTrendingUpSharp.tsx create mode 100644 src/IconTrendingUpTwoTone.tsx create mode 100644 src/IconTripOriginOutlined.tsx create mode 100644 src/IconTripOriginRound.tsx create mode 100644 src/IconTripOriginSharp.tsx create mode 100644 src/IconTripOriginTwoTone.tsx create mode 100644 src/IconTroubleshootOutlined.tsx create mode 100644 src/IconTroubleshootRound.tsx create mode 100644 src/IconTroubleshootSharp.tsx create mode 100644 src/IconTroubleshootTwoTone.tsx create mode 100644 src/IconTryOutlined.tsx create mode 100644 src/IconTryRound.tsx create mode 100644 src/IconTrySharp.tsx create mode 100644 src/IconTryTwoTone.tsx create mode 100644 src/IconTsunamiOutlined.tsx create mode 100644 src/IconTsunamiRound.tsx create mode 100644 src/IconTsunamiSharp.tsx create mode 100644 src/IconTsunamiTwoTone.tsx create mode 100644 src/IconTtyOutlined.tsx create mode 100644 src/IconTtyRound.tsx create mode 100644 src/IconTtySharp.tsx create mode 100644 src/IconTtyTwoTone.tsx create mode 100644 src/IconTuneOutlined.tsx create mode 100644 src/IconTuneRound.tsx create mode 100644 src/IconTuneSharp.tsx create mode 100644 src/IconTuneTwoTone.tsx create mode 100644 src/IconTungstenOutlined.tsx create mode 100644 src/IconTungstenRound.tsx create mode 100644 src/IconTungstenSharp.tsx create mode 100644 src/IconTungstenTwoTone.tsx create mode 100644 src/IconTurnLeftOutlined.tsx create mode 100644 src/IconTurnLeftRound.tsx create mode 100644 src/IconTurnLeftSharp.tsx create mode 100644 src/IconTurnLeftTwoTone.tsx create mode 100644 src/IconTurnRightOutlined.tsx create mode 100644 src/IconTurnRightRound.tsx create mode 100644 src/IconTurnRightSharp.tsx create mode 100644 src/IconTurnRightTwoTone.tsx create mode 100644 src/IconTurnSharpLeftOutlined.tsx create mode 100644 src/IconTurnSharpLeftRound.tsx create mode 100644 src/IconTurnSharpLeftSharp.tsx create mode 100644 src/IconTurnSharpLeftTwoTone.tsx create mode 100644 src/IconTurnSharpRightOutlined.tsx create mode 100644 src/IconTurnSharpRightRound.tsx create mode 100644 src/IconTurnSharpRightSharp.tsx create mode 100644 src/IconTurnSharpRightTwoTone.tsx create mode 100644 src/IconTurnSlightLeftOutlined.tsx create mode 100644 src/IconTurnSlightLeftRound.tsx create mode 100644 src/IconTurnSlightLeftSharp.tsx create mode 100644 src/IconTurnSlightLeftTwoTone.tsx create mode 100644 src/IconTurnSlightRightOutlined.tsx create mode 100644 src/IconTurnSlightRightRound.tsx create mode 100644 src/IconTurnSlightRightSharp.tsx create mode 100644 src/IconTurnSlightRightTwoTone.tsx create mode 100644 src/IconTurnedInNotOutlined.tsx create mode 100644 src/IconTurnedInNotRound.tsx create mode 100644 src/IconTurnedInNotSharp.tsx create mode 100644 src/IconTurnedInNotTwoTone.tsx create mode 100644 src/IconTurnedInOutlined.tsx create mode 100644 src/IconTurnedInRound.tsx create mode 100644 src/IconTurnedInSharp.tsx create mode 100644 src/IconTurnedInTwoTone.tsx create mode 100644 src/IconTvOffOutlined.tsx create mode 100644 src/IconTvOffRound.tsx create mode 100644 src/IconTvOffSharp.tsx create mode 100644 src/IconTvOffTwoTone.tsx create mode 100644 src/IconTvOutlined.tsx create mode 100644 src/IconTvRound.tsx create mode 100644 src/IconTvSharp.tsx create mode 100644 src/IconTvTwoTone.tsx create mode 100644 src/IconTwoWheelerOutlined.tsx create mode 100644 src/IconTwoWheelerRound.tsx create mode 100644 src/IconTwoWheelerSharp.tsx create mode 100644 src/IconTwoWheelerTwoTone.tsx create mode 100644 src/IconTypeSpecimenOutlined.tsx create mode 100644 src/IconTypeSpecimenRound.tsx create mode 100644 src/IconTypeSpecimenSharp.tsx create mode 100644 src/IconTypeSpecimenTwoTone.tsx create mode 100644 src/IconUTurnLeftOutlined.tsx create mode 100644 src/IconUTurnLeftRound.tsx create mode 100644 src/IconUTurnLeftSharp.tsx create mode 100644 src/IconUTurnLeftTwoTone.tsx create mode 100644 src/IconUTurnRightOutlined.tsx create mode 100644 src/IconUTurnRightRound.tsx create mode 100644 src/IconUTurnRightSharp.tsx create mode 100644 src/IconUTurnRightTwoTone.tsx create mode 100644 src/IconUmbrellaOutlined.tsx create mode 100644 src/IconUmbrellaRound.tsx create mode 100644 src/IconUmbrellaSharp.tsx create mode 100644 src/IconUmbrellaTwoTone.tsx create mode 100644 src/IconUnarchiveOutlined.tsx create mode 100644 src/IconUnarchiveRound.tsx create mode 100644 src/IconUnarchiveSharp.tsx create mode 100644 src/IconUnarchiveTwoTone.tsx create mode 100644 src/IconUndoOutlined.tsx create mode 100644 src/IconUndoRound.tsx create mode 100644 src/IconUndoSharp.tsx create mode 100644 src/IconUndoTwoTone.tsx create mode 100644 src/IconUnfoldLessDoubleOutlined.tsx create mode 100644 src/IconUnfoldLessDoubleRound.tsx create mode 100644 src/IconUnfoldLessDoubleSharp.tsx create mode 100644 src/IconUnfoldLessDoubleTwoTone.tsx create mode 100644 src/IconUnfoldLessOutlined.tsx create mode 100644 src/IconUnfoldLessRound.tsx create mode 100644 src/IconUnfoldLessSharp.tsx create mode 100644 src/IconUnfoldLessTwoTone.tsx create mode 100644 src/IconUnfoldMoreDoubleOutlined.tsx create mode 100644 src/IconUnfoldMoreDoubleRound.tsx create mode 100644 src/IconUnfoldMoreDoubleSharp.tsx create mode 100644 src/IconUnfoldMoreDoubleTwoTone.tsx create mode 100644 src/IconUnfoldMoreOutlined.tsx create mode 100644 src/IconUnfoldMoreRound.tsx create mode 100644 src/IconUnfoldMoreSharp.tsx create mode 100644 src/IconUnfoldMoreTwoTone.tsx create mode 100644 src/IconUnpublishedOutlined.tsx create mode 100644 src/IconUnpublishedRound.tsx create mode 100644 src/IconUnpublishedSharp.tsx create mode 100644 src/IconUnpublishedTwoTone.tsx create mode 100644 src/IconUnsubscribeOutlined.tsx create mode 100644 src/IconUnsubscribeRound.tsx create mode 100644 src/IconUnsubscribeSharp.tsx create mode 100644 src/IconUnsubscribeTwoTone.tsx create mode 100644 src/IconUpcomingOutlined.tsx create mode 100644 src/IconUpcomingRound.tsx create mode 100644 src/IconUpcomingSharp.tsx create mode 100644 src/IconUpcomingTwoTone.tsx create mode 100644 src/IconUpdateDisabledOutlined.tsx create mode 100644 src/IconUpdateDisabledRound.tsx create mode 100644 src/IconUpdateDisabledSharp.tsx create mode 100644 src/IconUpdateDisabledTwoTone.tsx create mode 100644 src/IconUpdateOutlined.tsx create mode 100644 src/IconUpdateRound.tsx create mode 100644 src/IconUpdateSharp.tsx create mode 100644 src/IconUpdateTwoTone.tsx create mode 100644 src/IconUpgradeOutlined.tsx create mode 100644 src/IconUpgradeRound.tsx create mode 100644 src/IconUpgradeSharp.tsx create mode 100644 src/IconUpgradeTwoTone.tsx create mode 100644 src/IconUploadFileOutlined.tsx create mode 100644 src/IconUploadFileRound.tsx create mode 100644 src/IconUploadFileSharp.tsx create mode 100644 src/IconUploadFileTwoTone.tsx create mode 100644 src/IconUploadOutlined.tsx create mode 100644 src/IconUploadRound.tsx create mode 100644 src/IconUploadSharp.tsx create mode 100644 src/IconUploadTwoTone.tsx create mode 100644 src/IconUsbOffOutlined.tsx create mode 100644 src/IconUsbOffRound.tsx create mode 100644 src/IconUsbOffSharp.tsx create mode 100644 src/IconUsbOffTwoTone.tsx create mode 100644 src/IconUsbOutlined.tsx create mode 100644 src/IconUsbRound.tsx create mode 100644 src/IconUsbSharp.tsx create mode 100644 src/IconUsbTwoTone.tsx create mode 100644 src/IconVaccinesOutlined.tsx create mode 100644 src/IconVaccinesRound.tsx create mode 100644 src/IconVaccinesSharp.tsx create mode 100644 src/IconVaccinesTwoTone.tsx create mode 100644 src/IconVapeFreeOutlined.tsx create mode 100644 src/IconVapeFreeRound.tsx create mode 100644 src/IconVapeFreeSharp.tsx create mode 100644 src/IconVapeFreeTwoTone.tsx create mode 100644 src/IconVapingRoomsOutlined.tsx create mode 100644 src/IconVapingRoomsRound.tsx create mode 100644 src/IconVapingRoomsSharp.tsx create mode 100644 src/IconVapingRoomsTwoTone.tsx create mode 100644 src/IconVerifiedOutlined.tsx create mode 100644 src/IconVerifiedRound.tsx create mode 100644 src/IconVerifiedSharp.tsx create mode 100644 src/IconVerifiedTwoTone.tsx create mode 100644 src/IconVerifiedUserOutlined.tsx create mode 100644 src/IconVerifiedUserRound.tsx create mode 100644 src/IconVerifiedUserSharp.tsx create mode 100644 src/IconVerifiedUserTwoTone.tsx create mode 100644 src/IconVerticalAlignBottomOutlined.tsx create mode 100644 src/IconVerticalAlignBottomRound.tsx create mode 100644 src/IconVerticalAlignBottomSharp.tsx create mode 100644 src/IconVerticalAlignBottomTwoTone.tsx create mode 100644 src/IconVerticalAlignCenterOutlined.tsx create mode 100644 src/IconVerticalAlignCenterRound.tsx create mode 100644 src/IconVerticalAlignCenterSharp.tsx create mode 100644 src/IconVerticalAlignCenterTwoTone.tsx create mode 100644 src/IconVerticalAlignTopOutlined.tsx create mode 100644 src/IconVerticalAlignTopRound.tsx create mode 100644 src/IconVerticalAlignTopSharp.tsx create mode 100644 src/IconVerticalAlignTopTwoTone.tsx create mode 100644 src/IconVerticalDistributeOutlined.tsx create mode 100644 src/IconVerticalDistributeRound.tsx create mode 100644 src/IconVerticalDistributeSharp.tsx create mode 100644 src/IconVerticalDistributeTwoTone.tsx create mode 100644 src/IconVerticalShadesClosedOutlined.tsx create mode 100644 src/IconVerticalShadesClosedRound.tsx create mode 100644 src/IconVerticalShadesClosedSharp.tsx create mode 100644 src/IconVerticalShadesClosedTwoTone.tsx create mode 100644 src/IconVerticalShadesOutlined.tsx create mode 100644 src/IconVerticalShadesRound.tsx create mode 100644 src/IconVerticalShadesSharp.tsx create mode 100644 src/IconVerticalShadesTwoTone.tsx create mode 100644 src/IconVerticalSplitOutlined.tsx create mode 100644 src/IconVerticalSplitRound.tsx create mode 100644 src/IconVerticalSplitSharp.tsx create mode 100644 src/IconVerticalSplitTwoTone.tsx create mode 100644 src/IconVibrationOutlined.tsx create mode 100644 src/IconVibrationRound.tsx create mode 100644 src/IconVibrationSharp.tsx create mode 100644 src/IconVibrationTwoTone.tsx create mode 100644 src/IconVideoCallOutlined.tsx create mode 100644 src/IconVideoCallRound.tsx create mode 100644 src/IconVideoCallSharp.tsx create mode 100644 src/IconVideoCallTwoTone.tsx create mode 100644 src/IconVideoCameraBackOutlined.tsx create mode 100644 src/IconVideoCameraBackRound.tsx create mode 100644 src/IconVideoCameraBackSharp.tsx create mode 100644 src/IconVideoCameraBackTwoTone.tsx create mode 100644 src/IconVideoCameraFrontOutlined.tsx create mode 100644 src/IconVideoCameraFrontRound.tsx create mode 100644 src/IconVideoCameraFrontSharp.tsx create mode 100644 src/IconVideoCameraFrontTwoTone.tsx create mode 100644 src/IconVideoChatOutlined.tsx create mode 100644 src/IconVideoChatRound.tsx create mode 100644 src/IconVideoChatSharp.tsx create mode 100644 src/IconVideoChatTwoTone.tsx create mode 100644 src/IconVideoFileOutlined.tsx create mode 100644 src/IconVideoFileRound.tsx create mode 100644 src/IconVideoFileSharp.tsx create mode 100644 src/IconVideoFileTwoTone.tsx create mode 100644 src/IconVideoLabelOutlined.tsx create mode 100644 src/IconVideoLabelRound.tsx create mode 100644 src/IconVideoLabelSharp.tsx create mode 100644 src/IconVideoLabelTwoTone.tsx create mode 100644 src/IconVideoLibraryOutlined.tsx create mode 100644 src/IconVideoLibraryRound.tsx create mode 100644 src/IconVideoLibrarySharp.tsx create mode 100644 src/IconVideoLibraryTwoTone.tsx create mode 100644 src/IconVideoSettingsOutlined.tsx create mode 100644 src/IconVideoSettingsRound.tsx create mode 100644 src/IconVideoSettingsSharp.tsx create mode 100644 src/IconVideoSettingsTwoTone.tsx create mode 100644 src/IconVideoStableOutlined.tsx create mode 100644 src/IconVideoStableRound.tsx create mode 100644 src/IconVideoStableSharp.tsx create mode 100644 src/IconVideoStableTwoTone.tsx create mode 100644 src/IconVideocamOffOutlined.tsx create mode 100644 src/IconVideocamOffRound.tsx create mode 100644 src/IconVideocamOffSharp.tsx create mode 100644 src/IconVideocamOffTwoTone.tsx create mode 100644 src/IconVideocamOutlined.tsx create mode 100644 src/IconVideocamRound.tsx create mode 100644 src/IconVideocamSharp.tsx create mode 100644 src/IconVideocamTwoTone.tsx create mode 100644 src/IconVideogameAssetOffOutlined.tsx create mode 100644 src/IconVideogameAssetOffRound.tsx create mode 100644 src/IconVideogameAssetOffSharp.tsx create mode 100644 src/IconVideogameAssetOffTwoTone.tsx create mode 100644 src/IconVideogameAssetOutlined.tsx create mode 100644 src/IconVideogameAssetRound.tsx create mode 100644 src/IconVideogameAssetSharp.tsx create mode 100644 src/IconVideogameAssetTwoTone.tsx create mode 100644 src/IconViewAgendaOutlined.tsx create mode 100644 src/IconViewAgendaRound.tsx create mode 100644 src/IconViewAgendaSharp.tsx create mode 100644 src/IconViewAgendaTwoTone.tsx create mode 100644 src/IconViewArrayOutlined.tsx create mode 100644 src/IconViewArrayRound.tsx create mode 100644 src/IconViewArraySharp.tsx create mode 100644 src/IconViewArrayTwoTone.tsx create mode 100644 src/IconViewCarouselOutlined.tsx create mode 100644 src/IconViewCarouselRound.tsx create mode 100644 src/IconViewCarouselSharp.tsx create mode 100644 src/IconViewCarouselTwoTone.tsx create mode 100644 src/IconViewColumnOutlined.tsx create mode 100644 src/IconViewColumnRound.tsx create mode 100644 src/IconViewColumnSharp.tsx create mode 100644 src/IconViewColumnTwoTone.tsx create mode 100644 src/IconViewComfyAltOutlined.tsx create mode 100644 src/IconViewComfyAltRound.tsx create mode 100644 src/IconViewComfyAltSharp.tsx create mode 100644 src/IconViewComfyAltTwoTone.tsx create mode 100644 src/IconViewComfyOutlined.tsx create mode 100644 src/IconViewComfyRound.tsx create mode 100644 src/IconViewComfySharp.tsx create mode 100644 src/IconViewComfyTwoTone.tsx create mode 100644 src/IconViewCompactAltOutlined.tsx create mode 100644 src/IconViewCompactAltRound.tsx create mode 100644 src/IconViewCompactAltSharp.tsx create mode 100644 src/IconViewCompactAltTwoTone.tsx create mode 100644 src/IconViewCompactOutlined.tsx create mode 100644 src/IconViewCompactRound.tsx create mode 100644 src/IconViewCompactSharp.tsx create mode 100644 src/IconViewCompactTwoTone.tsx create mode 100644 src/IconViewCozyOutlined.tsx create mode 100644 src/IconViewCozyRound.tsx create mode 100644 src/IconViewCozySharp.tsx create mode 100644 src/IconViewCozyTwoTone.tsx create mode 100644 src/IconViewDayOutlined.tsx create mode 100644 src/IconViewDayRound.tsx create mode 100644 src/IconViewDaySharp.tsx create mode 100644 src/IconViewDayTwoTone.tsx create mode 100644 src/IconViewHeadlineOutlined.tsx create mode 100644 src/IconViewHeadlineRound.tsx create mode 100644 src/IconViewHeadlineSharp.tsx create mode 100644 src/IconViewHeadlineTwoTone.tsx create mode 100644 src/IconViewInArOutlined.tsx create mode 100644 src/IconViewInArRound.tsx create mode 100644 src/IconViewInArSharp.tsx create mode 100644 src/IconViewInArTwoTone.tsx create mode 100644 src/IconViewKanbanOutlined.tsx create mode 100644 src/IconViewKanbanRound.tsx create mode 100644 src/IconViewKanbanSharp.tsx create mode 100644 src/IconViewKanbanTwoTone.tsx create mode 100644 src/IconViewListOutlined.tsx create mode 100644 src/IconViewListRound.tsx create mode 100644 src/IconViewListSharp.tsx create mode 100644 src/IconViewListTwoTone.tsx create mode 100644 src/IconViewModuleOutlined.tsx create mode 100644 src/IconViewModuleRound.tsx create mode 100644 src/IconViewModuleSharp.tsx create mode 100644 src/IconViewModuleTwoTone.tsx create mode 100644 src/IconViewQuiltOutlined.tsx create mode 100644 src/IconViewQuiltRound.tsx create mode 100644 src/IconViewQuiltSharp.tsx create mode 100644 src/IconViewQuiltTwoTone.tsx create mode 100644 src/IconViewSidebarOutlined.tsx create mode 100644 src/IconViewSidebarRound.tsx create mode 100644 src/IconViewSidebarSharp.tsx create mode 100644 src/IconViewSidebarTwoTone.tsx create mode 100644 src/IconViewStreamOutlined.tsx create mode 100644 src/IconViewStreamRound.tsx create mode 100644 src/IconViewStreamSharp.tsx create mode 100644 src/IconViewStreamTwoTone.tsx create mode 100644 src/IconViewTimelineOutlined.tsx create mode 100644 src/IconViewTimelineRound.tsx create mode 100644 src/IconViewTimelineSharp.tsx create mode 100644 src/IconViewTimelineTwoTone.tsx create mode 100644 src/IconViewWeekOutlined.tsx create mode 100644 src/IconViewWeekRound.tsx create mode 100644 src/IconViewWeekSharp.tsx create mode 100644 src/IconViewWeekTwoTone.tsx create mode 100644 src/IconVignetteOutlined.tsx create mode 100644 src/IconVignetteRound.tsx create mode 100644 src/IconVignetteSharp.tsx create mode 100644 src/IconVignetteTwoTone.tsx create mode 100644 src/IconVillaOutlined.tsx create mode 100644 src/IconVillaRound.tsx create mode 100644 src/IconVillaSharp.tsx create mode 100644 src/IconVillaTwoTone.tsx create mode 100644 src/IconVisibilityOffOutlined.tsx create mode 100644 src/IconVisibilityOffRound.tsx create mode 100644 src/IconVisibilityOffSharp.tsx create mode 100644 src/IconVisibilityOffTwoTone.tsx create mode 100644 src/IconVisibilityOutlined.tsx create mode 100644 src/IconVisibilityRound.tsx create mode 100644 src/IconVisibilitySharp.tsx create mode 100644 src/IconVisibilityTwoTone.tsx create mode 100644 src/IconVoiceChatOutlined.tsx create mode 100644 src/IconVoiceChatRound.tsx create mode 100644 src/IconVoiceChatSharp.tsx create mode 100644 src/IconVoiceChatTwoTone.tsx create mode 100644 src/IconVoiceOverOffOutlined.tsx create mode 100644 src/IconVoiceOverOffRound.tsx create mode 100644 src/IconVoiceOverOffSharp.tsx create mode 100644 src/IconVoiceOverOffTwoTone.tsx create mode 100644 src/IconVoicemailOutlined.tsx create mode 100644 src/IconVoicemailRound.tsx create mode 100644 src/IconVoicemailSharp.tsx create mode 100644 src/IconVoicemailTwoTone.tsx create mode 100644 src/IconVolcanoOutlined.tsx create mode 100644 src/IconVolcanoRound.tsx create mode 100644 src/IconVolcanoSharp.tsx create mode 100644 src/IconVolcanoTwoTone.tsx create mode 100644 src/IconVolumeDownOutlined.tsx create mode 100644 src/IconVolumeDownRound.tsx create mode 100644 src/IconVolumeDownSharp.tsx create mode 100644 src/IconVolumeDownTwoTone.tsx create mode 100644 src/IconVolumeMuteOutlined.tsx create mode 100644 src/IconVolumeMuteRound.tsx create mode 100644 src/IconVolumeMuteSharp.tsx create mode 100644 src/IconVolumeMuteTwoTone.tsx create mode 100644 src/IconVolumeOffOutlined.tsx create mode 100644 src/IconVolumeOffRound.tsx create mode 100644 src/IconVolumeOffSharp.tsx create mode 100644 src/IconVolumeOffTwoTone.tsx create mode 100644 src/IconVolumeUpOutlined.tsx create mode 100644 src/IconVolumeUpRound.tsx create mode 100644 src/IconVolumeUpSharp.tsx create mode 100644 src/IconVolumeUpTwoTone.tsx create mode 100644 src/IconVolunteerActivismOutlined.tsx create mode 100644 src/IconVolunteerActivismRound.tsx create mode 100644 src/IconVolunteerActivismSharp.tsx create mode 100644 src/IconVolunteerActivismTwoTone.tsx create mode 100644 src/IconVpnKeyOffOutlined.tsx create mode 100644 src/IconVpnKeyOffRound.tsx create mode 100644 src/IconVpnKeyOffSharp.tsx create mode 100644 src/IconVpnKeyOffTwoTone.tsx create mode 100644 src/IconVpnKeyOutlined.tsx create mode 100644 src/IconVpnKeyRound.tsx create mode 100644 src/IconVpnKeySharp.tsx create mode 100644 src/IconVpnKeyTwoTone.tsx create mode 100644 src/IconVpnLockOutlined.tsx create mode 100644 src/IconVpnLockRound.tsx create mode 100644 src/IconVpnLockSharp.tsx create mode 100644 src/IconVpnLockTwoTone.tsx create mode 100644 src/IconVrpanoOutlined.tsx create mode 100644 src/IconVrpanoRound.tsx create mode 100644 src/IconVrpanoSharp.tsx create mode 100644 src/IconVrpanoTwoTone.tsx create mode 100644 src/IconWalletOutlined.tsx create mode 100644 src/IconWalletRound.tsx create mode 100644 src/IconWalletSharp.tsx create mode 100644 src/IconWalletTwoTone.tsx create mode 100644 src/IconWallpaperOutlined.tsx create mode 100644 src/IconWallpaperRound.tsx create mode 100644 src/IconWallpaperSharp.tsx create mode 100644 src/IconWallpaperTwoTone.tsx create mode 100644 src/IconWarehouseOutlined.tsx create mode 100644 src/IconWarehouseRound.tsx create mode 100644 src/IconWarehouseSharp.tsx create mode 100644 src/IconWarehouseTwoTone.tsx create mode 100644 src/IconWarningAmberOutlined.tsx create mode 100644 src/IconWarningAmberRound.tsx create mode 100644 src/IconWarningAmberSharp.tsx create mode 100644 src/IconWarningAmberTwoTone.tsx create mode 100644 src/IconWarningOutlined.tsx create mode 100644 src/IconWarningRound.tsx create mode 100644 src/IconWarningSharp.tsx create mode 100644 src/IconWarningTwoTone.tsx create mode 100644 src/IconWashOutlined.tsx create mode 100644 src/IconWashRound.tsx create mode 100644 src/IconWashSharp.tsx create mode 100644 src/IconWashTwoTone.tsx create mode 100644 src/IconWatchLaterOutlined.tsx create mode 100644 src/IconWatchLaterRound.tsx create mode 100644 src/IconWatchLaterSharp.tsx create mode 100644 src/IconWatchLaterTwoTone.tsx create mode 100644 src/IconWatchOffOutlined.tsx create mode 100644 src/IconWatchOffRound.tsx create mode 100644 src/IconWatchOffSharp.tsx create mode 100644 src/IconWatchOffTwoTone.tsx create mode 100644 src/IconWatchOutlined.tsx create mode 100644 src/IconWatchRound.tsx create mode 100644 src/IconWatchSharp.tsx create mode 100644 src/IconWatchTwoTone.tsx create mode 100644 src/IconWaterDamageOutlined.tsx create mode 100644 src/IconWaterDamageRound.tsx create mode 100644 src/IconWaterDamageSharp.tsx create mode 100644 src/IconWaterDamageTwoTone.tsx create mode 100644 src/IconWaterDropOutlined.tsx create mode 100644 src/IconWaterDropRound.tsx create mode 100644 src/IconWaterDropSharp.tsx create mode 100644 src/IconWaterDropTwoTone.tsx create mode 100644 src/IconWaterOutlined.tsx create mode 100644 src/IconWaterRound.tsx create mode 100644 src/IconWaterSharp.tsx create mode 100644 src/IconWaterTwoTone.tsx create mode 100644 src/IconWaterfallChartOutlined.tsx create mode 100644 src/IconWaterfallChartRound.tsx create mode 100644 src/IconWaterfallChartSharp.tsx create mode 100644 src/IconWaterfallChartTwoTone.tsx create mode 100644 src/IconWavesOutlined.tsx create mode 100644 src/IconWavesRound.tsx create mode 100644 src/IconWavesSharp.tsx create mode 100644 src/IconWavesTwoTone.tsx create mode 100644 src/IconWavingHandOutlined.tsx create mode 100644 src/IconWavingHandRound.tsx create mode 100644 src/IconWavingHandSharp.tsx create mode 100644 src/IconWavingHandTwoTone.tsx create mode 100644 src/IconWbAutoOutlined.tsx create mode 100644 src/IconWbAutoRound.tsx create mode 100644 src/IconWbAutoSharp.tsx create mode 100644 src/IconWbAutoTwoTone.tsx create mode 100644 src/IconWbCloudyOutlined.tsx create mode 100644 src/IconWbCloudyRound.tsx create mode 100644 src/IconWbCloudySharp.tsx create mode 100644 src/IconWbCloudyTwoTone.tsx create mode 100644 src/IconWbIncandescentOutlined.tsx create mode 100644 src/IconWbIncandescentRound.tsx create mode 100644 src/IconWbIncandescentSharp.tsx create mode 100644 src/IconWbIncandescentTwoTone.tsx create mode 100644 src/IconWbIridescentOutlined.tsx create mode 100644 src/IconWbIridescentRound.tsx create mode 100644 src/IconWbIridescentSharp.tsx create mode 100644 src/IconWbIridescentTwoTone.tsx create mode 100644 src/IconWbShadeOutlined.tsx create mode 100644 src/IconWbShadeRound.tsx create mode 100644 src/IconWbShadeSharp.tsx create mode 100644 src/IconWbShadeTwoTone.tsx create mode 100644 src/IconWbSunnyOutlined.tsx create mode 100644 src/IconWbSunnyRound.tsx create mode 100644 src/IconWbSunnySharp.tsx create mode 100644 src/IconWbSunnyTwoTone.tsx create mode 100644 src/IconWbTwilightOutlined.tsx create mode 100644 src/IconWbTwilightRound.tsx create mode 100644 src/IconWbTwilightSharp.tsx create mode 100644 src/IconWbTwilightTwoTone.tsx create mode 100644 src/IconWcOutlined.tsx create mode 100644 src/IconWcRound.tsx create mode 100644 src/IconWcSharp.tsx create mode 100644 src/IconWcTwoTone.tsx create mode 100644 src/IconWebAssetOffOutlined.tsx create mode 100644 src/IconWebAssetOffRound.tsx create mode 100644 src/IconWebAssetOffSharp.tsx create mode 100644 src/IconWebAssetOffTwoTone.tsx create mode 100644 src/IconWebAssetOutlined.tsx create mode 100644 src/IconWebAssetRound.tsx create mode 100644 src/IconWebAssetSharp.tsx create mode 100644 src/IconWebAssetTwoTone.tsx create mode 100644 src/IconWebOutlined.tsx create mode 100644 src/IconWebRound.tsx create mode 100644 src/IconWebSharp.tsx create mode 100644 src/IconWebStoriesOutlined.tsx create mode 100644 src/IconWebStoriesRound.tsx create mode 100644 src/IconWebStoriesSharp.tsx create mode 100644 src/IconWebStoriesTwoTone.tsx create mode 100644 src/IconWebTwoTone.tsx create mode 100644 src/IconWebhookOutlined.tsx create mode 100644 src/IconWebhookRound.tsx create mode 100644 src/IconWebhookSharp.tsx create mode 100644 src/IconWebhookTwoTone.tsx create mode 100644 src/IconWeekendOutlined.tsx create mode 100644 src/IconWeekendRound.tsx create mode 100644 src/IconWeekendSharp.tsx create mode 100644 src/IconWeekendTwoTone.tsx create mode 100644 src/IconWestOutlined.tsx create mode 100644 src/IconWestRound.tsx create mode 100644 src/IconWestSharp.tsx create mode 100644 src/IconWestTwoTone.tsx delete mode 100644 src/IconWhatsapp.tsx create mode 100644 src/IconWhatshotOutlined.tsx create mode 100644 src/IconWhatshotRound.tsx create mode 100644 src/IconWhatshotSharp.tsx create mode 100644 src/IconWhatshotTwoTone.tsx create mode 100644 src/IconWheelchairPickupOutlined.tsx create mode 100644 src/IconWheelchairPickupRound.tsx create mode 100644 src/IconWheelchairPickupSharp.tsx create mode 100644 src/IconWheelchairPickupTwoTone.tsx create mode 100644 src/IconWhereToVoteOutlined.tsx create mode 100644 src/IconWhereToVoteRound.tsx create mode 100644 src/IconWhereToVoteSharp.tsx create mode 100644 src/IconWhereToVoteTwoTone.tsx create mode 100644 src/IconWidgetsOutlined.tsx create mode 100644 src/IconWidgetsRound.tsx create mode 100644 src/IconWidgetsSharp.tsx create mode 100644 src/IconWidgetsTwoTone.tsx create mode 100644 src/IconWidthFullOutlined.tsx create mode 100644 src/IconWidthFullRound.tsx create mode 100644 src/IconWidthFullSharp.tsx create mode 100644 src/IconWidthFullTwoTone.tsx create mode 100644 src/IconWidthNormalOutlined.tsx create mode 100644 src/IconWidthNormalRound.tsx create mode 100644 src/IconWidthNormalSharp.tsx create mode 100644 src/IconWidthNormalTwoTone.tsx create mode 100644 src/IconWidthWideOutlined.tsx create mode 100644 src/IconWidthWideRound.tsx create mode 100644 src/IconWidthWideSharp.tsx create mode 100644 src/IconWidthWideTwoTone.tsx create mode 100644 src/IconWifi1BarOutlined.tsx create mode 100644 src/IconWifi1BarRound.tsx create mode 100644 src/IconWifi1BarSharp.tsx create mode 100644 src/IconWifi1BarTwoTone.tsx create mode 100644 src/IconWifi2BarOutlined.tsx create mode 100644 src/IconWifi2BarRound.tsx create mode 100644 src/IconWifi2BarSharp.tsx create mode 100644 src/IconWifi2BarTwoTone.tsx create mode 100644 src/IconWifiCalling3Outlined.tsx create mode 100644 src/IconWifiCalling3Round.tsx create mode 100644 src/IconWifiCalling3Sharp.tsx create mode 100644 src/IconWifiCalling3TwoTone.tsx create mode 100644 src/IconWifiCallingOutlined.tsx create mode 100644 src/IconWifiCallingRound.tsx create mode 100644 src/IconWifiCallingSharp.tsx create mode 100644 src/IconWifiCallingTwoTone.tsx create mode 100644 src/IconWifiChannelOutlined.tsx create mode 100644 src/IconWifiChannelRound.tsx create mode 100644 src/IconWifiChannelSharp.tsx create mode 100644 src/IconWifiChannelTwoTone.tsx create mode 100644 src/IconWifiFindOutlined.tsx create mode 100644 src/IconWifiFindRound.tsx create mode 100644 src/IconWifiFindSharp.tsx create mode 100644 src/IconWifiFindTwoTone.tsx create mode 100644 src/IconWifiLockOutlined.tsx create mode 100644 src/IconWifiLockRound.tsx create mode 100644 src/IconWifiLockSharp.tsx create mode 100644 src/IconWifiLockTwoTone.tsx create mode 100644 src/IconWifiOffOutlined.tsx create mode 100644 src/IconWifiOffRound.tsx create mode 100644 src/IconWifiOffSharp.tsx create mode 100644 src/IconWifiOffTwoTone.tsx create mode 100644 src/IconWifiOutlined.tsx create mode 100644 src/IconWifiPasswordOutlined.tsx create mode 100644 src/IconWifiPasswordRound.tsx create mode 100644 src/IconWifiPasswordSharp.tsx create mode 100644 src/IconWifiPasswordTwoTone.tsx create mode 100644 src/IconWifiProtectedSetupOutlined.tsx create mode 100644 src/IconWifiProtectedSetupRound.tsx create mode 100644 src/IconWifiProtectedSetupSharp.tsx create mode 100644 src/IconWifiProtectedSetupTwoTone.tsx create mode 100644 src/IconWifiRound.tsx create mode 100644 src/IconWifiSharp.tsx create mode 100644 src/IconWifiTetheringErrorOutlined.tsx create mode 100644 src/IconWifiTetheringErrorRound.tsx create mode 100644 src/IconWifiTetheringErrorSharp.tsx create mode 100644 src/IconWifiTetheringErrorTwoTone.tsx create mode 100644 src/IconWifiTetheringOffOutlined.tsx create mode 100644 src/IconWifiTetheringOffRound.tsx create mode 100644 src/IconWifiTetheringOffSharp.tsx create mode 100644 src/IconWifiTetheringOffTwoTone.tsx create mode 100644 src/IconWifiTetheringOutlined.tsx create mode 100644 src/IconWifiTetheringRound.tsx create mode 100644 src/IconWifiTetheringSharp.tsx create mode 100644 src/IconWifiTetheringTwoTone.tsx create mode 100644 src/IconWifiTwoTone.tsx create mode 100644 src/IconWindPowerOutlined.tsx create mode 100644 src/IconWindPowerRound.tsx create mode 100644 src/IconWindPowerSharp.tsx create mode 100644 src/IconWindPowerTwoTone.tsx create mode 100644 src/IconWindowOutlined.tsx create mode 100644 src/IconWindowRound.tsx create mode 100644 src/IconWindowSharp.tsx create mode 100644 src/IconWindowTwoTone.tsx create mode 100644 src/IconWineBarOutlined.tsx create mode 100644 src/IconWineBarRound.tsx create mode 100644 src/IconWineBarSharp.tsx create mode 100644 src/IconWineBarTwoTone.tsx create mode 100644 src/IconWoman2Outlined.tsx create mode 100644 src/IconWoman2Round.tsx create mode 100644 src/IconWoman2Sharp.tsx create mode 100644 src/IconWoman2TwoTone.tsx create mode 100644 src/IconWomanOutlined.tsx create mode 100644 src/IconWomanRound.tsx create mode 100644 src/IconWomanSharp.tsx create mode 100644 src/IconWomanTwoTone.tsx create mode 100644 src/IconWorkHistoryOutlined.tsx create mode 100644 src/IconWorkHistoryRound.tsx create mode 100644 src/IconWorkHistorySharp.tsx create mode 100644 src/IconWorkHistoryTwoTone.tsx create mode 100644 src/IconWorkOffOutlined.tsx create mode 100644 src/IconWorkOffRound.tsx create mode 100644 src/IconWorkOffSharp.tsx create mode 100644 src/IconWorkOffTwoTone.tsx create mode 100644 src/IconWorkOutlineOutlined.tsx create mode 100644 src/IconWorkOutlineRound.tsx create mode 100644 src/IconWorkOutlineSharp.tsx create mode 100644 src/IconWorkOutlineTwoTone.tsx create mode 100644 src/IconWorkOutlined.tsx create mode 100644 src/IconWorkRound.tsx create mode 100644 src/IconWorkSharp.tsx create mode 100644 src/IconWorkTwoTone.tsx create mode 100644 src/IconWorkspacePremiumOutlined.tsx create mode 100644 src/IconWorkspacePremiumRound.tsx create mode 100644 src/IconWorkspacePremiumSharp.tsx create mode 100644 src/IconWorkspacePremiumTwoTone.tsx create mode 100644 src/IconWorkspacesOutlined.tsx create mode 100644 src/IconWorkspacesRound.tsx create mode 100644 src/IconWorkspacesSharp.tsx create mode 100644 src/IconWorkspacesTwoTone.tsx create mode 100644 src/IconWrapTextOutlined.tsx create mode 100644 src/IconWrapTextRound.tsx create mode 100644 src/IconWrapTextSharp.tsx create mode 100644 src/IconWrapTextTwoTone.tsx create mode 100644 src/IconWrongLocationOutlined.tsx create mode 100644 src/IconWrongLocationRound.tsx create mode 100644 src/IconWrongLocationSharp.tsx create mode 100644 src/IconWrongLocationTwoTone.tsx create mode 100644 src/IconWysiwygOutlined.tsx create mode 100644 src/IconWysiwygRound.tsx create mode 100644 src/IconWysiwygSharp.tsx create mode 100644 src/IconWysiwygTwoTone.tsx create mode 100644 src/IconYardOutlined.tsx create mode 100644 src/IconYardRound.tsx create mode 100644 src/IconYardSharp.tsx create mode 100644 src/IconYardTwoTone.tsx create mode 100644 src/IconYoutubeSearchedForOutlined.tsx create mode 100644 src/IconYoutubeSearchedForRound.tsx create mode 100644 src/IconYoutubeSearchedForSharp.tsx create mode 100644 src/IconYoutubeSearchedForTwoTone.tsx create mode 100644 src/IconZoomInMapOutlined.tsx create mode 100644 src/IconZoomInMapRound.tsx create mode 100644 src/IconZoomInMapSharp.tsx create mode 100644 src/IconZoomInMapTwoTone.tsx create mode 100644 src/IconZoomInOutlined.tsx create mode 100644 src/IconZoomInRound.tsx create mode 100644 src/IconZoomInSharp.tsx create mode 100644 src/IconZoomInTwoTone.tsx create mode 100644 src/IconZoomOutMapOutlined.tsx create mode 100644 src/IconZoomOutMapRound.tsx create mode 100644 src/IconZoomOutMapSharp.tsx create mode 100644 src/IconZoomOutMapTwoTone.tsx create mode 100644 src/IconZoomOutOutlined.tsx create mode 100644 src/IconZoomOutRound.tsx create mode 100644 src/IconZoomOutSharp.tsx create mode 100644 src/IconZoomOutTwoTone.tsx diff --git a/src/Icon10kOutlined.tsx b/src/Icon10kOutlined.tsx new file mode 100644 index 000000000..aac98a333 --- /dev/null +++ b/src/Icon10kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon10kOutlined as default } diff --git a/src/Icon10kRound.tsx b/src/Icon10kRound.tsx new file mode 100644 index 000000000..c7fd1803b --- /dev/null +++ b/src/Icon10kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon10kRound as default } diff --git a/src/Icon10kSharp.tsx b/src/Icon10kSharp.tsx new file mode 100644 index 000000000..d05a33578 --- /dev/null +++ b/src/Icon10kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon10kSharp as default } diff --git a/src/Icon10kTwoTone.tsx b/src/Icon10kTwoTone.tsx new file mode 100644 index 000000000..bbd3e5465 --- /dev/null +++ b/src/Icon10kTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon10kTwoTone as default } diff --git a/src/Icon10mpOutlined.tsx b/src/Icon10mpOutlined.tsx new file mode 100644 index 000000000..497b666af --- /dev/null +++ b/src/Icon10mpOutlined.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { Icon10mpOutlined as default } diff --git a/src/Icon10mpRound.tsx b/src/Icon10mpRound.tsx new file mode 100644 index 000000000..50a23e824 --- /dev/null +++ b/src/Icon10mpRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon10mpRound as default } diff --git a/src/Icon10mpSharp.tsx b/src/Icon10mpSharp.tsx new file mode 100644 index 000000000..11b410a72 --- /dev/null +++ b/src/Icon10mpSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon10mpSharp as default } diff --git a/src/Icon10mpTwoTone.tsx b/src/Icon10mpTwoTone.tsx new file mode 100644 index 000000000..c851ad3eb --- /dev/null +++ b/src/Icon10mpTwoTone.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { Icon10mpTwoTone as default } diff --git a/src/Icon11mpOutlined.tsx b/src/Icon11mpOutlined.tsx new file mode 100644 index 000000000..cb8b6cea4 --- /dev/null +++ b/src/Icon11mpOutlined.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { Icon11mpOutlined as default } diff --git a/src/Icon11mpRound.tsx b/src/Icon11mpRound.tsx new file mode 100644 index 000000000..875a541dc --- /dev/null +++ b/src/Icon11mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon11mpRound as default } diff --git a/src/Icon11mpSharp.tsx b/src/Icon11mpSharp.tsx new file mode 100644 index 000000000..f640c26bd --- /dev/null +++ b/src/Icon11mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon11mpSharp as default } diff --git a/src/Icon11mpTwoTone.tsx b/src/Icon11mpTwoTone.tsx new file mode 100644 index 000000000..8b69e36ec --- /dev/null +++ b/src/Icon11mpTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { Icon11mpTwoTone as default } diff --git a/src/Icon123Outlined.tsx b/src/Icon123Outlined.tsx new file mode 100644 index 000000000..0d678261a --- /dev/null +++ b/src/Icon123Outlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon123Outlined as default } diff --git a/src/Icon123Round.tsx b/src/Icon123Round.tsx new file mode 100644 index 000000000..0b9ac147b --- /dev/null +++ b/src/Icon123Round.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { Icon123Round as default } diff --git a/src/Icon123Sharp.tsx b/src/Icon123Sharp.tsx new file mode 100644 index 000000000..436d53fcf --- /dev/null +++ b/src/Icon123Sharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon123Sharp as default } diff --git a/src/Icon123TwoTone.tsx b/src/Icon123TwoTone.tsx new file mode 100644 index 000000000..694162298 --- /dev/null +++ b/src/Icon123TwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon123TwoTone as default } diff --git a/src/Icon12mpOutlined.tsx b/src/Icon12mpOutlined.tsx new file mode 100644 index 000000000..cb3d7dd51 --- /dev/null +++ b/src/Icon12mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon12mpOutlined as default } diff --git a/src/Icon12mpRound.tsx b/src/Icon12mpRound.tsx new file mode 100644 index 000000000..c56c1d49e --- /dev/null +++ b/src/Icon12mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon12mpRound as default } diff --git a/src/Icon12mpSharp.tsx b/src/Icon12mpSharp.tsx new file mode 100644 index 000000000..ef0507a3c --- /dev/null +++ b/src/Icon12mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon12mpSharp as default } diff --git a/src/Icon12mpTwoTone.tsx b/src/Icon12mpTwoTone.tsx new file mode 100644 index 000000000..3c302059d --- /dev/null +++ b/src/Icon12mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon12mpTwoTone as default } diff --git a/src/Icon13mpOutlined.tsx b/src/Icon13mpOutlined.tsx new file mode 100644 index 000000000..9eaa0da00 --- /dev/null +++ b/src/Icon13mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon13mpOutlined as default } diff --git a/src/Icon13mpRound.tsx b/src/Icon13mpRound.tsx new file mode 100644 index 000000000..b166a1658 --- /dev/null +++ b/src/Icon13mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon13mpRound as default } diff --git a/src/Icon13mpSharp.tsx b/src/Icon13mpSharp.tsx new file mode 100644 index 000000000..cb83a13ae --- /dev/null +++ b/src/Icon13mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon13mpSharp as default } diff --git a/src/Icon13mpTwoTone.tsx b/src/Icon13mpTwoTone.tsx new file mode 100644 index 000000000..b487b6cd2 --- /dev/null +++ b/src/Icon13mpTwoTone.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { Icon13mpTwoTone as default } diff --git a/src/Icon14mpOutlined.tsx b/src/Icon14mpOutlined.tsx new file mode 100644 index 000000000..4a71b4826 --- /dev/null +++ b/src/Icon14mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon14mpOutlined as default } diff --git a/src/Icon14mpRound.tsx b/src/Icon14mpRound.tsx new file mode 100644 index 000000000..d9523b654 --- /dev/null +++ b/src/Icon14mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon14mpRound as default } diff --git a/src/Icon14mpSharp.tsx b/src/Icon14mpSharp.tsx new file mode 100644 index 000000000..69fee43e9 --- /dev/null +++ b/src/Icon14mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon14mpSharp as default } diff --git a/src/Icon14mpTwoTone.tsx b/src/Icon14mpTwoTone.tsx new file mode 100644 index 000000000..03badeccd --- /dev/null +++ b/src/Icon14mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon14mpTwoTone as default } diff --git a/src/Icon15mpOutlined.tsx b/src/Icon15mpOutlined.tsx new file mode 100644 index 000000000..f722ad1b1 --- /dev/null +++ b/src/Icon15mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon15mpOutlined as default } diff --git a/src/Icon15mpRound.tsx b/src/Icon15mpRound.tsx new file mode 100644 index 000000000..4cef264e1 --- /dev/null +++ b/src/Icon15mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon15mpRound as default } diff --git a/src/Icon15mpSharp.tsx b/src/Icon15mpSharp.tsx new file mode 100644 index 000000000..e24dcaa1a --- /dev/null +++ b/src/Icon15mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon15mpSharp as default } diff --git a/src/Icon15mpTwoTone.tsx b/src/Icon15mpTwoTone.tsx new file mode 100644 index 000000000..6c8985ffd --- /dev/null +++ b/src/Icon15mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon15mpTwoTone as default } diff --git a/src/Icon16mpOutlined.tsx b/src/Icon16mpOutlined.tsx new file mode 100644 index 000000000..3d3064cae --- /dev/null +++ b/src/Icon16mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon16mpOutlined as default } diff --git a/src/Icon16mpRound.tsx b/src/Icon16mpRound.tsx new file mode 100644 index 000000000..6dad38ce3 --- /dev/null +++ b/src/Icon16mpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon16mpRound as default } diff --git a/src/Icon16mpSharp.tsx b/src/Icon16mpSharp.tsx new file mode 100644 index 000000000..393e9edf6 --- /dev/null +++ b/src/Icon16mpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon16mpSharp as default } diff --git a/src/Icon16mpTwoTone.tsx b/src/Icon16mpTwoTone.tsx new file mode 100644 index 000000000..490cf79f6 --- /dev/null +++ b/src/Icon16mpTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { Icon16mpTwoTone as default } diff --git a/src/Icon17mpOutlined.tsx b/src/Icon17mpOutlined.tsx new file mode 100644 index 000000000..68ba2c2f9 --- /dev/null +++ b/src/Icon17mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon17mpOutlined as default } diff --git a/src/Icon17mpRound.tsx b/src/Icon17mpRound.tsx new file mode 100644 index 000000000..453ea0c27 --- /dev/null +++ b/src/Icon17mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon17mpRound as default } diff --git a/src/Icon17mpSharp.tsx b/src/Icon17mpSharp.tsx new file mode 100644 index 000000000..5c58c4168 --- /dev/null +++ b/src/Icon17mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon17mpSharp as default } diff --git a/src/Icon17mpTwoTone.tsx b/src/Icon17mpTwoTone.tsx new file mode 100644 index 000000000..faa5d7ed3 --- /dev/null +++ b/src/Icon17mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon17mpTwoTone as default } diff --git a/src/Icon18UpRatingOutlined.tsx b/src/Icon18UpRatingOutlined.tsx new file mode 100644 index 000000000..54b66068e --- /dev/null +++ b/src/Icon18UpRatingOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon18UpRatingOutlined as default } diff --git a/src/Icon18UpRatingRound.tsx b/src/Icon18UpRatingRound.tsx new file mode 100644 index 000000000..c610f2723 --- /dev/null +++ b/src/Icon18UpRatingRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon18UpRatingRound as default } diff --git a/src/Icon18UpRatingSharp.tsx b/src/Icon18UpRatingSharp.tsx new file mode 100644 index 000000000..f2fdefccf --- /dev/null +++ b/src/Icon18UpRatingSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon18UpRatingSharp as default } diff --git a/src/Icon18UpRatingTwoTone.tsx b/src/Icon18UpRatingTwoTone.tsx new file mode 100644 index 000000000..1680c9b73 --- /dev/null +++ b/src/Icon18UpRatingTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon18UpRatingTwoTone as default } diff --git a/src/Icon18mpOutlined.tsx b/src/Icon18mpOutlined.tsx new file mode 100644 index 000000000..9f68d6d2a --- /dev/null +++ b/src/Icon18mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon18mpOutlined as default } diff --git a/src/Icon18mpRound.tsx b/src/Icon18mpRound.tsx new file mode 100644 index 000000000..befcdb106 --- /dev/null +++ b/src/Icon18mpRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon18mpRound as default } diff --git a/src/Icon18mpSharp.tsx b/src/Icon18mpSharp.tsx new file mode 100644 index 000000000..ed5a9ec1d --- /dev/null +++ b/src/Icon18mpSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon18mpSharp as default } diff --git a/src/Icon18mpTwoTone.tsx b/src/Icon18mpTwoTone.tsx new file mode 100644 index 000000000..e935b6b2d --- /dev/null +++ b/src/Icon18mpTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { Icon18mpTwoTone as default } diff --git a/src/Icon19mpOutlined.tsx b/src/Icon19mpOutlined.tsx new file mode 100644 index 000000000..3f8de2a7b --- /dev/null +++ b/src/Icon19mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon19mpOutlined as default } diff --git a/src/Icon19mpRound.tsx b/src/Icon19mpRound.tsx new file mode 100644 index 000000000..7c8caad19 --- /dev/null +++ b/src/Icon19mpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon19mpRound as default } diff --git a/src/Icon19mpSharp.tsx b/src/Icon19mpSharp.tsx new file mode 100644 index 000000000..189fed36a --- /dev/null +++ b/src/Icon19mpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon19mpSharp as default } diff --git a/src/Icon19mpTwoTone.tsx b/src/Icon19mpTwoTone.tsx new file mode 100644 index 000000000..f60aacd63 --- /dev/null +++ b/src/Icon19mpTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { Icon19mpTwoTone as default } diff --git a/src/Icon1kOutlined.tsx b/src/Icon1kOutlined.tsx new file mode 100644 index 000000000..0074021c2 --- /dev/null +++ b/src/Icon1kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon1kOutlined as default } diff --git a/src/Icon1kPlusOutlined.tsx b/src/Icon1kPlusOutlined.tsx new file mode 100644 index 000000000..33e18ef01 --- /dev/null +++ b/src/Icon1kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon1kPlusOutlined as default } diff --git a/src/Icon1kPlusRound.tsx b/src/Icon1kPlusRound.tsx new file mode 100644 index 000000000..5fc9b5e16 --- /dev/null +++ b/src/Icon1kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon1kPlusRound as default } diff --git a/src/Icon1kPlusSharp.tsx b/src/Icon1kPlusSharp.tsx new file mode 100644 index 000000000..7a29d304b --- /dev/null +++ b/src/Icon1kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon1kPlusSharp as default } diff --git a/src/Icon1kPlusTwoTone.tsx b/src/Icon1kPlusTwoTone.tsx new file mode 100644 index 000000000..c77b40e35 --- /dev/null +++ b/src/Icon1kPlusTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon1kPlusTwoTone as default } diff --git a/src/Icon1kRound.tsx b/src/Icon1kRound.tsx new file mode 100644 index 000000000..7ca600706 --- /dev/null +++ b/src/Icon1kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon1kRound as default } diff --git a/src/Icon1kSharp.tsx b/src/Icon1kSharp.tsx new file mode 100644 index 000000000..9eb627cdd --- /dev/null +++ b/src/Icon1kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon1kSharp as default } diff --git a/src/Icon1kTwoTone.tsx b/src/Icon1kTwoTone.tsx new file mode 100644 index 000000000..a2749ffb1 --- /dev/null +++ b/src/Icon1kTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon1kTwoTone as default } diff --git a/src/Icon1xMobiledataOutlined.tsx b/src/Icon1xMobiledataOutlined.tsx new file mode 100644 index 000000000..282d19537 --- /dev/null +++ b/src/Icon1xMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon1xMobiledataOutlined as default } diff --git a/src/Icon1xMobiledataRound.tsx b/src/Icon1xMobiledataRound.tsx new file mode 100644 index 000000000..e56ea04f3 --- /dev/null +++ b/src/Icon1xMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon1xMobiledataRound as default } diff --git a/src/Icon1xMobiledataSharp.tsx b/src/Icon1xMobiledataSharp.tsx new file mode 100644 index 000000000..31f6a5f2e --- /dev/null +++ b/src/Icon1xMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon1xMobiledataSharp as default } diff --git a/src/Icon1xMobiledataTwoTone.tsx b/src/Icon1xMobiledataTwoTone.tsx new file mode 100644 index 000000000..27836eb57 --- /dev/null +++ b/src/Icon1xMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon1xMobiledataTwoTone as default } diff --git a/src/Icon20mpOutlined.tsx b/src/Icon20mpOutlined.tsx new file mode 100644 index 000000000..aa23d04b0 --- /dev/null +++ b/src/Icon20mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon20mpOutlined as default } diff --git a/src/Icon20mpRound.tsx b/src/Icon20mpRound.tsx new file mode 100644 index 000000000..28a9ed638 --- /dev/null +++ b/src/Icon20mpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon20mpRound as default } diff --git a/src/Icon20mpSharp.tsx b/src/Icon20mpSharp.tsx new file mode 100644 index 000000000..1dce261bb --- /dev/null +++ b/src/Icon20mpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon20mpSharp as default } diff --git a/src/Icon20mpTwoTone.tsx b/src/Icon20mpTwoTone.tsx new file mode 100644 index 000000000..80aebdb54 --- /dev/null +++ b/src/Icon20mpTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { Icon20mpTwoTone as default } diff --git a/src/Icon21mpOutlined.tsx b/src/Icon21mpOutlined.tsx new file mode 100644 index 000000000..1d9b288dd --- /dev/null +++ b/src/Icon21mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon21mpOutlined as default } diff --git a/src/Icon21mpRound.tsx b/src/Icon21mpRound.tsx new file mode 100644 index 000000000..d4a721b9d --- /dev/null +++ b/src/Icon21mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon21mpRound as default } diff --git a/src/Icon21mpSharp.tsx b/src/Icon21mpSharp.tsx new file mode 100644 index 000000000..f55727e9e --- /dev/null +++ b/src/Icon21mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon21mpSharp as default } diff --git a/src/Icon21mpTwoTone.tsx b/src/Icon21mpTwoTone.tsx new file mode 100644 index 000000000..c3d2a26dd --- /dev/null +++ b/src/Icon21mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon21mpTwoTone as default } diff --git a/src/Icon22mpOutlined.tsx b/src/Icon22mpOutlined.tsx new file mode 100644 index 000000000..b53c678b5 --- /dev/null +++ b/src/Icon22mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon22mpOutlined as default } diff --git a/src/Icon22mpRound.tsx b/src/Icon22mpRound.tsx new file mode 100644 index 000000000..679227d9f --- /dev/null +++ b/src/Icon22mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon22mpRound as default } diff --git a/src/Icon22mpSharp.tsx b/src/Icon22mpSharp.tsx new file mode 100644 index 000000000..9b5280fc0 --- /dev/null +++ b/src/Icon22mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon22mpSharp as default } diff --git a/src/Icon22mpTwoTone.tsx b/src/Icon22mpTwoTone.tsx new file mode 100644 index 000000000..1535a5935 --- /dev/null +++ b/src/Icon22mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon22mpTwoTone as default } diff --git a/src/Icon23mpOutlined.tsx b/src/Icon23mpOutlined.tsx new file mode 100644 index 000000000..53edf6328 --- /dev/null +++ b/src/Icon23mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon23mpOutlined as default } diff --git a/src/Icon23mpRound.tsx b/src/Icon23mpRound.tsx new file mode 100644 index 000000000..c4f3810a1 --- /dev/null +++ b/src/Icon23mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon23mpRound as default } diff --git a/src/Icon23mpSharp.tsx b/src/Icon23mpSharp.tsx new file mode 100644 index 000000000..9c49500df --- /dev/null +++ b/src/Icon23mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon23mpSharp as default } diff --git a/src/Icon23mpTwoTone.tsx b/src/Icon23mpTwoTone.tsx new file mode 100644 index 000000000..d61265261 --- /dev/null +++ b/src/Icon23mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon23mpTwoTone as default } diff --git a/src/Icon24mpOutlined.tsx b/src/Icon24mpOutlined.tsx new file mode 100644 index 000000000..3a171e4d3 --- /dev/null +++ b/src/Icon24mpOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon24mpOutlined as default } diff --git a/src/Icon24mpRound.tsx b/src/Icon24mpRound.tsx new file mode 100644 index 000000000..4f86a7d1d --- /dev/null +++ b/src/Icon24mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon24mpRound as default } diff --git a/src/Icon24mpSharp.tsx b/src/Icon24mpSharp.tsx new file mode 100644 index 000000000..cfceaa1c9 --- /dev/null +++ b/src/Icon24mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon24mpSharp as default } diff --git a/src/Icon24mpTwoTone.tsx b/src/Icon24mpTwoTone.tsx new file mode 100644 index 000000000..632b65320 --- /dev/null +++ b/src/Icon24mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon24mpTwoTone as default } diff --git a/src/Icon2kOutlined.tsx b/src/Icon2kOutlined.tsx new file mode 100644 index 000000000..46d879b18 --- /dev/null +++ b/src/Icon2kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon2kOutlined as default } diff --git a/src/Icon2kPlusOutlined.tsx b/src/Icon2kPlusOutlined.tsx new file mode 100644 index 000000000..16925820c --- /dev/null +++ b/src/Icon2kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon2kPlusOutlined as default } diff --git a/src/Icon2kPlusRound.tsx b/src/Icon2kPlusRound.tsx new file mode 100644 index 000000000..8dfcbae0b --- /dev/null +++ b/src/Icon2kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon2kPlusRound as default } diff --git a/src/Icon2kPlusSharp.tsx b/src/Icon2kPlusSharp.tsx new file mode 100644 index 000000000..f4b71680e --- /dev/null +++ b/src/Icon2kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon2kPlusSharp as default } diff --git a/src/Icon2kPlusTwoTone.tsx b/src/Icon2kPlusTwoTone.tsx new file mode 100644 index 000000000..34376f8e2 --- /dev/null +++ b/src/Icon2kPlusTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon2kPlusTwoTone as default } diff --git a/src/Icon2kRound.tsx b/src/Icon2kRound.tsx new file mode 100644 index 000000000..9b82790c3 --- /dev/null +++ b/src/Icon2kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon2kRound as default } diff --git a/src/Icon2kSharp.tsx b/src/Icon2kSharp.tsx new file mode 100644 index 000000000..1430254f8 --- /dev/null +++ b/src/Icon2kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon2kSharp as default } diff --git a/src/Icon2kTwoTone.tsx b/src/Icon2kTwoTone.tsx new file mode 100644 index 000000000..2f7103bda --- /dev/null +++ b/src/Icon2kTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon2kTwoTone as default } diff --git a/src/Icon2mpOutlined.tsx b/src/Icon2mpOutlined.tsx new file mode 100644 index 000000000..3e70f074b --- /dev/null +++ b/src/Icon2mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon2mpOutlined as default } diff --git a/src/Icon2mpRound.tsx b/src/Icon2mpRound.tsx new file mode 100644 index 000000000..301ea5015 --- /dev/null +++ b/src/Icon2mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon2mpRound as default } diff --git a/src/Icon2mpSharp.tsx b/src/Icon2mpSharp.tsx new file mode 100644 index 000000000..c91e06c6d --- /dev/null +++ b/src/Icon2mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon2mpSharp as default } diff --git a/src/Icon2mpTwoTone.tsx b/src/Icon2mpTwoTone.tsx new file mode 100644 index 000000000..45d090b4d --- /dev/null +++ b/src/Icon2mpTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon2mpTwoTone as default } diff --git a/src/Icon30fpsOutlined.tsx b/src/Icon30fpsOutlined.tsx new file mode 100644 index 000000000..f286d5258 --- /dev/null +++ b/src/Icon30fpsOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsOutlined as default } diff --git a/src/Icon30fpsRound.tsx b/src/Icon30fpsRound.tsx new file mode 100644 index 000000000..aa5b441de --- /dev/null +++ b/src/Icon30fpsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsRound as default } diff --git a/src/Icon30fpsSelectOutlined.tsx b/src/Icon30fpsSelectOutlined.tsx new file mode 100644 index 000000000..377177027 --- /dev/null +++ b/src/Icon30fpsSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsSelectOutlined as default } diff --git a/src/Icon30fpsSelectRound.tsx b/src/Icon30fpsSelectRound.tsx new file mode 100644 index 000000000..77341eac3 --- /dev/null +++ b/src/Icon30fpsSelectRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsSelectRound as default } diff --git a/src/Icon30fpsSelectSharp.tsx b/src/Icon30fpsSelectSharp.tsx new file mode 100644 index 000000000..a528ff683 --- /dev/null +++ b/src/Icon30fpsSelectSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsSelectSharp as default } diff --git a/src/Icon30fpsSelectTwoTone.tsx b/src/Icon30fpsSelectTwoTone.tsx new file mode 100644 index 000000000..e5683cd13 --- /dev/null +++ b/src/Icon30fpsSelectTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsSelectTwoTone as default } diff --git a/src/Icon30fpsSharp.tsx b/src/Icon30fpsSharp.tsx new file mode 100644 index 000000000..2758be726 --- /dev/null +++ b/src/Icon30fpsSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsSharp as default } diff --git a/src/Icon30fpsTwoTone.tsx b/src/Icon30fpsTwoTone.tsx new file mode 100644 index 000000000..1295bc73d --- /dev/null +++ b/src/Icon30fpsTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon30fpsTwoTone as default } diff --git a/src/Icon360Outlined.tsx b/src/Icon360Outlined.tsx new file mode 100644 index 000000000..6a9703cff --- /dev/null +++ b/src/Icon360Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon360Outlined as default } diff --git a/src/Icon360Round.tsx b/src/Icon360Round.tsx new file mode 100644 index 000000000..fc42eeca9 --- /dev/null +++ b/src/Icon360Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon360Round as default } diff --git a/src/Icon360Sharp.tsx b/src/Icon360Sharp.tsx new file mode 100644 index 000000000..d866d23a3 --- /dev/null +++ b/src/Icon360Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon360Sharp as default } diff --git a/src/Icon360TwoTone.tsx b/src/Icon360TwoTone.tsx new file mode 100644 index 000000000..42ecd0965 --- /dev/null +++ b/src/Icon360TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon360TwoTone as default } diff --git a/src/Icon3dRotationOutlined.tsx b/src/Icon3dRotationOutlined.tsx new file mode 100644 index 000000000..562c597d6 --- /dev/null +++ b/src/Icon3dRotationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon3dRotationOutlined as default } diff --git a/src/Icon3dRotationRound.tsx b/src/Icon3dRotationRound.tsx new file mode 100644 index 000000000..3896c0956 --- /dev/null +++ b/src/Icon3dRotationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon3dRotationRound as default } diff --git a/src/Icon3dRotationSharp.tsx b/src/Icon3dRotationSharp.tsx new file mode 100644 index 000000000..31c7ca1cd --- /dev/null +++ b/src/Icon3dRotationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon3dRotationSharp as default } diff --git a/src/Icon3dRotationTwoTone.tsx b/src/Icon3dRotationTwoTone.tsx new file mode 100644 index 000000000..0cf766840 --- /dev/null +++ b/src/Icon3dRotationTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon3dRotationTwoTone as default } diff --git a/src/Icon3gMobiledataOutlined.tsx b/src/Icon3gMobiledataOutlined.tsx new file mode 100644 index 000000000..06b365d4b --- /dev/null +++ b/src/Icon3gMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon3gMobiledataOutlined as default } diff --git a/src/Icon3gMobiledataRound.tsx b/src/Icon3gMobiledataRound.tsx new file mode 100644 index 000000000..c1690373e --- /dev/null +++ b/src/Icon3gMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon3gMobiledataRound as default } diff --git a/src/Icon3gMobiledataSharp.tsx b/src/Icon3gMobiledataSharp.tsx new file mode 100644 index 000000000..2da6d2682 --- /dev/null +++ b/src/Icon3gMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon3gMobiledataSharp as default } diff --git a/src/Icon3gMobiledataTwoTone.tsx b/src/Icon3gMobiledataTwoTone.tsx new file mode 100644 index 000000000..aef7430cb --- /dev/null +++ b/src/Icon3gMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon3gMobiledataTwoTone as default } diff --git a/src/Icon3kOutlined.tsx b/src/Icon3kOutlined.tsx new file mode 100644 index 000000000..6316be733 --- /dev/null +++ b/src/Icon3kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon3kOutlined as default } diff --git a/src/Icon3kPlusOutlined.tsx b/src/Icon3kPlusOutlined.tsx new file mode 100644 index 000000000..ffbaa97f7 --- /dev/null +++ b/src/Icon3kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon3kPlusOutlined as default } diff --git a/src/Icon3kPlusRound.tsx b/src/Icon3kPlusRound.tsx new file mode 100644 index 000000000..f13c4e4b8 --- /dev/null +++ b/src/Icon3kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3kPlusRound as default } diff --git a/src/Icon3kPlusSharp.tsx b/src/Icon3kPlusSharp.tsx new file mode 100644 index 000000000..bb8952eb4 --- /dev/null +++ b/src/Icon3kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3kPlusSharp as default } diff --git a/src/Icon3kPlusTwoTone.tsx b/src/Icon3kPlusTwoTone.tsx new file mode 100644 index 000000000..9c7583b20 --- /dev/null +++ b/src/Icon3kPlusTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon3kPlusTwoTone as default } diff --git a/src/Icon3kRound.tsx b/src/Icon3kRound.tsx new file mode 100644 index 000000000..a61bb2a11 --- /dev/null +++ b/src/Icon3kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3kRound as default } diff --git a/src/Icon3kSharp.tsx b/src/Icon3kSharp.tsx new file mode 100644 index 000000000..955b429ac --- /dev/null +++ b/src/Icon3kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3kSharp as default } diff --git a/src/Icon3kTwoTone.tsx b/src/Icon3kTwoTone.tsx new file mode 100644 index 000000000..212eed8ef --- /dev/null +++ b/src/Icon3kTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon3kTwoTone as default } diff --git a/src/Icon3mpOutlined.tsx b/src/Icon3mpOutlined.tsx new file mode 100644 index 000000000..752075231 --- /dev/null +++ b/src/Icon3mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon3mpOutlined as default } diff --git a/src/Icon3mpRound.tsx b/src/Icon3mpRound.tsx new file mode 100644 index 000000000..ff5fb1eed --- /dev/null +++ b/src/Icon3mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon3mpRound as default } diff --git a/src/Icon3mpSharp.tsx b/src/Icon3mpSharp.tsx new file mode 100644 index 000000000..7b2b42b4b --- /dev/null +++ b/src/Icon3mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon3mpSharp as default } diff --git a/src/Icon3mpTwoTone.tsx b/src/Icon3mpTwoTone.tsx new file mode 100644 index 000000000..cf2b83d73 --- /dev/null +++ b/src/Icon3mpTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon3mpTwoTone as default } diff --git a/src/Icon3pOutlined.tsx b/src/Icon3pOutlined.tsx new file mode 100644 index 000000000..956347fd6 --- /dev/null +++ b/src/Icon3pOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3pOutlined as default } diff --git a/src/Icon3pRound.tsx b/src/Icon3pRound.tsx new file mode 100644 index 000000000..e51ba70e3 --- /dev/null +++ b/src/Icon3pRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3pRound as default } diff --git a/src/Icon3pSharp.tsx b/src/Icon3pSharp.tsx new file mode 100644 index 000000000..3dc43da6e --- /dev/null +++ b/src/Icon3pSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon3pSharp as default } diff --git a/src/Icon3pTwoTone.tsx b/src/Icon3pTwoTone.tsx new file mode 100644 index 000000000..dc177956e --- /dev/null +++ b/src/Icon3pTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { Icon3pTwoTone as default } diff --git a/src/Icon4gMobiledataOutlined.tsx b/src/Icon4gMobiledataOutlined.tsx new file mode 100644 index 000000000..6db720222 --- /dev/null +++ b/src/Icon4gMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gMobiledataOutlined as default } diff --git a/src/Icon4gMobiledataRound.tsx b/src/Icon4gMobiledataRound.tsx new file mode 100644 index 000000000..2c43cf739 --- /dev/null +++ b/src/Icon4gMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gMobiledataRound as default } diff --git a/src/Icon4gMobiledataSharp.tsx b/src/Icon4gMobiledataSharp.tsx new file mode 100644 index 000000000..326afdb32 --- /dev/null +++ b/src/Icon4gMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gMobiledataSharp as default } diff --git a/src/Icon4gMobiledataTwoTone.tsx b/src/Icon4gMobiledataTwoTone.tsx new file mode 100644 index 000000000..dee8fce03 --- /dev/null +++ b/src/Icon4gMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gMobiledataTwoTone as default } diff --git a/src/Icon4gPlusMobiledataOutlined.tsx b/src/Icon4gPlusMobiledataOutlined.tsx new file mode 100644 index 000000000..bcd2476fd --- /dev/null +++ b/src/Icon4gPlusMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gPlusMobiledataOutlined as default } diff --git a/src/Icon4gPlusMobiledataRound.tsx b/src/Icon4gPlusMobiledataRound.tsx new file mode 100644 index 000000000..d242a2822 --- /dev/null +++ b/src/Icon4gPlusMobiledataRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon4gPlusMobiledataRound as default } diff --git a/src/Icon4gPlusMobiledataSharp.tsx b/src/Icon4gPlusMobiledataSharp.tsx new file mode 100644 index 000000000..1dd1b3873 --- /dev/null +++ b/src/Icon4gPlusMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gPlusMobiledataSharp as default } diff --git a/src/Icon4gPlusMobiledataTwoTone.tsx b/src/Icon4gPlusMobiledataTwoTone.tsx new file mode 100644 index 000000000..6a4e1e3c1 --- /dev/null +++ b/src/Icon4gPlusMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon4gPlusMobiledataTwoTone as default } diff --git a/src/Icon4kOutlined.tsx b/src/Icon4kOutlined.tsx new file mode 100644 index 000000000..0d883308d --- /dev/null +++ b/src/Icon4kOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon4kOutlined as default } diff --git a/src/Icon4kPlusOutlined.tsx b/src/Icon4kPlusOutlined.tsx new file mode 100644 index 000000000..ab976674b --- /dev/null +++ b/src/Icon4kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon4kPlusOutlined as default } diff --git a/src/Icon4kPlusRound.tsx b/src/Icon4kPlusRound.tsx new file mode 100644 index 000000000..c8b4895cb --- /dev/null +++ b/src/Icon4kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon4kPlusRound as default } diff --git a/src/Icon4kPlusSharp.tsx b/src/Icon4kPlusSharp.tsx new file mode 100644 index 000000000..ebafaeb73 --- /dev/null +++ b/src/Icon4kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon4kPlusSharp as default } diff --git a/src/Icon4kPlusTwoTone.tsx b/src/Icon4kPlusTwoTone.tsx new file mode 100644 index 000000000..875c476a8 --- /dev/null +++ b/src/Icon4kPlusTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon4kPlusTwoTone as default } diff --git a/src/Icon4kRound.tsx b/src/Icon4kRound.tsx new file mode 100644 index 000000000..96503fec5 --- /dev/null +++ b/src/Icon4kRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kRound as default } diff --git a/src/Icon4kSharp.tsx b/src/Icon4kSharp.tsx new file mode 100644 index 000000000..983c0c260 --- /dev/null +++ b/src/Icon4kSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon4kSharp as default } diff --git a/src/Icon4kTwoTone.tsx b/src/Icon4kTwoTone.tsx new file mode 100644 index 000000000..b9f2b4ba7 --- /dev/null +++ b/src/Icon4kTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { Icon4kTwoTone as default } diff --git a/src/Icon4mpOutlined.tsx b/src/Icon4mpOutlined.tsx new file mode 100644 index 000000000..a5f36670e --- /dev/null +++ b/src/Icon4mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon4mpOutlined as default } diff --git a/src/Icon4mpRound.tsx b/src/Icon4mpRound.tsx new file mode 100644 index 000000000..40a01261d --- /dev/null +++ b/src/Icon4mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon4mpRound as default } diff --git a/src/Icon4mpSharp.tsx b/src/Icon4mpSharp.tsx new file mode 100644 index 000000000..7ff2cf8df --- /dev/null +++ b/src/Icon4mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon4mpSharp as default } diff --git a/src/Icon4mpTwoTone.tsx b/src/Icon4mpTwoTone.tsx new file mode 100644 index 000000000..d08d2f053 --- /dev/null +++ b/src/Icon4mpTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon4mpTwoTone as default } diff --git a/src/Icon5gOutlined.tsx b/src/Icon5gOutlined.tsx new file mode 100644 index 000000000..abe88f993 --- /dev/null +++ b/src/Icon5gOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon5gOutlined as default } diff --git a/src/Icon5gRound.tsx b/src/Icon5gRound.tsx new file mode 100644 index 000000000..0415e46c1 --- /dev/null +++ b/src/Icon5gRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon5gRound as default } diff --git a/src/Icon5gSharp.tsx b/src/Icon5gSharp.tsx new file mode 100644 index 000000000..ccd76117e --- /dev/null +++ b/src/Icon5gSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon5gSharp as default } diff --git a/src/Icon5gTwoTone.tsx b/src/Icon5gTwoTone.tsx new file mode 100644 index 000000000..44dff3b3e --- /dev/null +++ b/src/Icon5gTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon5gTwoTone as default } diff --git a/src/Icon5kOutlined.tsx b/src/Icon5kOutlined.tsx new file mode 100644 index 000000000..854843680 --- /dev/null +++ b/src/Icon5kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon5kOutlined as default } diff --git a/src/Icon5kPlusOutlined.tsx b/src/Icon5kPlusOutlined.tsx new file mode 100644 index 000000000..eba0ca262 --- /dev/null +++ b/src/Icon5kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon5kPlusOutlined as default } diff --git a/src/Icon5kPlusRound.tsx b/src/Icon5kPlusRound.tsx new file mode 100644 index 000000000..62ea5ce56 --- /dev/null +++ b/src/Icon5kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon5kPlusRound as default } diff --git a/src/Icon5kPlusSharp.tsx b/src/Icon5kPlusSharp.tsx new file mode 100644 index 000000000..a9c649a2f --- /dev/null +++ b/src/Icon5kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon5kPlusSharp as default } diff --git a/src/Icon5kPlusTwoTone.tsx b/src/Icon5kPlusTwoTone.tsx new file mode 100644 index 000000000..63650936e --- /dev/null +++ b/src/Icon5kPlusTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon5kPlusTwoTone as default } diff --git a/src/Icon5kRound.tsx b/src/Icon5kRound.tsx new file mode 100644 index 000000000..cbde81a89 --- /dev/null +++ b/src/Icon5kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon5kRound as default } diff --git a/src/Icon5kSharp.tsx b/src/Icon5kSharp.tsx new file mode 100644 index 000000000..f71d2108c --- /dev/null +++ b/src/Icon5kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon5kSharp as default } diff --git a/src/Icon5kTwoTone.tsx b/src/Icon5kTwoTone.tsx new file mode 100644 index 000000000..ba5f94bcc --- /dev/null +++ b/src/Icon5kTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon5kTwoTone as default } diff --git a/src/Icon5mpOutlined.tsx b/src/Icon5mpOutlined.tsx new file mode 100644 index 000000000..eec38e94c --- /dev/null +++ b/src/Icon5mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon5mpOutlined as default } diff --git a/src/Icon5mpRound.tsx b/src/Icon5mpRound.tsx new file mode 100644 index 000000000..61b0d3e0e --- /dev/null +++ b/src/Icon5mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon5mpRound as default } diff --git a/src/Icon5mpSharp.tsx b/src/Icon5mpSharp.tsx new file mode 100644 index 000000000..51f43a614 --- /dev/null +++ b/src/Icon5mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon5mpSharp as default } diff --git a/src/Icon5mpTwoTone.tsx b/src/Icon5mpTwoTone.tsx new file mode 100644 index 000000000..4e7dfada9 --- /dev/null +++ b/src/Icon5mpTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon5mpTwoTone as default } diff --git a/src/Icon60fpsOutlined.tsx b/src/Icon60fpsOutlined.tsx new file mode 100644 index 000000000..2907749b1 --- /dev/null +++ b/src/Icon60fpsOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsOutlined as default } diff --git a/src/Icon60fpsRound.tsx b/src/Icon60fpsRound.tsx new file mode 100644 index 000000000..9a2b350ef --- /dev/null +++ b/src/Icon60fpsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsRound as default } diff --git a/src/Icon60fpsSelectOutlined.tsx b/src/Icon60fpsSelectOutlined.tsx new file mode 100644 index 000000000..b21c8ba7e --- /dev/null +++ b/src/Icon60fpsSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsSelectOutlined as default } diff --git a/src/Icon60fpsSelectRound.tsx b/src/Icon60fpsSelectRound.tsx new file mode 100644 index 000000000..d010ee5d2 --- /dev/null +++ b/src/Icon60fpsSelectRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsSelectRound as default } diff --git a/src/Icon60fpsSelectSharp.tsx b/src/Icon60fpsSelectSharp.tsx new file mode 100644 index 000000000..075285334 --- /dev/null +++ b/src/Icon60fpsSelectSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsSelectSharp as default } diff --git a/src/Icon60fpsSelectTwoTone.tsx b/src/Icon60fpsSelectTwoTone.tsx new file mode 100644 index 000000000..bd5b4a277 --- /dev/null +++ b/src/Icon60fpsSelectTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsSelectTwoTone as default } diff --git a/src/Icon60fpsSharp.tsx b/src/Icon60fpsSharp.tsx new file mode 100644 index 000000000..b5895676e --- /dev/null +++ b/src/Icon60fpsSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsSharp as default } diff --git a/src/Icon60fpsTwoTone.tsx b/src/Icon60fpsTwoTone.tsx new file mode 100644 index 000000000..f5e1721d6 --- /dev/null +++ b/src/Icon60fpsTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { Icon60fpsTwoTone as default } diff --git a/src/Icon6FtApartOutlined.tsx b/src/Icon6FtApartOutlined.tsx new file mode 100644 index 000000000..f1e4a1b21 --- /dev/null +++ b/src/Icon6FtApartOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon6FtApartOutlined as default } diff --git a/src/Icon6FtApartRound.tsx b/src/Icon6FtApartRound.tsx new file mode 100644 index 000000000..4b6778b09 --- /dev/null +++ b/src/Icon6FtApartRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon6FtApartRound as default } diff --git a/src/Icon6FtApartSharp.tsx b/src/Icon6FtApartSharp.tsx new file mode 100644 index 000000000..6525fe0d0 --- /dev/null +++ b/src/Icon6FtApartSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon6FtApartSharp as default } diff --git a/src/Icon6FtApartTwoTone.tsx b/src/Icon6FtApartTwoTone.tsx new file mode 100644 index 000000000..dba53e0c8 --- /dev/null +++ b/src/Icon6FtApartTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { Icon6FtApartTwoTone as default } diff --git a/src/Icon6kOutlined.tsx b/src/Icon6kOutlined.tsx new file mode 100644 index 000000000..6df379a85 --- /dev/null +++ b/src/Icon6kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon6kOutlined as default } diff --git a/src/Icon6kPlusOutlined.tsx b/src/Icon6kPlusOutlined.tsx new file mode 100644 index 000000000..b166fb489 --- /dev/null +++ b/src/Icon6kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon6kPlusOutlined as default } diff --git a/src/Icon6kPlusRound.tsx b/src/Icon6kPlusRound.tsx new file mode 100644 index 000000000..b6a3d2251 --- /dev/null +++ b/src/Icon6kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon6kPlusRound as default } diff --git a/src/Icon6kPlusSharp.tsx b/src/Icon6kPlusSharp.tsx new file mode 100644 index 000000000..dce932414 --- /dev/null +++ b/src/Icon6kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon6kPlusSharp as default } diff --git a/src/Icon6kPlusTwoTone.tsx b/src/Icon6kPlusTwoTone.tsx new file mode 100644 index 000000000..d8ac16283 --- /dev/null +++ b/src/Icon6kPlusTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon6kPlusTwoTone as default } diff --git a/src/Icon6kRound.tsx b/src/Icon6kRound.tsx new file mode 100644 index 000000000..55f758b4b --- /dev/null +++ b/src/Icon6kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon6kRound as default } diff --git a/src/Icon6kSharp.tsx b/src/Icon6kSharp.tsx new file mode 100644 index 000000000..88b01f662 --- /dev/null +++ b/src/Icon6kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon6kSharp as default } diff --git a/src/Icon6kTwoTone.tsx b/src/Icon6kTwoTone.tsx new file mode 100644 index 000000000..0e2d2dc4d --- /dev/null +++ b/src/Icon6kTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon6kTwoTone as default } diff --git a/src/Icon6mpOutlined.tsx b/src/Icon6mpOutlined.tsx new file mode 100644 index 000000000..1d3a46bab --- /dev/null +++ b/src/Icon6mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon6mpOutlined as default } diff --git a/src/Icon6mpRound.tsx b/src/Icon6mpRound.tsx new file mode 100644 index 000000000..d29f13c18 --- /dev/null +++ b/src/Icon6mpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon6mpRound as default } diff --git a/src/Icon6mpSharp.tsx b/src/Icon6mpSharp.tsx new file mode 100644 index 000000000..d47606da3 --- /dev/null +++ b/src/Icon6mpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon6mpSharp as default } diff --git a/src/Icon6mpTwoTone.tsx b/src/Icon6mpTwoTone.tsx new file mode 100644 index 000000000..b8af78551 --- /dev/null +++ b/src/Icon6mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon6mpTwoTone as default } diff --git a/src/Icon7kOutlined.tsx b/src/Icon7kOutlined.tsx new file mode 100644 index 000000000..535a81897 --- /dev/null +++ b/src/Icon7kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon7kOutlined as default } diff --git a/src/Icon7kPlusOutlined.tsx b/src/Icon7kPlusOutlined.tsx new file mode 100644 index 000000000..d0259d8e9 --- /dev/null +++ b/src/Icon7kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon7kPlusOutlined as default } diff --git a/src/Icon7kPlusRound.tsx b/src/Icon7kPlusRound.tsx new file mode 100644 index 000000000..5eef7e164 --- /dev/null +++ b/src/Icon7kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon7kPlusRound as default } diff --git a/src/Icon7kPlusSharp.tsx b/src/Icon7kPlusSharp.tsx new file mode 100644 index 000000000..ce251c77b --- /dev/null +++ b/src/Icon7kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon7kPlusSharp as default } diff --git a/src/Icon7kPlusTwoTone.tsx b/src/Icon7kPlusTwoTone.tsx new file mode 100644 index 000000000..8328ae041 --- /dev/null +++ b/src/Icon7kPlusTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon7kPlusTwoTone as default } diff --git a/src/Icon7kRound.tsx b/src/Icon7kRound.tsx new file mode 100644 index 000000000..a07b471f4 --- /dev/null +++ b/src/Icon7kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon7kRound as default } diff --git a/src/Icon7kSharp.tsx b/src/Icon7kSharp.tsx new file mode 100644 index 000000000..11937861d --- /dev/null +++ b/src/Icon7kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon7kSharp as default } diff --git a/src/Icon7kTwoTone.tsx b/src/Icon7kTwoTone.tsx new file mode 100644 index 000000000..2ad405eab --- /dev/null +++ b/src/Icon7kTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon7kTwoTone as default } diff --git a/src/Icon7mpOutlined.tsx b/src/Icon7mpOutlined.tsx new file mode 100644 index 000000000..902997943 --- /dev/null +++ b/src/Icon7mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon7mpOutlined as default } diff --git a/src/Icon7mpRound.tsx b/src/Icon7mpRound.tsx new file mode 100644 index 000000000..ee10e5289 --- /dev/null +++ b/src/Icon7mpRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon7mpRound as default } diff --git a/src/Icon7mpSharp.tsx b/src/Icon7mpSharp.tsx new file mode 100644 index 000000000..d4d0ff684 --- /dev/null +++ b/src/Icon7mpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { Icon7mpSharp as default } diff --git a/src/Icon7mpTwoTone.tsx b/src/Icon7mpTwoTone.tsx new file mode 100644 index 000000000..6f9fdc69e --- /dev/null +++ b/src/Icon7mpTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon7mpTwoTone as default } diff --git a/src/Icon8kOutlined.tsx b/src/Icon8kOutlined.tsx new file mode 100644 index 000000000..aea2e8597 --- /dev/null +++ b/src/Icon8kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon8kOutlined as default } diff --git a/src/Icon8kPlusOutlined.tsx b/src/Icon8kPlusOutlined.tsx new file mode 100644 index 000000000..c8d34126d --- /dev/null +++ b/src/Icon8kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon8kPlusOutlined as default } diff --git a/src/Icon8kPlusRound.tsx b/src/Icon8kPlusRound.tsx new file mode 100644 index 000000000..f262089de --- /dev/null +++ b/src/Icon8kPlusRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon8kPlusRound as default } diff --git a/src/Icon8kPlusSharp.tsx b/src/Icon8kPlusSharp.tsx new file mode 100644 index 000000000..bf3202361 --- /dev/null +++ b/src/Icon8kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon8kPlusSharp as default } diff --git a/src/Icon8kPlusTwoTone.tsx b/src/Icon8kPlusTwoTone.tsx new file mode 100644 index 000000000..eca165784 --- /dev/null +++ b/src/Icon8kPlusTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon8kPlusTwoTone as default } diff --git a/src/Icon8kRound.tsx b/src/Icon8kRound.tsx new file mode 100644 index 000000000..6f5fc8862 --- /dev/null +++ b/src/Icon8kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon8kRound as default } diff --git a/src/Icon8kSharp.tsx b/src/Icon8kSharp.tsx new file mode 100644 index 000000000..397e78093 --- /dev/null +++ b/src/Icon8kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon8kSharp as default } diff --git a/src/Icon8kTwoTone.tsx b/src/Icon8kTwoTone.tsx new file mode 100644 index 000000000..1ebea0c22 --- /dev/null +++ b/src/Icon8kTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { Icon8kTwoTone as default } diff --git a/src/Icon8mpOutlined.tsx b/src/Icon8mpOutlined.tsx new file mode 100644 index 000000000..359d80ee6 --- /dev/null +++ b/src/Icon8mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon8mpOutlined as default } diff --git a/src/Icon8mpRound.tsx b/src/Icon8mpRound.tsx new file mode 100644 index 000000000..d1ff07dec --- /dev/null +++ b/src/Icon8mpRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon8mpRound as default } diff --git a/src/Icon8mpSharp.tsx b/src/Icon8mpSharp.tsx new file mode 100644 index 000000000..89238f41f --- /dev/null +++ b/src/Icon8mpSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon8mpSharp as default } diff --git a/src/Icon8mpTwoTone.tsx b/src/Icon8mpTwoTone.tsx new file mode 100644 index 000000000..ddbfdde0a --- /dev/null +++ b/src/Icon8mpTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { Icon8mpTwoTone as default } diff --git a/src/Icon9kOutlined.tsx b/src/Icon9kOutlined.tsx new file mode 100644 index 000000000..f16f9a42d --- /dev/null +++ b/src/Icon9kOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon9kOutlined as default } diff --git a/src/Icon9kPlusOutlined.tsx b/src/Icon9kPlusOutlined.tsx new file mode 100644 index 000000000..80159d50c --- /dev/null +++ b/src/Icon9kPlusOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon9kPlusOutlined as default } diff --git a/src/Icon9kPlusRound.tsx b/src/Icon9kPlusRound.tsx new file mode 100644 index 000000000..917e4d01a --- /dev/null +++ b/src/Icon9kPlusRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon9kPlusRound as default } diff --git a/src/Icon9kPlusSharp.tsx b/src/Icon9kPlusSharp.tsx new file mode 100644 index 000000000..371b44aaf --- /dev/null +++ b/src/Icon9kPlusSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon9kPlusSharp as default } diff --git a/src/Icon9kPlusTwoTone.tsx b/src/Icon9kPlusTwoTone.tsx new file mode 100644 index 000000000..8d18b33af --- /dev/null +++ b/src/Icon9kPlusTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon9kPlusTwoTone as default } diff --git a/src/Icon9kRound.tsx b/src/Icon9kRound.tsx new file mode 100644 index 000000000..df362dddf --- /dev/null +++ b/src/Icon9kRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon9kRound as default } diff --git a/src/Icon9kSharp.tsx b/src/Icon9kSharp.tsx new file mode 100644 index 000000000..7bf3f32b0 --- /dev/null +++ b/src/Icon9kSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { Icon9kSharp as default } diff --git a/src/Icon9kTwoTone.tsx b/src/Icon9kTwoTone.tsx new file mode 100644 index 000000000..1a57a7ad4 --- /dev/null +++ b/src/Icon9kTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { Icon9kTwoTone as default } diff --git a/src/Icon9mpOutlined.tsx b/src/Icon9mpOutlined.tsx new file mode 100644 index 000000000..3c9b0d484 --- /dev/null +++ b/src/Icon9mpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { Icon9mpOutlined as default } diff --git a/src/Icon9mpRound.tsx b/src/Icon9mpRound.tsx new file mode 100644 index 000000000..069da447b --- /dev/null +++ b/src/Icon9mpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon9mpRound as default } diff --git a/src/Icon9mpSharp.tsx b/src/Icon9mpSharp.tsx new file mode 100644 index 000000000..8d2f7eb89 --- /dev/null +++ b/src/Icon9mpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { Icon9mpSharp as default } diff --git a/src/Icon9mpTwoTone.tsx b/src/Icon9mpTwoTone.tsx new file mode 100644 index 000000000..7145a9b22 --- /dev/null +++ b/src/Icon9mpTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { Icon9mpTwoTone as default } diff --git a/src/IconAbcOutlined.tsx b/src/IconAbcOutlined.tsx new file mode 100644 index 000000000..d57182785 --- /dev/null +++ b/src/IconAbcOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAbcOutlined as default } diff --git a/src/IconAbcRound.tsx b/src/IconAbcRound.tsx new file mode 100644 index 000000000..0dee93280 --- /dev/null +++ b/src/IconAbcRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAbcRound as default } diff --git a/src/IconAbcSharp.tsx b/src/IconAbcSharp.tsx new file mode 100644 index 000000000..87ee1f143 --- /dev/null +++ b/src/IconAbcSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAbcSharp as default } diff --git a/src/IconAbcTwoTone.tsx b/src/IconAbcTwoTone.tsx new file mode 100644 index 000000000..5aef76165 --- /dev/null +++ b/src/IconAbcTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAbcTwoTone as default } diff --git a/src/IconAcUnitOutlined.tsx b/src/IconAcUnitOutlined.tsx new file mode 100644 index 000000000..ade6effb5 --- /dev/null +++ b/src/IconAcUnitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAcUnitOutlined as default } diff --git a/src/IconAcUnitRound.tsx b/src/IconAcUnitRound.tsx new file mode 100644 index 000000000..f5ed37fe6 --- /dev/null +++ b/src/IconAcUnitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAcUnitRound as default } diff --git a/src/IconAcUnitSharp.tsx b/src/IconAcUnitSharp.tsx new file mode 100644 index 000000000..845944fea --- /dev/null +++ b/src/IconAcUnitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAcUnitSharp as default } diff --git a/src/IconAcUnitTwoTone.tsx b/src/IconAcUnitTwoTone.tsx new file mode 100644 index 000000000..d6fc9cc40 --- /dev/null +++ b/src/IconAcUnitTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAcUnitTwoTone as default } diff --git a/src/IconAccessAlarmOutlined.tsx b/src/IconAccessAlarmOutlined.tsx new file mode 100644 index 000000000..39a8299c5 --- /dev/null +++ b/src/IconAccessAlarmOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmOutlined as default } diff --git a/src/IconAccessAlarmRound.tsx b/src/IconAccessAlarmRound.tsx new file mode 100644 index 000000000..a6076881a --- /dev/null +++ b/src/IconAccessAlarmRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmRound as default } diff --git a/src/IconAccessAlarmSharp.tsx b/src/IconAccessAlarmSharp.tsx new file mode 100644 index 000000000..8811e53d8 --- /dev/null +++ b/src/IconAccessAlarmSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmSharp as default } diff --git a/src/IconAccessAlarmTwoTone.tsx b/src/IconAccessAlarmTwoTone.tsx new file mode 100644 index 000000000..427b14f94 --- /dev/null +++ b/src/IconAccessAlarmTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessAlarmTwoTone as default } diff --git a/src/IconAccessAlarmsOutlined.tsx b/src/IconAccessAlarmsOutlined.tsx new file mode 100644 index 000000000..5491d1fb5 --- /dev/null +++ b/src/IconAccessAlarmsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmsOutlined as default } diff --git a/src/IconAccessAlarmsRound.tsx b/src/IconAccessAlarmsRound.tsx new file mode 100644 index 000000000..55f5b17d7 --- /dev/null +++ b/src/IconAccessAlarmsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmsRound as default } diff --git a/src/IconAccessAlarmsSharp.tsx b/src/IconAccessAlarmsSharp.tsx new file mode 100644 index 000000000..e25e96ee0 --- /dev/null +++ b/src/IconAccessAlarmsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessAlarmsSharp as default } diff --git a/src/IconAccessAlarmsTwoTone.tsx b/src/IconAccessAlarmsTwoTone.tsx new file mode 100644 index 000000000..2245b53d8 --- /dev/null +++ b/src/IconAccessAlarmsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessAlarmsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessAlarmsTwoTone as default } diff --git a/src/IconAccessTimeFilledOutlined.tsx b/src/IconAccessTimeFilledOutlined.tsx new file mode 100644 index 000000000..1f84cc4bb --- /dev/null +++ b/src/IconAccessTimeFilledOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccessTimeFilledOutlined as default } diff --git a/src/IconAccessTimeFilledRound.tsx b/src/IconAccessTimeFilledRound.tsx new file mode 100644 index 000000000..620b9b3ee --- /dev/null +++ b/src/IconAccessTimeFilledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccessTimeFilledRound as default } diff --git a/src/IconAccessTimeFilledSharp.tsx b/src/IconAccessTimeFilledSharp.tsx new file mode 100644 index 000000000..e95ca88e5 --- /dev/null +++ b/src/IconAccessTimeFilledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccessTimeFilledSharp as default } diff --git a/src/IconAccessTimeFilledTwoTone.tsx b/src/IconAccessTimeFilledTwoTone.tsx new file mode 100644 index 000000000..05eaab296 --- /dev/null +++ b/src/IconAccessTimeFilledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccessTimeFilledTwoTone as default } diff --git a/src/IconAccessTimeOutlined.tsx b/src/IconAccessTimeOutlined.tsx new file mode 100644 index 000000000..c47f93e23 --- /dev/null +++ b/src/IconAccessTimeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessTimeOutlined as default } diff --git a/src/IconAccessTimeRound.tsx b/src/IconAccessTimeRound.tsx new file mode 100644 index 000000000..67805ece5 --- /dev/null +++ b/src/IconAccessTimeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessTimeRound as default } diff --git a/src/IconAccessTimeSharp.tsx b/src/IconAccessTimeSharp.tsx new file mode 100644 index 000000000..457ab70bc --- /dev/null +++ b/src/IconAccessTimeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessTimeSharp as default } diff --git a/src/IconAccessTimeTwoTone.tsx b/src/IconAccessTimeTwoTone.tsx new file mode 100644 index 000000000..b59ebf55d --- /dev/null +++ b/src/IconAccessTimeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessTimeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessTimeTwoTone as default } diff --git a/src/IconAccessibilityNewOutlined.tsx b/src/IconAccessibilityNewOutlined.tsx new file mode 100644 index 000000000..31936c2ed --- /dev/null +++ b/src/IconAccessibilityNewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityNewOutlined as default } diff --git a/src/IconAccessibilityNewRound.tsx b/src/IconAccessibilityNewRound.tsx new file mode 100644 index 000000000..ef6861c9c --- /dev/null +++ b/src/IconAccessibilityNewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityNewRound as default } diff --git a/src/IconAccessibilityNewSharp.tsx b/src/IconAccessibilityNewSharp.tsx new file mode 100644 index 000000000..3d12174cc --- /dev/null +++ b/src/IconAccessibilityNewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityNewSharp as default } diff --git a/src/IconAccessibilityNewTwoTone.tsx b/src/IconAccessibilityNewTwoTone.tsx new file mode 100644 index 000000000..14a0a4006 --- /dev/null +++ b/src/IconAccessibilityNewTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityNewTwoTone as default } diff --git a/src/IconAccessibilityOutlined.tsx b/src/IconAccessibilityOutlined.tsx new file mode 100644 index 000000000..214b614d5 --- /dev/null +++ b/src/IconAccessibilityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityOutlined as default } diff --git a/src/IconAccessibilityRound.tsx b/src/IconAccessibilityRound.tsx new file mode 100644 index 000000000..ab63f9aa8 --- /dev/null +++ b/src/IconAccessibilityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityRound as default } diff --git a/src/IconAccessibilitySharp.tsx b/src/IconAccessibilitySharp.tsx new file mode 100644 index 000000000..5ec0273c2 --- /dev/null +++ b/src/IconAccessibilitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilitySharp as default } diff --git a/src/IconAccessibilityTwoTone.tsx b/src/IconAccessibilityTwoTone.tsx new file mode 100644 index 000000000..9eb74b755 --- /dev/null +++ b/src/IconAccessibilityTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccessibilityTwoTone as default } diff --git a/src/IconAccessibleForwardOutlined.tsx b/src/IconAccessibleForwardOutlined.tsx new file mode 100644 index 000000000..d2053c62d --- /dev/null +++ b/src/IconAccessibleForwardOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleForwardOutlined as default } diff --git a/src/IconAccessibleForwardRound.tsx b/src/IconAccessibleForwardRound.tsx new file mode 100644 index 000000000..b92722a45 --- /dev/null +++ b/src/IconAccessibleForwardRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleForwardRound as default } diff --git a/src/IconAccessibleForwardSharp.tsx b/src/IconAccessibleForwardSharp.tsx new file mode 100644 index 000000000..8769dfed5 --- /dev/null +++ b/src/IconAccessibleForwardSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleForwardSharp as default } diff --git a/src/IconAccessibleForwardTwoTone.tsx b/src/IconAccessibleForwardTwoTone.tsx new file mode 100644 index 000000000..aca18e645 --- /dev/null +++ b/src/IconAccessibleForwardTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleForwardTwoTone as default } diff --git a/src/IconAccessibleOutlined.tsx b/src/IconAccessibleOutlined.tsx new file mode 100644 index 000000000..df327132c --- /dev/null +++ b/src/IconAccessibleOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleOutlined as default } diff --git a/src/IconAccessibleRound.tsx b/src/IconAccessibleRound.tsx new file mode 100644 index 000000000..4285d4ba9 --- /dev/null +++ b/src/IconAccessibleRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleRound as default } diff --git a/src/IconAccessibleSharp.tsx b/src/IconAccessibleSharp.tsx new file mode 100644 index 000000000..d56acdd29 --- /dev/null +++ b/src/IconAccessibleSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleSharp as default } diff --git a/src/IconAccessibleTwoTone.tsx b/src/IconAccessibleTwoTone.tsx new file mode 100644 index 000000000..a0fa7d18f --- /dev/null +++ b/src/IconAccessibleTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccessibleTwoTone as default } diff --git a/src/IconAccountBalanceOutlined.tsx b/src/IconAccountBalanceOutlined.tsx new file mode 100644 index 000000000..b16536949 --- /dev/null +++ b/src/IconAccountBalanceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountBalanceOutlined as default } diff --git a/src/IconAccountBalanceRound.tsx b/src/IconAccountBalanceRound.tsx new file mode 100644 index 000000000..ab79c6acb --- /dev/null +++ b/src/IconAccountBalanceRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountBalanceRound as default } diff --git a/src/IconAccountBalanceSharp.tsx b/src/IconAccountBalanceSharp.tsx new file mode 100644 index 000000000..d31145827 --- /dev/null +++ b/src/IconAccountBalanceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountBalanceSharp as default } diff --git a/src/IconAccountBalanceTwoTone.tsx b/src/IconAccountBalanceTwoTone.tsx new file mode 100644 index 000000000..672b0eb18 --- /dev/null +++ b/src/IconAccountBalanceTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccountBalanceTwoTone as default } diff --git a/src/IconAccountBalanceWalletOutlined.tsx b/src/IconAccountBalanceWalletOutlined.tsx new file mode 100644 index 000000000..8f428a81f --- /dev/null +++ b/src/IconAccountBalanceWalletOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAccountBalanceWalletOutlined as default } diff --git a/src/IconAccountBalanceWalletRound.tsx b/src/IconAccountBalanceWalletRound.tsx new file mode 100644 index 000000000..6aad7b6ca --- /dev/null +++ b/src/IconAccountBalanceWalletRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountBalanceWalletRound as default } diff --git a/src/IconAccountBalanceWalletSharp.tsx b/src/IconAccountBalanceWalletSharp.tsx new file mode 100644 index 000000000..34adec94e --- /dev/null +++ b/src/IconAccountBalanceWalletSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountBalanceWalletSharp as default } diff --git a/src/IconAccountBalanceWalletTwoTone.tsx b/src/IconAccountBalanceWalletTwoTone.tsx new file mode 100644 index 000000000..77011af58 --- /dev/null +++ b/src/IconAccountBalanceWalletTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAccountBalanceWalletTwoTone as default } diff --git a/src/IconAccountBoxOutlined.tsx b/src/IconAccountBoxOutlined.tsx new file mode 100644 index 000000000..a20fd42d6 --- /dev/null +++ b/src/IconAccountBoxOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccountBoxOutlined as default } diff --git a/src/IconAccountBoxRound.tsx b/src/IconAccountBoxRound.tsx new file mode 100644 index 000000000..78858252b --- /dev/null +++ b/src/IconAccountBoxRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAccountBoxRound as default } diff --git a/src/IconAccountBoxSharp.tsx b/src/IconAccountBoxSharp.tsx new file mode 100644 index 000000000..beb7ed917 --- /dev/null +++ b/src/IconAccountBoxSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccountBoxSharp as default } diff --git a/src/IconAccountBoxTwoTone.tsx b/src/IconAccountBoxTwoTone.tsx new file mode 100644 index 000000000..c8102a19f --- /dev/null +++ b/src/IconAccountBoxTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAccountBoxTwoTone as default } diff --git a/src/IconAccountCircleOutlined.tsx b/src/IconAccountCircleOutlined.tsx new file mode 100644 index 000000000..0ec8cafa5 --- /dev/null +++ b/src/IconAccountCircleOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAccountCircleOutlined as default } diff --git a/src/IconAccountCircleRound.tsx b/src/IconAccountCircleRound.tsx new file mode 100644 index 000000000..332ac7362 --- /dev/null +++ b/src/IconAccountCircleRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAccountCircleRound as default } diff --git a/src/IconAccountCircleSharp.tsx b/src/IconAccountCircleSharp.tsx new file mode 100644 index 000000000..bb36bce73 --- /dev/null +++ b/src/IconAccountCircleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAccountCircleSharp as default } diff --git a/src/IconAccountCircleTwoTone.tsx b/src/IconAccountCircleTwoTone.tsx new file mode 100644 index 000000000..fb9d9df62 --- /dev/null +++ b/src/IconAccountCircleTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAccountCircleTwoTone as default } diff --git a/src/IconAccountTreeOutlined.tsx b/src/IconAccountTreeOutlined.tsx new file mode 100644 index 000000000..c3f8ee048 --- /dev/null +++ b/src/IconAccountTreeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountTreeOutlined as default } diff --git a/src/IconAccountTreeRound.tsx b/src/IconAccountTreeRound.tsx new file mode 100644 index 000000000..c02057ac4 --- /dev/null +++ b/src/IconAccountTreeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAccountTreeRound as default } diff --git a/src/IconAccountTreeSharp.tsx b/src/IconAccountTreeSharp.tsx new file mode 100644 index 000000000..8d0960b11 --- /dev/null +++ b/src/IconAccountTreeSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAccountTreeSharp as default } diff --git a/src/IconAccountTreeTwoTone.tsx b/src/IconAccountTreeTwoTone.tsx new file mode 100644 index 000000000..5fc7bde4c --- /dev/null +++ b/src/IconAccountTreeTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAccountTreeTwoTone as default } diff --git a/src/IconAdUnitsOutlined.tsx b/src/IconAdUnitsOutlined.tsx new file mode 100644 index 000000000..95c61ee74 --- /dev/null +++ b/src/IconAdUnitsOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAdUnitsOutlined as default } diff --git a/src/IconAdUnitsRound.tsx b/src/IconAdUnitsRound.tsx new file mode 100644 index 000000000..e55b7872f --- /dev/null +++ b/src/IconAdUnitsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAdUnitsRound as default } diff --git a/src/IconAdUnitsSharp.tsx b/src/IconAdUnitsSharp.tsx new file mode 100644 index 000000000..7bd2dc6a4 --- /dev/null +++ b/src/IconAdUnitsSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAdUnitsSharp as default } diff --git a/src/IconAdUnitsTwoTone.tsx b/src/IconAdUnitsTwoTone.tsx new file mode 100644 index 000000000..cc68a468f --- /dev/null +++ b/src/IconAdUnitsTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAdUnitsTwoTone as default } diff --git a/src/IconAdbOutlined.tsx b/src/IconAdbOutlined.tsx new file mode 100644 index 000000000..1e7f52525 --- /dev/null +++ b/src/IconAdbOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdbOutlined as default } diff --git a/src/IconAdbRound.tsx b/src/IconAdbRound.tsx new file mode 100644 index 000000000..14591efcd --- /dev/null +++ b/src/IconAdbRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdbRound as default } diff --git a/src/IconAdbSharp.tsx b/src/IconAdbSharp.tsx new file mode 100644 index 000000000..d5e6a7f54 --- /dev/null +++ b/src/IconAdbSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdbSharp as default } diff --git a/src/IconAdbTwoTone.tsx b/src/IconAdbTwoTone.tsx new file mode 100644 index 000000000..615e4104c --- /dev/null +++ b/src/IconAdbTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdbTwoTone as default } diff --git a/src/IconAddAPhotoOutlined.tsx b/src/IconAddAPhotoOutlined.tsx new file mode 100644 index 000000000..0efa3a3da --- /dev/null +++ b/src/IconAddAPhotoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAPhotoOutlined as default } diff --git a/src/IconAddAPhotoRound.tsx b/src/IconAddAPhotoRound.tsx new file mode 100644 index 000000000..06bf15c5a --- /dev/null +++ b/src/IconAddAPhotoRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAddAPhotoRound as default } diff --git a/src/IconAddAPhotoSharp.tsx b/src/IconAddAPhotoSharp.tsx new file mode 100644 index 000000000..b50fb46d9 --- /dev/null +++ b/src/IconAddAPhotoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAPhotoSharp as default } diff --git a/src/IconAddAPhotoTwoTone.tsx b/src/IconAddAPhotoTwoTone.tsx new file mode 100644 index 000000000..eb659ab87 --- /dev/null +++ b/src/IconAddAPhotoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddAPhotoTwoTone as default } diff --git a/src/IconAddAlarmOutlined.tsx b/src/IconAddAlarmOutlined.tsx new file mode 100644 index 000000000..c878a26b3 --- /dev/null +++ b/src/IconAddAlarmOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlarmOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAlarmOutlined as default } diff --git a/src/IconAddAlarmRound.tsx b/src/IconAddAlarmRound.tsx new file mode 100644 index 000000000..8686e6898 --- /dev/null +++ b/src/IconAddAlarmRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlarmRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAlarmRound as default } diff --git a/src/IconAddAlarmSharp.tsx b/src/IconAddAlarmSharp.tsx new file mode 100644 index 000000000..5899ebe54 --- /dev/null +++ b/src/IconAddAlarmSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlarmSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAlarmSharp as default } diff --git a/src/IconAddAlarmTwoTone.tsx b/src/IconAddAlarmTwoTone.tsx new file mode 100644 index 000000000..c267d7a08 --- /dev/null +++ b/src/IconAddAlarmTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlarmTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddAlarmTwoTone as default } diff --git a/src/IconAddAlertOutlined.tsx b/src/IconAddAlertOutlined.tsx new file mode 100644 index 000000000..c03e4ab3f --- /dev/null +++ b/src/IconAddAlertOutlined.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAlertOutlined as default } diff --git a/src/IconAddAlertRound.tsx b/src/IconAddAlertRound.tsx new file mode 100644 index 000000000..3a91e7258 --- /dev/null +++ b/src/IconAddAlertRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddAlertRound as default } diff --git a/src/IconAddAlertSharp.tsx b/src/IconAddAlertSharp.tsx new file mode 100644 index 000000000..fa8846479 --- /dev/null +++ b/src/IconAddAlertSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAlertSharp as default } diff --git a/src/IconAddAlertTwoTone.tsx b/src/IconAddAlertTwoTone.tsx new file mode 100644 index 000000000..405d348cb --- /dev/null +++ b/src/IconAddAlertTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddAlertTwoTone as default } diff --git a/src/IconAddBoxOutlined.tsx b/src/IconAddBoxOutlined.tsx new file mode 100644 index 000000000..76986eb26 --- /dev/null +++ b/src/IconAddBoxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddBoxOutlined as default } diff --git a/src/IconAddBoxRound.tsx b/src/IconAddBoxRound.tsx new file mode 100644 index 000000000..c2c96a759 --- /dev/null +++ b/src/IconAddBoxRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddBoxRound as default } diff --git a/src/IconAddBoxSharp.tsx b/src/IconAddBoxSharp.tsx new file mode 100644 index 000000000..9ca1f9801 --- /dev/null +++ b/src/IconAddBoxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddBoxSharp as default } diff --git a/src/IconAddBoxTwoTone.tsx b/src/IconAddBoxTwoTone.tsx new file mode 100644 index 000000000..0e9ac62ed --- /dev/null +++ b/src/IconAddBoxTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddBoxTwoTone as default } diff --git a/src/IconAddBusinessOutlined.tsx b/src/IconAddBusinessOutlined.tsx new file mode 100644 index 000000000..83ece7c20 --- /dev/null +++ b/src/IconAddBusinessOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAddBusinessOutlined as default } diff --git a/src/IconAddBusinessRound.tsx b/src/IconAddBusinessRound.tsx new file mode 100644 index 000000000..0afffaf23 --- /dev/null +++ b/src/IconAddBusinessRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddBusinessRound as default } diff --git a/src/IconAddBusinessSharp.tsx b/src/IconAddBusinessSharp.tsx new file mode 100644 index 000000000..905e5b821 --- /dev/null +++ b/src/IconAddBusinessSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAddBusinessSharp as default } diff --git a/src/IconAddBusinessTwoTone.tsx b/src/IconAddBusinessTwoTone.tsx new file mode 100644 index 000000000..9c74547dd --- /dev/null +++ b/src/IconAddBusinessTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddBusinessTwoTone as default } diff --git a/src/IconAddCardOutlined.tsx b/src/IconAddCardOutlined.tsx new file mode 100644 index 000000000..4ce6411fe --- /dev/null +++ b/src/IconAddCardOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddCardOutlined as default } diff --git a/src/IconAddCardRound.tsx b/src/IconAddCardRound.tsx new file mode 100644 index 000000000..757e3cd9b --- /dev/null +++ b/src/IconAddCardRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAddCardRound as default } diff --git a/src/IconAddCardSharp.tsx b/src/IconAddCardSharp.tsx new file mode 100644 index 000000000..2293b87b3 --- /dev/null +++ b/src/IconAddCardSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddCardSharp as default } diff --git a/src/IconAddCardTwoTone.tsx b/src/IconAddCardTwoTone.tsx new file mode 100644 index 000000000..3623d2d0f --- /dev/null +++ b/src/IconAddCardTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddCardTwoTone as default } diff --git a/src/IconAddChartOutlined.tsx b/src/IconAddChartOutlined.tsx new file mode 100644 index 000000000..27595c194 --- /dev/null +++ b/src/IconAddChartOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddchartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAddchartOutlined as default } diff --git a/src/IconAddChartRound.tsx b/src/IconAddChartRound.tsx new file mode 100644 index 000000000..ee553c680 --- /dev/null +++ b/src/IconAddChartRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddchartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAddchartRound as default } diff --git a/src/IconAddChartSharp.tsx b/src/IconAddChartSharp.tsx new file mode 100644 index 000000000..c7a6d1b0d --- /dev/null +++ b/src/IconAddChartSharp.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddchartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconAddchartSharp as default } diff --git a/src/IconAddChartTwoTone.tsx b/src/IconAddChartTwoTone.tsx new file mode 100644 index 000000000..b8dbe5571 --- /dev/null +++ b/src/IconAddChartTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddchartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAddchartTwoTone as default } diff --git a/src/IconAddCircleOutlineOutlined.tsx b/src/IconAddCircleOutlineOutlined.tsx new file mode 100644 index 000000000..5405bb55a --- /dev/null +++ b/src/IconAddCircleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleOutlineOutlined as default } diff --git a/src/IconAddCircleOutlineRound.tsx b/src/IconAddCircleOutlineRound.tsx new file mode 100644 index 000000000..a2456a0c2 --- /dev/null +++ b/src/IconAddCircleOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleOutlineRound as default } diff --git a/src/IconAddCircleOutlineSharp.tsx b/src/IconAddCircleOutlineSharp.tsx new file mode 100644 index 000000000..25d86aae4 --- /dev/null +++ b/src/IconAddCircleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleOutlineSharp as default } diff --git a/src/IconAddCircleOutlineTwoTone.tsx b/src/IconAddCircleOutlineTwoTone.tsx new file mode 100644 index 000000000..c0135e158 --- /dev/null +++ b/src/IconAddCircleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleOutlineTwoTone as default } diff --git a/src/IconAddCircleOutlined.tsx b/src/IconAddCircleOutlined.tsx new file mode 100644 index 000000000..a4be0e549 --- /dev/null +++ b/src/IconAddCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleOutlined as default } diff --git a/src/IconAddCircleRound.tsx b/src/IconAddCircleRound.tsx new file mode 100644 index 000000000..3a0224ac2 --- /dev/null +++ b/src/IconAddCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleRound as default } diff --git a/src/IconAddCircleSharp.tsx b/src/IconAddCircleSharp.tsx new file mode 100644 index 000000000..0b9951c3e --- /dev/null +++ b/src/IconAddCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCircleSharp as default } diff --git a/src/IconAddCircleTwoTone.tsx b/src/IconAddCircleTwoTone.tsx new file mode 100644 index 000000000..543308049 --- /dev/null +++ b/src/IconAddCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddCircleTwoTone as default } diff --git a/src/IconAddCommentOutlined.tsx b/src/IconAddCommentOutlined.tsx new file mode 100644 index 000000000..3555da9f4 --- /dev/null +++ b/src/IconAddCommentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCommentOutlined as default } diff --git a/src/IconAddCommentRound.tsx b/src/IconAddCommentRound.tsx new file mode 100644 index 000000000..93cd74756 --- /dev/null +++ b/src/IconAddCommentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddCommentRound as default } diff --git a/src/IconAddCommentSharp.tsx b/src/IconAddCommentSharp.tsx new file mode 100644 index 000000000..72a85f4d7 --- /dev/null +++ b/src/IconAddCommentSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCommentSharp as default } diff --git a/src/IconAddCommentTwoTone.tsx b/src/IconAddCommentTwoTone.tsx new file mode 100644 index 000000000..6f0515848 --- /dev/null +++ b/src/IconAddCommentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddCommentTwoTone as default } diff --git a/src/IconAddHomeOutlined.tsx b/src/IconAddHomeOutlined.tsx new file mode 100644 index 000000000..cf4539141 --- /dev/null +++ b/src/IconAddHomeOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddHomeOutlined as default } diff --git a/src/IconAddHomeRound.tsx b/src/IconAddHomeRound.tsx new file mode 100644 index 000000000..58daeeec3 --- /dev/null +++ b/src/IconAddHomeRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAddHomeRound as default } diff --git a/src/IconAddHomeSharp.tsx b/src/IconAddHomeSharp.tsx new file mode 100644 index 000000000..fd1f40309 --- /dev/null +++ b/src/IconAddHomeSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddHomeSharp as default } diff --git a/src/IconAddHomeTwoTone.tsx b/src/IconAddHomeTwoTone.tsx new file mode 100644 index 000000000..329128532 --- /dev/null +++ b/src/IconAddHomeTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAddHomeTwoTone as default } diff --git a/src/IconAddHomeWorkOutlined.tsx b/src/IconAddHomeWorkOutlined.tsx new file mode 100644 index 000000000..c50433692 --- /dev/null +++ b/src/IconAddHomeWorkOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddHomeWorkOutlined as default } diff --git a/src/IconAddHomeWorkRound.tsx b/src/IconAddHomeWorkRound.tsx new file mode 100644 index 000000000..a80b22687 --- /dev/null +++ b/src/IconAddHomeWorkRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddHomeWorkRound as default } diff --git a/src/IconAddHomeWorkSharp.tsx b/src/IconAddHomeWorkSharp.tsx new file mode 100644 index 000000000..85b23c559 --- /dev/null +++ b/src/IconAddHomeWorkSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAddHomeWorkSharp as default } diff --git a/src/IconAddHomeWorkTwoTone.tsx b/src/IconAddHomeWorkTwoTone.tsx new file mode 100644 index 000000000..e44ad3a55 --- /dev/null +++ b/src/IconAddHomeWorkTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconAddHomeWorkTwoTone as default } diff --git a/src/IconAddIcCallOutlined.tsx b/src/IconAddIcCallOutlined.tsx new file mode 100644 index 000000000..9e87ef993 --- /dev/null +++ b/src/IconAddIcCallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddIcCallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddIcCallOutlined as default } diff --git a/src/IconAddIcCallRound.tsx b/src/IconAddIcCallRound.tsx new file mode 100644 index 000000000..a7a129b11 --- /dev/null +++ b/src/IconAddIcCallRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddIcCallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddIcCallRound as default } diff --git a/src/IconAddIcCallSharp.tsx b/src/IconAddIcCallSharp.tsx new file mode 100644 index 000000000..7de47cb85 --- /dev/null +++ b/src/IconAddIcCallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddIcCallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddIcCallSharp as default } diff --git a/src/IconAddIcCallTwoTone.tsx b/src/IconAddIcCallTwoTone.tsx new file mode 100644 index 000000000..c3a618fd6 --- /dev/null +++ b/src/IconAddIcCallTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddIcCallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddIcCallTwoTone as default } diff --git a/src/IconAddLinkOutlined.tsx b/src/IconAddLinkOutlined.tsx new file mode 100644 index 000000000..815574349 --- /dev/null +++ b/src/IconAddLinkOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddLinkOutlined as default } diff --git a/src/IconAddLinkRound.tsx b/src/IconAddLinkRound.tsx new file mode 100644 index 000000000..a1d09080b --- /dev/null +++ b/src/IconAddLinkRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddLinkRound as default } diff --git a/src/IconAddLinkSharp.tsx b/src/IconAddLinkSharp.tsx new file mode 100644 index 000000000..a83320278 --- /dev/null +++ b/src/IconAddLinkSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddLinkSharp as default } diff --git a/src/IconAddLinkTwoTone.tsx b/src/IconAddLinkTwoTone.tsx new file mode 100644 index 000000000..0df9f4240 --- /dev/null +++ b/src/IconAddLinkTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddLinkTwoTone as default } diff --git a/src/IconAddLocationAltOutlined.tsx b/src/IconAddLocationAltOutlined.tsx new file mode 100644 index 000000000..4173a869e --- /dev/null +++ b/src/IconAddLocationAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddLocationAltOutlined as default } diff --git a/src/IconAddLocationAltRound.tsx b/src/IconAddLocationAltRound.tsx new file mode 100644 index 000000000..bf0490f9c --- /dev/null +++ b/src/IconAddLocationAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAddLocationAltRound as default } diff --git a/src/IconAddLocationAltSharp.tsx b/src/IconAddLocationAltSharp.tsx new file mode 100644 index 000000000..b94cbfb8c --- /dev/null +++ b/src/IconAddLocationAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddLocationAltSharp as default } diff --git a/src/IconAddLocationAltTwoTone.tsx b/src/IconAddLocationAltTwoTone.tsx new file mode 100644 index 000000000..ca47d5d81 --- /dev/null +++ b/src/IconAddLocationAltTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddLocationAltTwoTone as default } diff --git a/src/IconAddLocationOutlined.tsx b/src/IconAddLocationOutlined.tsx new file mode 100644 index 000000000..8c8c20d4f --- /dev/null +++ b/src/IconAddLocationOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAddLocationOutlined as default } diff --git a/src/IconAddLocationRound.tsx b/src/IconAddLocationRound.tsx new file mode 100644 index 000000000..220882204 --- /dev/null +++ b/src/IconAddLocationRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAddLocationRound as default } diff --git a/src/IconAddLocationSharp.tsx b/src/IconAddLocationSharp.tsx new file mode 100644 index 000000000..bc2d6b4b6 --- /dev/null +++ b/src/IconAddLocationSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAddLocationSharp as default } diff --git a/src/IconAddLocationTwoTone.tsx b/src/IconAddLocationTwoTone.tsx new file mode 100644 index 000000000..d0dcb3495 --- /dev/null +++ b/src/IconAddLocationTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAddLocationTwoTone as default } diff --git a/src/IconAddModeratorOutlined.tsx b/src/IconAddModeratorOutlined.tsx new file mode 100644 index 000000000..ef94505e5 --- /dev/null +++ b/src/IconAddModeratorOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAddModeratorOutlined as default } diff --git a/src/IconAddModeratorRound.tsx b/src/IconAddModeratorRound.tsx new file mode 100644 index 000000000..f0296d8dd --- /dev/null +++ b/src/IconAddModeratorRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAddModeratorRound as default } diff --git a/src/IconAddModeratorSharp.tsx b/src/IconAddModeratorSharp.tsx new file mode 100644 index 000000000..72c231453 --- /dev/null +++ b/src/IconAddModeratorSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAddModeratorSharp as default } diff --git a/src/IconAddModeratorTwoTone.tsx b/src/IconAddModeratorTwoTone.tsx new file mode 100644 index 000000000..12d4c3c6a --- /dev/null +++ b/src/IconAddModeratorTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAddModeratorTwoTone as default } diff --git a/src/IconAddOutlined.tsx b/src/IconAddOutlined.tsx new file mode 100644 index 000000000..8f57598c6 --- /dev/null +++ b/src/IconAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddOutlined as default } diff --git a/src/IconAddPhotoAlternateOutlined.tsx b/src/IconAddPhotoAlternateOutlined.tsx new file mode 100644 index 000000000..357760cde --- /dev/null +++ b/src/IconAddPhotoAlternateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddPhotoAlternateOutlined as default } diff --git a/src/IconAddPhotoAlternateRound.tsx b/src/IconAddPhotoAlternateRound.tsx new file mode 100644 index 000000000..97903e4c0 --- /dev/null +++ b/src/IconAddPhotoAlternateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddPhotoAlternateRound as default } diff --git a/src/IconAddPhotoAlternateSharp.tsx b/src/IconAddPhotoAlternateSharp.tsx new file mode 100644 index 000000000..fac8f140c --- /dev/null +++ b/src/IconAddPhotoAlternateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddPhotoAlternateSharp as default } diff --git a/src/IconAddPhotoAlternateTwoTone.tsx b/src/IconAddPhotoAlternateTwoTone.tsx new file mode 100644 index 000000000..2d350ed12 --- /dev/null +++ b/src/IconAddPhotoAlternateTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAddPhotoAlternateTwoTone as default } diff --git a/src/IconAddReactionOutlined.tsx b/src/IconAddReactionOutlined.tsx new file mode 100644 index 000000000..c4a62b495 --- /dev/null +++ b/src/IconAddReactionOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddReactionOutlined as default } diff --git a/src/IconAddReactionRound.tsx b/src/IconAddReactionRound.tsx new file mode 100644 index 000000000..fa3c63922 --- /dev/null +++ b/src/IconAddReactionRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddReactionRound as default } diff --git a/src/IconAddReactionSharp.tsx b/src/IconAddReactionSharp.tsx new file mode 100644 index 000000000..4b779218e --- /dev/null +++ b/src/IconAddReactionSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddReactionSharp as default } diff --git a/src/IconAddReactionTwoTone.tsx b/src/IconAddReactionTwoTone.tsx new file mode 100644 index 000000000..e9af25275 --- /dev/null +++ b/src/IconAddReactionTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddReactionTwoTone as default } diff --git a/src/IconAddRoadOutlined.tsx b/src/IconAddRoadOutlined.tsx new file mode 100644 index 000000000..869120b4b --- /dev/null +++ b/src/IconAddRoadOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddRoadOutlined as default } diff --git a/src/IconAddRoadRound.tsx b/src/IconAddRoadRound.tsx new file mode 100644 index 000000000..b7db62b1a --- /dev/null +++ b/src/IconAddRoadRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAddRoadRound as default } diff --git a/src/IconAddRoadSharp.tsx b/src/IconAddRoadSharp.tsx new file mode 100644 index 000000000..b466e8f8d --- /dev/null +++ b/src/IconAddRoadSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddRoadSharp as default } diff --git a/src/IconAddRoadTwoTone.tsx b/src/IconAddRoadTwoTone.tsx new file mode 100644 index 000000000..c68083d01 --- /dev/null +++ b/src/IconAddRoadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAddRoadTwoTone as default } diff --git a/src/IconAddRound.tsx b/src/IconAddRound.tsx new file mode 100644 index 000000000..bdfaba473 --- /dev/null +++ b/src/IconAddRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddRound as default } diff --git a/src/IconAddSharp.tsx b/src/IconAddSharp.tsx new file mode 100644 index 000000000..ac4927aa9 --- /dev/null +++ b/src/IconAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddSharp as default } diff --git a/src/IconAddShoppingCartOutlined.tsx b/src/IconAddShoppingCartOutlined.tsx new file mode 100644 index 000000000..43d6f886e --- /dev/null +++ b/src/IconAddShoppingCartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddShoppingCartOutlined as default } diff --git a/src/IconAddShoppingCartRound.tsx b/src/IconAddShoppingCartRound.tsx new file mode 100644 index 000000000..e25b6f38d --- /dev/null +++ b/src/IconAddShoppingCartRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddShoppingCartRound as default } diff --git a/src/IconAddShoppingCartSharp.tsx b/src/IconAddShoppingCartSharp.tsx new file mode 100644 index 000000000..44335b8b5 --- /dev/null +++ b/src/IconAddShoppingCartSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddShoppingCartSharp as default } diff --git a/src/IconAddShoppingCartTwoTone.tsx b/src/IconAddShoppingCartTwoTone.tsx new file mode 100644 index 000000000..57f5ef4cc --- /dev/null +++ b/src/IconAddShoppingCartTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddShoppingCartTwoTone as default } diff --git a/src/IconAddTaskOutlined.tsx b/src/IconAddTaskOutlined.tsx new file mode 100644 index 000000000..cb056cd56 --- /dev/null +++ b/src/IconAddTaskOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddTaskOutlined as default } diff --git a/src/IconAddTaskRound.tsx b/src/IconAddTaskRound.tsx new file mode 100644 index 000000000..df7f6ea4b --- /dev/null +++ b/src/IconAddTaskRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddTaskRound as default } diff --git a/src/IconAddTaskSharp.tsx b/src/IconAddTaskSharp.tsx new file mode 100644 index 000000000..b0487b9e0 --- /dev/null +++ b/src/IconAddTaskSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddTaskSharp as default } diff --git a/src/IconAddTaskTwoTone.tsx b/src/IconAddTaskTwoTone.tsx new file mode 100644 index 000000000..93e106fbb --- /dev/null +++ b/src/IconAddTaskTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddTaskTwoTone as default } diff --git a/src/IconAddToDriveOutlined.tsx b/src/IconAddToDriveOutlined.tsx new file mode 100644 index 000000000..b2e8f3427 --- /dev/null +++ b/src/IconAddToDriveOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddToDriveOutlined as default } diff --git a/src/IconAddToDriveRound.tsx b/src/IconAddToDriveRound.tsx new file mode 100644 index 000000000..144d5358b --- /dev/null +++ b/src/IconAddToDriveRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddToDriveRound as default } diff --git a/src/IconAddToDriveSharp.tsx b/src/IconAddToDriveSharp.tsx new file mode 100644 index 000000000..e8fa1bd64 --- /dev/null +++ b/src/IconAddToDriveSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddToDriveSharp as default } diff --git a/src/IconAddToDriveTwoTone.tsx b/src/IconAddToDriveTwoTone.tsx new file mode 100644 index 000000000..2341835c3 --- /dev/null +++ b/src/IconAddToDriveTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAddToDriveTwoTone as default } diff --git a/src/IconAddToHomeScreenOutlined.tsx b/src/IconAddToHomeScreenOutlined.tsx new file mode 100644 index 000000000..0ca00c044 --- /dev/null +++ b/src/IconAddToHomeScreenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToHomeScreenOutlined as default } diff --git a/src/IconAddToHomeScreenRound.tsx b/src/IconAddToHomeScreenRound.tsx new file mode 100644 index 000000000..9f24f76bd --- /dev/null +++ b/src/IconAddToHomeScreenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToHomeScreenRound as default } diff --git a/src/IconAddToHomeScreenSharp.tsx b/src/IconAddToHomeScreenSharp.tsx new file mode 100644 index 000000000..465df8d8f --- /dev/null +++ b/src/IconAddToHomeScreenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToHomeScreenSharp as default } diff --git a/src/IconAddToHomeScreenTwoTone.tsx b/src/IconAddToHomeScreenTwoTone.tsx new file mode 100644 index 000000000..4d930af70 --- /dev/null +++ b/src/IconAddToHomeScreenTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToHomeScreenTwoTone as default } diff --git a/src/IconAddToPhotosOutlined.tsx b/src/IconAddToPhotosOutlined.tsx new file mode 100644 index 000000000..d18d113cc --- /dev/null +++ b/src/IconAddToPhotosOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToPhotosOutlined as default } diff --git a/src/IconAddToPhotosRound.tsx b/src/IconAddToPhotosRound.tsx new file mode 100644 index 000000000..de7fd34ca --- /dev/null +++ b/src/IconAddToPhotosRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToPhotosRound as default } diff --git a/src/IconAddToPhotosSharp.tsx b/src/IconAddToPhotosSharp.tsx new file mode 100644 index 000000000..562147647 --- /dev/null +++ b/src/IconAddToPhotosSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToPhotosSharp as default } diff --git a/src/IconAddToPhotosTwoTone.tsx b/src/IconAddToPhotosTwoTone.tsx new file mode 100644 index 000000000..9b3ca47d1 --- /dev/null +++ b/src/IconAddToPhotosTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddToPhotosTwoTone as default } diff --git a/src/IconAddToQueueOutlined.tsx b/src/IconAddToQueueOutlined.tsx new file mode 100644 index 000000000..28ffc3aef --- /dev/null +++ b/src/IconAddToQueueOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToQueueOutlined as default } diff --git a/src/IconAddToQueueRound.tsx b/src/IconAddToQueueRound.tsx new file mode 100644 index 000000000..ecf153e9d --- /dev/null +++ b/src/IconAddToQueueRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToQueueRound as default } diff --git a/src/IconAddToQueueSharp.tsx b/src/IconAddToQueueSharp.tsx new file mode 100644 index 000000000..d19f65c48 --- /dev/null +++ b/src/IconAddToQueueSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddToQueueSharp as default } diff --git a/src/IconAddToQueueTwoTone.tsx b/src/IconAddToQueueTwoTone.tsx new file mode 100644 index 000000000..1f73d04ec --- /dev/null +++ b/src/IconAddToQueueTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAddToQueueTwoTone as default } diff --git a/src/IconAddTwoTone.tsx b/src/IconAddTwoTone.tsx new file mode 100644 index 000000000..a755d3907 --- /dev/null +++ b/src/IconAddTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAddTwoTone as default } diff --git a/src/IconAdfScannerOutlined.tsx b/src/IconAdfScannerOutlined.tsx new file mode 100644 index 000000000..2181e6e06 --- /dev/null +++ b/src/IconAdfScannerOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAdfScannerOutlined as default } diff --git a/src/IconAdfScannerRound.tsx b/src/IconAdfScannerRound.tsx new file mode 100644 index 000000000..dc5cc3425 --- /dev/null +++ b/src/IconAdfScannerRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAdfScannerRound as default } diff --git a/src/IconAdfScannerSharp.tsx b/src/IconAdfScannerSharp.tsx new file mode 100644 index 000000000..f597d2bb1 --- /dev/null +++ b/src/IconAdfScannerSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAdfScannerSharp as default } diff --git a/src/IconAdfScannerTwoTone.tsx b/src/IconAdfScannerTwoTone.tsx new file mode 100644 index 000000000..3458dc37f --- /dev/null +++ b/src/IconAdfScannerTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAdfScannerTwoTone as default } diff --git a/src/IconAdjustOutlined.tsx b/src/IconAdjustOutlined.tsx new file mode 100644 index 000000000..7e511b31f --- /dev/null +++ b/src/IconAdjustOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdjustOutlined as default } diff --git a/src/IconAdjustRound.tsx b/src/IconAdjustRound.tsx new file mode 100644 index 000000000..f8c0348b0 --- /dev/null +++ b/src/IconAdjustRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdjustRound as default } diff --git a/src/IconAdjustSharp.tsx b/src/IconAdjustSharp.tsx new file mode 100644 index 000000000..97e763e1e --- /dev/null +++ b/src/IconAdjustSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdjustSharp as default } diff --git a/src/IconAdjustTwoTone.tsx b/src/IconAdjustTwoTone.tsx new file mode 100644 index 000000000..7b35a0190 --- /dev/null +++ b/src/IconAdjustTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdjustTwoTone as default } diff --git a/src/IconAdminPanelSettingsOutlined.tsx b/src/IconAdminPanelSettingsOutlined.tsx new file mode 100644 index 000000000..b0458b2d3 --- /dev/null +++ b/src/IconAdminPanelSettingsOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAdminPanelSettingsOutlined as default } diff --git a/src/IconAdminPanelSettingsRound.tsx b/src/IconAdminPanelSettingsRound.tsx new file mode 100644 index 000000000..8a4ad56a8 --- /dev/null +++ b/src/IconAdminPanelSettingsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAdminPanelSettingsRound as default } diff --git a/src/IconAdminPanelSettingsSharp.tsx b/src/IconAdminPanelSettingsSharp.tsx new file mode 100644 index 000000000..a3c56ffe9 --- /dev/null +++ b/src/IconAdminPanelSettingsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAdminPanelSettingsSharp as default } diff --git a/src/IconAdminPanelSettingsTwoTone.tsx b/src/IconAdminPanelSettingsTwoTone.tsx new file mode 100644 index 000000000..9ca152ac3 --- /dev/null +++ b/src/IconAdminPanelSettingsTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAdminPanelSettingsTwoTone as default } diff --git a/src/IconAdsClickOutlined.tsx b/src/IconAdsClickOutlined.tsx new file mode 100644 index 000000000..8155b6317 --- /dev/null +++ b/src/IconAdsClickOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdsClickOutlined as default } diff --git a/src/IconAdsClickRound.tsx b/src/IconAdsClickRound.tsx new file mode 100644 index 000000000..6cfacdb1f --- /dev/null +++ b/src/IconAdsClickRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdsClickRound as default } diff --git a/src/IconAdsClickSharp.tsx b/src/IconAdsClickSharp.tsx new file mode 100644 index 000000000..ce8248ff4 --- /dev/null +++ b/src/IconAdsClickSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdsClickSharp as default } diff --git a/src/IconAdsClickTwoTone.tsx b/src/IconAdsClickTwoTone.tsx new file mode 100644 index 000000000..ae58f0780 --- /dev/null +++ b/src/IconAdsClickTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAdsClickTwoTone as default } diff --git a/src/IconAgricultureOutlined.tsx b/src/IconAgricultureOutlined.tsx new file mode 100644 index 000000000..ec8cdffa3 --- /dev/null +++ b/src/IconAgricultureOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAgricultureOutlined as default } diff --git a/src/IconAgricultureRound.tsx b/src/IconAgricultureRound.tsx new file mode 100644 index 000000000..296c9aea0 --- /dev/null +++ b/src/IconAgricultureRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAgricultureRound as default } diff --git a/src/IconAgricultureSharp.tsx b/src/IconAgricultureSharp.tsx new file mode 100644 index 000000000..e2fc19d81 --- /dev/null +++ b/src/IconAgricultureSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAgricultureSharp as default } diff --git a/src/IconAgricultureTwoTone.tsx b/src/IconAgricultureTwoTone.tsx new file mode 100644 index 000000000..e739f862d --- /dev/null +++ b/src/IconAgricultureTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAgricultureTwoTone as default } diff --git a/src/IconAirOutlined.tsx b/src/IconAirOutlined.tsx new file mode 100644 index 000000000..fff4ef1c6 --- /dev/null +++ b/src/IconAirOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirOutlined as default } diff --git a/src/IconAirRound.tsx b/src/IconAirRound.tsx new file mode 100644 index 000000000..0c3771f88 --- /dev/null +++ b/src/IconAirRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirRound as default } diff --git a/src/IconAirSharp.tsx b/src/IconAirSharp.tsx new file mode 100644 index 000000000..9274a5ce1 --- /dev/null +++ b/src/IconAirSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirSharp as default } diff --git a/src/IconAirTwoTone.tsx b/src/IconAirTwoTone.tsx new file mode 100644 index 000000000..7065c3ac7 --- /dev/null +++ b/src/IconAirTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirTwoTone as default } diff --git a/src/IconAirlineSeatFlatAngledOutlined.tsx b/src/IconAirlineSeatFlatAngledOutlined.tsx new file mode 100644 index 000000000..0e790c84e --- /dev/null +++ b/src/IconAirlineSeatFlatAngledOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatAngledOutlined as default } diff --git a/src/IconAirlineSeatFlatAngledRound.tsx b/src/IconAirlineSeatFlatAngledRound.tsx new file mode 100644 index 000000000..a2a209ea2 --- /dev/null +++ b/src/IconAirlineSeatFlatAngledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatAngledRound as default } diff --git a/src/IconAirlineSeatFlatAngledSharp.tsx b/src/IconAirlineSeatFlatAngledSharp.tsx new file mode 100644 index 000000000..db830cef0 --- /dev/null +++ b/src/IconAirlineSeatFlatAngledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatAngledSharp as default } diff --git a/src/IconAirlineSeatFlatAngledTwoTone.tsx b/src/IconAirlineSeatFlatAngledTwoTone.tsx new file mode 100644 index 000000000..ffb40f6a9 --- /dev/null +++ b/src/IconAirlineSeatFlatAngledTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAirlineSeatFlatAngledTwoTone as default } diff --git a/src/IconAirlineSeatFlatOutlined.tsx b/src/IconAirlineSeatFlatOutlined.tsx new file mode 100644 index 000000000..3d5ea9a5d --- /dev/null +++ b/src/IconAirlineSeatFlatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatOutlined as default } diff --git a/src/IconAirlineSeatFlatRound.tsx b/src/IconAirlineSeatFlatRound.tsx new file mode 100644 index 000000000..f920a3046 --- /dev/null +++ b/src/IconAirlineSeatFlatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatRound as default } diff --git a/src/IconAirlineSeatFlatSharp.tsx b/src/IconAirlineSeatFlatSharp.tsx new file mode 100644 index 000000000..f5bdeabed --- /dev/null +++ b/src/IconAirlineSeatFlatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatFlatSharp as default } diff --git a/src/IconAirlineSeatFlatTwoTone.tsx b/src/IconAirlineSeatFlatTwoTone.tsx new file mode 100644 index 000000000..714c4ef6f --- /dev/null +++ b/src/IconAirlineSeatFlatTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAirlineSeatFlatTwoTone as default } diff --git a/src/IconAirlineSeatIndividualSuiteOutlined.tsx b/src/IconAirlineSeatIndividualSuiteOutlined.tsx new file mode 100644 index 000000000..cab5eb95d --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatIndividualSuiteOutlined as default } diff --git a/src/IconAirlineSeatIndividualSuiteRound.tsx b/src/IconAirlineSeatIndividualSuiteRound.tsx new file mode 100644 index 000000000..27b9e9fda --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatIndividualSuiteRound as default } diff --git a/src/IconAirlineSeatIndividualSuiteSharp.tsx b/src/IconAirlineSeatIndividualSuiteSharp.tsx new file mode 100644 index 000000000..2de00163f --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatIndividualSuiteSharp as default } diff --git a/src/IconAirlineSeatIndividualSuiteTwoTone.tsx b/src/IconAirlineSeatIndividualSuiteTwoTone.tsx new file mode 100644 index 000000000..423378eee --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirlineSeatIndividualSuiteTwoTone as default } diff --git a/src/IconAirlineSeatLegroomExtraOutlined.tsx b/src/IconAirlineSeatLegroomExtraOutlined.tsx new file mode 100644 index 000000000..be5879b0f --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomExtraOutlined as default } diff --git a/src/IconAirlineSeatLegroomExtraRound.tsx b/src/IconAirlineSeatLegroomExtraRound.tsx new file mode 100644 index 000000000..5f12cf3b1 --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomExtraRound as default } diff --git a/src/IconAirlineSeatLegroomExtraSharp.tsx b/src/IconAirlineSeatLegroomExtraSharp.tsx new file mode 100644 index 000000000..298efe2f2 --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomExtraSharp as default } diff --git a/src/IconAirlineSeatLegroomExtraTwoTone.tsx b/src/IconAirlineSeatLegroomExtraTwoTone.tsx new file mode 100644 index 000000000..456ea04b8 --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomExtraTwoTone as default } diff --git a/src/IconAirlineSeatLegroomNormalOutlined.tsx b/src/IconAirlineSeatLegroomNormalOutlined.tsx new file mode 100644 index 000000000..5401806be --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomNormalOutlined as default } diff --git a/src/IconAirlineSeatLegroomNormalRound.tsx b/src/IconAirlineSeatLegroomNormalRound.tsx new file mode 100644 index 000000000..79f2b2d4c --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomNormalRound as default } diff --git a/src/IconAirlineSeatLegroomNormalSharp.tsx b/src/IconAirlineSeatLegroomNormalSharp.tsx new file mode 100644 index 000000000..262e70b59 --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomNormalSharp as default } diff --git a/src/IconAirlineSeatLegroomNormalTwoTone.tsx b/src/IconAirlineSeatLegroomNormalTwoTone.tsx new file mode 100644 index 000000000..4f8466371 --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomNormalTwoTone as default } diff --git a/src/IconAirlineSeatLegroomReducedOutlined.tsx b/src/IconAirlineSeatLegroomReducedOutlined.tsx new file mode 100644 index 000000000..97d423b74 --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomReducedOutlined as default } diff --git a/src/IconAirlineSeatLegroomReducedRound.tsx b/src/IconAirlineSeatLegroomReducedRound.tsx new file mode 100644 index 000000000..817b4ac25 --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomReducedRound as default } diff --git a/src/IconAirlineSeatLegroomReducedSharp.tsx b/src/IconAirlineSeatLegroomReducedSharp.tsx new file mode 100644 index 000000000..0e5c5991b --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomReducedSharp as default } diff --git a/src/IconAirlineSeatLegroomReducedTwoTone.tsx b/src/IconAirlineSeatLegroomReducedTwoTone.tsx new file mode 100644 index 000000000..4bdaf64c9 --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatLegroomReducedTwoTone as default } diff --git a/src/IconAirlineSeatReclineExtraOutlined.tsx b/src/IconAirlineSeatReclineExtraOutlined.tsx new file mode 100644 index 000000000..8f52aec61 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineExtraOutlined as default } diff --git a/src/IconAirlineSeatReclineExtraRound.tsx b/src/IconAirlineSeatReclineExtraRound.tsx new file mode 100644 index 000000000..a819b8a00 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineExtraRound as default } diff --git a/src/IconAirlineSeatReclineExtraSharp.tsx b/src/IconAirlineSeatReclineExtraSharp.tsx new file mode 100644 index 000000000..1d10768d1 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineExtraSharp as default } diff --git a/src/IconAirlineSeatReclineExtraTwoTone.tsx b/src/IconAirlineSeatReclineExtraTwoTone.tsx new file mode 100644 index 000000000..6c498e8f4 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineExtraTwoTone as default } diff --git a/src/IconAirlineSeatReclineNormalOutlined.tsx b/src/IconAirlineSeatReclineNormalOutlined.tsx new file mode 100644 index 000000000..eedab5b00 --- /dev/null +++ b/src/IconAirlineSeatReclineNormalOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineNormalOutlined as default } diff --git a/src/IconAirlineSeatReclineNormalRound.tsx b/src/IconAirlineSeatReclineNormalRound.tsx new file mode 100644 index 000000000..ef60b6bf4 --- /dev/null +++ b/src/IconAirlineSeatReclineNormalRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineNormalRound as default } diff --git a/src/IconAirlineSeatReclineNormalSharp.tsx b/src/IconAirlineSeatReclineNormalSharp.tsx new file mode 100644 index 000000000..aa17998a6 --- /dev/null +++ b/src/IconAirlineSeatReclineNormalSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineNormalSharp as default } diff --git a/src/IconAirlineSeatReclineNormalTwoTone.tsx b/src/IconAirlineSeatReclineNormalTwoTone.tsx new file mode 100644 index 000000000..c067b6673 --- /dev/null +++ b/src/IconAirlineSeatReclineNormalTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineSeatReclineNormalTwoTone as default } diff --git a/src/IconAirlineStopsOutlined.tsx b/src/IconAirlineStopsOutlined.tsx new file mode 100644 index 000000000..015e3980e --- /dev/null +++ b/src/IconAirlineStopsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineStopsOutlined as default } diff --git a/src/IconAirlineStopsRound.tsx b/src/IconAirlineStopsRound.tsx new file mode 100644 index 000000000..1708e515e --- /dev/null +++ b/src/IconAirlineStopsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineStopsRound as default } diff --git a/src/IconAirlineStopsSharp.tsx b/src/IconAirlineStopsSharp.tsx new file mode 100644 index 000000000..77c662724 --- /dev/null +++ b/src/IconAirlineStopsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineStopsSharp as default } diff --git a/src/IconAirlineStopsTwoTone.tsx b/src/IconAirlineStopsTwoTone.tsx new file mode 100644 index 000000000..8a9cc8738 --- /dev/null +++ b/src/IconAirlineStopsTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlineStopsTwoTone as default } diff --git a/src/IconAirlinesOutlined.tsx b/src/IconAirlinesOutlined.tsx new file mode 100644 index 000000000..d10d0bc09 --- /dev/null +++ b/src/IconAirlinesOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlinesOutlined as default } diff --git a/src/IconAirlinesRound.tsx b/src/IconAirlinesRound.tsx new file mode 100644 index 000000000..33f14a816 --- /dev/null +++ b/src/IconAirlinesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlinesRound as default } diff --git a/src/IconAirlinesSharp.tsx b/src/IconAirlinesSharp.tsx new file mode 100644 index 000000000..4840d52ac --- /dev/null +++ b/src/IconAirlinesSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirlinesSharp as default } diff --git a/src/IconAirlinesTwoTone.tsx b/src/IconAirlinesTwoTone.tsx new file mode 100644 index 000000000..6c220cdb9 --- /dev/null +++ b/src/IconAirlinesTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAirlinesTwoTone as default } diff --git a/src/IconAirplaneTicketOutlined.tsx b/src/IconAirplaneTicketOutlined.tsx new file mode 100644 index 000000000..5ee6ea260 --- /dev/null +++ b/src/IconAirplaneTicketOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirplaneTicketOutlined as default } diff --git a/src/IconAirplaneTicketRound.tsx b/src/IconAirplaneTicketRound.tsx new file mode 100644 index 000000000..babb9de00 --- /dev/null +++ b/src/IconAirplaneTicketRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAirplaneTicketRound as default } diff --git a/src/IconAirplaneTicketSharp.tsx b/src/IconAirplaneTicketSharp.tsx new file mode 100644 index 000000000..e6a0dd27a --- /dev/null +++ b/src/IconAirplaneTicketSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAirplaneTicketSharp as default } diff --git a/src/IconAirplaneTicketTwoTone.tsx b/src/IconAirplaneTicketTwoTone.tsx new file mode 100644 index 000000000..94a1b475c --- /dev/null +++ b/src/IconAirplaneTicketTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAirplaneTicketTwoTone as default } diff --git a/src/IconAirplanemodeActiveOutlined.tsx b/src/IconAirplanemodeActiveOutlined.tsx new file mode 100644 index 000000000..fa5c9f6f8 --- /dev/null +++ b/src/IconAirplanemodeActiveOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeActiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeActiveOutlined as default } diff --git a/src/IconAirplanemodeActiveRound.tsx b/src/IconAirplanemodeActiveRound.tsx new file mode 100644 index 000000000..6b01434de --- /dev/null +++ b/src/IconAirplanemodeActiveRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeActiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeActiveRound as default } diff --git a/src/IconAirplanemodeActiveSharp.tsx b/src/IconAirplanemodeActiveSharp.tsx new file mode 100644 index 000000000..6c536b00d --- /dev/null +++ b/src/IconAirplanemodeActiveSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeActiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeActiveSharp as default } diff --git a/src/IconAirplanemodeActiveTwoTone.tsx b/src/IconAirplanemodeActiveTwoTone.tsx new file mode 100644 index 000000000..7bc6c21f9 --- /dev/null +++ b/src/IconAirplanemodeActiveTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeActiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeActiveTwoTone as default } diff --git a/src/IconAirplanemodeInactiveOutlined.tsx b/src/IconAirplanemodeInactiveOutlined.tsx new file mode 100644 index 000000000..337edb7c8 --- /dev/null +++ b/src/IconAirplanemodeInactiveOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeInactiveOutlined as default } diff --git a/src/IconAirplanemodeInactiveRound.tsx b/src/IconAirplanemodeInactiveRound.tsx new file mode 100644 index 000000000..c686aff08 --- /dev/null +++ b/src/IconAirplanemodeInactiveRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeInactiveRound as default } diff --git a/src/IconAirplanemodeInactiveSharp.tsx b/src/IconAirplanemodeInactiveSharp.tsx new file mode 100644 index 000000000..196eef6f3 --- /dev/null +++ b/src/IconAirplanemodeInactiveSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeInactiveSharp as default } diff --git a/src/IconAirplanemodeInactiveTwoTone.tsx b/src/IconAirplanemodeInactiveTwoTone.tsx new file mode 100644 index 000000000..eec3df383 --- /dev/null +++ b/src/IconAirplanemodeInactiveTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAirplanemodeInactiveTwoTone as default } diff --git a/src/IconAirplayOutlined.tsx b/src/IconAirplayOutlined.tsx new file mode 100644 index 000000000..c1fca4bd4 --- /dev/null +++ b/src/IconAirplayOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAirplayOutlined as default } diff --git a/src/IconAirplayRound.tsx b/src/IconAirplayRound.tsx new file mode 100644 index 000000000..7f849c5c0 --- /dev/null +++ b/src/IconAirplayRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplayRound as default } diff --git a/src/IconAirplaySharp.tsx b/src/IconAirplaySharp.tsx new file mode 100644 index 000000000..234ef5a0f --- /dev/null +++ b/src/IconAirplaySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAirplaySharp as default } diff --git a/src/IconAirplayTwoTone.tsx b/src/IconAirplayTwoTone.tsx new file mode 100644 index 000000000..f75d8a381 --- /dev/null +++ b/src/IconAirplayTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAirplayTwoTone as default } diff --git a/src/IconAirportShuttleOutlined.tsx b/src/IconAirportShuttleOutlined.tsx new file mode 100644 index 000000000..644e7e498 --- /dev/null +++ b/src/IconAirportShuttleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirportShuttleOutlined as default } diff --git a/src/IconAirportShuttleRound.tsx b/src/IconAirportShuttleRound.tsx new file mode 100644 index 000000000..4d3071cfa --- /dev/null +++ b/src/IconAirportShuttleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirportShuttleRound as default } diff --git a/src/IconAirportShuttleSharp.tsx b/src/IconAirportShuttleSharp.tsx new file mode 100644 index 000000000..0cbc7311f --- /dev/null +++ b/src/IconAirportShuttleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAirportShuttleSharp as default } diff --git a/src/IconAirportShuttleTwoTone.tsx b/src/IconAirportShuttleTwoTone.tsx new file mode 100644 index 000000000..530974a2c --- /dev/null +++ b/src/IconAirportShuttleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAirportShuttleTwoTone as default } diff --git a/src/IconAlarmAddOutlined.tsx b/src/IconAlarmAddOutlined.tsx new file mode 100644 index 000000000..f1719b691 --- /dev/null +++ b/src/IconAlarmAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmAddOutlined as default } diff --git a/src/IconAlarmAddRound.tsx b/src/IconAlarmAddRound.tsx new file mode 100644 index 000000000..7a400adea --- /dev/null +++ b/src/IconAlarmAddRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmAddRound as default } diff --git a/src/IconAlarmAddSharp.tsx b/src/IconAlarmAddSharp.tsx new file mode 100644 index 000000000..c4072ec50 --- /dev/null +++ b/src/IconAlarmAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmAddSharp as default } diff --git a/src/IconAlarmAddTwoTone.tsx b/src/IconAlarmAddTwoTone.tsx new file mode 100644 index 000000000..0a2fdff29 --- /dev/null +++ b/src/IconAlarmAddTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAlarmAddTwoTone as default } diff --git a/src/IconAlarmOffOutlined.tsx b/src/IconAlarmOffOutlined.tsx new file mode 100644 index 000000000..6c906df04 --- /dev/null +++ b/src/IconAlarmOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOffOutlined as default } diff --git a/src/IconAlarmOffRound.tsx b/src/IconAlarmOffRound.tsx new file mode 100644 index 000000000..5efe3b122 --- /dev/null +++ b/src/IconAlarmOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOffRound as default } diff --git a/src/IconAlarmOffSharp.tsx b/src/IconAlarmOffSharp.tsx new file mode 100644 index 000000000..db21de75e --- /dev/null +++ b/src/IconAlarmOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOffSharp as default } diff --git a/src/IconAlarmOffTwoTone.tsx b/src/IconAlarmOffTwoTone.tsx new file mode 100644 index 000000000..266023063 --- /dev/null +++ b/src/IconAlarmOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOffTwoTone as default } diff --git a/src/IconAlarmOnOutlined.tsx b/src/IconAlarmOnOutlined.tsx new file mode 100644 index 000000000..b48829cba --- /dev/null +++ b/src/IconAlarmOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOnOutlined as default } diff --git a/src/IconAlarmOnRound.tsx b/src/IconAlarmOnRound.tsx new file mode 100644 index 000000000..ff782fa7d --- /dev/null +++ b/src/IconAlarmOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOnRound as default } diff --git a/src/IconAlarmOnSharp.tsx b/src/IconAlarmOnSharp.tsx new file mode 100644 index 000000000..c6310d775 --- /dev/null +++ b/src/IconAlarmOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOnSharp as default } diff --git a/src/IconAlarmOnTwoTone.tsx b/src/IconAlarmOnTwoTone.tsx new file mode 100644 index 000000000..12092c054 --- /dev/null +++ b/src/IconAlarmOnTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAlarmOnTwoTone as default } diff --git a/src/IconAlarmOutlined.tsx b/src/IconAlarmOutlined.tsx new file mode 100644 index 000000000..6e714717d --- /dev/null +++ b/src/IconAlarmOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmOutlined as default } diff --git a/src/IconAlarmRound.tsx b/src/IconAlarmRound.tsx new file mode 100644 index 000000000..17d0a5754 --- /dev/null +++ b/src/IconAlarmRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmRound as default } diff --git a/src/IconAlarmSharp.tsx b/src/IconAlarmSharp.tsx new file mode 100644 index 000000000..2c74d43e2 --- /dev/null +++ b/src/IconAlarmSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlarmSharp as default } diff --git a/src/IconAlarmTwoTone.tsx b/src/IconAlarmTwoTone.tsx new file mode 100644 index 000000000..8097ee206 --- /dev/null +++ b/src/IconAlarmTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAlarmTwoTone as default } diff --git a/src/IconAlbumOutlined.tsx b/src/IconAlbumOutlined.tsx new file mode 100644 index 000000000..52fe459ad --- /dev/null +++ b/src/IconAlbumOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlbumOutlined as default } diff --git a/src/IconAlbumRound.tsx b/src/IconAlbumRound.tsx new file mode 100644 index 000000000..ff55cfa4e --- /dev/null +++ b/src/IconAlbumRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlbumRound as default } diff --git a/src/IconAlbumSharp.tsx b/src/IconAlbumSharp.tsx new file mode 100644 index 000000000..9715c8181 --- /dev/null +++ b/src/IconAlbumSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlbumSharp as default } diff --git a/src/IconAlbumTwoTone.tsx b/src/IconAlbumTwoTone.tsx new file mode 100644 index 000000000..1f0f99d0c --- /dev/null +++ b/src/IconAlbumTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAlbumTwoTone as default } diff --git a/src/IconAlignHorizontalCenterOutlined.tsx b/src/IconAlignHorizontalCenterOutlined.tsx new file mode 100644 index 000000000..8b4b1a89e --- /dev/null +++ b/src/IconAlignHorizontalCenterOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalCenterOutlined as default } diff --git a/src/IconAlignHorizontalCenterRound.tsx b/src/IconAlignHorizontalCenterRound.tsx new file mode 100644 index 000000000..ca618dd40 --- /dev/null +++ b/src/IconAlignHorizontalCenterRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalCenterRound as default } diff --git a/src/IconAlignHorizontalCenterSharp.tsx b/src/IconAlignHorizontalCenterSharp.tsx new file mode 100644 index 000000000..78c4ab540 --- /dev/null +++ b/src/IconAlignHorizontalCenterSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalCenterSharp as default } diff --git a/src/IconAlignHorizontalCenterTwoTone.tsx b/src/IconAlignHorizontalCenterTwoTone.tsx new file mode 100644 index 000000000..b3f653014 --- /dev/null +++ b/src/IconAlignHorizontalCenterTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalCenterTwoTone as default } diff --git a/src/IconAlignHorizontalLeftOutlined.tsx b/src/IconAlignHorizontalLeftOutlined.tsx new file mode 100644 index 000000000..2e544a68f --- /dev/null +++ b/src/IconAlignHorizontalLeftOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalLeftOutlined as default } diff --git a/src/IconAlignHorizontalLeftRound.tsx b/src/IconAlignHorizontalLeftRound.tsx new file mode 100644 index 000000000..338d43233 --- /dev/null +++ b/src/IconAlignHorizontalLeftRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalLeftRound as default } diff --git a/src/IconAlignHorizontalLeftSharp.tsx b/src/IconAlignHorizontalLeftSharp.tsx new file mode 100644 index 000000000..9a23554a6 --- /dev/null +++ b/src/IconAlignHorizontalLeftSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalLeftSharp as default } diff --git a/src/IconAlignHorizontalLeftTwoTone.tsx b/src/IconAlignHorizontalLeftTwoTone.tsx new file mode 100644 index 000000000..1cc196ce7 --- /dev/null +++ b/src/IconAlignHorizontalLeftTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalLeftTwoTone as default } diff --git a/src/IconAlignHorizontalRightOutlined.tsx b/src/IconAlignHorizontalRightOutlined.tsx new file mode 100644 index 000000000..c95c1ece4 --- /dev/null +++ b/src/IconAlignHorizontalRightOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalRightOutlined as default } diff --git a/src/IconAlignHorizontalRightRound.tsx b/src/IconAlignHorizontalRightRound.tsx new file mode 100644 index 000000000..5a615de70 --- /dev/null +++ b/src/IconAlignHorizontalRightRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalRightRound as default } diff --git a/src/IconAlignHorizontalRightSharp.tsx b/src/IconAlignHorizontalRightSharp.tsx new file mode 100644 index 000000000..04a1c6d05 --- /dev/null +++ b/src/IconAlignHorizontalRightSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalRightSharp as default } diff --git a/src/IconAlignHorizontalRightTwoTone.tsx b/src/IconAlignHorizontalRightTwoTone.tsx new file mode 100644 index 000000000..6472600c7 --- /dev/null +++ b/src/IconAlignHorizontalRightTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignHorizontalRightTwoTone as default } diff --git a/src/IconAlignVerticalBottomOutlined.tsx b/src/IconAlignVerticalBottomOutlined.tsx new file mode 100644 index 000000000..32a387189 --- /dev/null +++ b/src/IconAlignVerticalBottomOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalBottomOutlined as default } diff --git a/src/IconAlignVerticalBottomRound.tsx b/src/IconAlignVerticalBottomRound.tsx new file mode 100644 index 000000000..e60959758 --- /dev/null +++ b/src/IconAlignVerticalBottomRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalBottomRound as default } diff --git a/src/IconAlignVerticalBottomSharp.tsx b/src/IconAlignVerticalBottomSharp.tsx new file mode 100644 index 000000000..85f7beea9 --- /dev/null +++ b/src/IconAlignVerticalBottomSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalBottomSharp as default } diff --git a/src/IconAlignVerticalBottomTwoTone.tsx b/src/IconAlignVerticalBottomTwoTone.tsx new file mode 100644 index 000000000..62e8ae471 --- /dev/null +++ b/src/IconAlignVerticalBottomTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalBottomTwoTone as default } diff --git a/src/IconAlignVerticalCenterOutlined.tsx b/src/IconAlignVerticalCenterOutlined.tsx new file mode 100644 index 000000000..d23b94579 --- /dev/null +++ b/src/IconAlignVerticalCenterOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalCenterOutlined as default } diff --git a/src/IconAlignVerticalCenterRound.tsx b/src/IconAlignVerticalCenterRound.tsx new file mode 100644 index 000000000..91077b9a2 --- /dev/null +++ b/src/IconAlignVerticalCenterRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalCenterRound as default } diff --git a/src/IconAlignVerticalCenterSharp.tsx b/src/IconAlignVerticalCenterSharp.tsx new file mode 100644 index 000000000..532df8a4a --- /dev/null +++ b/src/IconAlignVerticalCenterSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalCenterSharp as default } diff --git a/src/IconAlignVerticalCenterTwoTone.tsx b/src/IconAlignVerticalCenterTwoTone.tsx new file mode 100644 index 000000000..43ca270e6 --- /dev/null +++ b/src/IconAlignVerticalCenterTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalCenterTwoTone as default } diff --git a/src/IconAlignVerticalTopOutlined.tsx b/src/IconAlignVerticalTopOutlined.tsx new file mode 100644 index 000000000..6dce08dbd --- /dev/null +++ b/src/IconAlignVerticalTopOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalTopOutlined as default } diff --git a/src/IconAlignVerticalTopRound.tsx b/src/IconAlignVerticalTopRound.tsx new file mode 100644 index 000000000..aae978617 --- /dev/null +++ b/src/IconAlignVerticalTopRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalTopRound as default } diff --git a/src/IconAlignVerticalTopSharp.tsx b/src/IconAlignVerticalTopSharp.tsx new file mode 100644 index 000000000..b161bc3b6 --- /dev/null +++ b/src/IconAlignVerticalTopSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalTopSharp as default } diff --git a/src/IconAlignVerticalTopTwoTone.tsx b/src/IconAlignVerticalTopTwoTone.tsx new file mode 100644 index 000000000..9af7cb35b --- /dev/null +++ b/src/IconAlignVerticalTopTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlignVerticalTopTwoTone as default } diff --git a/src/IconAllInboxOutlined.tsx b/src/IconAllInboxOutlined.tsx new file mode 100644 index 000000000..5dcc5d5b3 --- /dev/null +++ b/src/IconAllInboxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInboxOutlined as default } diff --git a/src/IconAllInboxRound.tsx b/src/IconAllInboxRound.tsx new file mode 100644 index 000000000..bee8c6f88 --- /dev/null +++ b/src/IconAllInboxRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInboxRound as default } diff --git a/src/IconAllInboxSharp.tsx b/src/IconAllInboxSharp.tsx new file mode 100644 index 000000000..a61865dc9 --- /dev/null +++ b/src/IconAllInboxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInboxSharp as default } diff --git a/src/IconAllInboxTwoTone.tsx b/src/IconAllInboxTwoTone.tsx new file mode 100644 index 000000000..6f386ddc0 --- /dev/null +++ b/src/IconAllInboxTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAllInboxTwoTone as default } diff --git a/src/IconAllInclusiveOutlined.tsx b/src/IconAllInclusiveOutlined.tsx new file mode 100644 index 000000000..1c82f13b2 --- /dev/null +++ b/src/IconAllInclusiveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInclusiveOutlined as default } diff --git a/src/IconAllInclusiveRound.tsx b/src/IconAllInclusiveRound.tsx new file mode 100644 index 000000000..aea088c97 --- /dev/null +++ b/src/IconAllInclusiveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInclusiveRound as default } diff --git a/src/IconAllInclusiveSharp.tsx b/src/IconAllInclusiveSharp.tsx new file mode 100644 index 000000000..b43db9b59 --- /dev/null +++ b/src/IconAllInclusiveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInclusiveSharp as default } diff --git a/src/IconAllInclusiveTwoTone.tsx b/src/IconAllInclusiveTwoTone.tsx new file mode 100644 index 000000000..11056223e --- /dev/null +++ b/src/IconAllInclusiveTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllInclusiveTwoTone as default } diff --git a/src/IconAllOutOutlined.tsx b/src/IconAllOutOutlined.tsx new file mode 100644 index 000000000..e7241c157 --- /dev/null +++ b/src/IconAllOutOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllOutOutlined as default } diff --git a/src/IconAllOutRound.tsx b/src/IconAllOutRound.tsx new file mode 100644 index 000000000..d662f033b --- /dev/null +++ b/src/IconAllOutRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllOutRound as default } diff --git a/src/IconAllOutSharp.tsx b/src/IconAllOutSharp.tsx new file mode 100644 index 000000000..e2070e1b8 --- /dev/null +++ b/src/IconAllOutSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAllOutSharp as default } diff --git a/src/IconAllOutTwoTone.tsx b/src/IconAllOutTwoTone.tsx new file mode 100644 index 000000000..6c5e80599 --- /dev/null +++ b/src/IconAllOutTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAllOutTwoTone as default } diff --git a/src/IconAltRouteOutlined.tsx b/src/IconAltRouteOutlined.tsx new file mode 100644 index 000000000..637d40beb --- /dev/null +++ b/src/IconAltRouteOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAltRouteOutlined as default } diff --git a/src/IconAltRouteRound.tsx b/src/IconAltRouteRound.tsx new file mode 100644 index 000000000..d21698195 --- /dev/null +++ b/src/IconAltRouteRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAltRouteRound as default } diff --git a/src/IconAltRouteSharp.tsx b/src/IconAltRouteSharp.tsx new file mode 100644 index 000000000..e7750c1f3 --- /dev/null +++ b/src/IconAltRouteSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAltRouteSharp as default } diff --git a/src/IconAltRouteTwoTone.tsx b/src/IconAltRouteTwoTone.tsx new file mode 100644 index 000000000..7a1cf2f3c --- /dev/null +++ b/src/IconAltRouteTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAltRouteTwoTone as default } diff --git a/src/IconAlternateEmailOutlined.tsx b/src/IconAlternateEmailOutlined.tsx new file mode 100644 index 000000000..ce1e5bb97 --- /dev/null +++ b/src/IconAlternateEmailOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlternateEmailOutlined as default } diff --git a/src/IconAlternateEmailRound.tsx b/src/IconAlternateEmailRound.tsx new file mode 100644 index 000000000..061fc04bb --- /dev/null +++ b/src/IconAlternateEmailRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlternateEmailRound as default } diff --git a/src/IconAlternateEmailSharp.tsx b/src/IconAlternateEmailSharp.tsx new file mode 100644 index 000000000..c905a94ea --- /dev/null +++ b/src/IconAlternateEmailSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlternateEmailSharp as default } diff --git a/src/IconAlternateEmailTwoTone.tsx b/src/IconAlternateEmailTwoTone.tsx new file mode 100644 index 000000000..40bf57bb8 --- /dev/null +++ b/src/IconAlternateEmailTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAlternateEmailTwoTone as default } diff --git a/src/IconAnalyticsOutlined.tsx b/src/IconAnalyticsOutlined.tsx new file mode 100644 index 000000000..0d66187ab --- /dev/null +++ b/src/IconAnalyticsOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAnalyticsOutlined as default } diff --git a/src/IconAnalyticsRound.tsx b/src/IconAnalyticsRound.tsx new file mode 100644 index 000000000..64cc7da7e --- /dev/null +++ b/src/IconAnalyticsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAnalyticsRound as default } diff --git a/src/IconAnalyticsSharp.tsx b/src/IconAnalyticsSharp.tsx new file mode 100644 index 000000000..e0dd4c258 --- /dev/null +++ b/src/IconAnalyticsSharp.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconAnalyticsSharp as default } diff --git a/src/IconAnalyticsTwoTone.tsx b/src/IconAnalyticsTwoTone.tsx new file mode 100644 index 000000000..a1faf9018 --- /dev/null +++ b/src/IconAnalyticsTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAnalyticsTwoTone as default } diff --git a/src/IconAnchorOutlined.tsx b/src/IconAnchorOutlined.tsx new file mode 100644 index 000000000..4131a596e --- /dev/null +++ b/src/IconAnchorOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAnchorOutlined as default } diff --git a/src/IconAnchorRound.tsx b/src/IconAnchorRound.tsx new file mode 100644 index 000000000..870c83f48 --- /dev/null +++ b/src/IconAnchorRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAnchorRound as default } diff --git a/src/IconAnchorSharp.tsx b/src/IconAnchorSharp.tsx new file mode 100644 index 000000000..2d9ebb788 --- /dev/null +++ b/src/IconAnchorSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAnchorSharp as default } diff --git a/src/IconAnchorTwoTone.tsx b/src/IconAnchorTwoTone.tsx new file mode 100644 index 000000000..80850141e --- /dev/null +++ b/src/IconAnchorTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAnchorTwoTone as default } diff --git a/src/IconAndroidOutlined.tsx b/src/IconAndroidOutlined.tsx new file mode 100644 index 000000000..ecbbe864a --- /dev/null +++ b/src/IconAndroidOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAndroidOutlined as default } diff --git a/src/IconAndroidRound.tsx b/src/IconAndroidRound.tsx new file mode 100644 index 000000000..74d2de4e5 --- /dev/null +++ b/src/IconAndroidRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAndroidRound as default } diff --git a/src/IconAndroidSharp.tsx b/src/IconAndroidSharp.tsx new file mode 100644 index 000000000..b84987584 --- /dev/null +++ b/src/IconAndroidSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAndroidSharp as default } diff --git a/src/IconAndroidTwoTone.tsx b/src/IconAndroidTwoTone.tsx new file mode 100644 index 000000000..45264c271 --- /dev/null +++ b/src/IconAndroidTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAndroidTwoTone as default } diff --git a/src/IconAnimationOutlined.tsx b/src/IconAnimationOutlined.tsx new file mode 100644 index 000000000..26392d2fd --- /dev/null +++ b/src/IconAnimationOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAnimationOutlined as default } diff --git a/src/IconAnimationRound.tsx b/src/IconAnimationRound.tsx new file mode 100644 index 000000000..4354bf223 --- /dev/null +++ b/src/IconAnimationRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAnimationRound as default } diff --git a/src/IconAnimationSharp.tsx b/src/IconAnimationSharp.tsx new file mode 100644 index 000000000..9628c9df2 --- /dev/null +++ b/src/IconAnimationSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAnimationSharp as default } diff --git a/src/IconAnimationTwoTone.tsx b/src/IconAnimationTwoTone.tsx new file mode 100644 index 000000000..aa9beb94f --- /dev/null +++ b/src/IconAnimationTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAnimationTwoTone as default } diff --git a/src/IconAnnouncementOutlined.tsx b/src/IconAnnouncementOutlined.tsx new file mode 100644 index 000000000..1dd8dc5a6 --- /dev/null +++ b/src/IconAnnouncementOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnnouncementOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAnnouncementOutlined as default } diff --git a/src/IconAnnouncementRound.tsx b/src/IconAnnouncementRound.tsx new file mode 100644 index 000000000..22c512c95 --- /dev/null +++ b/src/IconAnnouncementRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnnouncementRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAnnouncementRound as default } diff --git a/src/IconAnnouncementSharp.tsx b/src/IconAnnouncementSharp.tsx new file mode 100644 index 000000000..dc5d79731 --- /dev/null +++ b/src/IconAnnouncementSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnnouncementSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAnnouncementSharp as default } diff --git a/src/IconAnnouncementTwoTone.tsx b/src/IconAnnouncementTwoTone.tsx new file mode 100644 index 000000000..5b481a7ce --- /dev/null +++ b/src/IconAnnouncementTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnnouncementTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAnnouncementTwoTone as default } diff --git a/src/IconAodOutlined.tsx b/src/IconAodOutlined.tsx new file mode 100644 index 000000000..ad3c58bd8 --- /dev/null +++ b/src/IconAodOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAodOutlined as default } diff --git a/src/IconAodRound.tsx b/src/IconAodRound.tsx new file mode 100644 index 000000000..6eaf86d05 --- /dev/null +++ b/src/IconAodRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAodRound as default } diff --git a/src/IconAodSharp.tsx b/src/IconAodSharp.tsx new file mode 100644 index 000000000..a743612ae --- /dev/null +++ b/src/IconAodSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAodSharp as default } diff --git a/src/IconAodTwoTone.tsx b/src/IconAodTwoTone.tsx new file mode 100644 index 000000000..0ce8f1ebe --- /dev/null +++ b/src/IconAodTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAodTwoTone as default } diff --git a/src/IconApartmentOutlined.tsx b/src/IconApartmentOutlined.tsx new file mode 100644 index 000000000..deb99589c --- /dev/null +++ b/src/IconApartmentOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconApartmentOutlined as default } diff --git a/src/IconApartmentRound.tsx b/src/IconApartmentRound.tsx new file mode 100644 index 000000000..37c6bb693 --- /dev/null +++ b/src/IconApartmentRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconApartmentRound as default } diff --git a/src/IconApartmentSharp.tsx b/src/IconApartmentSharp.tsx new file mode 100644 index 000000000..9b363e3c6 --- /dev/null +++ b/src/IconApartmentSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconApartmentSharp as default } diff --git a/src/IconApartmentTwoTone.tsx b/src/IconApartmentTwoTone.tsx new file mode 100644 index 000000000..13686b364 --- /dev/null +++ b/src/IconApartmentTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconApartmentTwoTone as default } diff --git a/src/IconApiOutlined.tsx b/src/IconApiOutlined.tsx new file mode 100644 index 000000000..09710ff21 --- /dev/null +++ b/src/IconApiOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconApiOutlined as default } diff --git a/src/IconApiRound.tsx b/src/IconApiRound.tsx new file mode 100644 index 000000000..7b165ded0 --- /dev/null +++ b/src/IconApiRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconApiRound as default } diff --git a/src/IconApiSharp.tsx b/src/IconApiSharp.tsx new file mode 100644 index 000000000..abec10b63 --- /dev/null +++ b/src/IconApiSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconApiSharp as default } diff --git a/src/IconApiTwoTone.tsx b/src/IconApiTwoTone.tsx new file mode 100644 index 000000000..e0d03f340 --- /dev/null +++ b/src/IconApiTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconApiTwoTone as default } diff --git a/src/IconAppBlockingOutlined.tsx b/src/IconAppBlockingOutlined.tsx new file mode 100644 index 000000000..a268becc7 --- /dev/null +++ b/src/IconAppBlockingOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAppBlockingOutlined as default } diff --git a/src/IconAppBlockingRound.tsx b/src/IconAppBlockingRound.tsx new file mode 100644 index 000000000..aadd28e95 --- /dev/null +++ b/src/IconAppBlockingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAppBlockingRound as default } diff --git a/src/IconAppBlockingSharp.tsx b/src/IconAppBlockingSharp.tsx new file mode 100644 index 000000000..c27d48939 --- /dev/null +++ b/src/IconAppBlockingSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAppBlockingSharp as default } diff --git a/src/IconAppBlockingTwoTone.tsx b/src/IconAppBlockingTwoTone.tsx new file mode 100644 index 000000000..338dfeb5b --- /dev/null +++ b/src/IconAppBlockingTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAppBlockingTwoTone as default } diff --git a/src/IconAppRegistrationOutlined.tsx b/src/IconAppRegistrationOutlined.tsx new file mode 100644 index 000000000..8cc7524c6 --- /dev/null +++ b/src/IconAppRegistrationOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconAppRegistrationOutlined as default } diff --git a/src/IconAppRegistrationRound.tsx b/src/IconAppRegistrationRound.tsx new file mode 100644 index 000000000..d6be96ff3 --- /dev/null +++ b/src/IconAppRegistrationRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconAppRegistrationRound as default } diff --git a/src/IconAppRegistrationSharp.tsx b/src/IconAppRegistrationSharp.tsx new file mode 100644 index 000000000..5d7d59c52 --- /dev/null +++ b/src/IconAppRegistrationSharp.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconAppRegistrationSharp as default } diff --git a/src/IconAppRegistrationTwoTone.tsx b/src/IconAppRegistrationTwoTone.tsx new file mode 100644 index 000000000..e98e57a2c --- /dev/null +++ b/src/IconAppRegistrationTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconAppRegistrationTwoTone as default } diff --git a/src/IconAppSettingsAltOutlined.tsx b/src/IconAppSettingsAltOutlined.tsx new file mode 100644 index 000000000..76f72ad17 --- /dev/null +++ b/src/IconAppSettingsAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppSettingsAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAppSettingsAltOutlined as default } diff --git a/src/IconAppSettingsAltRound.tsx b/src/IconAppSettingsAltRound.tsx new file mode 100644 index 000000000..e15281107 --- /dev/null +++ b/src/IconAppSettingsAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppSettingsAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAppSettingsAltRound as default } diff --git a/src/IconAppSettingsAltSharp.tsx b/src/IconAppSettingsAltSharp.tsx new file mode 100644 index 000000000..598789d10 --- /dev/null +++ b/src/IconAppSettingsAltSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppSettingsAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAppSettingsAltSharp as default } diff --git a/src/IconAppSettingsAltTwoTone.tsx b/src/IconAppSettingsAltTwoTone.tsx new file mode 100644 index 000000000..81f556ad5 --- /dev/null +++ b/src/IconAppSettingsAltTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppSettingsAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAppSettingsAltTwoTone as default } diff --git a/src/IconAppShortcutOutlined.tsx b/src/IconAppShortcutOutlined.tsx new file mode 100644 index 000000000..2c5fb7d6b --- /dev/null +++ b/src/IconAppShortcutOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAppShortcutOutlined as default } diff --git a/src/IconAppShortcutRound.tsx b/src/IconAppShortcutRound.tsx new file mode 100644 index 000000000..73c13353e --- /dev/null +++ b/src/IconAppShortcutRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAppShortcutRound as default } diff --git a/src/IconAppShortcutSharp.tsx b/src/IconAppShortcutSharp.tsx new file mode 100644 index 000000000..f685cac43 --- /dev/null +++ b/src/IconAppShortcutSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAppShortcutSharp as default } diff --git a/src/IconAppShortcutTwoTone.tsx b/src/IconAppShortcutTwoTone.tsx new file mode 100644 index 000000000..242e0ed90 --- /dev/null +++ b/src/IconAppShortcutTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAppShortcutTwoTone as default } diff --git a/src/IconApprovalOutlined.tsx b/src/IconApprovalOutlined.tsx new file mode 100644 index 000000000..9d36a10ad --- /dev/null +++ b/src/IconApprovalOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconApprovalOutlined as default } diff --git a/src/IconApprovalRound.tsx b/src/IconApprovalRound.tsx new file mode 100644 index 000000000..19721a42d --- /dev/null +++ b/src/IconApprovalRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconApprovalRound as default } diff --git a/src/IconApprovalSharp.tsx b/src/IconApprovalSharp.tsx new file mode 100644 index 000000000..dc02edc58 --- /dev/null +++ b/src/IconApprovalSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconApprovalSharp as default } diff --git a/src/IconApprovalTwoTone.tsx b/src/IconApprovalTwoTone.tsx new file mode 100644 index 000000000..50c9033e3 --- /dev/null +++ b/src/IconApprovalTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconApprovalTwoTone as default } diff --git a/src/IconAppsOutageOutlined.tsx b/src/IconAppsOutageOutlined.tsx new file mode 100644 index 000000000..bae92cd29 --- /dev/null +++ b/src/IconAppsOutageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutageOutlined as default } diff --git a/src/IconAppsOutageRound.tsx b/src/IconAppsOutageRound.tsx new file mode 100644 index 000000000..2f6c3b21d --- /dev/null +++ b/src/IconAppsOutageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutageRound as default } diff --git a/src/IconAppsOutageSharp.tsx b/src/IconAppsOutageSharp.tsx new file mode 100644 index 000000000..160bd310c --- /dev/null +++ b/src/IconAppsOutageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutageSharp as default } diff --git a/src/IconAppsOutageTwoTone.tsx b/src/IconAppsOutageTwoTone.tsx new file mode 100644 index 000000000..e6d401dd3 --- /dev/null +++ b/src/IconAppsOutageTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutageTwoTone as default } diff --git a/src/IconAppsOutlined.tsx b/src/IconAppsOutlined.tsx new file mode 100644 index 000000000..e650b3c9e --- /dev/null +++ b/src/IconAppsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsOutlined as default } diff --git a/src/IconAppsRound.tsx b/src/IconAppsRound.tsx new file mode 100644 index 000000000..76173de9f --- /dev/null +++ b/src/IconAppsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsRound as default } diff --git a/src/IconAppsSharp.tsx b/src/IconAppsSharp.tsx new file mode 100644 index 000000000..bf9413bc3 --- /dev/null +++ b/src/IconAppsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsSharp as default } diff --git a/src/IconAppsTwoTone.tsx b/src/IconAppsTwoTone.tsx new file mode 100644 index 000000000..fe56264d5 --- /dev/null +++ b/src/IconAppsTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAppsTwoTone as default } diff --git a/src/IconArchitectureOutlined.tsx b/src/IconArchitectureOutlined.tsx new file mode 100644 index 000000000..e16a757ca --- /dev/null +++ b/src/IconArchitectureOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconArchitectureOutlined as default } diff --git a/src/IconArchitectureRound.tsx b/src/IconArchitectureRound.tsx new file mode 100644 index 000000000..3e87bda12 --- /dev/null +++ b/src/IconArchitectureRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconArchitectureRound as default } diff --git a/src/IconArchitectureSharp.tsx b/src/IconArchitectureSharp.tsx new file mode 100644 index 000000000..7684dcd3c --- /dev/null +++ b/src/IconArchitectureSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconArchitectureSharp as default } diff --git a/src/IconArchitectureTwoTone.tsx b/src/IconArchitectureTwoTone.tsx new file mode 100644 index 000000000..6770bb57a --- /dev/null +++ b/src/IconArchitectureTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconArchitectureTwoTone as default } diff --git a/src/IconArchiveOutlined.tsx b/src/IconArchiveOutlined.tsx new file mode 100644 index 000000000..dc0e93818 --- /dev/null +++ b/src/IconArchiveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArchiveOutlined as default } diff --git a/src/IconArchiveRound.tsx b/src/IconArchiveRound.tsx new file mode 100644 index 000000000..3f36aa503 --- /dev/null +++ b/src/IconArchiveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArchiveRound as default } diff --git a/src/IconArchiveSharp.tsx b/src/IconArchiveSharp.tsx new file mode 100644 index 000000000..cc893367d --- /dev/null +++ b/src/IconArchiveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArchiveSharp as default } diff --git a/src/IconArchiveTwoTone.tsx b/src/IconArchiveTwoTone.tsx new file mode 100644 index 000000000..4041a34aa --- /dev/null +++ b/src/IconArchiveTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconArchiveTwoTone as default } diff --git a/src/IconAreaChartOutlined.tsx b/src/IconAreaChartOutlined.tsx new file mode 100644 index 000000000..9e2a7080e --- /dev/null +++ b/src/IconAreaChartOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAreaChartOutlined as default } diff --git a/src/IconAreaChartRound.tsx b/src/IconAreaChartRound.tsx new file mode 100644 index 000000000..065dce990 --- /dev/null +++ b/src/IconAreaChartRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAreaChartRound as default } diff --git a/src/IconAreaChartSharp.tsx b/src/IconAreaChartSharp.tsx new file mode 100644 index 000000000..447951b2d --- /dev/null +++ b/src/IconAreaChartSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAreaChartSharp as default } diff --git a/src/IconAreaChartTwoTone.tsx b/src/IconAreaChartTwoTone.tsx new file mode 100644 index 000000000..8fb9d308c --- /dev/null +++ b/src/IconAreaChartTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAreaChartTwoTone as default } diff --git a/src/IconArrowBackIosNewOutlined.tsx b/src/IconArrowBackIosNewOutlined.tsx new file mode 100644 index 000000000..7a57bc42f --- /dev/null +++ b/src/IconArrowBackIosNewOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowBackIosNewOutlined as default } diff --git a/src/IconArrowBackIosNewRound.tsx b/src/IconArrowBackIosNewRound.tsx new file mode 100644 index 000000000..5e92747f3 --- /dev/null +++ b/src/IconArrowBackIosNewRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowBackIosNewRound as default } diff --git a/src/IconArrowBackIosNewSharp.tsx b/src/IconArrowBackIosNewSharp.tsx new file mode 100644 index 000000000..6da038224 --- /dev/null +++ b/src/IconArrowBackIosNewSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowBackIosNewSharp as default } diff --git a/src/IconArrowBackIosNewTwoTone.tsx b/src/IconArrowBackIosNewTwoTone.tsx new file mode 100644 index 000000000..e8e17a4a4 --- /dev/null +++ b/src/IconArrowBackIosNewTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowBackIosNewTwoTone as default } diff --git a/src/IconArrowBackIosOutlined.tsx b/src/IconArrowBackIosOutlined.tsx new file mode 100644 index 000000000..b3fd5d320 --- /dev/null +++ b/src/IconArrowBackIosOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackIosOutlined as default } diff --git a/src/IconArrowBackIosRound.tsx b/src/IconArrowBackIosRound.tsx new file mode 100644 index 000000000..c77bba7af --- /dev/null +++ b/src/IconArrowBackIosRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackIosRound as default } diff --git a/src/IconArrowBackIosSharp.tsx b/src/IconArrowBackIosSharp.tsx new file mode 100644 index 000000000..90d14c233 --- /dev/null +++ b/src/IconArrowBackIosSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackIosSharp as default } diff --git a/src/IconArrowBackIosTwoTone.tsx b/src/IconArrowBackIosTwoTone.tsx new file mode 100644 index 000000000..1d7e10490 --- /dev/null +++ b/src/IconArrowBackIosTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackIosTwoTone as default } diff --git a/src/IconArrowBackOutlined.tsx b/src/IconArrowBackOutlined.tsx new file mode 100644 index 000000000..1e7cf2982 --- /dev/null +++ b/src/IconArrowBackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackOutlined as default } diff --git a/src/IconArrowBackRound.tsx b/src/IconArrowBackRound.tsx new file mode 100644 index 000000000..df1a1fe50 --- /dev/null +++ b/src/IconArrowBackRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackRound as default } diff --git a/src/IconArrowBackSharp.tsx b/src/IconArrowBackSharp.tsx new file mode 100644 index 000000000..5cb4e1def --- /dev/null +++ b/src/IconArrowBackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackSharp as default } diff --git a/src/IconArrowBackTwoTone.tsx b/src/IconArrowBackTwoTone.tsx new file mode 100644 index 000000000..e47c570d5 --- /dev/null +++ b/src/IconArrowBackTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowBackTwoTone as default } diff --git a/src/IconArrowCircleDownOutlined.tsx b/src/IconArrowCircleDownOutlined.tsx new file mode 100644 index 000000000..ad507c89e --- /dev/null +++ b/src/IconArrowCircleDownOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleDownOutlined as default } diff --git a/src/IconArrowCircleDownRound.tsx b/src/IconArrowCircleDownRound.tsx new file mode 100644 index 000000000..a7376ae16 --- /dev/null +++ b/src/IconArrowCircleDownRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleDownRound as default } diff --git a/src/IconArrowCircleDownSharp.tsx b/src/IconArrowCircleDownSharp.tsx new file mode 100644 index 000000000..1f2263194 --- /dev/null +++ b/src/IconArrowCircleDownSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleDownSharp as default } diff --git a/src/IconArrowCircleDownTwoTone.tsx b/src/IconArrowCircleDownTwoTone.tsx new file mode 100644 index 000000000..20e852c2d --- /dev/null +++ b/src/IconArrowCircleDownTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconArrowCircleDownTwoTone as default } diff --git a/src/IconArrowCircleLeftOutlined.tsx b/src/IconArrowCircleLeftOutlined.tsx new file mode 100644 index 000000000..d0cef923c --- /dev/null +++ b/src/IconArrowCircleLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleLeftOutlined as default } diff --git a/src/IconArrowCircleLeftRound.tsx b/src/IconArrowCircleLeftRound.tsx new file mode 100644 index 000000000..63337822f --- /dev/null +++ b/src/IconArrowCircleLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconArrowCircleLeftRound as default } diff --git a/src/IconArrowCircleLeftSharp.tsx b/src/IconArrowCircleLeftSharp.tsx new file mode 100644 index 000000000..167e378a9 --- /dev/null +++ b/src/IconArrowCircleLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleLeftSharp as default } diff --git a/src/IconArrowCircleLeftTwoTone.tsx b/src/IconArrowCircleLeftTwoTone.tsx new file mode 100644 index 000000000..b7bff7d9f --- /dev/null +++ b/src/IconArrowCircleLeftTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconArrowCircleLeftTwoTone as default } diff --git a/src/IconArrowCircleRightOutlined.tsx b/src/IconArrowCircleRightOutlined.tsx new file mode 100644 index 000000000..b0b06729f --- /dev/null +++ b/src/IconArrowCircleRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleRightOutlined as default } diff --git a/src/IconArrowCircleRightRound.tsx b/src/IconArrowCircleRightRound.tsx new file mode 100644 index 000000000..82d9a20f6 --- /dev/null +++ b/src/IconArrowCircleRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconArrowCircleRightRound as default } diff --git a/src/IconArrowCircleRightSharp.tsx b/src/IconArrowCircleRightSharp.tsx new file mode 100644 index 000000000..a7a48bbfe --- /dev/null +++ b/src/IconArrowCircleRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowCircleRightSharp as default } diff --git a/src/IconArrowCircleRightTwoTone.tsx b/src/IconArrowCircleRightTwoTone.tsx new file mode 100644 index 000000000..0de486cbd --- /dev/null +++ b/src/IconArrowCircleRightTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconArrowCircleRightTwoTone as default } diff --git a/src/IconArrowCircleUpOutlined.tsx b/src/IconArrowCircleUpOutlined.tsx new file mode 100644 index 000000000..f3933f831 --- /dev/null +++ b/src/IconArrowCircleUpOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleUpOutlined as default } diff --git a/src/IconArrowCircleUpRound.tsx b/src/IconArrowCircleUpRound.tsx new file mode 100644 index 000000000..fc7d80c28 --- /dev/null +++ b/src/IconArrowCircleUpRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleUpRound as default } diff --git a/src/IconArrowCircleUpSharp.tsx b/src/IconArrowCircleUpSharp.tsx new file mode 100644 index 000000000..9120a3eaf --- /dev/null +++ b/src/IconArrowCircleUpSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArrowCircleUpSharp as default } diff --git a/src/IconArrowCircleUpTwoTone.tsx b/src/IconArrowCircleUpTwoTone.tsx new file mode 100644 index 000000000..be9a181ce --- /dev/null +++ b/src/IconArrowCircleUpTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconArrowCircleUpTwoTone as default } diff --git a/src/IconArrowDownwardOutlined.tsx b/src/IconArrowDownwardOutlined.tsx new file mode 100644 index 000000000..9c0933f16 --- /dev/null +++ b/src/IconArrowDownwardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDownwardOutlined as default } diff --git a/src/IconArrowDownwardRound.tsx b/src/IconArrowDownwardRound.tsx new file mode 100644 index 000000000..2c0a305cd --- /dev/null +++ b/src/IconArrowDownwardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDownwardRound as default } diff --git a/src/IconArrowDownwardSharp.tsx b/src/IconArrowDownwardSharp.tsx new file mode 100644 index 000000000..3cd0b172e --- /dev/null +++ b/src/IconArrowDownwardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDownwardSharp as default } diff --git a/src/IconArrowDownwardTwoTone.tsx b/src/IconArrowDownwardTwoTone.tsx new file mode 100644 index 000000000..da7a87881 --- /dev/null +++ b/src/IconArrowDownwardTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDownwardTwoTone as default } diff --git a/src/IconArrowDropDownCircleOutlined.tsx b/src/IconArrowDropDownCircleOutlined.tsx new file mode 100644 index 000000000..202955b05 --- /dev/null +++ b/src/IconArrowDropDownCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownCircleOutlined as default } diff --git a/src/IconArrowDropDownCircleRound.tsx b/src/IconArrowDropDownCircleRound.tsx new file mode 100644 index 000000000..19fac98cf --- /dev/null +++ b/src/IconArrowDropDownCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownCircleRound as default } diff --git a/src/IconArrowDropDownCircleSharp.tsx b/src/IconArrowDropDownCircleSharp.tsx new file mode 100644 index 000000000..68f703967 --- /dev/null +++ b/src/IconArrowDropDownCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownCircleSharp as default } diff --git a/src/IconArrowDropDownCircleTwoTone.tsx b/src/IconArrowDropDownCircleTwoTone.tsx new file mode 100644 index 000000000..ffd74a78f --- /dev/null +++ b/src/IconArrowDropDownCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconArrowDropDownCircleTwoTone as default } diff --git a/src/IconArrowDropDownOutlined.tsx b/src/IconArrowDropDownOutlined.tsx new file mode 100644 index 000000000..0b7ec3731 --- /dev/null +++ b/src/IconArrowDropDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownOutlined as default } diff --git a/src/IconArrowDropDownRound.tsx b/src/IconArrowDropDownRound.tsx new file mode 100644 index 000000000..32b04cc78 --- /dev/null +++ b/src/IconArrowDropDownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownRound as default } diff --git a/src/IconArrowDropDownSharp.tsx b/src/IconArrowDropDownSharp.tsx new file mode 100644 index 000000000..ce0536ed2 --- /dev/null +++ b/src/IconArrowDropDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownSharp as default } diff --git a/src/IconArrowDropDownTwoTone.tsx b/src/IconArrowDropDownTwoTone.tsx new file mode 100644 index 000000000..e521c8193 --- /dev/null +++ b/src/IconArrowDropDownTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropDownTwoTone as default } diff --git a/src/IconArrowDropUpOutlined.tsx b/src/IconArrowDropUpOutlined.tsx new file mode 100644 index 000000000..9cab1b798 --- /dev/null +++ b/src/IconArrowDropUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropUpOutlined as default } diff --git a/src/IconArrowDropUpRound.tsx b/src/IconArrowDropUpRound.tsx new file mode 100644 index 000000000..1d39d76e8 --- /dev/null +++ b/src/IconArrowDropUpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropUpRound as default } diff --git a/src/IconArrowDropUpSharp.tsx b/src/IconArrowDropUpSharp.tsx new file mode 100644 index 000000000..07b0147cf --- /dev/null +++ b/src/IconArrowDropUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropUpSharp as default } diff --git a/src/IconArrowDropUpTwoTone.tsx b/src/IconArrowDropUpTwoTone.tsx new file mode 100644 index 000000000..6a19a7d0a --- /dev/null +++ b/src/IconArrowDropUpTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowDropUpTwoTone as default } diff --git a/src/IconArrowForwardIosOutlined.tsx b/src/IconArrowForwardIosOutlined.tsx new file mode 100644 index 000000000..52be3614e --- /dev/null +++ b/src/IconArrowForwardIosOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowForwardIosOutlined as default } diff --git a/src/IconArrowForwardIosRound.tsx b/src/IconArrowForwardIosRound.tsx new file mode 100644 index 000000000..2abcb842f --- /dev/null +++ b/src/IconArrowForwardIosRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowForwardIosRound as default } diff --git a/src/IconArrowForwardIosSharp.tsx b/src/IconArrowForwardIosSharp.tsx new file mode 100644 index 000000000..36fb98006 --- /dev/null +++ b/src/IconArrowForwardIosSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowForwardIosSharp as default } diff --git a/src/IconArrowForwardIosTwoTone.tsx b/src/IconArrowForwardIosTwoTone.tsx new file mode 100644 index 000000000..bf68249ca --- /dev/null +++ b/src/IconArrowForwardIosTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowForwardIosTwoTone as default } diff --git a/src/IconArrowForwardOutlined.tsx b/src/IconArrowForwardOutlined.tsx new file mode 100644 index 000000000..a093fe1ce --- /dev/null +++ b/src/IconArrowForwardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowForwardOutlined as default } diff --git a/src/IconArrowForwardRound.tsx b/src/IconArrowForwardRound.tsx new file mode 100644 index 000000000..cb4707aee --- /dev/null +++ b/src/IconArrowForwardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowForwardRound as default } diff --git a/src/IconArrowForwardSharp.tsx b/src/IconArrowForwardSharp.tsx new file mode 100644 index 000000000..832af84ba --- /dev/null +++ b/src/IconArrowForwardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowForwardSharp as default } diff --git a/src/IconArrowForwardTwoTone.tsx b/src/IconArrowForwardTwoTone.tsx new file mode 100644 index 000000000..02d21c198 --- /dev/null +++ b/src/IconArrowForwardTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowForwardTwoTone as default } diff --git a/src/IconArrowLeftOutlined.tsx b/src/IconArrowLeftOutlined.tsx new file mode 100644 index 000000000..b8b8ebd32 --- /dev/null +++ b/src/IconArrowLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowLeftOutlined as default } diff --git a/src/IconArrowLeftRound.tsx b/src/IconArrowLeftRound.tsx new file mode 100644 index 000000000..ab381bc37 --- /dev/null +++ b/src/IconArrowLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowLeftRound as default } diff --git a/src/IconArrowLeftSharp.tsx b/src/IconArrowLeftSharp.tsx new file mode 100644 index 000000000..19ef610e1 --- /dev/null +++ b/src/IconArrowLeftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowLeftSharp as default } diff --git a/src/IconArrowLeftTwoTone.tsx b/src/IconArrowLeftTwoTone.tsx new file mode 100644 index 000000000..d9f31c41b --- /dev/null +++ b/src/IconArrowLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowLeftTwoTone as default } diff --git a/src/IconArrowOutwardOutlined.tsx b/src/IconArrowOutwardOutlined.tsx new file mode 100644 index 000000000..7fd2405d8 --- /dev/null +++ b/src/IconArrowOutwardOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowOutwardOutlined as default } diff --git a/src/IconArrowOutwardRound.tsx b/src/IconArrowOutwardRound.tsx new file mode 100644 index 000000000..0a74db970 --- /dev/null +++ b/src/IconArrowOutwardRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconArrowOutwardRound as default } diff --git a/src/IconArrowOutwardSharp.tsx b/src/IconArrowOutwardSharp.tsx new file mode 100644 index 000000000..a263d5355 --- /dev/null +++ b/src/IconArrowOutwardSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowOutwardSharp as default } diff --git a/src/IconArrowOutwardTwoTone.tsx b/src/IconArrowOutwardTwoTone.tsx new file mode 100644 index 000000000..3bccfac79 --- /dev/null +++ b/src/IconArrowOutwardTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconArrowOutwardTwoTone as default } diff --git a/src/IconArrowRightAltOutlined.tsx b/src/IconArrowRightAltOutlined.tsx new file mode 100644 index 000000000..d2fb0e684 --- /dev/null +++ b/src/IconArrowRightAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightAltOutlined as default } diff --git a/src/IconArrowRightAltRound.tsx b/src/IconArrowRightAltRound.tsx new file mode 100644 index 000000000..6e221ab6f --- /dev/null +++ b/src/IconArrowRightAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightAltRound as default } diff --git a/src/IconArrowRightAltSharp.tsx b/src/IconArrowRightAltSharp.tsx new file mode 100644 index 000000000..640b75f37 --- /dev/null +++ b/src/IconArrowRightAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightAltSharp as default } diff --git a/src/IconArrowRightAltTwoTone.tsx b/src/IconArrowRightAltTwoTone.tsx new file mode 100644 index 000000000..9ce177362 --- /dev/null +++ b/src/IconArrowRightAltTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightAltTwoTone as default } diff --git a/src/IconArrowRightOutlined.tsx b/src/IconArrowRightOutlined.tsx new file mode 100644 index 000000000..9bcdaa335 --- /dev/null +++ b/src/IconArrowRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightOutlined as default } diff --git a/src/IconArrowRightRound.tsx b/src/IconArrowRightRound.tsx new file mode 100644 index 000000000..e8cf01e2c --- /dev/null +++ b/src/IconArrowRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightRound as default } diff --git a/src/IconArrowRightSharp.tsx b/src/IconArrowRightSharp.tsx new file mode 100644 index 000000000..29a1fa6df --- /dev/null +++ b/src/IconArrowRightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightSharp as default } diff --git a/src/IconArrowRightTwoTone.tsx b/src/IconArrowRightTwoTone.tsx new file mode 100644 index 000000000..011fd6e71 --- /dev/null +++ b/src/IconArrowRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowRightTwoTone as default } diff --git a/src/IconArrowUpwardOutlined.tsx b/src/IconArrowUpwardOutlined.tsx new file mode 100644 index 000000000..5ba33f4bf --- /dev/null +++ b/src/IconArrowUpwardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowUpwardOutlined as default } diff --git a/src/IconArrowUpwardRound.tsx b/src/IconArrowUpwardRound.tsx new file mode 100644 index 000000000..493ea7bef --- /dev/null +++ b/src/IconArrowUpwardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowUpwardRound as default } diff --git a/src/IconArrowUpwardSharp.tsx b/src/IconArrowUpwardSharp.tsx new file mode 100644 index 000000000..0a494a36f --- /dev/null +++ b/src/IconArrowUpwardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowUpwardSharp as default } diff --git a/src/IconArrowUpwardTwoTone.tsx b/src/IconArrowUpwardTwoTone.tsx new file mode 100644 index 000000000..f6c92b8a9 --- /dev/null +++ b/src/IconArrowUpwardTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArrowUpwardTwoTone as default } diff --git a/src/IconArtTrackOutlined.tsx b/src/IconArtTrackOutlined.tsx new file mode 100644 index 000000000..a065c26fa --- /dev/null +++ b/src/IconArtTrackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArtTrackOutlined as default } diff --git a/src/IconArtTrackRound.tsx b/src/IconArtTrackRound.tsx new file mode 100644 index 000000000..3e109a95a --- /dev/null +++ b/src/IconArtTrackRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtTrackRound as default } diff --git a/src/IconArtTrackSharp.tsx b/src/IconArtTrackSharp.tsx new file mode 100644 index 000000000..6d3f99f48 --- /dev/null +++ b/src/IconArtTrackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArtTrackSharp as default } diff --git a/src/IconArtTrackTwoTone.tsx b/src/IconArtTrackTwoTone.tsx new file mode 100644 index 000000000..c640f0a3b --- /dev/null +++ b/src/IconArtTrackTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconArtTrackTwoTone as default } diff --git a/src/IconArticleOutlined.tsx b/src/IconArticleOutlined.tsx new file mode 100644 index 000000000..574577139 --- /dev/null +++ b/src/IconArticleOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconArticleOutlined as default } diff --git a/src/IconArticleRound.tsx b/src/IconArticleRound.tsx new file mode 100644 index 000000000..8df6338f3 --- /dev/null +++ b/src/IconArticleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArticleRound as default } diff --git a/src/IconArticleSharp.tsx b/src/IconArticleSharp.tsx new file mode 100644 index 000000000..665d66327 --- /dev/null +++ b/src/IconArticleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconArticleSharp as default } diff --git a/src/IconArticleTwoTone.tsx b/src/IconArticleTwoTone.tsx new file mode 100644 index 000000000..b92cb083f --- /dev/null +++ b/src/IconArticleTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconArticleTwoTone as default } diff --git a/src/IconAspectRatioOutlined.tsx b/src/IconAspectRatioOutlined.tsx new file mode 100644 index 000000000..1ec15a598 --- /dev/null +++ b/src/IconAspectRatioOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAspectRatioOutlined as default } diff --git a/src/IconAspectRatioRound.tsx b/src/IconAspectRatioRound.tsx new file mode 100644 index 000000000..c2a9434af --- /dev/null +++ b/src/IconAspectRatioRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAspectRatioRound as default } diff --git a/src/IconAspectRatioSharp.tsx b/src/IconAspectRatioSharp.tsx new file mode 100644 index 000000000..abf120754 --- /dev/null +++ b/src/IconAspectRatioSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAspectRatioSharp as default } diff --git a/src/IconAspectRatioTwoTone.tsx b/src/IconAspectRatioTwoTone.tsx new file mode 100644 index 000000000..02ff7a279 --- /dev/null +++ b/src/IconAspectRatioTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAspectRatioTwoTone as default } diff --git a/src/IconAssessmentOutlined.tsx b/src/IconAssessmentOutlined.tsx new file mode 100644 index 000000000..2c2b0b107 --- /dev/null +++ b/src/IconAssessmentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssessmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssessmentOutlined as default } diff --git a/src/IconAssessmentRound.tsx b/src/IconAssessmentRound.tsx new file mode 100644 index 000000000..58d5beb4c --- /dev/null +++ b/src/IconAssessmentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssessmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssessmentRound as default } diff --git a/src/IconAssessmentSharp.tsx b/src/IconAssessmentSharp.tsx new file mode 100644 index 000000000..dfc8de929 --- /dev/null +++ b/src/IconAssessmentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssessmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssessmentSharp as default } diff --git a/src/IconAssessmentTwoTone.tsx b/src/IconAssessmentTwoTone.tsx new file mode 100644 index 000000000..ee7b9e6ca --- /dev/null +++ b/src/IconAssessmentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssessmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssessmentTwoTone as default } diff --git a/src/IconAssignmentIndOutlined.tsx b/src/IconAssignmentIndOutlined.tsx new file mode 100644 index 000000000..5abd6edf9 --- /dev/null +++ b/src/IconAssignmentIndOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentIndOutlined as default } diff --git a/src/IconAssignmentIndRound.tsx b/src/IconAssignmentIndRound.tsx new file mode 100644 index 000000000..f364259e2 --- /dev/null +++ b/src/IconAssignmentIndRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentIndRound as default } diff --git a/src/IconAssignmentIndSharp.tsx b/src/IconAssignmentIndSharp.tsx new file mode 100644 index 000000000..9224dad70 --- /dev/null +++ b/src/IconAssignmentIndSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentIndSharp as default } diff --git a/src/IconAssignmentIndTwoTone.tsx b/src/IconAssignmentIndTwoTone.tsx new file mode 100644 index 000000000..b2d5c3b9c --- /dev/null +++ b/src/IconAssignmentIndTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentIndTwoTone as default } diff --git a/src/IconAssignmentLateOutlined.tsx b/src/IconAssignmentLateOutlined.tsx new file mode 100644 index 000000000..283503230 --- /dev/null +++ b/src/IconAssignmentLateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentLateOutlined as default } diff --git a/src/IconAssignmentLateRound.tsx b/src/IconAssignmentLateRound.tsx new file mode 100644 index 000000000..118ea07ae --- /dev/null +++ b/src/IconAssignmentLateRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAssignmentLateRound as default } diff --git a/src/IconAssignmentLateSharp.tsx b/src/IconAssignmentLateSharp.tsx new file mode 100644 index 000000000..d105648e9 --- /dev/null +++ b/src/IconAssignmentLateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentLateSharp as default } diff --git a/src/IconAssignmentLateTwoTone.tsx b/src/IconAssignmentLateTwoTone.tsx new file mode 100644 index 000000000..6be1907d5 --- /dev/null +++ b/src/IconAssignmentLateTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentLateTwoTone as default } diff --git a/src/IconAssignmentOutlined.tsx b/src/IconAssignmentOutlined.tsx new file mode 100644 index 000000000..358c299f8 --- /dev/null +++ b/src/IconAssignmentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentOutlined as default } diff --git a/src/IconAssignmentReturnOutlined.tsx b/src/IconAssignmentReturnOutlined.tsx new file mode 100644 index 000000000..f6a909b48 --- /dev/null +++ b/src/IconAssignmentReturnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnOutlined as default } diff --git a/src/IconAssignmentReturnRound.tsx b/src/IconAssignmentReturnRound.tsx new file mode 100644 index 000000000..26cac2415 --- /dev/null +++ b/src/IconAssignmentReturnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnRound as default } diff --git a/src/IconAssignmentReturnSharp.tsx b/src/IconAssignmentReturnSharp.tsx new file mode 100644 index 000000000..4239838de --- /dev/null +++ b/src/IconAssignmentReturnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnSharp as default } diff --git a/src/IconAssignmentReturnTwoTone.tsx b/src/IconAssignmentReturnTwoTone.tsx new file mode 100644 index 000000000..44b18bb3f --- /dev/null +++ b/src/IconAssignmentReturnTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentReturnTwoTone as default } diff --git a/src/IconAssignmentReturnedOutlined.tsx b/src/IconAssignmentReturnedOutlined.tsx new file mode 100644 index 000000000..9941d87a9 --- /dev/null +++ b/src/IconAssignmentReturnedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnedOutlined as default } diff --git a/src/IconAssignmentReturnedRound.tsx b/src/IconAssignmentReturnedRound.tsx new file mode 100644 index 000000000..3ff13fa04 --- /dev/null +++ b/src/IconAssignmentReturnedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnedRound as default } diff --git a/src/IconAssignmentReturnedSharp.tsx b/src/IconAssignmentReturnedSharp.tsx new file mode 100644 index 000000000..2ea29cd90 --- /dev/null +++ b/src/IconAssignmentReturnedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentReturnedSharp as default } diff --git a/src/IconAssignmentReturnedTwoTone.tsx b/src/IconAssignmentReturnedTwoTone.tsx new file mode 100644 index 000000000..1b3fb97d6 --- /dev/null +++ b/src/IconAssignmentReturnedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentReturnedTwoTone as default } diff --git a/src/IconAssignmentRound.tsx b/src/IconAssignmentRound.tsx new file mode 100644 index 000000000..19aa52f4e --- /dev/null +++ b/src/IconAssignmentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentRound as default } diff --git a/src/IconAssignmentSharp.tsx b/src/IconAssignmentSharp.tsx new file mode 100644 index 000000000..4cd78b129 --- /dev/null +++ b/src/IconAssignmentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentSharp as default } diff --git a/src/IconAssignmentTurnedInOutlined.tsx b/src/IconAssignmentTurnedInOutlined.tsx new file mode 100644 index 000000000..8315fccac --- /dev/null +++ b/src/IconAssignmentTurnedInOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentTurnedInOutlined as default } diff --git a/src/IconAssignmentTurnedInRound.tsx b/src/IconAssignmentTurnedInRound.tsx new file mode 100644 index 000000000..c96d1f770 --- /dev/null +++ b/src/IconAssignmentTurnedInRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentTurnedInRound as default } diff --git a/src/IconAssignmentTurnedInSharp.tsx b/src/IconAssignmentTurnedInSharp.tsx new file mode 100644 index 000000000..730b69d9a --- /dev/null +++ b/src/IconAssignmentTurnedInSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssignmentTurnedInSharp as default } diff --git a/src/IconAssignmentTurnedInTwoTone.tsx b/src/IconAssignmentTurnedInTwoTone.tsx new file mode 100644 index 000000000..a0d8c327c --- /dev/null +++ b/src/IconAssignmentTurnedInTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentTurnedInTwoTone as default } diff --git a/src/IconAssignmentTwoTone.tsx b/src/IconAssignmentTwoTone.tsx new file mode 100644 index 000000000..95ffd9cf8 --- /dev/null +++ b/src/IconAssignmentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssignmentTwoTone as default } diff --git a/src/IconAssistWalkerOutlined.tsx b/src/IconAssistWalkerOutlined.tsx new file mode 100644 index 000000000..7b166fc05 --- /dev/null +++ b/src/IconAssistWalkerOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAssistWalkerOutlined as default } diff --git a/src/IconAssistWalkerRound.tsx b/src/IconAssistWalkerRound.tsx new file mode 100644 index 000000000..d244295a3 --- /dev/null +++ b/src/IconAssistWalkerRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAssistWalkerRound as default } diff --git a/src/IconAssistWalkerSharp.tsx b/src/IconAssistWalkerSharp.tsx new file mode 100644 index 000000000..81f17e7d0 --- /dev/null +++ b/src/IconAssistWalkerSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAssistWalkerSharp as default } diff --git a/src/IconAssistWalkerTwoTone.tsx b/src/IconAssistWalkerTwoTone.tsx new file mode 100644 index 000000000..12ceb27db --- /dev/null +++ b/src/IconAssistWalkerTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAssistWalkerTwoTone as default } diff --git a/src/IconAssistantDirectionOutlined.tsx b/src/IconAssistantDirectionOutlined.tsx new file mode 100644 index 000000000..c2de25d74 --- /dev/null +++ b/src/IconAssistantDirectionOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAssistantDirectionOutlined as default } diff --git a/src/IconAssistantDirectionRound.tsx b/src/IconAssistantDirectionRound.tsx new file mode 100644 index 000000000..69f123632 --- /dev/null +++ b/src/IconAssistantDirectionRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAssistantDirectionRound as default } diff --git a/src/IconAssistantDirectionSharp.tsx b/src/IconAssistantDirectionSharp.tsx new file mode 100644 index 000000000..a2e34de69 --- /dev/null +++ b/src/IconAssistantDirectionSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAssistantDirectionSharp as default } diff --git a/src/IconAssistantDirectionTwoTone.tsx b/src/IconAssistantDirectionTwoTone.tsx new file mode 100644 index 000000000..1ca2828bd --- /dev/null +++ b/src/IconAssistantDirectionTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAssistantDirectionTwoTone as default } diff --git a/src/IconAssistantOutlined.tsx b/src/IconAssistantOutlined.tsx new file mode 100644 index 000000000..879107eb6 --- /dev/null +++ b/src/IconAssistantOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantOutlined as default } diff --git a/src/IconAssistantPhotoOutlined.tsx b/src/IconAssistantPhotoOutlined.tsx new file mode 100644 index 000000000..d84600480 --- /dev/null +++ b/src/IconAssistantPhotoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantPhotoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantPhotoOutlined as default } diff --git a/src/IconAssistantPhotoRound.tsx b/src/IconAssistantPhotoRound.tsx new file mode 100644 index 000000000..e5411f070 --- /dev/null +++ b/src/IconAssistantPhotoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantPhotoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantPhotoRound as default } diff --git a/src/IconAssistantPhotoSharp.tsx b/src/IconAssistantPhotoSharp.tsx new file mode 100644 index 000000000..9971f2ceb --- /dev/null +++ b/src/IconAssistantPhotoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantPhotoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantPhotoSharp as default } diff --git a/src/IconAssistantPhotoTwoTone.tsx b/src/IconAssistantPhotoTwoTone.tsx new file mode 100644 index 000000000..b2ef6093b --- /dev/null +++ b/src/IconAssistantPhotoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantPhotoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssistantPhotoTwoTone as default } diff --git a/src/IconAssistantRound.tsx b/src/IconAssistantRound.tsx new file mode 100644 index 000000000..ee48b1d7a --- /dev/null +++ b/src/IconAssistantRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantRound as default } diff --git a/src/IconAssistantSharp.tsx b/src/IconAssistantSharp.tsx new file mode 100644 index 000000000..5c4bd70ac --- /dev/null +++ b/src/IconAssistantSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAssistantSharp as default } diff --git a/src/IconAssistantTwoTone.tsx b/src/IconAssistantTwoTone.tsx new file mode 100644 index 000000000..6ebe18607 --- /dev/null +++ b/src/IconAssistantTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAssistantTwoTone as default } diff --git a/src/IconAssuredWorkloadOutlined.tsx b/src/IconAssuredWorkloadOutlined.tsx new file mode 100644 index 000000000..d464fbd3f --- /dev/null +++ b/src/IconAssuredWorkloadOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAssuredWorkloadOutlined as default } diff --git a/src/IconAssuredWorkloadRound.tsx b/src/IconAssuredWorkloadRound.tsx new file mode 100644 index 000000000..028531deb --- /dev/null +++ b/src/IconAssuredWorkloadRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAssuredWorkloadRound as default } diff --git a/src/IconAssuredWorkloadSharp.tsx b/src/IconAssuredWorkloadSharp.tsx new file mode 100644 index 000000000..677a5037f --- /dev/null +++ b/src/IconAssuredWorkloadSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAssuredWorkloadSharp as default } diff --git a/src/IconAssuredWorkloadTwoTone.tsx b/src/IconAssuredWorkloadTwoTone.tsx new file mode 100644 index 000000000..0baedd182 --- /dev/null +++ b/src/IconAssuredWorkloadTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAssuredWorkloadTwoTone as default } diff --git a/src/IconAtmOutlined.tsx b/src/IconAtmOutlined.tsx new file mode 100644 index 000000000..5639cff3f --- /dev/null +++ b/src/IconAtmOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAtmOutlined as default } diff --git a/src/IconAtmRound.tsx b/src/IconAtmRound.tsx new file mode 100644 index 000000000..7c6e5d927 --- /dev/null +++ b/src/IconAtmRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAtmRound as default } diff --git a/src/IconAtmSharp.tsx b/src/IconAtmSharp.tsx new file mode 100644 index 000000000..d7ed360f3 --- /dev/null +++ b/src/IconAtmSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAtmSharp as default } diff --git a/src/IconAtmTwoTone.tsx b/src/IconAtmTwoTone.tsx new file mode 100644 index 000000000..c66d4acba --- /dev/null +++ b/src/IconAtmTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAtmTwoTone as default } diff --git a/src/IconAttachEmailOutlined.tsx b/src/IconAttachEmailOutlined.tsx new file mode 100644 index 000000000..7d1977425 --- /dev/null +++ b/src/IconAttachEmailOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAttachEmailOutlined as default } diff --git a/src/IconAttachEmailRound.tsx b/src/IconAttachEmailRound.tsx new file mode 100644 index 000000000..794097764 --- /dev/null +++ b/src/IconAttachEmailRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAttachEmailRound as default } diff --git a/src/IconAttachEmailSharp.tsx b/src/IconAttachEmailSharp.tsx new file mode 100644 index 000000000..4461c8d32 --- /dev/null +++ b/src/IconAttachEmailSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAttachEmailSharp as default } diff --git a/src/IconAttachEmailTwoTone.tsx b/src/IconAttachEmailTwoTone.tsx new file mode 100644 index 000000000..0082a2381 --- /dev/null +++ b/src/IconAttachEmailTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAttachEmailTwoTone as default } diff --git a/src/IconAttachFileOutlined.tsx b/src/IconAttachFileOutlined.tsx new file mode 100644 index 000000000..e3ffbb789 --- /dev/null +++ b/src/IconAttachFileOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachFileOutlined as default } diff --git a/src/IconAttachFileRound.tsx b/src/IconAttachFileRound.tsx new file mode 100644 index 000000000..2c4215346 --- /dev/null +++ b/src/IconAttachFileRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachFileRound as default } diff --git a/src/IconAttachFileSharp.tsx b/src/IconAttachFileSharp.tsx new file mode 100644 index 000000000..1b1a34df4 --- /dev/null +++ b/src/IconAttachFileSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileSharp as default } diff --git a/src/IconAttachFileTwoTone.tsx b/src/IconAttachFileTwoTone.tsx new file mode 100644 index 000000000..db84c276b --- /dev/null +++ b/src/IconAttachFileTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachFileTwoTone as default } diff --git a/src/IconAttachMoneyOutlined.tsx b/src/IconAttachMoneyOutlined.tsx new file mode 100644 index 000000000..37739380e --- /dev/null +++ b/src/IconAttachMoneyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachMoneyOutlined as default } diff --git a/src/IconAttachMoneyRound.tsx b/src/IconAttachMoneyRound.tsx new file mode 100644 index 000000000..b82cfc59c --- /dev/null +++ b/src/IconAttachMoneyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachMoneyRound as default } diff --git a/src/IconAttachMoneySharp.tsx b/src/IconAttachMoneySharp.tsx new file mode 100644 index 000000000..f354e9043 --- /dev/null +++ b/src/IconAttachMoneySharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachMoneySharp as default } diff --git a/src/IconAttachMoneyTwoTone.tsx b/src/IconAttachMoneyTwoTone.tsx new file mode 100644 index 000000000..b8af21709 --- /dev/null +++ b/src/IconAttachMoneyTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachMoneyTwoTone as default } diff --git a/src/IconAttachmentOutlined.tsx b/src/IconAttachmentOutlined.tsx new file mode 100644 index 000000000..ccbf68d95 --- /dev/null +++ b/src/IconAttachmentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachmentOutlined as default } diff --git a/src/IconAttachmentRound.tsx b/src/IconAttachmentRound.tsx new file mode 100644 index 000000000..9e06c9b3f --- /dev/null +++ b/src/IconAttachmentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachmentRound as default } diff --git a/src/IconAttachmentSharp.tsx b/src/IconAttachmentSharp.tsx new file mode 100644 index 000000000..5a1b6ec62 --- /dev/null +++ b/src/IconAttachmentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachmentSharp as default } diff --git a/src/IconAttachmentTwoTone.tsx b/src/IconAttachmentTwoTone.tsx new file mode 100644 index 000000000..e39027bd5 --- /dev/null +++ b/src/IconAttachmentTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAttachmentTwoTone as default } diff --git a/src/IconAttractionsOutlined.tsx b/src/IconAttractionsOutlined.tsx new file mode 100644 index 000000000..c7833f31d --- /dev/null +++ b/src/IconAttractionsOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAttractionsOutlined as default } diff --git a/src/IconAttractionsRound.tsx b/src/IconAttractionsRound.tsx new file mode 100644 index 000000000..0016f6c83 --- /dev/null +++ b/src/IconAttractionsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAttractionsRound as default } diff --git a/src/IconAttractionsSharp.tsx b/src/IconAttractionsSharp.tsx new file mode 100644 index 000000000..9673ac2db --- /dev/null +++ b/src/IconAttractionsSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAttractionsSharp as default } diff --git a/src/IconAttractionsTwoTone.tsx b/src/IconAttractionsTwoTone.tsx new file mode 100644 index 000000000..9f005d07e --- /dev/null +++ b/src/IconAttractionsTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAttractionsTwoTone as default } diff --git a/src/IconAttributionOutlined.tsx b/src/IconAttributionOutlined.tsx new file mode 100644 index 000000000..b44268b2b --- /dev/null +++ b/src/IconAttributionOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAttributionOutlined as default } diff --git a/src/IconAttributionRound.tsx b/src/IconAttributionRound.tsx new file mode 100644 index 000000000..fdee3da3e --- /dev/null +++ b/src/IconAttributionRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAttributionRound as default } diff --git a/src/IconAttributionSharp.tsx b/src/IconAttributionSharp.tsx new file mode 100644 index 000000000..eb4b0116a --- /dev/null +++ b/src/IconAttributionSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAttributionSharp as default } diff --git a/src/IconAttributionTwoTone.tsx b/src/IconAttributionTwoTone.tsx new file mode 100644 index 000000000..6fe930236 --- /dev/null +++ b/src/IconAttributionTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAttributionTwoTone as default } diff --git a/src/IconAudioFileOutlined.tsx b/src/IconAudioFileOutlined.tsx new file mode 100644 index 000000000..6d8e11c9b --- /dev/null +++ b/src/IconAudioFileOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAudioFileOutlined as default } diff --git a/src/IconAudioFileRound.tsx b/src/IconAudioFileRound.tsx new file mode 100644 index 000000000..bc8901d9d --- /dev/null +++ b/src/IconAudioFileRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAudioFileRound as default } diff --git a/src/IconAudioFileSharp.tsx b/src/IconAudioFileSharp.tsx new file mode 100644 index 000000000..60b9b34f2 --- /dev/null +++ b/src/IconAudioFileSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAudioFileSharp as default } diff --git a/src/IconAudioFileTwoTone.tsx b/src/IconAudioFileTwoTone.tsx new file mode 100644 index 000000000..18a32bab2 --- /dev/null +++ b/src/IconAudioFileTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAudioFileTwoTone as default } diff --git a/src/IconAudiotrackOutlined.tsx b/src/IconAudiotrackOutlined.tsx new file mode 100644 index 000000000..b1ff82360 --- /dev/null +++ b/src/IconAudiotrackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudiotrackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAudiotrackOutlined as default } diff --git a/src/IconAudiotrackRound.tsx b/src/IconAudiotrackRound.tsx new file mode 100644 index 000000000..921842d71 --- /dev/null +++ b/src/IconAudiotrackRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudiotrackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAudiotrackRound as default } diff --git a/src/IconAudiotrackSharp.tsx b/src/IconAudiotrackSharp.tsx new file mode 100644 index 000000000..7555e2220 --- /dev/null +++ b/src/IconAudiotrackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudiotrackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAudiotrackSharp as default } diff --git a/src/IconAudiotrackTwoTone.tsx b/src/IconAudiotrackTwoTone.tsx new file mode 100644 index 000000000..7893f7ece --- /dev/null +++ b/src/IconAudiotrackTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudiotrackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconAudiotrackTwoTone as default } diff --git a/src/IconAutoAwesomeMosaicOutlined.tsx b/src/IconAutoAwesomeMosaicOutlined.tsx new file mode 100644 index 000000000..958a83281 --- /dev/null +++ b/src/IconAutoAwesomeMosaicOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoAwesomeMosaicOutlined as default } diff --git a/src/IconAutoAwesomeMosaicRound.tsx b/src/IconAutoAwesomeMosaicRound.tsx new file mode 100644 index 000000000..dce0cc8fd --- /dev/null +++ b/src/IconAutoAwesomeMosaicRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeMosaicRound as default } diff --git a/src/IconAutoAwesomeMosaicSharp.tsx b/src/IconAutoAwesomeMosaicSharp.tsx new file mode 100644 index 000000000..1942410d2 --- /dev/null +++ b/src/IconAutoAwesomeMosaicSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeMosaicSharp as default } diff --git a/src/IconAutoAwesomeMosaicTwoTone.tsx b/src/IconAutoAwesomeMosaicTwoTone.tsx new file mode 100644 index 000000000..ca68686e7 --- /dev/null +++ b/src/IconAutoAwesomeMosaicTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutoAwesomeMosaicTwoTone as default } diff --git a/src/IconAutoAwesomeMotionOutlined.tsx b/src/IconAutoAwesomeMotionOutlined.tsx new file mode 100644 index 000000000..4947cb872 --- /dev/null +++ b/src/IconAutoAwesomeMotionOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeMotionOutlined as default } diff --git a/src/IconAutoAwesomeMotionRound.tsx b/src/IconAutoAwesomeMotionRound.tsx new file mode 100644 index 000000000..3f13411e5 --- /dev/null +++ b/src/IconAutoAwesomeMotionRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeMotionRound as default } diff --git a/src/IconAutoAwesomeMotionSharp.tsx b/src/IconAutoAwesomeMotionSharp.tsx new file mode 100644 index 000000000..f07e7a463 --- /dev/null +++ b/src/IconAutoAwesomeMotionSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeMotionSharp as default } diff --git a/src/IconAutoAwesomeMotionTwoTone.tsx b/src/IconAutoAwesomeMotionTwoTone.tsx new file mode 100644 index 000000000..8054610ed --- /dev/null +++ b/src/IconAutoAwesomeMotionTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoAwesomeMotionTwoTone as default } diff --git a/src/IconAutoAwesomeOutlined.tsx b/src/IconAutoAwesomeOutlined.tsx new file mode 100644 index 000000000..e3f982669 --- /dev/null +++ b/src/IconAutoAwesomeOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoAwesomeOutlined as default } diff --git a/src/IconAutoAwesomeRound.tsx b/src/IconAutoAwesomeRound.tsx new file mode 100644 index 000000000..d36670f61 --- /dev/null +++ b/src/IconAutoAwesomeRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeRound as default } diff --git a/src/IconAutoAwesomeSharp.tsx b/src/IconAutoAwesomeSharp.tsx new file mode 100644 index 000000000..a8d93f09a --- /dev/null +++ b/src/IconAutoAwesomeSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconAutoAwesomeSharp as default } diff --git a/src/IconAutoAwesomeTwoTone.tsx b/src/IconAutoAwesomeTwoTone.tsx new file mode 100644 index 000000000..85ab0b722 --- /dev/null +++ b/src/IconAutoAwesomeTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoAwesomeTwoTone as default } diff --git a/src/IconAutoDeleteOutlined.tsx b/src/IconAutoDeleteOutlined.tsx new file mode 100644 index 000000000..edd7bf8c7 --- /dev/null +++ b/src/IconAutoDeleteOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoDeleteOutlined as default } diff --git a/src/IconAutoDeleteRound.tsx b/src/IconAutoDeleteRound.tsx new file mode 100644 index 000000000..c27a238e7 --- /dev/null +++ b/src/IconAutoDeleteRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoDeleteRound as default } diff --git a/src/IconAutoDeleteSharp.tsx b/src/IconAutoDeleteSharp.tsx new file mode 100644 index 000000000..da8ecaf58 --- /dev/null +++ b/src/IconAutoDeleteSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoDeleteSharp as default } diff --git a/src/IconAutoDeleteTwoTone.tsx b/src/IconAutoDeleteTwoTone.tsx new file mode 100644 index 000000000..8035b5a39 --- /dev/null +++ b/src/IconAutoDeleteTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoDeleteTwoTone as default } diff --git a/src/IconAutoFixHighOutlined.tsx b/src/IconAutoFixHighOutlined.tsx new file mode 100644 index 000000000..42ab19bf4 --- /dev/null +++ b/src/IconAutoFixHighOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixHighOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoFixHighOutlined as default } diff --git a/src/IconAutoFixHighRound.tsx b/src/IconAutoFixHighRound.tsx new file mode 100644 index 000000000..e82af7a42 --- /dev/null +++ b/src/IconAutoFixHighRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixHighRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoFixHighRound as default } diff --git a/src/IconAutoFixHighSharp.tsx b/src/IconAutoFixHighSharp.tsx new file mode 100644 index 000000000..5f29be9fe --- /dev/null +++ b/src/IconAutoFixHighSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixHighSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoFixHighSharp as default } diff --git a/src/IconAutoFixHighTwoTone.tsx b/src/IconAutoFixHighTwoTone.tsx new file mode 100644 index 000000000..eba797113 --- /dev/null +++ b/src/IconAutoFixHighTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixHighTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconAutoFixHighTwoTone as default } diff --git a/src/IconAutoFixNormalOutlined.tsx b/src/IconAutoFixNormalOutlined.tsx new file mode 100644 index 000000000..6d64f401f --- /dev/null +++ b/src/IconAutoFixNormalOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixNormalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAutoFixNormalOutlined as default } diff --git a/src/IconAutoFixNormalRound.tsx b/src/IconAutoFixNormalRound.tsx new file mode 100644 index 000000000..253178084 --- /dev/null +++ b/src/IconAutoFixNormalRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixNormalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAutoFixNormalRound as default } diff --git a/src/IconAutoFixNormalSharp.tsx b/src/IconAutoFixNormalSharp.tsx new file mode 100644 index 000000000..ec07ebbb5 --- /dev/null +++ b/src/IconAutoFixNormalSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixNormalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconAutoFixNormalSharp as default } diff --git a/src/IconAutoFixNormalTwoTone.tsx b/src/IconAutoFixNormalTwoTone.tsx new file mode 100644 index 000000000..1fcecf52d --- /dev/null +++ b/src/IconAutoFixNormalTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixNormalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoFixNormalTwoTone as default } diff --git a/src/IconAutoFixOffOutlined.tsx b/src/IconAutoFixOffOutlined.tsx new file mode 100644 index 000000000..c2001df8f --- /dev/null +++ b/src/IconAutoFixOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoFixOffOutlined as default } diff --git a/src/IconAutoFixOffRound.tsx b/src/IconAutoFixOffRound.tsx new file mode 100644 index 000000000..9b6fabc13 --- /dev/null +++ b/src/IconAutoFixOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoFixOffRound as default } diff --git a/src/IconAutoFixOffSharp.tsx b/src/IconAutoFixOffSharp.tsx new file mode 100644 index 000000000..4dcc25b18 --- /dev/null +++ b/src/IconAutoFixOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoFixOffSharp as default } diff --git a/src/IconAutoFixOffTwoTone.tsx b/src/IconAutoFixOffTwoTone.tsx new file mode 100644 index 000000000..4d69f4a24 --- /dev/null +++ b/src/IconAutoFixOffTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoFixOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconAutoFixOffTwoTone as default } diff --git a/src/IconAutoGraphOutlined.tsx b/src/IconAutoGraphOutlined.tsx new file mode 100644 index 000000000..ab2964721 --- /dev/null +++ b/src/IconAutoGraphOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoGraphOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAutoGraphOutlined as default } diff --git a/src/IconAutoGraphRound.tsx b/src/IconAutoGraphRound.tsx new file mode 100644 index 000000000..022f30a31 --- /dev/null +++ b/src/IconAutoGraphRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoGraphRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAutoGraphRound as default } diff --git a/src/IconAutoGraphSharp.tsx b/src/IconAutoGraphSharp.tsx new file mode 100644 index 000000000..2e434c9f9 --- /dev/null +++ b/src/IconAutoGraphSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoGraphSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAutoGraphSharp as default } diff --git a/src/IconAutoGraphTwoTone.tsx b/src/IconAutoGraphTwoTone.tsx new file mode 100644 index 000000000..c0f4bfce2 --- /dev/null +++ b/src/IconAutoGraphTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoGraphTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAutoGraphTwoTone as default } diff --git a/src/IconAutoModeOutlined.tsx b/src/IconAutoModeOutlined.tsx new file mode 100644 index 000000000..9021c26fe --- /dev/null +++ b/src/IconAutoModeOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutoModeOutlined as default } diff --git a/src/IconAutoModeRound.tsx b/src/IconAutoModeRound.tsx new file mode 100644 index 000000000..b96cfc067 --- /dev/null +++ b/src/IconAutoModeRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconAutoModeRound as default } diff --git a/src/IconAutoModeSharp.tsx b/src/IconAutoModeSharp.tsx new file mode 100644 index 000000000..1177f0160 --- /dev/null +++ b/src/IconAutoModeSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutoModeSharp as default } diff --git a/src/IconAutoModeTwoTone.tsx b/src/IconAutoModeTwoTone.tsx new file mode 100644 index 000000000..aee9bc3a4 --- /dev/null +++ b/src/IconAutoModeTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutoModeTwoTone as default } diff --git a/src/IconAutoStoriesOutlined.tsx b/src/IconAutoStoriesOutlined.tsx new file mode 100644 index 000000000..de8d871fb --- /dev/null +++ b/src/IconAutoStoriesOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAutoStoriesOutlined as default } diff --git a/src/IconAutoStoriesRound.tsx b/src/IconAutoStoriesRound.tsx new file mode 100644 index 000000000..216ab937e --- /dev/null +++ b/src/IconAutoStoriesRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconAutoStoriesRound as default } diff --git a/src/IconAutoStoriesSharp.tsx b/src/IconAutoStoriesSharp.tsx new file mode 100644 index 000000000..b8697c4a2 --- /dev/null +++ b/src/IconAutoStoriesSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconAutoStoriesSharp as default } diff --git a/src/IconAutoStoriesTwoTone.tsx b/src/IconAutoStoriesTwoTone.tsx new file mode 100644 index 000000000..72e4f2742 --- /dev/null +++ b/src/IconAutoStoriesTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconAutoStoriesTwoTone as default } diff --git a/src/IconAutofpsSelectOutlined.tsx b/src/IconAutofpsSelectOutlined.tsx new file mode 100644 index 000000000..a2154dbe3 --- /dev/null +++ b/src/IconAutofpsSelectOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutofpsSelectOutlined as default } diff --git a/src/IconAutofpsSelectRound.tsx b/src/IconAutofpsSelectRound.tsx new file mode 100644 index 000000000..608826ad0 --- /dev/null +++ b/src/IconAutofpsSelectRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutofpsSelectRound as default } diff --git a/src/IconAutofpsSelectSharp.tsx b/src/IconAutofpsSelectSharp.tsx new file mode 100644 index 000000000..6699cb65e --- /dev/null +++ b/src/IconAutofpsSelectSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutofpsSelectSharp as default } diff --git a/src/IconAutofpsSelectTwoTone.tsx b/src/IconAutofpsSelectTwoTone.tsx new file mode 100644 index 000000000..473717f69 --- /dev/null +++ b/src/IconAutofpsSelectTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconAutofpsSelectTwoTone as default } diff --git a/src/IconAutorenewOutlined.tsx b/src/IconAutorenewOutlined.tsx new file mode 100644 index 000000000..e9efb4503 --- /dev/null +++ b/src/IconAutorenewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAutorenewOutlined as default } diff --git a/src/IconAutorenewRound.tsx b/src/IconAutorenewRound.tsx new file mode 100644 index 000000000..f972aa036 --- /dev/null +++ b/src/IconAutorenewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAutorenewRound as default } diff --git a/src/IconAutorenewSharp.tsx b/src/IconAutorenewSharp.tsx new file mode 100644 index 000000000..40fdcc097 --- /dev/null +++ b/src/IconAutorenewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAutorenewSharp as default } diff --git a/src/IconAutorenewTwoTone.tsx b/src/IconAutorenewTwoTone.tsx new file mode 100644 index 000000000..d87e35bc4 --- /dev/null +++ b/src/IconAutorenewTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAutorenewTwoTone as default } diff --git a/src/IconAvTimerOutlined.tsx b/src/IconAvTimerOutlined.tsx new file mode 100644 index 000000000..867dece7e --- /dev/null +++ b/src/IconAvTimerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAvTimerOutlined as default } diff --git a/src/IconAvTimerRound.tsx b/src/IconAvTimerRound.tsx new file mode 100644 index 000000000..bc5f89995 --- /dev/null +++ b/src/IconAvTimerRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconAvTimerRound as default } diff --git a/src/IconAvTimerSharp.tsx b/src/IconAvTimerSharp.tsx new file mode 100644 index 000000000..1d3b2bf7e --- /dev/null +++ b/src/IconAvTimerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconAvTimerSharp as default } diff --git a/src/IconAvTimerTwoTone.tsx b/src/IconAvTimerTwoTone.tsx new file mode 100644 index 000000000..ef7382fa6 --- /dev/null +++ b/src/IconAvTimerTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconAvTimerTwoTone as default } diff --git a/src/IconBabyChangingStationOutlined.tsx b/src/IconBabyChangingStationOutlined.tsx new file mode 100644 index 000000000..58a8ac424 --- /dev/null +++ b/src/IconBabyChangingStationOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBabyChangingStationOutlined as default } diff --git a/src/IconBabyChangingStationRound.tsx b/src/IconBabyChangingStationRound.tsx new file mode 100644 index 000000000..6055cf44e --- /dev/null +++ b/src/IconBabyChangingStationRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBabyChangingStationRound as default } diff --git a/src/IconBabyChangingStationSharp.tsx b/src/IconBabyChangingStationSharp.tsx new file mode 100644 index 000000000..95965c412 --- /dev/null +++ b/src/IconBabyChangingStationSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBabyChangingStationSharp as default } diff --git a/src/IconBabyChangingStationTwoTone.tsx b/src/IconBabyChangingStationTwoTone.tsx new file mode 100644 index 000000000..9b7afbf71 --- /dev/null +++ b/src/IconBabyChangingStationTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBabyChangingStationTwoTone as default } diff --git a/src/IconBackHandOutlined.tsx b/src/IconBackHandOutlined.tsx new file mode 100644 index 000000000..f775b93b1 --- /dev/null +++ b/src/IconBackHandOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackHandOutlined as default } diff --git a/src/IconBackHandRound.tsx b/src/IconBackHandRound.tsx new file mode 100644 index 000000000..d38c3aab9 --- /dev/null +++ b/src/IconBackHandRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackHandRound as default } diff --git a/src/IconBackHandSharp.tsx b/src/IconBackHandSharp.tsx new file mode 100644 index 000000000..88853db04 --- /dev/null +++ b/src/IconBackHandSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackHandSharp as default } diff --git a/src/IconBackHandTwoTone.tsx b/src/IconBackHandTwoTone.tsx new file mode 100644 index 000000000..e88097e9a --- /dev/null +++ b/src/IconBackHandTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBackHandTwoTone as default } diff --git a/src/IconBackpackOutlined.tsx b/src/IconBackpackOutlined.tsx new file mode 100644 index 000000000..9cd455619 --- /dev/null +++ b/src/IconBackpackOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBackpackOutlined as default } diff --git a/src/IconBackpackRound.tsx b/src/IconBackpackRound.tsx new file mode 100644 index 000000000..905044429 --- /dev/null +++ b/src/IconBackpackRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBackpackRound as default } diff --git a/src/IconBackpackSharp.tsx b/src/IconBackpackSharp.tsx new file mode 100644 index 000000000..11edd0345 --- /dev/null +++ b/src/IconBackpackSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBackpackSharp as default } diff --git a/src/IconBackpackTwoTone.tsx b/src/IconBackpackTwoTone.tsx new file mode 100644 index 000000000..1e36bf9bf --- /dev/null +++ b/src/IconBackpackTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconBackpackTwoTone as default } diff --git a/src/IconBackspaceOutlined.tsx b/src/IconBackspaceOutlined.tsx new file mode 100644 index 000000000..96ba43242 --- /dev/null +++ b/src/IconBackspaceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackspaceOutlined as default } diff --git a/src/IconBackspaceRound.tsx b/src/IconBackspaceRound.tsx new file mode 100644 index 000000000..bd1587603 --- /dev/null +++ b/src/IconBackspaceRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackspaceRound as default } diff --git a/src/IconBackspaceSharp.tsx b/src/IconBackspaceSharp.tsx new file mode 100644 index 000000000..fee6eb044 --- /dev/null +++ b/src/IconBackspaceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackspaceSharp as default } diff --git a/src/IconBackspaceTwoTone.tsx b/src/IconBackspaceTwoTone.tsx new file mode 100644 index 000000000..b42b0d619 --- /dev/null +++ b/src/IconBackspaceTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBackspaceTwoTone as default } diff --git a/src/IconBackupOutlined.tsx b/src/IconBackupOutlined.tsx new file mode 100644 index 000000000..758c1234a --- /dev/null +++ b/src/IconBackupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackupOutlined as default } diff --git a/src/IconBackupRound.tsx b/src/IconBackupRound.tsx new file mode 100644 index 000000000..6059830ee --- /dev/null +++ b/src/IconBackupRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBackupRound as default } diff --git a/src/IconBackupSharp.tsx b/src/IconBackupSharp.tsx new file mode 100644 index 000000000..892d2d2e1 --- /dev/null +++ b/src/IconBackupSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBackupSharp as default } diff --git a/src/IconBackupTableOutlined.tsx b/src/IconBackupTableOutlined.tsx new file mode 100644 index 000000000..52d326b5b --- /dev/null +++ b/src/IconBackupTableOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBackupTableOutlined as default } diff --git a/src/IconBackupTableRound.tsx b/src/IconBackupTableRound.tsx new file mode 100644 index 000000000..16f132a29 --- /dev/null +++ b/src/IconBackupTableRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBackupTableRound as default } diff --git a/src/IconBackupTableSharp.tsx b/src/IconBackupTableSharp.tsx new file mode 100644 index 000000000..54f8c7231 --- /dev/null +++ b/src/IconBackupTableSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBackupTableSharp as default } diff --git a/src/IconBackupTableTwoTone.tsx b/src/IconBackupTableTwoTone.tsx new file mode 100644 index 000000000..f8a851d31 --- /dev/null +++ b/src/IconBackupTableTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBackupTableTwoTone as default } diff --git a/src/IconBackupTwoTone.tsx b/src/IconBackupTwoTone.tsx new file mode 100644 index 000000000..7eb2bbc12 --- /dev/null +++ b/src/IconBackupTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBackupTwoTone as default } diff --git a/src/IconBadgeOutlined.tsx b/src/IconBadgeOutlined.tsx new file mode 100644 index 000000000..4cae6f017 --- /dev/null +++ b/src/IconBadgeOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBadgeOutlined as default } diff --git a/src/IconBadgeRound.tsx b/src/IconBadgeRound.tsx new file mode 100644 index 000000000..14cc25959 --- /dev/null +++ b/src/IconBadgeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBadgeRound as default } diff --git a/src/IconBadgeSharp.tsx b/src/IconBadgeSharp.tsx new file mode 100644 index 000000000..2bba5d819 --- /dev/null +++ b/src/IconBadgeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBadgeSharp as default } diff --git a/src/IconBadgeTwoTone.tsx b/src/IconBadgeTwoTone.tsx new file mode 100644 index 000000000..2fdd25a89 --- /dev/null +++ b/src/IconBadgeTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBadgeTwoTone as default } diff --git a/src/IconBakeryDiningOutlined.tsx b/src/IconBakeryDiningOutlined.tsx new file mode 100644 index 000000000..999a4a66b --- /dev/null +++ b/src/IconBakeryDiningOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBakeryDiningOutlined as default } diff --git a/src/IconBakeryDiningRound.tsx b/src/IconBakeryDiningRound.tsx new file mode 100644 index 000000000..5dbd000ce --- /dev/null +++ b/src/IconBakeryDiningRound.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconBakeryDiningRound as default } diff --git a/src/IconBakeryDiningSharp.tsx b/src/IconBakeryDiningSharp.tsx new file mode 100644 index 000000000..2cb87ac8c --- /dev/null +++ b/src/IconBakeryDiningSharp.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconBakeryDiningSharp as default } diff --git a/src/IconBakeryDiningTwoTone.tsx b/src/IconBakeryDiningTwoTone.tsx new file mode 100644 index 000000000..4dc91d3b9 --- /dev/null +++ b/src/IconBakeryDiningTwoTone.tsx @@ -0,0 +1,43 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBakeryDiningTwoTone as default } diff --git a/src/IconBalanceOutlined.tsx b/src/IconBalanceOutlined.tsx new file mode 100644 index 000000000..3eae163f2 --- /dev/null +++ b/src/IconBalanceOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBalanceOutlined as default } diff --git a/src/IconBalanceRound.tsx b/src/IconBalanceRound.tsx new file mode 100644 index 000000000..f58851fbc --- /dev/null +++ b/src/IconBalanceRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBalanceRound as default } diff --git a/src/IconBalanceSharp.tsx b/src/IconBalanceSharp.tsx new file mode 100644 index 000000000..351bfb0e1 --- /dev/null +++ b/src/IconBalanceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBalanceSharp as default } diff --git a/src/IconBalanceTwoTone.tsx b/src/IconBalanceTwoTone.tsx new file mode 100644 index 000000000..706e01f01 --- /dev/null +++ b/src/IconBalanceTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBalanceTwoTone as default } diff --git a/src/IconBalconyOutlined.tsx b/src/IconBalconyOutlined.tsx new file mode 100644 index 000000000..e2a8fa5f9 --- /dev/null +++ b/src/IconBalconyOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBalconyOutlined as default } diff --git a/src/IconBalconyRound.tsx b/src/IconBalconyRound.tsx new file mode 100644 index 000000000..1f394700a --- /dev/null +++ b/src/IconBalconyRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBalconyRound as default } diff --git a/src/IconBalconySharp.tsx b/src/IconBalconySharp.tsx new file mode 100644 index 000000000..2e113aae9 --- /dev/null +++ b/src/IconBalconySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBalconySharp as default } diff --git a/src/IconBalconyTwoTone.tsx b/src/IconBalconyTwoTone.tsx new file mode 100644 index 000000000..284edb4ef --- /dev/null +++ b/src/IconBalconyTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBalconyTwoTone as default } diff --git a/src/IconBallotOutlined.tsx b/src/IconBallotOutlined.tsx new file mode 100644 index 000000000..a2c275adc --- /dev/null +++ b/src/IconBallotOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBallotOutlined as default } diff --git a/src/IconBallotRound.tsx b/src/IconBallotRound.tsx new file mode 100644 index 000000000..07b0ce857 --- /dev/null +++ b/src/IconBallotRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBallotRound as default } diff --git a/src/IconBallotSharp.tsx b/src/IconBallotSharp.tsx new file mode 100644 index 000000000..0ff3ed614 --- /dev/null +++ b/src/IconBallotSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBallotSharp as default } diff --git a/src/IconBallotTwoTone.tsx b/src/IconBallotTwoTone.tsx new file mode 100644 index 000000000..69a60bd30 --- /dev/null +++ b/src/IconBallotTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBallotTwoTone as default } diff --git a/src/IconBarChart.tsx b/src/IconBarChart.tsx index 8349fcec2..34086f871 100644 --- a/src/IconBarChart.tsx +++ b/src/IconBarChart.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconBarChart: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconBarChartOutlined.tsx b/src/IconBarChartOutlined.tsx new file mode 100644 index 000000000..0ffdbb4ab --- /dev/null +++ b/src/IconBarChartOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBarChartOutlined as default } diff --git a/src/IconBarChartRound.tsx b/src/IconBarChartRound.tsx new file mode 100644 index 000000000..39401aa41 --- /dev/null +++ b/src/IconBarChartRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBarChartRound as default } diff --git a/src/IconBarChartSharp.tsx b/src/IconBarChartSharp.tsx new file mode 100644 index 000000000..6e30a8da5 --- /dev/null +++ b/src/IconBarChartSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBarChartSharp as default } diff --git a/src/IconBarChartTwoTone.tsx b/src/IconBarChartTwoTone.tsx new file mode 100644 index 000000000..4f7a6d2b8 --- /dev/null +++ b/src/IconBarChartTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBarChartTwoTone as default } diff --git a/src/IconBatchPredictionOutlined.tsx b/src/IconBatchPredictionOutlined.tsx new file mode 100644 index 000000000..f86862f1e --- /dev/null +++ b/src/IconBatchPredictionOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBatchPredictionOutlined as default } diff --git a/src/IconBatchPredictionRound.tsx b/src/IconBatchPredictionRound.tsx new file mode 100644 index 000000000..81960217b --- /dev/null +++ b/src/IconBatchPredictionRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBatchPredictionRound as default } diff --git a/src/IconBatchPredictionSharp.tsx b/src/IconBatchPredictionSharp.tsx new file mode 100644 index 000000000..d9ab3d2d6 --- /dev/null +++ b/src/IconBatchPredictionSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBatchPredictionSharp as default } diff --git a/src/IconBatchPredictionTwoTone.tsx b/src/IconBatchPredictionTwoTone.tsx new file mode 100644 index 000000000..6b83541d7 --- /dev/null +++ b/src/IconBatchPredictionTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconBatchPredictionTwoTone as default } diff --git a/src/IconBathroomOutlined.tsx b/src/IconBathroomOutlined.tsx new file mode 100644 index 000000000..236f069d4 --- /dev/null +++ b/src/IconBathroomOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBathroomOutlined as default } diff --git a/src/IconBathroomRound.tsx b/src/IconBathroomRound.tsx new file mode 100644 index 000000000..aa0132332 --- /dev/null +++ b/src/IconBathroomRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBathroomRound as default } diff --git a/src/IconBathroomSharp.tsx b/src/IconBathroomSharp.tsx new file mode 100644 index 000000000..c46f6fabf --- /dev/null +++ b/src/IconBathroomSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBathroomSharp as default } diff --git a/src/IconBathroomTwoTone.tsx b/src/IconBathroomTwoTone.tsx new file mode 100644 index 000000000..b0f290981 --- /dev/null +++ b/src/IconBathroomTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconBathroomTwoTone as default } diff --git a/src/IconBathtubOutlined.tsx b/src/IconBathtubOutlined.tsx new file mode 100644 index 000000000..177202d51 --- /dev/null +++ b/src/IconBathtubOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBathtubOutlined as default } diff --git a/src/IconBathtubRound.tsx b/src/IconBathtubRound.tsx new file mode 100644 index 000000000..ad9de212e --- /dev/null +++ b/src/IconBathtubRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBathtubRound as default } diff --git a/src/IconBathtubSharp.tsx b/src/IconBathtubSharp.tsx new file mode 100644 index 000000000..387b293eb --- /dev/null +++ b/src/IconBathtubSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBathtubSharp as default } diff --git a/src/IconBathtubTwoTone.tsx b/src/IconBathtubTwoTone.tsx new file mode 100644 index 000000000..91fd26dc1 --- /dev/null +++ b/src/IconBathtubTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBathtubTwoTone as default } diff --git a/src/IconBattery0BarOutlined.tsx b/src/IconBattery0BarOutlined.tsx new file mode 100644 index 000000000..e2e8c3953 --- /dev/null +++ b/src/IconBattery0BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery0BarOutlined as default } diff --git a/src/IconBattery0BarRound.tsx b/src/IconBattery0BarRound.tsx new file mode 100644 index 000000000..716b3ce68 --- /dev/null +++ b/src/IconBattery0BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery0BarRound as default } diff --git a/src/IconBattery0BarSharp.tsx b/src/IconBattery0BarSharp.tsx new file mode 100644 index 000000000..a208374c2 --- /dev/null +++ b/src/IconBattery0BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery0BarSharp as default } diff --git a/src/IconBattery0BarTwoTone.tsx b/src/IconBattery0BarTwoTone.tsx new file mode 100644 index 000000000..893910ef5 --- /dev/null +++ b/src/IconBattery0BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery0BarTwoTone as default } diff --git a/src/IconBattery1BarOutlined.tsx b/src/IconBattery1BarOutlined.tsx new file mode 100644 index 000000000..617691cb8 --- /dev/null +++ b/src/IconBattery1BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery1BarOutlined as default } diff --git a/src/IconBattery1BarRound.tsx b/src/IconBattery1BarRound.tsx new file mode 100644 index 000000000..875ac5d03 --- /dev/null +++ b/src/IconBattery1BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery1BarRound as default } diff --git a/src/IconBattery1BarSharp.tsx b/src/IconBattery1BarSharp.tsx new file mode 100644 index 000000000..17b885c4d --- /dev/null +++ b/src/IconBattery1BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery1BarSharp as default } diff --git a/src/IconBattery1BarTwoTone.tsx b/src/IconBattery1BarTwoTone.tsx new file mode 100644 index 000000000..5fc521401 --- /dev/null +++ b/src/IconBattery1BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery1BarTwoTone as default } diff --git a/src/IconBattery2BarOutlined.tsx b/src/IconBattery2BarOutlined.tsx new file mode 100644 index 000000000..986fe51eb --- /dev/null +++ b/src/IconBattery2BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery2BarOutlined as default } diff --git a/src/IconBattery2BarRound.tsx b/src/IconBattery2BarRound.tsx new file mode 100644 index 000000000..37153c256 --- /dev/null +++ b/src/IconBattery2BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery2BarRound as default } diff --git a/src/IconBattery2BarSharp.tsx b/src/IconBattery2BarSharp.tsx new file mode 100644 index 000000000..1101b0b26 --- /dev/null +++ b/src/IconBattery2BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery2BarSharp as default } diff --git a/src/IconBattery2BarTwoTone.tsx b/src/IconBattery2BarTwoTone.tsx new file mode 100644 index 000000000..69a544e80 --- /dev/null +++ b/src/IconBattery2BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery2BarTwoTone as default } diff --git a/src/IconBattery3BarOutlined.tsx b/src/IconBattery3BarOutlined.tsx new file mode 100644 index 000000000..5a6bb5adf --- /dev/null +++ b/src/IconBattery3BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery3BarOutlined as default } diff --git a/src/IconBattery3BarRound.tsx b/src/IconBattery3BarRound.tsx new file mode 100644 index 000000000..078f40e54 --- /dev/null +++ b/src/IconBattery3BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery3BarRound as default } diff --git a/src/IconBattery3BarSharp.tsx b/src/IconBattery3BarSharp.tsx new file mode 100644 index 000000000..d366f47ed --- /dev/null +++ b/src/IconBattery3BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery3BarSharp as default } diff --git a/src/IconBattery3BarTwoTone.tsx b/src/IconBattery3BarTwoTone.tsx new file mode 100644 index 000000000..6ac471c13 --- /dev/null +++ b/src/IconBattery3BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery3BarTwoTone as default } diff --git a/src/IconBattery4BarOutlined.tsx b/src/IconBattery4BarOutlined.tsx new file mode 100644 index 000000000..a2be8b860 --- /dev/null +++ b/src/IconBattery4BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery4BarOutlined as default } diff --git a/src/IconBattery4BarRound.tsx b/src/IconBattery4BarRound.tsx new file mode 100644 index 000000000..429f5d2bb --- /dev/null +++ b/src/IconBattery4BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery4BarRound as default } diff --git a/src/IconBattery4BarSharp.tsx b/src/IconBattery4BarSharp.tsx new file mode 100644 index 000000000..c52acfe13 --- /dev/null +++ b/src/IconBattery4BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery4BarSharp as default } diff --git a/src/IconBattery4BarTwoTone.tsx b/src/IconBattery4BarTwoTone.tsx new file mode 100644 index 000000000..10a948310 --- /dev/null +++ b/src/IconBattery4BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery4BarTwoTone as default } diff --git a/src/IconBattery5BarOutlined.tsx b/src/IconBattery5BarOutlined.tsx new file mode 100644 index 000000000..d549007ca --- /dev/null +++ b/src/IconBattery5BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery5BarOutlined as default } diff --git a/src/IconBattery5BarRound.tsx b/src/IconBattery5BarRound.tsx new file mode 100644 index 000000000..3bda844f4 --- /dev/null +++ b/src/IconBattery5BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery5BarRound as default } diff --git a/src/IconBattery5BarSharp.tsx b/src/IconBattery5BarSharp.tsx new file mode 100644 index 000000000..68916ed81 --- /dev/null +++ b/src/IconBattery5BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery5BarSharp as default } diff --git a/src/IconBattery5BarTwoTone.tsx b/src/IconBattery5BarTwoTone.tsx new file mode 100644 index 000000000..fb2dfe38d --- /dev/null +++ b/src/IconBattery5BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery5BarTwoTone as default } diff --git a/src/IconBattery6BarOutlined.tsx b/src/IconBattery6BarOutlined.tsx new file mode 100644 index 000000000..c764f0af3 --- /dev/null +++ b/src/IconBattery6BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery6BarOutlined as default } diff --git a/src/IconBattery6BarRound.tsx b/src/IconBattery6BarRound.tsx new file mode 100644 index 000000000..4c9ddeb69 --- /dev/null +++ b/src/IconBattery6BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery6BarRound as default } diff --git a/src/IconBattery6BarSharp.tsx b/src/IconBattery6BarSharp.tsx new file mode 100644 index 000000000..289ecfed7 --- /dev/null +++ b/src/IconBattery6BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBattery6BarSharp as default } diff --git a/src/IconBattery6BarTwoTone.tsx b/src/IconBattery6BarTwoTone.tsx new file mode 100644 index 000000000..e4c6ea6bb --- /dev/null +++ b/src/IconBattery6BarTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBattery6BarTwoTone as default } diff --git a/src/IconBatteryAlertOutlined.tsx b/src/IconBatteryAlertOutlined.tsx new file mode 100644 index 000000000..457c21373 --- /dev/null +++ b/src/IconBatteryAlertOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryAlertOutlined as default } diff --git a/src/IconBatteryAlertRound.tsx b/src/IconBatteryAlertRound.tsx new file mode 100644 index 000000000..42817e11d --- /dev/null +++ b/src/IconBatteryAlertRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryAlertRound as default } diff --git a/src/IconBatteryAlertSharp.tsx b/src/IconBatteryAlertSharp.tsx new file mode 100644 index 000000000..26108fab6 --- /dev/null +++ b/src/IconBatteryAlertSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryAlertSharp as default } diff --git a/src/IconBatteryAlertTwoTone.tsx b/src/IconBatteryAlertTwoTone.tsx new file mode 100644 index 000000000..85394aecd --- /dev/null +++ b/src/IconBatteryAlertTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryAlertTwoTone as default } diff --git a/src/IconBatteryChargingFullOutlined.tsx b/src/IconBatteryChargingFullOutlined.tsx new file mode 100644 index 000000000..6a05dd210 --- /dev/null +++ b/src/IconBatteryChargingFullOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryChargingFullOutlined as default } diff --git a/src/IconBatteryChargingFullRound.tsx b/src/IconBatteryChargingFullRound.tsx new file mode 100644 index 000000000..b1bc7df71 --- /dev/null +++ b/src/IconBatteryChargingFullRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryChargingFullRound as default } diff --git a/src/IconBatteryChargingFullSharp.tsx b/src/IconBatteryChargingFullSharp.tsx new file mode 100644 index 000000000..0c5280d0f --- /dev/null +++ b/src/IconBatteryChargingFullSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryChargingFullSharp as default } diff --git a/src/IconBatteryChargingFullTwoTone.tsx b/src/IconBatteryChargingFullTwoTone.tsx new file mode 100644 index 000000000..43c122449 --- /dev/null +++ b/src/IconBatteryChargingFullTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryChargingFullTwoTone as default } diff --git a/src/IconBatteryFullOutlined.tsx b/src/IconBatteryFullOutlined.tsx new file mode 100644 index 000000000..bd3529e66 --- /dev/null +++ b/src/IconBatteryFullOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryFullOutlined as default } diff --git a/src/IconBatteryFullRound.tsx b/src/IconBatteryFullRound.tsx new file mode 100644 index 000000000..e561aad38 --- /dev/null +++ b/src/IconBatteryFullRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryFullRound as default } diff --git a/src/IconBatteryFullSharp.tsx b/src/IconBatteryFullSharp.tsx new file mode 100644 index 000000000..0f0f4ca41 --- /dev/null +++ b/src/IconBatteryFullSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryFullSharp as default } diff --git a/src/IconBatteryFullTwoTone.tsx b/src/IconBatteryFullTwoTone.tsx new file mode 100644 index 000000000..aedd5baf4 --- /dev/null +++ b/src/IconBatteryFullTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryFullTwoTone as default } diff --git a/src/IconBatterySaverOutlined.tsx b/src/IconBatterySaverOutlined.tsx new file mode 100644 index 000000000..d0234a665 --- /dev/null +++ b/src/IconBatterySaverOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBatterySaverOutlined as default } diff --git a/src/IconBatterySaverRound.tsx b/src/IconBatterySaverRound.tsx new file mode 100644 index 000000000..127d47326 --- /dev/null +++ b/src/IconBatterySaverRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBatterySaverRound as default } diff --git a/src/IconBatterySaverSharp.tsx b/src/IconBatterySaverSharp.tsx new file mode 100644 index 000000000..ab08961f0 --- /dev/null +++ b/src/IconBatterySaverSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBatterySaverSharp as default } diff --git a/src/IconBatterySaverTwoTone.tsx b/src/IconBatterySaverTwoTone.tsx new file mode 100644 index 000000000..bdc02057a --- /dev/null +++ b/src/IconBatterySaverTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBatterySaverTwoTone as default } diff --git a/src/IconBatteryStdOutlined.tsx b/src/IconBatteryStdOutlined.tsx new file mode 100644 index 000000000..7e7462ad0 --- /dev/null +++ b/src/IconBatteryStdOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStdOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryStdOutlined as default } diff --git a/src/IconBatteryStdRound.tsx b/src/IconBatteryStdRound.tsx new file mode 100644 index 000000000..16cdcce77 --- /dev/null +++ b/src/IconBatteryStdRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStdRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryStdRound as default } diff --git a/src/IconBatteryStdSharp.tsx b/src/IconBatteryStdSharp.tsx new file mode 100644 index 000000000..dd49da117 --- /dev/null +++ b/src/IconBatteryStdSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStdSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryStdSharp as default } diff --git a/src/IconBatteryStdTwoTone.tsx b/src/IconBatteryStdTwoTone.tsx new file mode 100644 index 000000000..92d37ad86 --- /dev/null +++ b/src/IconBatteryStdTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStdTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryStdTwoTone as default } diff --git a/src/IconBatteryUnknownOutlined.tsx b/src/IconBatteryUnknownOutlined.tsx new file mode 100644 index 000000000..2deae236f --- /dev/null +++ b/src/IconBatteryUnknownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryUnknownOutlined as default } diff --git a/src/IconBatteryUnknownRound.tsx b/src/IconBatteryUnknownRound.tsx new file mode 100644 index 000000000..18325e563 --- /dev/null +++ b/src/IconBatteryUnknownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryUnknownRound as default } diff --git a/src/IconBatteryUnknownSharp.tsx b/src/IconBatteryUnknownSharp.tsx new file mode 100644 index 000000000..5a059d2a2 --- /dev/null +++ b/src/IconBatteryUnknownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryUnknownSharp as default } diff --git a/src/IconBatteryUnknownTwoTone.tsx b/src/IconBatteryUnknownTwoTone.tsx new file mode 100644 index 000000000..d4e4af79b --- /dev/null +++ b/src/IconBatteryUnknownTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBatteryUnknownTwoTone as default } diff --git a/src/IconBeachAccessOutlined.tsx b/src/IconBeachAccessOutlined.tsx new file mode 100644 index 000000000..bf74a9297 --- /dev/null +++ b/src/IconBeachAccessOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeachAccessOutlined as default } diff --git a/src/IconBeachAccessRound.tsx b/src/IconBeachAccessRound.tsx new file mode 100644 index 000000000..8e9a15bee --- /dev/null +++ b/src/IconBeachAccessRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeachAccessRound as default } diff --git a/src/IconBeachAccessSharp.tsx b/src/IconBeachAccessSharp.tsx new file mode 100644 index 000000000..8c5fb5891 --- /dev/null +++ b/src/IconBeachAccessSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeachAccessSharp as default } diff --git a/src/IconBeachAccessTwoTone.tsx b/src/IconBeachAccessTwoTone.tsx new file mode 100644 index 000000000..b0714238f --- /dev/null +++ b/src/IconBeachAccessTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBeachAccessTwoTone as default } diff --git a/src/IconBed.tsx b/src/IconBed.tsx index f1bb54122..f13f41230 100644 --- a/src/IconBed.tsx +++ b/src/IconBed.tsx @@ -10,10 +10,10 @@ const IconBed: React.FC = ({ ...props }) => ( > {props.title && {props.title}} - + - + ) diff --git a/src/IconBedOutlined.tsx b/src/IconBedOutlined.tsx new file mode 100644 index 000000000..20cb76c80 --- /dev/null +++ b/src/IconBedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedOutlined as default } diff --git a/src/IconBedRound.tsx b/src/IconBedRound.tsx new file mode 100644 index 000000000..ecec2c138 --- /dev/null +++ b/src/IconBedRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedRound as default } diff --git a/src/IconBedSharp.tsx b/src/IconBedSharp.tsx new file mode 100644 index 000000000..e7f410f69 --- /dev/null +++ b/src/IconBedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedSharp as default } diff --git a/src/IconBedTwoTone.tsx b/src/IconBedTwoTone.tsx new file mode 100644 index 000000000..b13f2ab07 --- /dev/null +++ b/src/IconBedTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBedTwoTone as default } diff --git a/src/IconBedroomBabyOutlined.tsx b/src/IconBedroomBabyOutlined.tsx new file mode 100644 index 000000000..29576cf36 --- /dev/null +++ b/src/IconBedroomBabyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedroomBabyOutlined as default } diff --git a/src/IconBedroomBabyRound.tsx b/src/IconBedroomBabyRound.tsx new file mode 100644 index 000000000..163d5e10a --- /dev/null +++ b/src/IconBedroomBabyRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBedroomBabyRound as default } diff --git a/src/IconBedroomBabySharp.tsx b/src/IconBedroomBabySharp.tsx new file mode 100644 index 000000000..01f8ac39a --- /dev/null +++ b/src/IconBedroomBabySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBedroomBabySharp as default } diff --git a/src/IconBedroomBabyTwoTone.tsx b/src/IconBedroomBabyTwoTone.tsx new file mode 100644 index 000000000..d697fa6b3 --- /dev/null +++ b/src/IconBedroomBabyTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBedroomBabyTwoTone as default } diff --git a/src/IconBedroomChildOutlined.tsx b/src/IconBedroomChildOutlined.tsx new file mode 100644 index 000000000..905f10006 --- /dev/null +++ b/src/IconBedroomChildOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedroomChildOutlined as default } diff --git a/src/IconBedroomChildRound.tsx b/src/IconBedroomChildRound.tsx new file mode 100644 index 000000000..b9ea5606e --- /dev/null +++ b/src/IconBedroomChildRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBedroomChildRound as default } diff --git a/src/IconBedroomChildSharp.tsx b/src/IconBedroomChildSharp.tsx new file mode 100644 index 000000000..c7ff01cf6 --- /dev/null +++ b/src/IconBedroomChildSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBedroomChildSharp as default } diff --git a/src/IconBedroomChildTwoTone.tsx b/src/IconBedroomChildTwoTone.tsx new file mode 100644 index 000000000..92ebcb35e --- /dev/null +++ b/src/IconBedroomChildTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBedroomChildTwoTone as default } diff --git a/src/IconBedroomParentOutlined.tsx b/src/IconBedroomParentOutlined.tsx new file mode 100644 index 000000000..c0a4e7d83 --- /dev/null +++ b/src/IconBedroomParentOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedroomParentOutlined as default } diff --git a/src/IconBedroomParentRound.tsx b/src/IconBedroomParentRound.tsx new file mode 100644 index 000000000..2e285087f --- /dev/null +++ b/src/IconBedroomParentRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBedroomParentRound as default } diff --git a/src/IconBedroomParentSharp.tsx b/src/IconBedroomParentSharp.tsx new file mode 100644 index 000000000..08f07bc4a --- /dev/null +++ b/src/IconBedroomParentSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBedroomParentSharp as default } diff --git a/src/IconBedroomParentTwoTone.tsx b/src/IconBedroomParentTwoTone.tsx new file mode 100644 index 000000000..59f5adc8f --- /dev/null +++ b/src/IconBedroomParentTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBedroomParentTwoTone as default } diff --git a/src/IconBedtime.tsx b/src/IconBedtime.tsx index 008e9b8f1..893182ada 100644 --- a/src/IconBedtime.tsx +++ b/src/IconBedtime.tsx @@ -14,7 +14,7 @@ const IconBedtime: React.FC = ({ ...props }) => ( - + diff --git a/src/IconBedtimeOff.tsx b/src/IconBedtimeOff.tsx index 929da3665..76d1c8dc0 100644 --- a/src/IconBedtimeOff.tsx +++ b/src/IconBedtimeOff.tsx @@ -15,10 +15,10 @@ const IconBedtimeOff: React.FC = ({ ...props }) => ( - + - + diff --git a/src/IconBedtimeOffOutlined.tsx b/src/IconBedtimeOffOutlined.tsx new file mode 100644 index 000000000..848ae7507 --- /dev/null +++ b/src/IconBedtimeOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBedtimeOffOutlined as default } diff --git a/src/IconBedtimeOffRound.tsx b/src/IconBedtimeOffRound.tsx new file mode 100644 index 000000000..95eb89685 --- /dev/null +++ b/src/IconBedtimeOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBedtimeOffRound as default } diff --git a/src/IconBedtimeOffSharp.tsx b/src/IconBedtimeOffSharp.tsx new file mode 100644 index 000000000..8a1d9f384 --- /dev/null +++ b/src/IconBedtimeOffSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBedtimeOffSharp as default } diff --git a/src/IconBedtimeOffTwoTone.tsx b/src/IconBedtimeOffTwoTone.tsx new file mode 100644 index 000000000..c01d7161f --- /dev/null +++ b/src/IconBedtimeOffTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBedtimeOffTwoTone as default } diff --git a/src/IconBedtimeOutlined.tsx b/src/IconBedtimeOutlined.tsx new file mode 100644 index 000000000..af13a31d2 --- /dev/null +++ b/src/IconBedtimeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBedtimeOutlined as default } diff --git a/src/IconBedtimeRound.tsx b/src/IconBedtimeRound.tsx new file mode 100644 index 000000000..843ef7452 --- /dev/null +++ b/src/IconBedtimeRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBedtimeRound as default } diff --git a/src/IconBedtimeSharp.tsx b/src/IconBedtimeSharp.tsx new file mode 100644 index 000000000..8ec81d66e --- /dev/null +++ b/src/IconBedtimeSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBedtimeSharp as default } diff --git a/src/IconBedtimeTwoTone.tsx b/src/IconBedtimeTwoTone.tsx new file mode 100644 index 000000000..b605180f3 --- /dev/null +++ b/src/IconBedtimeTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBedtimeTwoTone as default } diff --git a/src/IconBeenhereOutlined.tsx b/src/IconBeenhereOutlined.tsx new file mode 100644 index 000000000..11eab91d5 --- /dev/null +++ b/src/IconBeenhereOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeenhereOutlined as default } diff --git a/src/IconBeenhereRound.tsx b/src/IconBeenhereRound.tsx new file mode 100644 index 000000000..9ff426c6e --- /dev/null +++ b/src/IconBeenhereRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeenhereRound as default } diff --git a/src/IconBeenhereSharp.tsx b/src/IconBeenhereSharp.tsx new file mode 100644 index 000000000..e1aaa47cf --- /dev/null +++ b/src/IconBeenhereSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBeenhereSharp as default } diff --git a/src/IconBeenhereTwoTone.tsx b/src/IconBeenhereTwoTone.tsx new file mode 100644 index 000000000..e46e54fb2 --- /dev/null +++ b/src/IconBeenhereTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBeenhereTwoTone as default } diff --git a/src/IconBentoOutlined.tsx b/src/IconBentoOutlined.tsx new file mode 100644 index 000000000..1a4518d64 --- /dev/null +++ b/src/IconBentoOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBentoOutlined as default } diff --git a/src/IconBentoRound.tsx b/src/IconBentoRound.tsx new file mode 100644 index 000000000..65d7f6e3d --- /dev/null +++ b/src/IconBentoRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBentoRound as default } diff --git a/src/IconBentoSharp.tsx b/src/IconBentoSharp.tsx new file mode 100644 index 000000000..21936566e --- /dev/null +++ b/src/IconBentoSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBentoSharp as default } diff --git a/src/IconBentoTwoTone.tsx b/src/IconBentoTwoTone.tsx new file mode 100644 index 000000000..ffdbb177d --- /dev/null +++ b/src/IconBentoTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBentoTwoTone as default } diff --git a/src/IconBikeScooterOutlined.tsx b/src/IconBikeScooterOutlined.tsx new file mode 100644 index 000000000..f5de83ee8 --- /dev/null +++ b/src/IconBikeScooterOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBikeScooterOutlined as default } diff --git a/src/IconBikeScooterRound.tsx b/src/IconBikeScooterRound.tsx new file mode 100644 index 000000000..c5a4ad58a --- /dev/null +++ b/src/IconBikeScooterRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBikeScooterRound as default } diff --git a/src/IconBikeScooterSharp.tsx b/src/IconBikeScooterSharp.tsx new file mode 100644 index 000000000..c48954c32 --- /dev/null +++ b/src/IconBikeScooterSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBikeScooterSharp as default } diff --git a/src/IconBikeScooterTwoTone.tsx b/src/IconBikeScooterTwoTone.tsx new file mode 100644 index 000000000..51e8da0a8 --- /dev/null +++ b/src/IconBikeScooterTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBikeScooterTwoTone as default } diff --git a/src/IconBiotechOutlined.tsx b/src/IconBiotechOutlined.tsx new file mode 100644 index 000000000..8c7794cad --- /dev/null +++ b/src/IconBiotechOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBiotechOutlined as default } diff --git a/src/IconBiotechRound.tsx b/src/IconBiotechRound.tsx new file mode 100644 index 000000000..33f27c121 --- /dev/null +++ b/src/IconBiotechRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBiotechRound as default } diff --git a/src/IconBiotechSharp.tsx b/src/IconBiotechSharp.tsx new file mode 100644 index 000000000..821fbc4d1 --- /dev/null +++ b/src/IconBiotechSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBiotechSharp as default } diff --git a/src/IconBiotechTwoTone.tsx b/src/IconBiotechTwoTone.tsx new file mode 100644 index 000000000..fd1899e10 --- /dev/null +++ b/src/IconBiotechTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBiotechTwoTone as default } diff --git a/src/IconBlenderOutlined.tsx b/src/IconBlenderOutlined.tsx new file mode 100644 index 000000000..5f638cedb --- /dev/null +++ b/src/IconBlenderOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlenderOutlined as default } diff --git a/src/IconBlenderRound.tsx b/src/IconBlenderRound.tsx new file mode 100644 index 000000000..321048296 --- /dev/null +++ b/src/IconBlenderRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBlenderRound as default } diff --git a/src/IconBlenderSharp.tsx b/src/IconBlenderSharp.tsx new file mode 100644 index 000000000..d50a26dce --- /dev/null +++ b/src/IconBlenderSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBlenderSharp as default } diff --git a/src/IconBlenderTwoTone.tsx b/src/IconBlenderTwoTone.tsx new file mode 100644 index 000000000..48a133435 --- /dev/null +++ b/src/IconBlenderTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBlenderTwoTone as default } diff --git a/src/IconBlindOutlined.tsx b/src/IconBlindOutlined.tsx new file mode 100644 index 000000000..ce883f827 --- /dev/null +++ b/src/IconBlindOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlindOutlined as default } diff --git a/src/IconBlindRound.tsx b/src/IconBlindRound.tsx new file mode 100644 index 000000000..3e33744c3 --- /dev/null +++ b/src/IconBlindRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBlindRound as default } diff --git a/src/IconBlindSharp.tsx b/src/IconBlindSharp.tsx new file mode 100644 index 000000000..71e618fda --- /dev/null +++ b/src/IconBlindSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlindSharp as default } diff --git a/src/IconBlindTwoTone.tsx b/src/IconBlindTwoTone.tsx new file mode 100644 index 000000000..4bd051abd --- /dev/null +++ b/src/IconBlindTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlindTwoTone as default } diff --git a/src/IconBlindsClosedOutlined.tsx b/src/IconBlindsClosedOutlined.tsx new file mode 100644 index 000000000..0dc17bfab --- /dev/null +++ b/src/IconBlindsClosedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlindsClosedOutlined as default } diff --git a/src/IconBlindsClosedRound.tsx b/src/IconBlindsClosedRound.tsx new file mode 100644 index 000000000..dc78aa444 --- /dev/null +++ b/src/IconBlindsClosedRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBlindsClosedRound as default } diff --git a/src/IconBlindsClosedSharp.tsx b/src/IconBlindsClosedSharp.tsx new file mode 100644 index 000000000..ed8a9a6f8 --- /dev/null +++ b/src/IconBlindsClosedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlindsClosedSharp as default } diff --git a/src/IconBlindsClosedTwoTone.tsx b/src/IconBlindsClosedTwoTone.tsx new file mode 100644 index 000000000..a19fbe90d --- /dev/null +++ b/src/IconBlindsClosedTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconBlindsClosedTwoTone as default } diff --git a/src/IconBlindsOutlined.tsx b/src/IconBlindsOutlined.tsx new file mode 100644 index 000000000..de31059dc --- /dev/null +++ b/src/IconBlindsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlindsOutlined as default } diff --git a/src/IconBlindsRound.tsx b/src/IconBlindsRound.tsx new file mode 100644 index 000000000..c16807c8c --- /dev/null +++ b/src/IconBlindsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconBlindsRound as default } diff --git a/src/IconBlindsSharp.tsx b/src/IconBlindsSharp.tsx new file mode 100644 index 000000000..4bf4dfc27 --- /dev/null +++ b/src/IconBlindsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBlindsSharp as default } diff --git a/src/IconBlindsTwoTone.tsx b/src/IconBlindsTwoTone.tsx new file mode 100644 index 000000000..01c72d4e9 --- /dev/null +++ b/src/IconBlindsTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBlindsTwoTone as default } diff --git a/src/IconBlockOutlined.tsx b/src/IconBlockOutlined.tsx new file mode 100644 index 000000000..ce74778b8 --- /dev/null +++ b/src/IconBlockOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlockOutlined as default } diff --git a/src/IconBlockRound.tsx b/src/IconBlockRound.tsx new file mode 100644 index 000000000..5d1833d79 --- /dev/null +++ b/src/IconBlockRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlockRound as default } diff --git a/src/IconBlockSharp.tsx b/src/IconBlockSharp.tsx new file mode 100644 index 000000000..76052308c --- /dev/null +++ b/src/IconBlockSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlockSharp as default } diff --git a/src/IconBlockTwoTone.tsx b/src/IconBlockTwoTone.tsx new file mode 100644 index 000000000..610f6826a --- /dev/null +++ b/src/IconBlockTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlockTwoTone as default } diff --git a/src/IconBloodtypeOutlined.tsx b/src/IconBloodtypeOutlined.tsx new file mode 100644 index 000000000..e00aacf30 --- /dev/null +++ b/src/IconBloodtypeOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBloodtypeOutlined as default } diff --git a/src/IconBloodtypeRound.tsx b/src/IconBloodtypeRound.tsx new file mode 100644 index 000000000..feaa94d37 --- /dev/null +++ b/src/IconBloodtypeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBloodtypeRound as default } diff --git a/src/IconBloodtypeSharp.tsx b/src/IconBloodtypeSharp.tsx new file mode 100644 index 000000000..c1a5c2aca --- /dev/null +++ b/src/IconBloodtypeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBloodtypeSharp as default } diff --git a/src/IconBloodtypeTwoTone.tsx b/src/IconBloodtypeTwoTone.tsx new file mode 100644 index 000000000..22a583cfc --- /dev/null +++ b/src/IconBloodtypeTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBloodtypeTwoTone as default } diff --git a/src/IconBluetoothAudioOutlined.tsx b/src/IconBluetoothAudioOutlined.tsx new file mode 100644 index 000000000..8a21ba435 --- /dev/null +++ b/src/IconBluetoothAudioOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothAudioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothAudioOutlined as default } diff --git a/src/IconBluetoothAudioRound.tsx b/src/IconBluetoothAudioRound.tsx new file mode 100644 index 000000000..ba9054cd5 --- /dev/null +++ b/src/IconBluetoothAudioRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothAudioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothAudioRound as default } diff --git a/src/IconBluetoothAudioSharp.tsx b/src/IconBluetoothAudioSharp.tsx new file mode 100644 index 000000000..746e7f16b --- /dev/null +++ b/src/IconBluetoothAudioSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothAudioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothAudioSharp as default } diff --git a/src/IconBluetoothAudioTwoTone.tsx b/src/IconBluetoothAudioTwoTone.tsx new file mode 100644 index 000000000..ece5b6c7f --- /dev/null +++ b/src/IconBluetoothAudioTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothAudioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothAudioTwoTone as default } diff --git a/src/IconBluetoothConnectedOutlined.tsx b/src/IconBluetoothConnectedOutlined.tsx new file mode 100644 index 000000000..8d70fd113 --- /dev/null +++ b/src/IconBluetoothConnectedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothConnectedOutlined as default } diff --git a/src/IconBluetoothConnectedRound.tsx b/src/IconBluetoothConnectedRound.tsx new file mode 100644 index 000000000..654194395 --- /dev/null +++ b/src/IconBluetoothConnectedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothConnectedRound as default } diff --git a/src/IconBluetoothConnectedSharp.tsx b/src/IconBluetoothConnectedSharp.tsx new file mode 100644 index 000000000..f0c452cb5 --- /dev/null +++ b/src/IconBluetoothConnectedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothConnectedSharp as default } diff --git a/src/IconBluetoothConnectedTwoTone.tsx b/src/IconBluetoothConnectedTwoTone.tsx new file mode 100644 index 000000000..4697d533a --- /dev/null +++ b/src/IconBluetoothConnectedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothConnectedTwoTone as default } diff --git a/src/IconBluetoothDisabledOutlined.tsx b/src/IconBluetoothDisabledOutlined.tsx new file mode 100644 index 000000000..0b26511e7 --- /dev/null +++ b/src/IconBluetoothDisabledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothDisabledOutlined as default } diff --git a/src/IconBluetoothDisabledRound.tsx b/src/IconBluetoothDisabledRound.tsx new file mode 100644 index 000000000..afac39ce1 --- /dev/null +++ b/src/IconBluetoothDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothDisabledRound as default } diff --git a/src/IconBluetoothDisabledSharp.tsx b/src/IconBluetoothDisabledSharp.tsx new file mode 100644 index 000000000..99c4e8dc1 --- /dev/null +++ b/src/IconBluetoothDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothDisabledSharp as default } diff --git a/src/IconBluetoothDisabledTwoTone.tsx b/src/IconBluetoothDisabledTwoTone.tsx new file mode 100644 index 000000000..11a37db7e --- /dev/null +++ b/src/IconBluetoothDisabledTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothDisabledTwoTone as default } diff --git a/src/IconBluetoothDriveOutlined.tsx b/src/IconBluetoothDriveOutlined.tsx new file mode 100644 index 000000000..eeb1dc3a4 --- /dev/null +++ b/src/IconBluetoothDriveOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBluetoothDriveOutlined as default } diff --git a/src/IconBluetoothDriveRound.tsx b/src/IconBluetoothDriveRound.tsx new file mode 100644 index 000000000..1f86725d4 --- /dev/null +++ b/src/IconBluetoothDriveRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBluetoothDriveRound as default } diff --git a/src/IconBluetoothDriveSharp.tsx b/src/IconBluetoothDriveSharp.tsx new file mode 100644 index 000000000..a4df89fd5 --- /dev/null +++ b/src/IconBluetoothDriveSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBluetoothDriveSharp as default } diff --git a/src/IconBluetoothDriveTwoTone.tsx b/src/IconBluetoothDriveTwoTone.tsx new file mode 100644 index 000000000..54474d7ea --- /dev/null +++ b/src/IconBluetoothDriveTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBluetoothDriveTwoTone as default } diff --git a/src/IconBluetoothOutlined.tsx b/src/IconBluetoothOutlined.tsx new file mode 100644 index 000000000..e12d0c952 --- /dev/null +++ b/src/IconBluetoothOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothOutlined as default } diff --git a/src/IconBluetoothRound.tsx b/src/IconBluetoothRound.tsx new file mode 100644 index 000000000..de8026877 --- /dev/null +++ b/src/IconBluetoothRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothRound as default } diff --git a/src/IconBluetoothSearchingOutlined.tsx b/src/IconBluetoothSearchingOutlined.tsx new file mode 100644 index 000000000..c142f6c45 --- /dev/null +++ b/src/IconBluetoothSearchingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothSearchingOutlined as default } diff --git a/src/IconBluetoothSearchingRound.tsx b/src/IconBluetoothSearchingRound.tsx new file mode 100644 index 000000000..f3cce8a41 --- /dev/null +++ b/src/IconBluetoothSearchingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothSearchingRound as default } diff --git a/src/IconBluetoothSearchingSharp.tsx b/src/IconBluetoothSearchingSharp.tsx new file mode 100644 index 000000000..2834547b7 --- /dev/null +++ b/src/IconBluetoothSearchingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothSearchingSharp as default } diff --git a/src/IconBluetoothSearchingTwoTone.tsx b/src/IconBluetoothSearchingTwoTone.tsx new file mode 100644 index 000000000..5e5f5c8a0 --- /dev/null +++ b/src/IconBluetoothSearchingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothSearchingTwoTone as default } diff --git a/src/IconBluetoothSharp.tsx b/src/IconBluetoothSharp.tsx new file mode 100644 index 000000000..01403ebe4 --- /dev/null +++ b/src/IconBluetoothSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothSharp as default } diff --git a/src/IconBluetoothTwoTone.tsx b/src/IconBluetoothTwoTone.tsx new file mode 100644 index 000000000..e07a46e3d --- /dev/null +++ b/src/IconBluetoothTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBluetoothTwoTone as default } diff --git a/src/IconBlurCircularOutlined.tsx b/src/IconBlurCircularOutlined.tsx new file mode 100644 index 000000000..757b333cd --- /dev/null +++ b/src/IconBlurCircularOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurCircularOutlined as default } diff --git a/src/IconBlurCircularRound.tsx b/src/IconBlurCircularRound.tsx new file mode 100644 index 000000000..81b68dd12 --- /dev/null +++ b/src/IconBlurCircularRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurCircularRound as default } diff --git a/src/IconBlurCircularSharp.tsx b/src/IconBlurCircularSharp.tsx new file mode 100644 index 000000000..5f247b0fb --- /dev/null +++ b/src/IconBlurCircularSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurCircularSharp as default } diff --git a/src/IconBlurCircularTwoTone.tsx b/src/IconBlurCircularTwoTone.tsx new file mode 100644 index 000000000..6b1beed2d --- /dev/null +++ b/src/IconBlurCircularTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBlurCircularTwoTone as default } diff --git a/src/IconBlurLinearOutlined.tsx b/src/IconBlurLinearOutlined.tsx new file mode 100644 index 000000000..5ba811fd2 --- /dev/null +++ b/src/IconBlurLinearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurLinearOutlined as default } diff --git a/src/IconBlurLinearRound.tsx b/src/IconBlurLinearRound.tsx new file mode 100644 index 000000000..2b103ead4 --- /dev/null +++ b/src/IconBlurLinearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurLinearRound as default } diff --git a/src/IconBlurLinearSharp.tsx b/src/IconBlurLinearSharp.tsx new file mode 100644 index 000000000..f7433d829 --- /dev/null +++ b/src/IconBlurLinearSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurLinearSharp as default } diff --git a/src/IconBlurLinearTwoTone.tsx b/src/IconBlurLinearTwoTone.tsx new file mode 100644 index 000000000..74ee49210 --- /dev/null +++ b/src/IconBlurLinearTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconBlurLinearTwoTone as default } diff --git a/src/IconBlurOffOutlined.tsx b/src/IconBlurOffOutlined.tsx new file mode 100644 index 000000000..3606891c3 --- /dev/null +++ b/src/IconBlurOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBlurOffOutlined as default } diff --git a/src/IconBlurOffRound.tsx b/src/IconBlurOffRound.tsx new file mode 100644 index 000000000..0859b7e79 --- /dev/null +++ b/src/IconBlurOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBlurOffRound as default } diff --git a/src/IconBlurOffSharp.tsx b/src/IconBlurOffSharp.tsx new file mode 100644 index 000000000..aae2d7da8 --- /dev/null +++ b/src/IconBlurOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBlurOffSharp as default } diff --git a/src/IconBlurOffTwoTone.tsx b/src/IconBlurOffTwoTone.tsx new file mode 100644 index 000000000..1522a02f4 --- /dev/null +++ b/src/IconBlurOffTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconBlurOffTwoTone as default } diff --git a/src/IconBlurOnOutlined.tsx b/src/IconBlurOnOutlined.tsx new file mode 100644 index 000000000..b2d555fad --- /dev/null +++ b/src/IconBlurOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurOnOutlined as default } diff --git a/src/IconBlurOnRound.tsx b/src/IconBlurOnRound.tsx new file mode 100644 index 000000000..7eb160ba7 --- /dev/null +++ b/src/IconBlurOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurOnRound as default } diff --git a/src/IconBlurOnSharp.tsx b/src/IconBlurOnSharp.tsx new file mode 100644 index 000000000..a8e716ac5 --- /dev/null +++ b/src/IconBlurOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBlurOnSharp as default } diff --git a/src/IconBlurOnTwoTone.tsx b/src/IconBlurOnTwoTone.tsx new file mode 100644 index 000000000..9f6a8bb32 --- /dev/null +++ b/src/IconBlurOnTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconBlurOnTwoTone as default } diff --git a/src/IconBoltOutlined.tsx b/src/IconBoltOutlined.tsx new file mode 100644 index 000000000..db6ce535b --- /dev/null +++ b/src/IconBoltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBoltOutlined as default } diff --git a/src/IconBoltRound.tsx b/src/IconBoltRound.tsx new file mode 100644 index 000000000..886d0359c --- /dev/null +++ b/src/IconBoltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBoltRound as default } diff --git a/src/IconBoltSharp.tsx b/src/IconBoltSharp.tsx new file mode 100644 index 000000000..6da13210a --- /dev/null +++ b/src/IconBoltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBoltSharp as default } diff --git a/src/IconBoltTwoTone.tsx b/src/IconBoltTwoTone.tsx new file mode 100644 index 000000000..8825b1514 --- /dev/null +++ b/src/IconBoltTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBoltTwoTone as default } diff --git a/src/IconBookOnlineOutlined.tsx b/src/IconBookOnlineOutlined.tsx new file mode 100644 index 000000000..28a02464e --- /dev/null +++ b/src/IconBookOnlineOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookOnlineOutlined as default } diff --git a/src/IconBookOnlineRound.tsx b/src/IconBookOnlineRound.tsx new file mode 100644 index 000000000..dd783418f --- /dev/null +++ b/src/IconBookOnlineRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookOnlineRound as default } diff --git a/src/IconBookOnlineSharp.tsx b/src/IconBookOnlineSharp.tsx new file mode 100644 index 000000000..edb68dd18 --- /dev/null +++ b/src/IconBookOnlineSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBookOnlineSharp as default } diff --git a/src/IconBookOnlineTwoTone.tsx b/src/IconBookOnlineTwoTone.tsx new file mode 100644 index 000000000..cb9959ac7 --- /dev/null +++ b/src/IconBookOnlineTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookOnlineTwoTone as default } diff --git a/src/IconBookOutlined.tsx b/src/IconBookOutlined.tsx new file mode 100644 index 000000000..8674e6eb4 --- /dev/null +++ b/src/IconBookOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookOutlined as default } diff --git a/src/IconBookRound.tsx b/src/IconBookRound.tsx new file mode 100644 index 000000000..84d434b5b --- /dev/null +++ b/src/IconBookRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookRound as default } diff --git a/src/IconBookSharp.tsx b/src/IconBookSharp.tsx new file mode 100644 index 000000000..899d2377c --- /dev/null +++ b/src/IconBookSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookSharp as default } diff --git a/src/IconBookTwoTone.tsx b/src/IconBookTwoTone.tsx new file mode 100644 index 000000000..96f7c2a5e --- /dev/null +++ b/src/IconBookTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookTwoTone as default } diff --git a/src/IconBookmarkAddOutlined.tsx b/src/IconBookmarkAddOutlined.tsx new file mode 100644 index 000000000..ce2f31d81 --- /dev/null +++ b/src/IconBookmarkAddOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddOutlined as default } diff --git a/src/IconBookmarkAddRound.tsx b/src/IconBookmarkAddRound.tsx new file mode 100644 index 000000000..99a48f61b --- /dev/null +++ b/src/IconBookmarkAddRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddRound as default } diff --git a/src/IconBookmarkAddSharp.tsx b/src/IconBookmarkAddSharp.tsx new file mode 100644 index 000000000..f1e638c01 --- /dev/null +++ b/src/IconBookmarkAddSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddSharp as default } diff --git a/src/IconBookmarkAddTwoTone.tsx b/src/IconBookmarkAddTwoTone.tsx new file mode 100644 index 000000000..11d63364d --- /dev/null +++ b/src/IconBookmarkAddTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookmarkAddTwoTone as default } diff --git a/src/IconBookmarkAddedOutlined.tsx b/src/IconBookmarkAddedOutlined.tsx new file mode 100644 index 000000000..35449a1ad --- /dev/null +++ b/src/IconBookmarkAddedOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddedOutlined as default } diff --git a/src/IconBookmarkAddedRound.tsx b/src/IconBookmarkAddedRound.tsx new file mode 100644 index 000000000..10191bc0d --- /dev/null +++ b/src/IconBookmarkAddedRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddedRound as default } diff --git a/src/IconBookmarkAddedSharp.tsx b/src/IconBookmarkAddedSharp.tsx new file mode 100644 index 000000000..3be69706f --- /dev/null +++ b/src/IconBookmarkAddedSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkAddedSharp as default } diff --git a/src/IconBookmarkAddedTwoTone.tsx b/src/IconBookmarkAddedTwoTone.tsx new file mode 100644 index 000000000..8f007923b --- /dev/null +++ b/src/IconBookmarkAddedTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookmarkAddedTwoTone as default } diff --git a/src/IconBookmarkBorderOutlined.tsx b/src/IconBookmarkBorderOutlined.tsx new file mode 100644 index 000000000..0f231483d --- /dev/null +++ b/src/IconBookmarkBorderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBorderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkBorderOutlined as default } diff --git a/src/IconBookmarkBorderRound.tsx b/src/IconBookmarkBorderRound.tsx new file mode 100644 index 000000000..68ef3a48d --- /dev/null +++ b/src/IconBookmarkBorderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBorderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkBorderRound as default } diff --git a/src/IconBookmarkBorderSharp.tsx b/src/IconBookmarkBorderSharp.tsx new file mode 100644 index 000000000..24575f26a --- /dev/null +++ b/src/IconBookmarkBorderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBorderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkBorderSharp as default } diff --git a/src/IconBookmarkBorderTwoTone.tsx b/src/IconBookmarkBorderTwoTone.tsx new file mode 100644 index 000000000..f4f97faa7 --- /dev/null +++ b/src/IconBookmarkBorderTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBorderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkBorderTwoTone as default } diff --git a/src/IconBookmarkOutlined.tsx b/src/IconBookmarkOutlined.tsx new file mode 100644 index 000000000..ab065144a --- /dev/null +++ b/src/IconBookmarkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkOutlined as default } diff --git a/src/IconBookmarkRemoveOutlined.tsx b/src/IconBookmarkRemoveOutlined.tsx new file mode 100644 index 000000000..59128d8be --- /dev/null +++ b/src/IconBookmarkRemoveOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkRemoveOutlined as default } diff --git a/src/IconBookmarkRemoveRound.tsx b/src/IconBookmarkRemoveRound.tsx new file mode 100644 index 000000000..c759f63e6 --- /dev/null +++ b/src/IconBookmarkRemoveRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkRemoveRound as default } diff --git a/src/IconBookmarkRemoveSharp.tsx b/src/IconBookmarkRemoveSharp.tsx new file mode 100644 index 000000000..589726948 --- /dev/null +++ b/src/IconBookmarkRemoveSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkRemoveSharp as default } diff --git a/src/IconBookmarkRemoveTwoTone.tsx b/src/IconBookmarkRemoveTwoTone.tsx new file mode 100644 index 000000000..c753a891a --- /dev/null +++ b/src/IconBookmarkRemoveTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookmarkRemoveTwoTone as default } diff --git a/src/IconBookmarkRound.tsx b/src/IconBookmarkRound.tsx new file mode 100644 index 000000000..10c83b75b --- /dev/null +++ b/src/IconBookmarkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkRound as default } diff --git a/src/IconBookmarkSharp.tsx b/src/IconBookmarkSharp.tsx new file mode 100644 index 000000000..b9d2093ec --- /dev/null +++ b/src/IconBookmarkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarkSharp as default } diff --git a/src/IconBookmarkTwoTone.tsx b/src/IconBookmarkTwoTone.tsx new file mode 100644 index 000000000..81a72a8d6 --- /dev/null +++ b/src/IconBookmarkTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookmarkTwoTone as default } diff --git a/src/IconBookmarksOutlined.tsx b/src/IconBookmarksOutlined.tsx new file mode 100644 index 000000000..cabce1710 --- /dev/null +++ b/src/IconBookmarksOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarksOutlined as default } diff --git a/src/IconBookmarksRound.tsx b/src/IconBookmarksRound.tsx new file mode 100644 index 000000000..a09effde2 --- /dev/null +++ b/src/IconBookmarksRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarksRound as default } diff --git a/src/IconBookmarksSharp.tsx b/src/IconBookmarksSharp.tsx new file mode 100644 index 000000000..fb0adad36 --- /dev/null +++ b/src/IconBookmarksSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBookmarksSharp as default } diff --git a/src/IconBookmarksTwoTone.tsx b/src/IconBookmarksTwoTone.tsx new file mode 100644 index 000000000..a6882d859 --- /dev/null +++ b/src/IconBookmarksTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBookmarksTwoTone as default } diff --git a/src/IconBorderAllOutlined.tsx b/src/IconBorderAllOutlined.tsx new file mode 100644 index 000000000..ec6e3c19a --- /dev/null +++ b/src/IconBorderAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderAllOutlined as default } diff --git a/src/IconBorderAllRound.tsx b/src/IconBorderAllRound.tsx new file mode 100644 index 000000000..534088e14 --- /dev/null +++ b/src/IconBorderAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderAllRound as default } diff --git a/src/IconBorderAllSharp.tsx b/src/IconBorderAllSharp.tsx new file mode 100644 index 000000000..5264195aa --- /dev/null +++ b/src/IconBorderAllSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderAllSharp as default } diff --git a/src/IconBorderAllTwoTone.tsx b/src/IconBorderAllTwoTone.tsx new file mode 100644 index 000000000..9c13f5d47 --- /dev/null +++ b/src/IconBorderAllTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderAllTwoTone as default } diff --git a/src/IconBorderBottomOutlined.tsx b/src/IconBorderBottomOutlined.tsx new file mode 100644 index 000000000..a3fe002c2 --- /dev/null +++ b/src/IconBorderBottomOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderBottomOutlined as default } diff --git a/src/IconBorderBottomRound.tsx b/src/IconBorderBottomRound.tsx new file mode 100644 index 000000000..c8848470a --- /dev/null +++ b/src/IconBorderBottomRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderBottomRound as default } diff --git a/src/IconBorderBottomSharp.tsx b/src/IconBorderBottomSharp.tsx new file mode 100644 index 000000000..736e8b447 --- /dev/null +++ b/src/IconBorderBottomSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderBottomSharp as default } diff --git a/src/IconBorderBottomTwoTone.tsx b/src/IconBorderBottomTwoTone.tsx new file mode 100644 index 000000000..e86ef0349 --- /dev/null +++ b/src/IconBorderBottomTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderBottomTwoTone as default } diff --git a/src/IconBorderClearOutlined.tsx b/src/IconBorderClearOutlined.tsx new file mode 100644 index 000000000..cb54d1f23 --- /dev/null +++ b/src/IconBorderClearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderClearOutlined as default } diff --git a/src/IconBorderClearRound.tsx b/src/IconBorderClearRound.tsx new file mode 100644 index 000000000..46db50cb0 --- /dev/null +++ b/src/IconBorderClearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderClearRound as default } diff --git a/src/IconBorderClearSharp.tsx b/src/IconBorderClearSharp.tsx new file mode 100644 index 000000000..b039ab318 --- /dev/null +++ b/src/IconBorderClearSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderClearSharp as default } diff --git a/src/IconBorderClearTwoTone.tsx b/src/IconBorderClearTwoTone.tsx new file mode 100644 index 000000000..f1154fd7b --- /dev/null +++ b/src/IconBorderClearTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderClearTwoTone as default } diff --git a/src/IconBorderColorOutlined.tsx b/src/IconBorderColorOutlined.tsx new file mode 100644 index 000000000..2c4927954 --- /dev/null +++ b/src/IconBorderColorOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBorderColorOutlined as default } diff --git a/src/IconBorderColorRound.tsx b/src/IconBorderColorRound.tsx new file mode 100644 index 000000000..f187c80c7 --- /dev/null +++ b/src/IconBorderColorRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBorderColorRound as default } diff --git a/src/IconBorderColorSharp.tsx b/src/IconBorderColorSharp.tsx new file mode 100644 index 000000000..7d3abc6d3 --- /dev/null +++ b/src/IconBorderColorSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBorderColorSharp as default } diff --git a/src/IconBorderColorTwoTone.tsx b/src/IconBorderColorTwoTone.tsx new file mode 100644 index 000000000..29e9230e6 --- /dev/null +++ b/src/IconBorderColorTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBorderColorTwoTone as default } diff --git a/src/IconBorderHorizontalOutlined.tsx b/src/IconBorderHorizontalOutlined.tsx new file mode 100644 index 000000000..c80ac2044 --- /dev/null +++ b/src/IconBorderHorizontalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderHorizontalOutlined as default } diff --git a/src/IconBorderHorizontalRound.tsx b/src/IconBorderHorizontalRound.tsx new file mode 100644 index 000000000..6190d2572 --- /dev/null +++ b/src/IconBorderHorizontalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderHorizontalRound as default } diff --git a/src/IconBorderHorizontalSharp.tsx b/src/IconBorderHorizontalSharp.tsx new file mode 100644 index 000000000..a97e8604a --- /dev/null +++ b/src/IconBorderHorizontalSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderHorizontalSharp as default } diff --git a/src/IconBorderHorizontalTwoTone.tsx b/src/IconBorderHorizontalTwoTone.tsx new file mode 100644 index 000000000..f458ecc3b --- /dev/null +++ b/src/IconBorderHorizontalTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderHorizontalTwoTone as default } diff --git a/src/IconBorderInnerOutlined.tsx b/src/IconBorderInnerOutlined.tsx new file mode 100644 index 000000000..8263e3cc3 --- /dev/null +++ b/src/IconBorderInnerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderInnerOutlined as default } diff --git a/src/IconBorderInnerRound.tsx b/src/IconBorderInnerRound.tsx new file mode 100644 index 000000000..6e454c32f --- /dev/null +++ b/src/IconBorderInnerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderInnerRound as default } diff --git a/src/IconBorderInnerSharp.tsx b/src/IconBorderInnerSharp.tsx new file mode 100644 index 000000000..c854944a3 --- /dev/null +++ b/src/IconBorderInnerSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderInnerSharp as default } diff --git a/src/IconBorderInnerTwoTone.tsx b/src/IconBorderInnerTwoTone.tsx new file mode 100644 index 000000000..e7ebae81b --- /dev/null +++ b/src/IconBorderInnerTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderInnerTwoTone as default } diff --git a/src/IconBorderLeftOutlined.tsx b/src/IconBorderLeftOutlined.tsx new file mode 100644 index 000000000..9b2b0cd73 --- /dev/null +++ b/src/IconBorderLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderLeftOutlined as default } diff --git a/src/IconBorderLeftRound.tsx b/src/IconBorderLeftRound.tsx new file mode 100644 index 000000000..efc55ba3c --- /dev/null +++ b/src/IconBorderLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderLeftRound as default } diff --git a/src/IconBorderLeftSharp.tsx b/src/IconBorderLeftSharp.tsx new file mode 100644 index 000000000..e38d83f27 --- /dev/null +++ b/src/IconBorderLeftSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderLeftSharp as default } diff --git a/src/IconBorderLeftTwoTone.tsx b/src/IconBorderLeftTwoTone.tsx new file mode 100644 index 000000000..0d6b6f499 --- /dev/null +++ b/src/IconBorderLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderLeftTwoTone as default } diff --git a/src/IconBorderOuterOutlined.tsx b/src/IconBorderOuterOutlined.tsx new file mode 100644 index 000000000..f5a916839 --- /dev/null +++ b/src/IconBorderOuterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderOuterOutlined as default } diff --git a/src/IconBorderOuterRound.tsx b/src/IconBorderOuterRound.tsx new file mode 100644 index 000000000..0990c1dba --- /dev/null +++ b/src/IconBorderOuterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderOuterRound as default } diff --git a/src/IconBorderOuterSharp.tsx b/src/IconBorderOuterSharp.tsx new file mode 100644 index 000000000..205e95f04 --- /dev/null +++ b/src/IconBorderOuterSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderOuterSharp as default } diff --git a/src/IconBorderOuterTwoTone.tsx b/src/IconBorderOuterTwoTone.tsx new file mode 100644 index 000000000..e66588167 --- /dev/null +++ b/src/IconBorderOuterTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderOuterTwoTone as default } diff --git a/src/IconBorderRightOutlined.tsx b/src/IconBorderRightOutlined.tsx new file mode 100644 index 000000000..4e07f054c --- /dev/null +++ b/src/IconBorderRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderRightOutlined as default } diff --git a/src/IconBorderRightRound.tsx b/src/IconBorderRightRound.tsx new file mode 100644 index 000000000..136a038f5 --- /dev/null +++ b/src/IconBorderRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderRightRound as default } diff --git a/src/IconBorderRightSharp.tsx b/src/IconBorderRightSharp.tsx new file mode 100644 index 000000000..0b89518f6 --- /dev/null +++ b/src/IconBorderRightSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderRightSharp as default } diff --git a/src/IconBorderRightTwoTone.tsx b/src/IconBorderRightTwoTone.tsx new file mode 100644 index 000000000..3bd7ae419 --- /dev/null +++ b/src/IconBorderRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderRightTwoTone as default } diff --git a/src/IconBorderStyleOutlined.tsx b/src/IconBorderStyleOutlined.tsx new file mode 100644 index 000000000..309bf7c00 --- /dev/null +++ b/src/IconBorderStyleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderStyleOutlined as default } diff --git a/src/IconBorderStyleRound.tsx b/src/IconBorderStyleRound.tsx new file mode 100644 index 000000000..21e55749a --- /dev/null +++ b/src/IconBorderStyleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderStyleRound as default } diff --git a/src/IconBorderStyleSharp.tsx b/src/IconBorderStyleSharp.tsx new file mode 100644 index 000000000..33bf4efa8 --- /dev/null +++ b/src/IconBorderStyleSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderStyleSharp as default } diff --git a/src/IconBorderStyleTwoTone.tsx b/src/IconBorderStyleTwoTone.tsx new file mode 100644 index 000000000..baf208df8 --- /dev/null +++ b/src/IconBorderStyleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderStyleTwoTone as default } diff --git a/src/IconBorderTopOutlined.tsx b/src/IconBorderTopOutlined.tsx new file mode 100644 index 000000000..91f4da8f4 --- /dev/null +++ b/src/IconBorderTopOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderTopOutlined as default } diff --git a/src/IconBorderTopRound.tsx b/src/IconBorderTopRound.tsx new file mode 100644 index 000000000..6f12bc9fb --- /dev/null +++ b/src/IconBorderTopRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderTopRound as default } diff --git a/src/IconBorderTopSharp.tsx b/src/IconBorderTopSharp.tsx new file mode 100644 index 000000000..b6ce76aee --- /dev/null +++ b/src/IconBorderTopSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderTopSharp as default } diff --git a/src/IconBorderTopTwoTone.tsx b/src/IconBorderTopTwoTone.tsx new file mode 100644 index 000000000..0c289dd90 --- /dev/null +++ b/src/IconBorderTopTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderTopTwoTone as default } diff --git a/src/IconBorderVerticalOutlined.tsx b/src/IconBorderVerticalOutlined.tsx new file mode 100644 index 000000000..aa9830b69 --- /dev/null +++ b/src/IconBorderVerticalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderVerticalOutlined as default } diff --git a/src/IconBorderVerticalRound.tsx b/src/IconBorderVerticalRound.tsx new file mode 100644 index 000000000..bed062da1 --- /dev/null +++ b/src/IconBorderVerticalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderVerticalRound as default } diff --git a/src/IconBorderVerticalSharp.tsx b/src/IconBorderVerticalSharp.tsx new file mode 100644 index 000000000..58ec16b40 --- /dev/null +++ b/src/IconBorderVerticalSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderVerticalSharp as default } diff --git a/src/IconBorderVerticalTwoTone.tsx b/src/IconBorderVerticalTwoTone.tsx new file mode 100644 index 000000000..5d292e4da --- /dev/null +++ b/src/IconBorderVerticalTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBorderVerticalTwoTone as default } diff --git a/src/IconBoyOutlined.tsx b/src/IconBoyOutlined.tsx new file mode 100644 index 000000000..cde42657f --- /dev/null +++ b/src/IconBoyOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBoyOutlined as default } diff --git a/src/IconBoyRound.tsx b/src/IconBoyRound.tsx new file mode 100644 index 000000000..125ce102b --- /dev/null +++ b/src/IconBoyRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBoyRound as default } diff --git a/src/IconBoySharp.tsx b/src/IconBoySharp.tsx new file mode 100644 index 000000000..ba8be525e --- /dev/null +++ b/src/IconBoySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBoySharp as default } diff --git a/src/IconBoyTwoTone.tsx b/src/IconBoyTwoTone.tsx new file mode 100644 index 000000000..d23f43f3b --- /dev/null +++ b/src/IconBoyTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBoyTwoTone as default } diff --git a/src/IconBrandingWatermarkOutlined.tsx b/src/IconBrandingWatermarkOutlined.tsx new file mode 100644 index 000000000..1d91b08f4 --- /dev/null +++ b/src/IconBrandingWatermarkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrandingWatermarkOutlined as default } diff --git a/src/IconBrandingWatermarkRound.tsx b/src/IconBrandingWatermarkRound.tsx new file mode 100644 index 000000000..fffd855a7 --- /dev/null +++ b/src/IconBrandingWatermarkRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandingWatermarkRound as default } diff --git a/src/IconBrandingWatermarkSharp.tsx b/src/IconBrandingWatermarkSharp.tsx new file mode 100644 index 000000000..42db29845 --- /dev/null +++ b/src/IconBrandingWatermarkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrandingWatermarkSharp as default } diff --git a/src/IconBrandingWatermarkTwoTone.tsx b/src/IconBrandingWatermarkTwoTone.tsx new file mode 100644 index 000000000..fdad7700b --- /dev/null +++ b/src/IconBrandingWatermarkTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrandingWatermarkTwoTone as default } diff --git a/src/IconBreakfastDiningOutlined.tsx b/src/IconBreakfastDiningOutlined.tsx new file mode 100644 index 000000000..1237085f3 --- /dev/null +++ b/src/IconBreakfastDiningOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBreakfastDiningOutlined as default } diff --git a/src/IconBreakfastDiningRound.tsx b/src/IconBreakfastDiningRound.tsx new file mode 100644 index 000000000..4b3cc6803 --- /dev/null +++ b/src/IconBreakfastDiningRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBreakfastDiningRound as default } diff --git a/src/IconBreakfastDiningSharp.tsx b/src/IconBreakfastDiningSharp.tsx new file mode 100644 index 000000000..6256f7fc5 --- /dev/null +++ b/src/IconBreakfastDiningSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconBreakfastDiningSharp as default } diff --git a/src/IconBreakfastDiningTwoTone.tsx b/src/IconBreakfastDiningTwoTone.tsx new file mode 100644 index 000000000..a865a274a --- /dev/null +++ b/src/IconBreakfastDiningTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBreakfastDiningTwoTone as default } diff --git a/src/IconBrightness1Outlined.tsx b/src/IconBrightness1Outlined.tsx new file mode 100644 index 000000000..1c28cbaa9 --- /dev/null +++ b/src/IconBrightness1Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness1Outlined as default } diff --git a/src/IconBrightness1Round.tsx b/src/IconBrightness1Round.tsx new file mode 100644 index 000000000..f76b23628 --- /dev/null +++ b/src/IconBrightness1Round.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBrightness1Round as default } diff --git a/src/IconBrightness1Sharp.tsx b/src/IconBrightness1Sharp.tsx new file mode 100644 index 000000000..8532a55fe --- /dev/null +++ b/src/IconBrightness1Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness1Sharp as default } diff --git a/src/IconBrightness1TwoTone.tsx b/src/IconBrightness1TwoTone.tsx new file mode 100644 index 000000000..577915d46 --- /dev/null +++ b/src/IconBrightness1TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness1TwoTone as default } diff --git a/src/IconBrightness2Outlined.tsx b/src/IconBrightness2Outlined.tsx new file mode 100644 index 000000000..78ddc654b --- /dev/null +++ b/src/IconBrightness2Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness2Outlined as default } diff --git a/src/IconBrightness2Round.tsx b/src/IconBrightness2Round.tsx new file mode 100644 index 000000000..e805eeb4d --- /dev/null +++ b/src/IconBrightness2Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness2Round as default } diff --git a/src/IconBrightness2Sharp.tsx b/src/IconBrightness2Sharp.tsx new file mode 100644 index 000000000..550b5191e --- /dev/null +++ b/src/IconBrightness2Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness2Sharp as default } diff --git a/src/IconBrightness2TwoTone.tsx b/src/IconBrightness2TwoTone.tsx new file mode 100644 index 000000000..90717b5e5 --- /dev/null +++ b/src/IconBrightness2TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness2TwoTone as default } diff --git a/src/IconBrightness3Outlined.tsx b/src/IconBrightness3Outlined.tsx new file mode 100644 index 000000000..4af2a633d --- /dev/null +++ b/src/IconBrightness3Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness3Outlined as default } diff --git a/src/IconBrightness3Round.tsx b/src/IconBrightness3Round.tsx new file mode 100644 index 000000000..4f400b575 --- /dev/null +++ b/src/IconBrightness3Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrightness3Round as default } diff --git a/src/IconBrightness3Sharp.tsx b/src/IconBrightness3Sharp.tsx new file mode 100644 index 000000000..cb8e4539d --- /dev/null +++ b/src/IconBrightness3Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness3Sharp as default } diff --git a/src/IconBrightness3TwoTone.tsx b/src/IconBrightness3TwoTone.tsx new file mode 100644 index 000000000..c6caa96a1 --- /dev/null +++ b/src/IconBrightness3TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness3TwoTone as default } diff --git a/src/IconBrightness4Outlined.tsx b/src/IconBrightness4Outlined.tsx new file mode 100644 index 000000000..b74a24f85 --- /dev/null +++ b/src/IconBrightness4Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness4Outlined as default } diff --git a/src/IconBrightness4Round.tsx b/src/IconBrightness4Round.tsx new file mode 100644 index 000000000..e4b2b064c --- /dev/null +++ b/src/IconBrightness4Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrightness4Round as default } diff --git a/src/IconBrightness4Sharp.tsx b/src/IconBrightness4Sharp.tsx new file mode 100644 index 000000000..3fd57ae49 --- /dev/null +++ b/src/IconBrightness4Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness4Sharp as default } diff --git a/src/IconBrightness4TwoTone.tsx b/src/IconBrightness4TwoTone.tsx new file mode 100644 index 000000000..e193b17b7 --- /dev/null +++ b/src/IconBrightness4TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness4TwoTone as default } diff --git a/src/IconBrightness5Outlined.tsx b/src/IconBrightness5Outlined.tsx new file mode 100644 index 000000000..8bd3b602b --- /dev/null +++ b/src/IconBrightness5Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness5Outlined as default } diff --git a/src/IconBrightness5Round.tsx b/src/IconBrightness5Round.tsx new file mode 100644 index 000000000..0a28fc4b8 --- /dev/null +++ b/src/IconBrightness5Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness5Round as default } diff --git a/src/IconBrightness5Sharp.tsx b/src/IconBrightness5Sharp.tsx new file mode 100644 index 000000000..4a74b7156 --- /dev/null +++ b/src/IconBrightness5Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness5Sharp as default } diff --git a/src/IconBrightness5TwoTone.tsx b/src/IconBrightness5TwoTone.tsx new file mode 100644 index 000000000..00997d4ca --- /dev/null +++ b/src/IconBrightness5TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness5TwoTone as default } diff --git a/src/IconBrightness6Outlined.tsx b/src/IconBrightness6Outlined.tsx new file mode 100644 index 000000000..675a0fce7 --- /dev/null +++ b/src/IconBrightness6Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness6Outlined as default } diff --git a/src/IconBrightness6Round.tsx b/src/IconBrightness6Round.tsx new file mode 100644 index 000000000..f92d9888a --- /dev/null +++ b/src/IconBrightness6Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness6Round as default } diff --git a/src/IconBrightness6Sharp.tsx b/src/IconBrightness6Sharp.tsx new file mode 100644 index 000000000..575738b30 --- /dev/null +++ b/src/IconBrightness6Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness6Sharp as default } diff --git a/src/IconBrightness6TwoTone.tsx b/src/IconBrightness6TwoTone.tsx new file mode 100644 index 000000000..cfdce9824 --- /dev/null +++ b/src/IconBrightness6TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness6TwoTone as default } diff --git a/src/IconBrightness7Outlined.tsx b/src/IconBrightness7Outlined.tsx new file mode 100644 index 000000000..7caa6d192 --- /dev/null +++ b/src/IconBrightness7Outlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightness7Outlined as default } diff --git a/src/IconBrightness7Round.tsx b/src/IconBrightness7Round.tsx new file mode 100644 index 000000000..1c5750024 --- /dev/null +++ b/src/IconBrightness7Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness7Round as default } diff --git a/src/IconBrightness7Sharp.tsx b/src/IconBrightness7Sharp.tsx new file mode 100644 index 000000000..75e9f4df2 --- /dev/null +++ b/src/IconBrightness7Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightness7Sharp as default } diff --git a/src/IconBrightness7TwoTone.tsx b/src/IconBrightness7TwoTone.tsx new file mode 100644 index 000000000..5d7e650af --- /dev/null +++ b/src/IconBrightness7TwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBrightness7TwoTone as default } diff --git a/src/IconBrightnessAutoOutlined.tsx b/src/IconBrightnessAutoOutlined.tsx new file mode 100644 index 000000000..3d33b9773 --- /dev/null +++ b/src/IconBrightnessAutoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessAutoOutlined as default } diff --git a/src/IconBrightnessAutoRound.tsx b/src/IconBrightnessAutoRound.tsx new file mode 100644 index 000000000..61fda1e3a --- /dev/null +++ b/src/IconBrightnessAutoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessAutoRound as default } diff --git a/src/IconBrightnessAutoSharp.tsx b/src/IconBrightnessAutoSharp.tsx new file mode 100644 index 000000000..22004d40c --- /dev/null +++ b/src/IconBrightnessAutoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessAutoSharp as default } diff --git a/src/IconBrightnessAutoTwoTone.tsx b/src/IconBrightnessAutoTwoTone.tsx new file mode 100644 index 000000000..6136a83f7 --- /dev/null +++ b/src/IconBrightnessAutoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightnessAutoTwoTone as default } diff --git a/src/IconBrightnessHighOutlined.tsx b/src/IconBrightnessHighOutlined.tsx new file mode 100644 index 000000000..e2cc3fcde --- /dev/null +++ b/src/IconBrightnessHighOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightnessHighOutlined as default } diff --git a/src/IconBrightnessHighRound.tsx b/src/IconBrightnessHighRound.tsx new file mode 100644 index 000000000..2e6688e78 --- /dev/null +++ b/src/IconBrightnessHighRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessHighRound as default } diff --git a/src/IconBrightnessHighSharp.tsx b/src/IconBrightnessHighSharp.tsx new file mode 100644 index 000000000..c7ecf37d3 --- /dev/null +++ b/src/IconBrightnessHighSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessHighSharp as default } diff --git a/src/IconBrightnessHighTwoTone.tsx b/src/IconBrightnessHighTwoTone.tsx new file mode 100644 index 000000000..236faf5e6 --- /dev/null +++ b/src/IconBrightnessHighTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBrightnessHighTwoTone as default } diff --git a/src/IconBrightnessLowOutlined.tsx b/src/IconBrightnessLowOutlined.tsx new file mode 100644 index 000000000..a8cc98de5 --- /dev/null +++ b/src/IconBrightnessLowOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessLowOutlined as default } diff --git a/src/IconBrightnessLowRound.tsx b/src/IconBrightnessLowRound.tsx new file mode 100644 index 000000000..f2fef234b --- /dev/null +++ b/src/IconBrightnessLowRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessLowRound as default } diff --git a/src/IconBrightnessLowSharp.tsx b/src/IconBrightnessLowSharp.tsx new file mode 100644 index 000000000..be18e41e0 --- /dev/null +++ b/src/IconBrightnessLowSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessLowSharp as default } diff --git a/src/IconBrightnessLowTwoTone.tsx b/src/IconBrightnessLowTwoTone.tsx new file mode 100644 index 000000000..3faeac889 --- /dev/null +++ b/src/IconBrightnessLowTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightnessLowTwoTone as default } diff --git a/src/IconBrightnessMediumOutlined.tsx b/src/IconBrightnessMediumOutlined.tsx new file mode 100644 index 000000000..f543a33d0 --- /dev/null +++ b/src/IconBrightnessMediumOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessMediumOutlined as default } diff --git a/src/IconBrightnessMediumRound.tsx b/src/IconBrightnessMediumRound.tsx new file mode 100644 index 000000000..0247a2517 --- /dev/null +++ b/src/IconBrightnessMediumRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessMediumRound as default } diff --git a/src/IconBrightnessMediumSharp.tsx b/src/IconBrightnessMediumSharp.tsx new file mode 100644 index 000000000..5f4beff8b --- /dev/null +++ b/src/IconBrightnessMediumSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrightnessMediumSharp as default } diff --git a/src/IconBrightnessMediumTwoTone.tsx b/src/IconBrightnessMediumTwoTone.tsx new file mode 100644 index 000000000..422fe8063 --- /dev/null +++ b/src/IconBrightnessMediumTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrightnessMediumTwoTone as default } diff --git a/src/IconBroadcastOnHomeOutlined.tsx b/src/IconBroadcastOnHomeOutlined.tsx new file mode 100644 index 000000000..86b10d0d7 --- /dev/null +++ b/src/IconBroadcastOnHomeOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBroadcastOnHomeOutlined as default } diff --git a/src/IconBroadcastOnHomeRound.tsx b/src/IconBroadcastOnHomeRound.tsx new file mode 100644 index 000000000..aa0db3cfa --- /dev/null +++ b/src/IconBroadcastOnHomeRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBroadcastOnHomeRound as default } diff --git a/src/IconBroadcastOnHomeSharp.tsx b/src/IconBroadcastOnHomeSharp.tsx new file mode 100644 index 000000000..8c5cd11e1 --- /dev/null +++ b/src/IconBroadcastOnHomeSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBroadcastOnHomeSharp as default } diff --git a/src/IconBroadcastOnHomeTwoTone.tsx b/src/IconBroadcastOnHomeTwoTone.tsx new file mode 100644 index 000000000..8d7661728 --- /dev/null +++ b/src/IconBroadcastOnHomeTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBroadcastOnHomeTwoTone as default } diff --git a/src/IconBroadcastOnPersonalOutlined.tsx b/src/IconBroadcastOnPersonalOutlined.tsx new file mode 100644 index 000000000..759c5459e --- /dev/null +++ b/src/IconBroadcastOnPersonalOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBroadcastOnPersonalOutlined as default } diff --git a/src/IconBroadcastOnPersonalRound.tsx b/src/IconBroadcastOnPersonalRound.tsx new file mode 100644 index 000000000..8df160135 --- /dev/null +++ b/src/IconBroadcastOnPersonalRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBroadcastOnPersonalRound as default } diff --git a/src/IconBroadcastOnPersonalSharp.tsx b/src/IconBroadcastOnPersonalSharp.tsx new file mode 100644 index 000000000..7ddf14ad6 --- /dev/null +++ b/src/IconBroadcastOnPersonalSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBroadcastOnPersonalSharp as default } diff --git a/src/IconBroadcastOnPersonalTwoTone.tsx b/src/IconBroadcastOnPersonalTwoTone.tsx new file mode 100644 index 000000000..78919a2bb --- /dev/null +++ b/src/IconBroadcastOnPersonalTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconBroadcastOnPersonalTwoTone as default } diff --git a/src/IconBrokenImageOutlined.tsx b/src/IconBrokenImageOutlined.tsx new file mode 100644 index 000000000..73a0a00da --- /dev/null +++ b/src/IconBrokenImageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrokenImageOutlined as default } diff --git a/src/IconBrokenImageRound.tsx b/src/IconBrokenImageRound.tsx new file mode 100644 index 000000000..6f44655e0 --- /dev/null +++ b/src/IconBrokenImageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrokenImageRound as default } diff --git a/src/IconBrokenImageSharp.tsx b/src/IconBrokenImageSharp.tsx new file mode 100644 index 000000000..c889fd1fa --- /dev/null +++ b/src/IconBrokenImageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrokenImageSharp as default } diff --git a/src/IconBrokenImageTwoTone.tsx b/src/IconBrokenImageTwoTone.tsx new file mode 100644 index 000000000..a728463b1 --- /dev/null +++ b/src/IconBrokenImageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrokenImageTwoTone as default } diff --git a/src/IconBrowseGalleryOutlined.tsx b/src/IconBrowseGalleryOutlined.tsx new file mode 100644 index 000000000..14f3792c5 --- /dev/null +++ b/src/IconBrowseGalleryOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGalleryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrowseGalleryOutlined as default } diff --git a/src/IconBrowseGalleryRound.tsx b/src/IconBrowseGalleryRound.tsx new file mode 100644 index 000000000..00eede4d8 --- /dev/null +++ b/src/IconBrowseGalleryRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGalleryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrowseGalleryRound as default } diff --git a/src/IconBrowseGallerySharp.tsx b/src/IconBrowseGallerySharp.tsx new file mode 100644 index 000000000..96abcfc8e --- /dev/null +++ b/src/IconBrowseGallerySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGallerySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBrowseGallerySharp as default } diff --git a/src/IconBrowseGalleryTwoTone.tsx b/src/IconBrowseGalleryTwoTone.tsx new file mode 100644 index 000000000..51ece29df --- /dev/null +++ b/src/IconBrowseGalleryTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGalleryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBrowseGalleryTwoTone as default } diff --git a/src/IconBrowserNotSupportedOutlined.tsx b/src/IconBrowserNotSupportedOutlined.tsx new file mode 100644 index 000000000..b02a78365 --- /dev/null +++ b/src/IconBrowserNotSupportedOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserNotSupportedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBrowserNotSupportedOutlined as default } diff --git a/src/IconBrowserNotSupportedRound.tsx b/src/IconBrowserNotSupportedRound.tsx new file mode 100644 index 000000000..b301c6a2d --- /dev/null +++ b/src/IconBrowserNotSupportedRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserNotSupportedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrowserNotSupportedRound as default } diff --git a/src/IconBrowserNotSupportedSharp.tsx b/src/IconBrowserNotSupportedSharp.tsx new file mode 100644 index 000000000..8912cf01b --- /dev/null +++ b/src/IconBrowserNotSupportedSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserNotSupportedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBrowserNotSupportedSharp as default } diff --git a/src/IconBrowserNotSupportedTwoTone.tsx b/src/IconBrowserNotSupportedTwoTone.tsx new file mode 100644 index 000000000..64f93f6e6 --- /dev/null +++ b/src/IconBrowserNotSupportedTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserNotSupportedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBrowserNotSupportedTwoTone as default } diff --git a/src/IconBrowserUpdatedOutlined.tsx b/src/IconBrowserUpdatedOutlined.tsx new file mode 100644 index 000000000..bd69ebff2 --- /dev/null +++ b/src/IconBrowserUpdatedOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrowserUpdatedOutlined as default } diff --git a/src/IconBrowserUpdatedRound.tsx b/src/IconBrowserUpdatedRound.tsx new file mode 100644 index 000000000..4cba50363 --- /dev/null +++ b/src/IconBrowserUpdatedRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrowserUpdatedRound as default } diff --git a/src/IconBrowserUpdatedSharp.tsx b/src/IconBrowserUpdatedSharp.tsx new file mode 100644 index 000000000..61300ad08 --- /dev/null +++ b/src/IconBrowserUpdatedSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrowserUpdatedSharp as default } diff --git a/src/IconBrowserUpdatedTwoTone.tsx b/src/IconBrowserUpdatedTwoTone.tsx new file mode 100644 index 000000000..48a91fd05 --- /dev/null +++ b/src/IconBrowserUpdatedTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrowserUpdatedTwoTone as default } diff --git a/src/IconBrunchDiningOutlined.tsx b/src/IconBrunchDiningOutlined.tsx new file mode 100644 index 000000000..ed56d2571 --- /dev/null +++ b/src/IconBrunchDiningOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBrunchDiningOutlined as default } diff --git a/src/IconBrunchDiningRound.tsx b/src/IconBrunchDiningRound.tsx new file mode 100644 index 000000000..3a6163b80 --- /dev/null +++ b/src/IconBrunchDiningRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBrunchDiningRound as default } diff --git a/src/IconBrunchDiningSharp.tsx b/src/IconBrunchDiningSharp.tsx new file mode 100644 index 000000000..751314682 --- /dev/null +++ b/src/IconBrunchDiningSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBrunchDiningSharp as default } diff --git a/src/IconBrunchDiningTwoTone.tsx b/src/IconBrunchDiningTwoTone.tsx new file mode 100644 index 000000000..4412fccc7 --- /dev/null +++ b/src/IconBrunchDiningTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconBrunchDiningTwoTone as default } diff --git a/src/IconBrushOutlined.tsx b/src/IconBrushOutlined.tsx new file mode 100644 index 000000000..23ca1ad73 --- /dev/null +++ b/src/IconBrushOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrushOutlined as default } diff --git a/src/IconBrushRound.tsx b/src/IconBrushRound.tsx new file mode 100644 index 000000000..f0d3fed91 --- /dev/null +++ b/src/IconBrushRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrushRound as default } diff --git a/src/IconBrushSharp.tsx b/src/IconBrushSharp.tsx new file mode 100644 index 000000000..440075168 --- /dev/null +++ b/src/IconBrushSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBrushSharp as default } diff --git a/src/IconBrushTwoTone.tsx b/src/IconBrushTwoTone.tsx new file mode 100644 index 000000000..dc46fff9e --- /dev/null +++ b/src/IconBrushTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBrushTwoTone as default } diff --git a/src/IconBubbleChartOutlined.tsx b/src/IconBubbleChartOutlined.tsx new file mode 100644 index 000000000..26a134dfa --- /dev/null +++ b/src/IconBubbleChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBubbleChartOutlined as default } diff --git a/src/IconBubbleChartRound.tsx b/src/IconBubbleChartRound.tsx new file mode 100644 index 000000000..4e4dde903 --- /dev/null +++ b/src/IconBubbleChartRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconBubbleChartRound as default } diff --git a/src/IconBubbleChartSharp.tsx b/src/IconBubbleChartSharp.tsx new file mode 100644 index 000000000..ca80c1804 --- /dev/null +++ b/src/IconBubbleChartSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBubbleChartSharp as default } diff --git a/src/IconBubbleChartTwoTone.tsx b/src/IconBubbleChartTwoTone.tsx new file mode 100644 index 000000000..8cb901cd4 --- /dev/null +++ b/src/IconBubbleChartTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconBubbleChartTwoTone as default } diff --git a/src/IconBugReportOutlined.tsx b/src/IconBugReportOutlined.tsx new file mode 100644 index 000000000..6679edb98 --- /dev/null +++ b/src/IconBugReportOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBugReportOutlined as default } diff --git a/src/IconBugReportRound.tsx b/src/IconBugReportRound.tsx new file mode 100644 index 000000000..a133ceec4 --- /dev/null +++ b/src/IconBugReportRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBugReportRound as default } diff --git a/src/IconBugReportSharp.tsx b/src/IconBugReportSharp.tsx new file mode 100644 index 000000000..b29f9b451 --- /dev/null +++ b/src/IconBugReportSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBugReportSharp as default } diff --git a/src/IconBugReportTwoTone.tsx b/src/IconBugReportTwoTone.tsx new file mode 100644 index 000000000..39c09a88f --- /dev/null +++ b/src/IconBugReportTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBugReportTwoTone as default } diff --git a/src/IconBuildCircleOutlined.tsx b/src/IconBuildCircleOutlined.tsx new file mode 100644 index 000000000..5080dab5a --- /dev/null +++ b/src/IconBuildCircleOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBuildCircleOutlined as default } diff --git a/src/IconBuildCircleRound.tsx b/src/IconBuildCircleRound.tsx new file mode 100644 index 000000000..7d0bf1678 --- /dev/null +++ b/src/IconBuildCircleRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconBuildCircleRound as default } diff --git a/src/IconBuildCircleSharp.tsx b/src/IconBuildCircleSharp.tsx new file mode 100644 index 000000000..3b1ddf055 --- /dev/null +++ b/src/IconBuildCircleSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconBuildCircleSharp as default } diff --git a/src/IconBuildCircleTwoTone.tsx b/src/IconBuildCircleTwoTone.tsx new file mode 100644 index 000000000..648387e14 --- /dev/null +++ b/src/IconBuildCircleTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconBuildCircleTwoTone as default } diff --git a/src/IconBuildOutlined.tsx b/src/IconBuildOutlined.tsx new file mode 100644 index 000000000..584d2485d --- /dev/null +++ b/src/IconBuildOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBuildOutlined as default } diff --git a/src/IconBuildRound.tsx b/src/IconBuildRound.tsx new file mode 100644 index 000000000..84831783e --- /dev/null +++ b/src/IconBuildRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBuildRound as default } diff --git a/src/IconBuildSharp.tsx b/src/IconBuildSharp.tsx new file mode 100644 index 000000000..d8ce04cfa --- /dev/null +++ b/src/IconBuildSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBuildSharp as default } diff --git a/src/IconBuildTwoTone.tsx b/src/IconBuildTwoTone.tsx new file mode 100644 index 000000000..c0a7365d1 --- /dev/null +++ b/src/IconBuildTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBuildTwoTone as default } diff --git a/src/IconBungalowOutlined.tsx b/src/IconBungalowOutlined.tsx new file mode 100644 index 000000000..23aec76d3 --- /dev/null +++ b/src/IconBungalowOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBungalowOutlined as default } diff --git a/src/IconBungalowRound.tsx b/src/IconBungalowRound.tsx new file mode 100644 index 000000000..cc65c6c1b --- /dev/null +++ b/src/IconBungalowRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBungalowRound as default } diff --git a/src/IconBungalowSharp.tsx b/src/IconBungalowSharp.tsx new file mode 100644 index 000000000..ec3d1bbfd --- /dev/null +++ b/src/IconBungalowSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBungalowSharp as default } diff --git a/src/IconBungalowTwoTone.tsx b/src/IconBungalowTwoTone.tsx new file mode 100644 index 000000000..72ddfc09b --- /dev/null +++ b/src/IconBungalowTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBungalowTwoTone as default } diff --git a/src/IconBurstModeOutlined.tsx b/src/IconBurstModeOutlined.tsx new file mode 100644 index 000000000..26eab5f48 --- /dev/null +++ b/src/IconBurstModeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBurstModeOutlined as default } diff --git a/src/IconBurstModeRound.tsx b/src/IconBurstModeRound.tsx new file mode 100644 index 000000000..9df930a3c --- /dev/null +++ b/src/IconBurstModeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBurstModeRound as default } diff --git a/src/IconBurstModeSharp.tsx b/src/IconBurstModeSharp.tsx new file mode 100644 index 000000000..aa8267be3 --- /dev/null +++ b/src/IconBurstModeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBurstModeSharp as default } diff --git a/src/IconBurstModeTwoTone.tsx b/src/IconBurstModeTwoTone.tsx new file mode 100644 index 000000000..edcecf6d0 --- /dev/null +++ b/src/IconBurstModeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBurstModeTwoTone as default } diff --git a/src/IconBusAlertOutlined.tsx b/src/IconBusAlertOutlined.tsx new file mode 100644 index 000000000..5408b033a --- /dev/null +++ b/src/IconBusAlertOutlined.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconBusAlertOutlined as default } diff --git a/src/IconBusAlertRound.tsx b/src/IconBusAlertRound.tsx new file mode 100644 index 000000000..a1a04e4fc --- /dev/null +++ b/src/IconBusAlertRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBusAlertRound as default } diff --git a/src/IconBusAlertSharp.tsx b/src/IconBusAlertSharp.tsx new file mode 100644 index 000000000..19256d97c --- /dev/null +++ b/src/IconBusAlertSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBusAlertSharp as default } diff --git a/src/IconBusAlertTwoTone.tsx b/src/IconBusAlertTwoTone.tsx new file mode 100644 index 000000000..1769e9128 --- /dev/null +++ b/src/IconBusAlertTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconBusAlertTwoTone as default } diff --git a/src/IconBusinessCenterOutlined.tsx b/src/IconBusinessCenterOutlined.tsx new file mode 100644 index 000000000..9e2cd8bda --- /dev/null +++ b/src/IconBusinessCenterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessCenterOutlined as default } diff --git a/src/IconBusinessCenterRound.tsx b/src/IconBusinessCenterRound.tsx new file mode 100644 index 000000000..c641b1a38 --- /dev/null +++ b/src/IconBusinessCenterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessCenterRound as default } diff --git a/src/IconBusinessCenterSharp.tsx b/src/IconBusinessCenterSharp.tsx new file mode 100644 index 000000000..90cd29d67 --- /dev/null +++ b/src/IconBusinessCenterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessCenterSharp as default } diff --git a/src/IconBusinessCenterTwoTone.tsx b/src/IconBusinessCenterTwoTone.tsx new file mode 100644 index 000000000..c1c930f33 --- /dev/null +++ b/src/IconBusinessCenterTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBusinessCenterTwoTone as default } diff --git a/src/IconBusinessOutlined.tsx b/src/IconBusinessOutlined.tsx new file mode 100644 index 000000000..dee72eb36 --- /dev/null +++ b/src/IconBusinessOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessOutlined as default } diff --git a/src/IconBusinessRound.tsx b/src/IconBusinessRound.tsx new file mode 100644 index 000000000..99c70a1ed --- /dev/null +++ b/src/IconBusinessRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessRound as default } diff --git a/src/IconBusinessSharp.tsx b/src/IconBusinessSharp.tsx new file mode 100644 index 000000000..e8e81088b --- /dev/null +++ b/src/IconBusinessSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconBusinessSharp as default } diff --git a/src/IconBusinessTwoTone.tsx b/src/IconBusinessTwoTone.tsx new file mode 100644 index 000000000..ea3d8f4f9 --- /dev/null +++ b/src/IconBusinessTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconBusinessTwoTone as default } diff --git a/src/IconCabinOutlined.tsx b/src/IconCabinOutlined.tsx new file mode 100644 index 000000000..8faab8062 --- /dev/null +++ b/src/IconCabinOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCabinOutlined as default } diff --git a/src/IconCabinRound.tsx b/src/IconCabinRound.tsx new file mode 100644 index 000000000..83807993c --- /dev/null +++ b/src/IconCabinRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCabinRound as default } diff --git a/src/IconCabinSharp.tsx b/src/IconCabinSharp.tsx new file mode 100644 index 000000000..2f7f982e4 --- /dev/null +++ b/src/IconCabinSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCabinSharp as default } diff --git a/src/IconCabinTwoTone.tsx b/src/IconCabinTwoTone.tsx new file mode 100644 index 000000000..c56ae28ce --- /dev/null +++ b/src/IconCabinTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCabinTwoTone as default } diff --git a/src/IconCableOutlined.tsx b/src/IconCableOutlined.tsx new file mode 100644 index 000000000..ae5d09694 --- /dev/null +++ b/src/IconCableOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCableOutlined as default } diff --git a/src/IconCableRound.tsx b/src/IconCableRound.tsx new file mode 100644 index 000000000..21ca5ca7c --- /dev/null +++ b/src/IconCableRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCableRound as default } diff --git a/src/IconCableSharp.tsx b/src/IconCableSharp.tsx new file mode 100644 index 000000000..598b853b2 --- /dev/null +++ b/src/IconCableSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCableSharp as default } diff --git a/src/IconCableTwoTone.tsx b/src/IconCableTwoTone.tsx new file mode 100644 index 000000000..e83382cf7 --- /dev/null +++ b/src/IconCableTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCableTwoTone as default } diff --git a/src/IconCachedOutlined.tsx b/src/IconCachedOutlined.tsx new file mode 100644 index 000000000..96262aabf --- /dev/null +++ b/src/IconCachedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCachedOutlined as default } diff --git a/src/IconCachedRound.tsx b/src/IconCachedRound.tsx new file mode 100644 index 000000000..1ebf02ccb --- /dev/null +++ b/src/IconCachedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCachedRound as default } diff --git a/src/IconCachedSharp.tsx b/src/IconCachedSharp.tsx new file mode 100644 index 000000000..566e88c58 --- /dev/null +++ b/src/IconCachedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCachedSharp as default } diff --git a/src/IconCachedTwoTone.tsx b/src/IconCachedTwoTone.tsx new file mode 100644 index 000000000..5cacef018 --- /dev/null +++ b/src/IconCachedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCachedTwoTone as default } diff --git a/src/IconCakeOutlined.tsx b/src/IconCakeOutlined.tsx new file mode 100644 index 000000000..a01c5807b --- /dev/null +++ b/src/IconCakeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCakeOutlined as default } diff --git a/src/IconCakeRound.tsx b/src/IconCakeRound.tsx new file mode 100644 index 000000000..1d5915144 --- /dev/null +++ b/src/IconCakeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCakeRound as default } diff --git a/src/IconCakeSharp.tsx b/src/IconCakeSharp.tsx new file mode 100644 index 000000000..ed6498b82 --- /dev/null +++ b/src/IconCakeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCakeSharp as default } diff --git a/src/IconCakeTwoTone.tsx b/src/IconCakeTwoTone.tsx new file mode 100644 index 000000000..dedc5f995 --- /dev/null +++ b/src/IconCakeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCakeTwoTone as default } diff --git a/src/IconCalculateOutlined.tsx b/src/IconCalculateOutlined.tsx new file mode 100644 index 000000000..d318366e3 --- /dev/null +++ b/src/IconCalculateOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCalculateOutlined as default } diff --git a/src/IconCalculateRound.tsx b/src/IconCalculateRound.tsx new file mode 100644 index 000000000..a4dd232cc --- /dev/null +++ b/src/IconCalculateRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCalculateRound as default } diff --git a/src/IconCalculateSharp.tsx b/src/IconCalculateSharp.tsx new file mode 100644 index 000000000..b02ec28c6 --- /dev/null +++ b/src/IconCalculateSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalculateSharp as default } diff --git a/src/IconCalculateTwoTone.tsx b/src/IconCalculateTwoTone.tsx new file mode 100644 index 000000000..28775f648 --- /dev/null +++ b/src/IconCalculateTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCalculateTwoTone as default } diff --git a/src/IconCalendarMonthOutlined.tsx b/src/IconCalendarMonthOutlined.tsx new file mode 100644 index 000000000..28203aa6e --- /dev/null +++ b/src/IconCalendarMonthOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarMonthOutlined as default } diff --git a/src/IconCalendarMonthRound.tsx b/src/IconCalendarMonthRound.tsx new file mode 100644 index 000000000..11993c99d --- /dev/null +++ b/src/IconCalendarMonthRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCalendarMonthRound as default } diff --git a/src/IconCalendarMonthSharp.tsx b/src/IconCalendarMonthSharp.tsx new file mode 100644 index 000000000..436572690 --- /dev/null +++ b/src/IconCalendarMonthSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarMonthSharp as default } diff --git a/src/IconCalendarMonthTwoTone.tsx b/src/IconCalendarMonthTwoTone.tsx new file mode 100644 index 000000000..a746ce4d8 --- /dev/null +++ b/src/IconCalendarMonthTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCalendarMonthTwoTone as default } diff --git a/src/IconCalendarTodayOutlined.tsx b/src/IconCalendarTodayOutlined.tsx new file mode 100644 index 000000000..60b5599a3 --- /dev/null +++ b/src/IconCalendarTodayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarTodayOutlined as default } diff --git a/src/IconCalendarTodayRound.tsx b/src/IconCalendarTodayRound.tsx new file mode 100644 index 000000000..df2447431 --- /dev/null +++ b/src/IconCalendarTodayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarTodayRound as default } diff --git a/src/IconCalendarTodaySharp.tsx b/src/IconCalendarTodaySharp.tsx new file mode 100644 index 000000000..81ff123cb --- /dev/null +++ b/src/IconCalendarTodaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarTodaySharp as default } diff --git a/src/IconCalendarTodayTwoTone.tsx b/src/IconCalendarTodayTwoTone.tsx new file mode 100644 index 000000000..045a4249e --- /dev/null +++ b/src/IconCalendarTodayTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCalendarTodayTwoTone as default } diff --git a/src/IconCalendarViewDayOutlined.tsx b/src/IconCalendarViewDayOutlined.tsx new file mode 100644 index 000000000..ce9a97aa5 --- /dev/null +++ b/src/IconCalendarViewDayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarViewDayOutlined as default } diff --git a/src/IconCalendarViewDayRound.tsx b/src/IconCalendarViewDayRound.tsx new file mode 100644 index 000000000..405e938a6 --- /dev/null +++ b/src/IconCalendarViewDayRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarViewDayRound as default } diff --git a/src/IconCalendarViewDaySharp.tsx b/src/IconCalendarViewDaySharp.tsx new file mode 100644 index 000000000..aa03fb7de --- /dev/null +++ b/src/IconCalendarViewDaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCalendarViewDaySharp as default } diff --git a/src/IconCalendarViewDayTwoTone.tsx b/src/IconCalendarViewDayTwoTone.tsx new file mode 100644 index 000000000..1737f4ec7 --- /dev/null +++ b/src/IconCalendarViewDayTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCalendarViewDayTwoTone as default } diff --git a/src/IconCalendarViewMonthOutlined.tsx b/src/IconCalendarViewMonthOutlined.tsx new file mode 100644 index 000000000..b11e52e4f --- /dev/null +++ b/src/IconCalendarViewMonthOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewMonthOutlined as default } diff --git a/src/IconCalendarViewMonthRound.tsx b/src/IconCalendarViewMonthRound.tsx new file mode 100644 index 000000000..17633afc4 --- /dev/null +++ b/src/IconCalendarViewMonthRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewMonthRound as default } diff --git a/src/IconCalendarViewMonthSharp.tsx b/src/IconCalendarViewMonthSharp.tsx new file mode 100644 index 000000000..71b80d5e3 --- /dev/null +++ b/src/IconCalendarViewMonthSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewMonthSharp as default } diff --git a/src/IconCalendarViewMonthTwoTone.tsx b/src/IconCalendarViewMonthTwoTone.tsx new file mode 100644 index 000000000..9f69788ac --- /dev/null +++ b/src/IconCalendarViewMonthTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCalendarViewMonthTwoTone as default } diff --git a/src/IconCalendarViewWeekOutlined.tsx b/src/IconCalendarViewWeekOutlined.tsx new file mode 100644 index 000000000..e58ef0fae --- /dev/null +++ b/src/IconCalendarViewWeekOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewWeekOutlined as default } diff --git a/src/IconCalendarViewWeekRound.tsx b/src/IconCalendarViewWeekRound.tsx new file mode 100644 index 000000000..fee9d3840 --- /dev/null +++ b/src/IconCalendarViewWeekRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewWeekRound as default } diff --git a/src/IconCalendarViewWeekSharp.tsx b/src/IconCalendarViewWeekSharp.tsx new file mode 100644 index 000000000..f35bf9095 --- /dev/null +++ b/src/IconCalendarViewWeekSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCalendarViewWeekSharp as default } diff --git a/src/IconCalendarViewWeekTwoTone.tsx b/src/IconCalendarViewWeekTwoTone.tsx new file mode 100644 index 000000000..43cce2796 --- /dev/null +++ b/src/IconCalendarViewWeekTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCalendarViewWeekTwoTone as default } diff --git a/src/IconCallEndOutlined.tsx b/src/IconCallEndOutlined.tsx new file mode 100644 index 000000000..64613729d --- /dev/null +++ b/src/IconCallEndOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallEndOutlined as default } diff --git a/src/IconCallEndRound.tsx b/src/IconCallEndRound.tsx new file mode 100644 index 000000000..f69255fa9 --- /dev/null +++ b/src/IconCallEndRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallEndRound as default } diff --git a/src/IconCallEndSharp.tsx b/src/IconCallEndSharp.tsx new file mode 100644 index 000000000..942d3ae82 --- /dev/null +++ b/src/IconCallEndSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallEndSharp as default } diff --git a/src/IconCallEndTwoTone.tsx b/src/IconCallEndTwoTone.tsx new file mode 100644 index 000000000..7109ef558 --- /dev/null +++ b/src/IconCallEndTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCallEndTwoTone as default } diff --git a/src/IconCallMadeOutlined.tsx b/src/IconCallMadeOutlined.tsx new file mode 100644 index 000000000..817979089 --- /dev/null +++ b/src/IconCallMadeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMadeOutlined as default } diff --git a/src/IconCallMadeRound.tsx b/src/IconCallMadeRound.tsx new file mode 100644 index 000000000..fc20e9c28 --- /dev/null +++ b/src/IconCallMadeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMadeRound as default } diff --git a/src/IconCallMadeSharp.tsx b/src/IconCallMadeSharp.tsx new file mode 100644 index 000000000..418fbad41 --- /dev/null +++ b/src/IconCallMadeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMadeSharp as default } diff --git a/src/IconCallMadeTwoTone.tsx b/src/IconCallMadeTwoTone.tsx new file mode 100644 index 000000000..f034210a7 --- /dev/null +++ b/src/IconCallMadeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMadeTwoTone as default } diff --git a/src/IconCallMergeOutlined.tsx b/src/IconCallMergeOutlined.tsx new file mode 100644 index 000000000..1a6206282 --- /dev/null +++ b/src/IconCallMergeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMergeOutlined as default } diff --git a/src/IconCallMergeRound.tsx b/src/IconCallMergeRound.tsx new file mode 100644 index 000000000..623f86d26 --- /dev/null +++ b/src/IconCallMergeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMergeRound as default } diff --git a/src/IconCallMergeSharp.tsx b/src/IconCallMergeSharp.tsx new file mode 100644 index 000000000..30611c26f --- /dev/null +++ b/src/IconCallMergeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMergeSharp as default } diff --git a/src/IconCallMergeTwoTone.tsx b/src/IconCallMergeTwoTone.tsx new file mode 100644 index 000000000..7b9e04c6d --- /dev/null +++ b/src/IconCallMergeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMergeTwoTone as default } diff --git a/src/IconCallMissedOutgoingOutlined.tsx b/src/IconCallMissedOutgoingOutlined.tsx new file mode 100644 index 000000000..881b33a2f --- /dev/null +++ b/src/IconCallMissedOutgoingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedOutgoingOutlined as default } diff --git a/src/IconCallMissedOutgoingRound.tsx b/src/IconCallMissedOutgoingRound.tsx new file mode 100644 index 000000000..759985e40 --- /dev/null +++ b/src/IconCallMissedOutgoingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedOutgoingRound as default } diff --git a/src/IconCallMissedOutgoingSharp.tsx b/src/IconCallMissedOutgoingSharp.tsx new file mode 100644 index 000000000..337c7c9b8 --- /dev/null +++ b/src/IconCallMissedOutgoingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedOutgoingSharp as default } diff --git a/src/IconCallMissedOutgoingTwoTone.tsx b/src/IconCallMissedOutgoingTwoTone.tsx new file mode 100644 index 000000000..6b64f8548 --- /dev/null +++ b/src/IconCallMissedOutgoingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedOutgoingTwoTone as default } diff --git a/src/IconCallMissedOutlined.tsx b/src/IconCallMissedOutlined.tsx new file mode 100644 index 000000000..e15f20bde --- /dev/null +++ b/src/IconCallMissedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedOutlined as default } diff --git a/src/IconCallMissedRound.tsx b/src/IconCallMissedRound.tsx new file mode 100644 index 000000000..204a8601e --- /dev/null +++ b/src/IconCallMissedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedRound as default } diff --git a/src/IconCallMissedSharp.tsx b/src/IconCallMissedSharp.tsx new file mode 100644 index 000000000..84ba6348c --- /dev/null +++ b/src/IconCallMissedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedSharp as default } diff --git a/src/IconCallMissedTwoTone.tsx b/src/IconCallMissedTwoTone.tsx new file mode 100644 index 000000000..3f2d58a9a --- /dev/null +++ b/src/IconCallMissedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallMissedTwoTone as default } diff --git a/src/IconCallOutlined.tsx b/src/IconCallOutlined.tsx new file mode 100644 index 000000000..10dda4059 --- /dev/null +++ b/src/IconCallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallOutlined as default } diff --git a/src/IconCallReceivedOutlined.tsx b/src/IconCallReceivedOutlined.tsx new file mode 100644 index 000000000..69eff8e2b --- /dev/null +++ b/src/IconCallReceivedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallReceivedOutlined as default } diff --git a/src/IconCallReceivedRound.tsx b/src/IconCallReceivedRound.tsx new file mode 100644 index 000000000..40d521efc --- /dev/null +++ b/src/IconCallReceivedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallReceivedRound as default } diff --git a/src/IconCallReceivedSharp.tsx b/src/IconCallReceivedSharp.tsx new file mode 100644 index 000000000..1ff68b11e --- /dev/null +++ b/src/IconCallReceivedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallReceivedSharp as default } diff --git a/src/IconCallReceivedTwoTone.tsx b/src/IconCallReceivedTwoTone.tsx new file mode 100644 index 000000000..338a32a83 --- /dev/null +++ b/src/IconCallReceivedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallReceivedTwoTone as default } diff --git a/src/IconCallRound.tsx b/src/IconCallRound.tsx new file mode 100644 index 000000000..fba73e8cd --- /dev/null +++ b/src/IconCallRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallRound as default } diff --git a/src/IconCallSharp.tsx b/src/IconCallSharp.tsx new file mode 100644 index 000000000..256732037 --- /dev/null +++ b/src/IconCallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallSharp as default } diff --git a/src/IconCallSplitOutlined.tsx b/src/IconCallSplitOutlined.tsx new file mode 100644 index 000000000..432d2a3d6 --- /dev/null +++ b/src/IconCallSplitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallSplitOutlined as default } diff --git a/src/IconCallSplitRound.tsx b/src/IconCallSplitRound.tsx new file mode 100644 index 000000000..f892c03a1 --- /dev/null +++ b/src/IconCallSplitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallSplitRound as default } diff --git a/src/IconCallSplitSharp.tsx b/src/IconCallSplitSharp.tsx new file mode 100644 index 000000000..032e7272e --- /dev/null +++ b/src/IconCallSplitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallSplitSharp as default } diff --git a/src/IconCallSplitTwoTone.tsx b/src/IconCallSplitTwoTone.tsx new file mode 100644 index 000000000..484591156 --- /dev/null +++ b/src/IconCallSplitTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallSplitTwoTone as default } diff --git a/src/IconCallToActionOutlined.tsx b/src/IconCallToActionOutlined.tsx new file mode 100644 index 000000000..294669b60 --- /dev/null +++ b/src/IconCallToActionOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallToActionOutlined as default } diff --git a/src/IconCallToActionRound.tsx b/src/IconCallToActionRound.tsx new file mode 100644 index 000000000..03675d81c --- /dev/null +++ b/src/IconCallToActionRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallToActionRound as default } diff --git a/src/IconCallToActionSharp.tsx b/src/IconCallToActionSharp.tsx new file mode 100644 index 000000000..bb3fe77ae --- /dev/null +++ b/src/IconCallToActionSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCallToActionSharp as default } diff --git a/src/IconCallToActionTwoTone.tsx b/src/IconCallToActionTwoTone.tsx new file mode 100644 index 000000000..498bada8c --- /dev/null +++ b/src/IconCallToActionTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCallToActionTwoTone as default } diff --git a/src/IconCallTwoTone.tsx b/src/IconCallTwoTone.tsx new file mode 100644 index 000000000..b7cb3fe45 --- /dev/null +++ b/src/IconCallTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCallTwoTone as default } diff --git a/src/IconCameraAltOutlined.tsx b/src/IconCameraAltOutlined.tsx new file mode 100644 index 000000000..60fa0243b --- /dev/null +++ b/src/IconCameraAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraAltOutlined as default } diff --git a/src/IconCameraAltRound.tsx b/src/IconCameraAltRound.tsx new file mode 100644 index 000000000..05ade60a7 --- /dev/null +++ b/src/IconCameraAltRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraAltRound as default } diff --git a/src/IconCameraAltSharp.tsx b/src/IconCameraAltSharp.tsx new file mode 100644 index 000000000..9676cc3ad --- /dev/null +++ b/src/IconCameraAltSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraAltSharp as default } diff --git a/src/IconCameraAltTwoTone.tsx b/src/IconCameraAltTwoTone.tsx new file mode 100644 index 000000000..8b4691657 --- /dev/null +++ b/src/IconCameraAltTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraAltTwoTone as default } diff --git a/src/IconCameraEnhanceOutlined.tsx b/src/IconCameraEnhanceOutlined.tsx new file mode 100644 index 000000000..d70454fe9 --- /dev/null +++ b/src/IconCameraEnhanceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraEnhanceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraEnhanceOutlined as default } diff --git a/src/IconCameraEnhanceRound.tsx b/src/IconCameraEnhanceRound.tsx new file mode 100644 index 000000000..cd933e1ff --- /dev/null +++ b/src/IconCameraEnhanceRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraEnhanceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraEnhanceRound as default } diff --git a/src/IconCameraEnhanceSharp.tsx b/src/IconCameraEnhanceSharp.tsx new file mode 100644 index 000000000..960d0c98c --- /dev/null +++ b/src/IconCameraEnhanceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraEnhanceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraEnhanceSharp as default } diff --git a/src/IconCameraEnhanceTwoTone.tsx b/src/IconCameraEnhanceTwoTone.tsx new file mode 100644 index 000000000..99eb9116b --- /dev/null +++ b/src/IconCameraEnhanceTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraEnhanceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraEnhanceTwoTone as default } diff --git a/src/IconCameraFrontOutlined.tsx b/src/IconCameraFrontOutlined.tsx new file mode 100644 index 000000000..9ec2b6d47 --- /dev/null +++ b/src/IconCameraFrontOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraFrontOutlined as default } diff --git a/src/IconCameraFrontRound.tsx b/src/IconCameraFrontRound.tsx new file mode 100644 index 000000000..5fc06bc9d --- /dev/null +++ b/src/IconCameraFrontRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraFrontRound as default } diff --git a/src/IconCameraFrontSharp.tsx b/src/IconCameraFrontSharp.tsx new file mode 100644 index 000000000..897237a49 --- /dev/null +++ b/src/IconCameraFrontSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraFrontSharp as default } diff --git a/src/IconCameraFrontTwoTone.tsx b/src/IconCameraFrontTwoTone.tsx new file mode 100644 index 000000000..1f1025f13 --- /dev/null +++ b/src/IconCameraFrontTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraFrontTwoTone as default } diff --git a/src/IconCameraIndoorOutlined.tsx b/src/IconCameraIndoorOutlined.tsx new file mode 100644 index 000000000..7eb541056 --- /dev/null +++ b/src/IconCameraIndoorOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraIndoorOutlined as default } diff --git a/src/IconCameraIndoorRound.tsx b/src/IconCameraIndoorRound.tsx new file mode 100644 index 000000000..baab963ad --- /dev/null +++ b/src/IconCameraIndoorRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraIndoorRound as default } diff --git a/src/IconCameraIndoorSharp.tsx b/src/IconCameraIndoorSharp.tsx new file mode 100644 index 000000000..148df3165 --- /dev/null +++ b/src/IconCameraIndoorSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraIndoorSharp as default } diff --git a/src/IconCameraIndoorTwoTone.tsx b/src/IconCameraIndoorTwoTone.tsx new file mode 100644 index 000000000..4dbbc9d05 --- /dev/null +++ b/src/IconCameraIndoorTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCameraIndoorTwoTone as default } diff --git a/src/IconCameraOutdoorOutlined.tsx b/src/IconCameraOutdoorOutlined.tsx new file mode 100644 index 000000000..1acc3f4f9 --- /dev/null +++ b/src/IconCameraOutdoorOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraOutdoorOutlined as default } diff --git a/src/IconCameraOutdoorRound.tsx b/src/IconCameraOutdoorRound.tsx new file mode 100644 index 000000000..4a74dfda0 --- /dev/null +++ b/src/IconCameraOutdoorRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraOutdoorRound as default } diff --git a/src/IconCameraOutdoorSharp.tsx b/src/IconCameraOutdoorSharp.tsx new file mode 100644 index 000000000..7d4ac0e46 --- /dev/null +++ b/src/IconCameraOutdoorSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraOutdoorSharp as default } diff --git a/src/IconCameraOutdoorTwoTone.tsx b/src/IconCameraOutdoorTwoTone.tsx new file mode 100644 index 000000000..6a804318a --- /dev/null +++ b/src/IconCameraOutdoorTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCameraOutdoorTwoTone as default } diff --git a/src/IconCameraOutlined.tsx b/src/IconCameraOutlined.tsx new file mode 100644 index 000000000..ae57e960a --- /dev/null +++ b/src/IconCameraOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraOutlined as default } diff --git a/src/IconCameraRearOutlined.tsx b/src/IconCameraRearOutlined.tsx new file mode 100644 index 000000000..503078ee1 --- /dev/null +++ b/src/IconCameraRearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRearOutlined as default } diff --git a/src/IconCameraRearRound.tsx b/src/IconCameraRearRound.tsx new file mode 100644 index 000000000..85a8048cb --- /dev/null +++ b/src/IconCameraRearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRearRound as default } diff --git a/src/IconCameraRearSharp.tsx b/src/IconCameraRearSharp.tsx new file mode 100644 index 000000000..0c14752e2 --- /dev/null +++ b/src/IconCameraRearSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRearSharp as default } diff --git a/src/IconCameraRearTwoTone.tsx b/src/IconCameraRearTwoTone.tsx new file mode 100644 index 000000000..9c45d1c57 --- /dev/null +++ b/src/IconCameraRearTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraRearTwoTone as default } diff --git a/src/IconCameraRollOutlined.tsx b/src/IconCameraRollOutlined.tsx new file mode 100644 index 000000000..f845c1d4b --- /dev/null +++ b/src/IconCameraRollOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRollOutlined as default } diff --git a/src/IconCameraRollRound.tsx b/src/IconCameraRollRound.tsx new file mode 100644 index 000000000..7ce4f84de --- /dev/null +++ b/src/IconCameraRollRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRollRound as default } diff --git a/src/IconCameraRollSharp.tsx b/src/IconCameraRollSharp.tsx new file mode 100644 index 000000000..c06c22b66 --- /dev/null +++ b/src/IconCameraRollSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRollSharp as default } diff --git a/src/IconCameraRollTwoTone.tsx b/src/IconCameraRollTwoTone.tsx new file mode 100644 index 000000000..fe6521c50 --- /dev/null +++ b/src/IconCameraRollTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraRollTwoTone as default } diff --git a/src/IconCameraRound.tsx b/src/IconCameraRound.tsx new file mode 100644 index 000000000..c081f5ad6 --- /dev/null +++ b/src/IconCameraRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraRound as default } diff --git a/src/IconCameraSharp.tsx b/src/IconCameraSharp.tsx new file mode 100644 index 000000000..6b713360e --- /dev/null +++ b/src/IconCameraSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCameraSharp as default } diff --git a/src/IconCameraTwoTone.tsx b/src/IconCameraTwoTone.tsx new file mode 100644 index 000000000..bf71be1d2 --- /dev/null +++ b/src/IconCameraTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCameraTwoTone as default } diff --git a/src/IconCameraswitchOutlined.tsx b/src/IconCameraswitchOutlined.tsx new file mode 100644 index 000000000..68c350cab --- /dev/null +++ b/src/IconCameraswitchOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCameraswitchOutlined as default } diff --git a/src/IconCameraswitchRound.tsx b/src/IconCameraswitchRound.tsx new file mode 100644 index 000000000..4ba578730 --- /dev/null +++ b/src/IconCameraswitchRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCameraswitchRound as default } diff --git a/src/IconCameraswitchSharp.tsx b/src/IconCameraswitchSharp.tsx new file mode 100644 index 000000000..beec42f06 --- /dev/null +++ b/src/IconCameraswitchSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCameraswitchSharp as default } diff --git a/src/IconCameraswitchTwoTone.tsx b/src/IconCameraswitchTwoTone.tsx new file mode 100644 index 000000000..c8d6fc735 --- /dev/null +++ b/src/IconCameraswitchTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCameraswitchTwoTone as default } diff --git a/src/IconCampaignOutlined.tsx b/src/IconCampaignOutlined.tsx new file mode 100644 index 000000000..1a7b84064 --- /dev/null +++ b/src/IconCampaignOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCampaignOutlined as default } diff --git a/src/IconCampaignRound.tsx b/src/IconCampaignRound.tsx new file mode 100644 index 000000000..342283f33 --- /dev/null +++ b/src/IconCampaignRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCampaignRound as default } diff --git a/src/IconCampaignSharp.tsx b/src/IconCampaignSharp.tsx new file mode 100644 index 000000000..76ce6252d --- /dev/null +++ b/src/IconCampaignSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCampaignSharp as default } diff --git a/src/IconCampaignTwoTone.tsx b/src/IconCampaignTwoTone.tsx new file mode 100644 index 000000000..9bf01981a --- /dev/null +++ b/src/IconCampaignTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCampaignTwoTone as default } diff --git a/src/IconCancelOutlined.tsx b/src/IconCancelOutlined.tsx new file mode 100644 index 000000000..41c0495cf --- /dev/null +++ b/src/IconCancelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelOutlined as default } diff --git a/src/IconCancelPresentationOutlined.tsx b/src/IconCancelPresentationOutlined.tsx new file mode 100644 index 000000000..8cb029b3d --- /dev/null +++ b/src/IconCancelPresentationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelPresentationOutlined as default } diff --git a/src/IconCancelPresentationRound.tsx b/src/IconCancelPresentationRound.tsx new file mode 100644 index 000000000..0401348b0 --- /dev/null +++ b/src/IconCancelPresentationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelPresentationRound as default } diff --git a/src/IconCancelPresentationSharp.tsx b/src/IconCancelPresentationSharp.tsx new file mode 100644 index 000000000..d4654206d --- /dev/null +++ b/src/IconCancelPresentationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelPresentationSharp as default } diff --git a/src/IconCancelPresentationTwoTone.tsx b/src/IconCancelPresentationTwoTone.tsx new file mode 100644 index 000000000..d81b0d945 --- /dev/null +++ b/src/IconCancelPresentationTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCancelPresentationTwoTone as default } diff --git a/src/IconCancelRound.tsx b/src/IconCancelRound.tsx new file mode 100644 index 000000000..8fd4c7e8b --- /dev/null +++ b/src/IconCancelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelRound as default } diff --git a/src/IconCancelScheduleSendOutlined.tsx b/src/IconCancelScheduleSendOutlined.tsx new file mode 100644 index 000000000..47583396a --- /dev/null +++ b/src/IconCancelScheduleSendOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCancelScheduleSendOutlined as default } diff --git a/src/IconCancelScheduleSendRound.tsx b/src/IconCancelScheduleSendRound.tsx new file mode 100644 index 000000000..dc683b6ce --- /dev/null +++ b/src/IconCancelScheduleSendRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCancelScheduleSendRound as default } diff --git a/src/IconCancelScheduleSendSharp.tsx b/src/IconCancelScheduleSendSharp.tsx new file mode 100644 index 000000000..a9657b0ea --- /dev/null +++ b/src/IconCancelScheduleSendSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCancelScheduleSendSharp as default } diff --git a/src/IconCancelScheduleSendTwoTone.tsx b/src/IconCancelScheduleSendTwoTone.tsx new file mode 100644 index 000000000..3e88d41ef --- /dev/null +++ b/src/IconCancelScheduleSendTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCancelScheduleSendTwoTone as default } diff --git a/src/IconCancelSharp.tsx b/src/IconCancelSharp.tsx new file mode 100644 index 000000000..e5400c236 --- /dev/null +++ b/src/IconCancelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCancelSharp as default } diff --git a/src/IconCancelTwoTone.tsx b/src/IconCancelTwoTone.tsx new file mode 100644 index 000000000..2dcbdef05 --- /dev/null +++ b/src/IconCancelTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCancelTwoTone as default } diff --git a/src/IconCandlestickChartOutlined.tsx b/src/IconCandlestickChartOutlined.tsx new file mode 100644 index 000000000..2904bb4a7 --- /dev/null +++ b/src/IconCandlestickChartOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCandlestickChartOutlined as default } diff --git a/src/IconCandlestickChartRound.tsx b/src/IconCandlestickChartRound.tsx new file mode 100644 index 000000000..47b10274f --- /dev/null +++ b/src/IconCandlestickChartRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCandlestickChartRound as default } diff --git a/src/IconCandlestickChartSharp.tsx b/src/IconCandlestickChartSharp.tsx new file mode 100644 index 000000000..8d1721a22 --- /dev/null +++ b/src/IconCandlestickChartSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCandlestickChartSharp as default } diff --git a/src/IconCandlestickChartTwoTone.tsx b/src/IconCandlestickChartTwoTone.tsx new file mode 100644 index 000000000..59d7765d2 --- /dev/null +++ b/src/IconCandlestickChartTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCandlestickChartTwoTone as default } diff --git a/src/IconCarCrashOutlined.tsx b/src/IconCarCrashOutlined.tsx new file mode 100644 index 000000000..a4932a64d --- /dev/null +++ b/src/IconCarCrashOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCarCrashOutlined as default } diff --git a/src/IconCarCrashRound.tsx b/src/IconCarCrashRound.tsx new file mode 100644 index 000000000..c50ae6006 --- /dev/null +++ b/src/IconCarCrashRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCarCrashRound as default } diff --git a/src/IconCarCrashSharp.tsx b/src/IconCarCrashSharp.tsx new file mode 100644 index 000000000..59043c725 --- /dev/null +++ b/src/IconCarCrashSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCarCrashSharp as default } diff --git a/src/IconCarCrashTwoTone.tsx b/src/IconCarCrashTwoTone.tsx new file mode 100644 index 000000000..82684886f --- /dev/null +++ b/src/IconCarCrashTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCarCrashTwoTone as default } diff --git a/src/IconCarRentalOutlined.tsx b/src/IconCarRentalOutlined.tsx new file mode 100644 index 000000000..f2aa51a50 --- /dev/null +++ b/src/IconCarRentalOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCarRentalOutlined as default } diff --git a/src/IconCarRentalRound.tsx b/src/IconCarRentalRound.tsx new file mode 100644 index 000000000..aa4b5c9a7 --- /dev/null +++ b/src/IconCarRentalRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCarRentalRound as default } diff --git a/src/IconCarRentalSharp.tsx b/src/IconCarRentalSharp.tsx new file mode 100644 index 000000000..1f0eba0c3 --- /dev/null +++ b/src/IconCarRentalSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCarRentalSharp as default } diff --git a/src/IconCarRentalTwoTone.tsx b/src/IconCarRentalTwoTone.tsx new file mode 100644 index 000000000..2043ed9f2 --- /dev/null +++ b/src/IconCarRentalTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCarRentalTwoTone as default } diff --git a/src/IconCarRepairOutlined.tsx b/src/IconCarRepairOutlined.tsx new file mode 100644 index 000000000..4e97c3e5e --- /dev/null +++ b/src/IconCarRepairOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCarRepairOutlined as default } diff --git a/src/IconCarRepairRound.tsx b/src/IconCarRepairRound.tsx new file mode 100644 index 000000000..52f761b68 --- /dev/null +++ b/src/IconCarRepairRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCarRepairRound as default } diff --git a/src/IconCarRepairSharp.tsx b/src/IconCarRepairSharp.tsx new file mode 100644 index 000000000..83b74e026 --- /dev/null +++ b/src/IconCarRepairSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCarRepairSharp as default } diff --git a/src/IconCarRepairTwoTone.tsx b/src/IconCarRepairTwoTone.tsx new file mode 100644 index 000000000..c20714933 --- /dev/null +++ b/src/IconCarRepairTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCarRepairTwoTone as default } diff --git a/src/IconCardGiftcardOutlined.tsx b/src/IconCardGiftcardOutlined.tsx new file mode 100644 index 000000000..8a74538c8 --- /dev/null +++ b/src/IconCardGiftcardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardGiftcardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardGiftcardOutlined as default } diff --git a/src/IconCardGiftcardRound.tsx b/src/IconCardGiftcardRound.tsx new file mode 100644 index 000000000..bbab085ce --- /dev/null +++ b/src/IconCardGiftcardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardGiftcardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardGiftcardRound as default } diff --git a/src/IconCardGiftcardSharp.tsx b/src/IconCardGiftcardSharp.tsx new file mode 100644 index 000000000..6fd80fb79 --- /dev/null +++ b/src/IconCardGiftcardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardGiftcardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardGiftcardSharp as default } diff --git a/src/IconCardGiftcardTwoTone.tsx b/src/IconCardGiftcardTwoTone.tsx new file mode 100644 index 000000000..eaeaf4b24 --- /dev/null +++ b/src/IconCardGiftcardTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardGiftcardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCardGiftcardTwoTone as default } diff --git a/src/IconCardMembershipOutlined.tsx b/src/IconCardMembershipOutlined.tsx new file mode 100644 index 000000000..9c61f29de --- /dev/null +++ b/src/IconCardMembershipOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardMembershipOutlined as default } diff --git a/src/IconCardMembershipRound.tsx b/src/IconCardMembershipRound.tsx new file mode 100644 index 000000000..016e0a60f --- /dev/null +++ b/src/IconCardMembershipRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardMembershipRound as default } diff --git a/src/IconCardMembershipSharp.tsx b/src/IconCardMembershipSharp.tsx new file mode 100644 index 000000000..fe62e5a57 --- /dev/null +++ b/src/IconCardMembershipSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardMembershipSharp as default } diff --git a/src/IconCardMembershipTwoTone.tsx b/src/IconCardMembershipTwoTone.tsx new file mode 100644 index 000000000..42772ae71 --- /dev/null +++ b/src/IconCardMembershipTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCardMembershipTwoTone as default } diff --git a/src/IconCardTravelOutlined.tsx b/src/IconCardTravelOutlined.tsx new file mode 100644 index 000000000..1cde31c84 --- /dev/null +++ b/src/IconCardTravelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardTravelOutlined as default } diff --git a/src/IconCardTravelRound.tsx b/src/IconCardTravelRound.tsx new file mode 100644 index 000000000..51e57abcf --- /dev/null +++ b/src/IconCardTravelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardTravelRound as default } diff --git a/src/IconCardTravelSharp.tsx b/src/IconCardTravelSharp.tsx new file mode 100644 index 000000000..ad8cc98bc --- /dev/null +++ b/src/IconCardTravelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCardTravelSharp as default } diff --git a/src/IconCardTravelTwoTone.tsx b/src/IconCardTravelTwoTone.tsx new file mode 100644 index 000000000..ce3aea5e2 --- /dev/null +++ b/src/IconCardTravelTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCardTravelTwoTone as default } diff --git a/src/IconCarpenterOutlined.tsx b/src/IconCarpenterOutlined.tsx new file mode 100644 index 000000000..c9df3e9c9 --- /dev/null +++ b/src/IconCarpenterOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCarpenterOutlined as default } diff --git a/src/IconCarpenterRound.tsx b/src/IconCarpenterRound.tsx new file mode 100644 index 000000000..c6d137f83 --- /dev/null +++ b/src/IconCarpenterRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCarpenterRound as default } diff --git a/src/IconCarpenterSharp.tsx b/src/IconCarpenterSharp.tsx new file mode 100644 index 000000000..c4125dcdb --- /dev/null +++ b/src/IconCarpenterSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCarpenterSharp as default } diff --git a/src/IconCarpenterTwoTone.tsx b/src/IconCarpenterTwoTone.tsx new file mode 100644 index 000000000..50c5d4989 --- /dev/null +++ b/src/IconCarpenterTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCarpenterTwoTone as default } diff --git a/src/IconCasesOutlined.tsx b/src/IconCasesOutlined.tsx new file mode 100644 index 000000000..ee4c1475c --- /dev/null +++ b/src/IconCasesOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCasesOutlined as default } diff --git a/src/IconCasesRound.tsx b/src/IconCasesRound.tsx new file mode 100644 index 000000000..fa454d839 --- /dev/null +++ b/src/IconCasesRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCasesRound as default } diff --git a/src/IconCasesSharp.tsx b/src/IconCasesSharp.tsx new file mode 100644 index 000000000..d541ae312 --- /dev/null +++ b/src/IconCasesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCasesSharp as default } diff --git a/src/IconCasesTwoTone.tsx b/src/IconCasesTwoTone.tsx new file mode 100644 index 000000000..8a6608d55 --- /dev/null +++ b/src/IconCasesTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCasesTwoTone as default } diff --git a/src/IconCasinoOutlined.tsx b/src/IconCasinoOutlined.tsx new file mode 100644 index 000000000..8d7e82a16 --- /dev/null +++ b/src/IconCasinoOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCasinoOutlined as default } diff --git a/src/IconCasinoRound.tsx b/src/IconCasinoRound.tsx new file mode 100644 index 000000000..55dca4b99 --- /dev/null +++ b/src/IconCasinoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCasinoRound as default } diff --git a/src/IconCasinoSharp.tsx b/src/IconCasinoSharp.tsx new file mode 100644 index 000000000..7aadf92b7 --- /dev/null +++ b/src/IconCasinoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCasinoSharp as default } diff --git a/src/IconCasinoTwoTone.tsx b/src/IconCasinoTwoTone.tsx new file mode 100644 index 000000000..87d6e3d69 --- /dev/null +++ b/src/IconCasinoTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCasinoTwoTone as default } diff --git a/src/IconCastConnectedOutlined.tsx b/src/IconCastConnectedOutlined.tsx new file mode 100644 index 000000000..6009bf5a8 --- /dev/null +++ b/src/IconCastConnectedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastConnectedOutlined as default } diff --git a/src/IconCastConnectedRound.tsx b/src/IconCastConnectedRound.tsx new file mode 100644 index 000000000..de5d35acf --- /dev/null +++ b/src/IconCastConnectedRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastConnectedRound as default } diff --git a/src/IconCastConnectedSharp.tsx b/src/IconCastConnectedSharp.tsx new file mode 100644 index 000000000..dd0dd83e7 --- /dev/null +++ b/src/IconCastConnectedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastConnectedSharp as default } diff --git a/src/IconCastConnectedTwoTone.tsx b/src/IconCastConnectedTwoTone.tsx new file mode 100644 index 000000000..f3b844152 --- /dev/null +++ b/src/IconCastConnectedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCastConnectedTwoTone as default } diff --git a/src/IconCastForEducationOutlined.tsx b/src/IconCastForEducationOutlined.tsx new file mode 100644 index 000000000..72cbf1b16 --- /dev/null +++ b/src/IconCastForEducationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastForEducationOutlined as default } diff --git a/src/IconCastForEducationRound.tsx b/src/IconCastForEducationRound.tsx new file mode 100644 index 000000000..9620c0b0c --- /dev/null +++ b/src/IconCastForEducationRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastForEducationRound as default } diff --git a/src/IconCastForEducationSharp.tsx b/src/IconCastForEducationSharp.tsx new file mode 100644 index 000000000..2e73e6f44 --- /dev/null +++ b/src/IconCastForEducationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastForEducationSharp as default } diff --git a/src/IconCastForEducationTwoTone.tsx b/src/IconCastForEducationTwoTone.tsx new file mode 100644 index 000000000..f35e00669 --- /dev/null +++ b/src/IconCastForEducationTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastForEducationTwoTone as default } diff --git a/src/IconCastOutlined.tsx b/src/IconCastOutlined.tsx new file mode 100644 index 000000000..2b87b5c86 --- /dev/null +++ b/src/IconCastOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastOutlined as default } diff --git a/src/IconCastRound.tsx b/src/IconCastRound.tsx new file mode 100644 index 000000000..dbfe48b61 --- /dev/null +++ b/src/IconCastRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastRound as default } diff --git a/src/IconCastSharp.tsx b/src/IconCastSharp.tsx new file mode 100644 index 000000000..ecf17eb6e --- /dev/null +++ b/src/IconCastSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastSharp as default } diff --git a/src/IconCastTwoTone.tsx b/src/IconCastTwoTone.tsx new file mode 100644 index 000000000..a4fba0a54 --- /dev/null +++ b/src/IconCastTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCastTwoTone as default } diff --git a/src/IconCastleOutlined.tsx b/src/IconCastleOutlined.tsx new file mode 100644 index 000000000..956da9782 --- /dev/null +++ b/src/IconCastleOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconCastleOutlined as default } diff --git a/src/IconCastleRound.tsx b/src/IconCastleRound.tsx new file mode 100644 index 000000000..357f8427c --- /dev/null +++ b/src/IconCastleRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCastleRound as default } diff --git a/src/IconCastleSharp.tsx b/src/IconCastleSharp.tsx new file mode 100644 index 000000000..23755a459 --- /dev/null +++ b/src/IconCastleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCastleSharp as default } diff --git a/src/IconCastleTwoTone.tsx b/src/IconCastleTwoTone.tsx new file mode 100644 index 000000000..5f19137df --- /dev/null +++ b/src/IconCastleTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconCastleTwoTone as default } diff --git a/src/IconCatchingPokemonOutlined.tsx b/src/IconCatchingPokemonOutlined.tsx new file mode 100644 index 000000000..60d047de8 --- /dev/null +++ b/src/IconCatchingPokemonOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCatchingPokemonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCatchingPokemonOutlined as default } diff --git a/src/IconCatchingPokemonRound.tsx b/src/IconCatchingPokemonRound.tsx new file mode 100644 index 000000000..4c0720d42 --- /dev/null +++ b/src/IconCatchingPokemonRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCatchingPokemonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCatchingPokemonRound as default } diff --git a/src/IconCatchingPokemonSharp.tsx b/src/IconCatchingPokemonSharp.tsx new file mode 100644 index 000000000..e09d1c0b5 --- /dev/null +++ b/src/IconCatchingPokemonSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCatchingPokemonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCatchingPokemonSharp as default } diff --git a/src/IconCatchingPokemonTwoTone.tsx b/src/IconCatchingPokemonTwoTone.tsx new file mode 100644 index 000000000..2f9803907 --- /dev/null +++ b/src/IconCatchingPokemonTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCatchingPokemonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCatchingPokemonTwoTone as default } diff --git a/src/IconCategoryOutlined.tsx b/src/IconCategoryOutlined.tsx new file mode 100644 index 000000000..00f9a6f9b --- /dev/null +++ b/src/IconCategoryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCategoryOutlined as default } diff --git a/src/IconCategoryRound.tsx b/src/IconCategoryRound.tsx new file mode 100644 index 000000000..c2f635541 --- /dev/null +++ b/src/IconCategoryRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCategoryRound as default } diff --git a/src/IconCategorySharp.tsx b/src/IconCategorySharp.tsx new file mode 100644 index 000000000..43fa628d4 --- /dev/null +++ b/src/IconCategorySharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCategorySharp as default } diff --git a/src/IconCategoryTwoTone.tsx b/src/IconCategoryTwoTone.tsx new file mode 100644 index 000000000..794f5aac4 --- /dev/null +++ b/src/IconCategoryTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCategoryTwoTone as default } diff --git a/src/IconCelebrationOutlined.tsx b/src/IconCelebrationOutlined.tsx new file mode 100644 index 000000000..a317f9345 --- /dev/null +++ b/src/IconCelebrationOutlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCelebrationOutlined as default } diff --git a/src/IconCelebrationRound.tsx b/src/IconCelebrationRound.tsx new file mode 100644 index 000000000..aa0e91b78 --- /dev/null +++ b/src/IconCelebrationRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCelebrationRound as default } diff --git a/src/IconCelebrationSharp.tsx b/src/IconCelebrationSharp.tsx new file mode 100644 index 000000000..b10a70ade --- /dev/null +++ b/src/IconCelebrationSharp.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconCelebrationSharp as default } diff --git a/src/IconCelebrationTwoTone.tsx b/src/IconCelebrationTwoTone.tsx new file mode 100644 index 000000000..7fb5b26c7 --- /dev/null +++ b/src/IconCelebrationTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCelebrationTwoTone as default } diff --git a/src/IconCellTowerOutlined.tsx b/src/IconCellTowerOutlined.tsx new file mode 100644 index 000000000..95c0883e1 --- /dev/null +++ b/src/IconCellTowerOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCellTowerOutlined as default } diff --git a/src/IconCellTowerRound.tsx b/src/IconCellTowerRound.tsx new file mode 100644 index 000000000..d5b2c5c09 --- /dev/null +++ b/src/IconCellTowerRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconCellTowerRound as default } diff --git a/src/IconCellTowerSharp.tsx b/src/IconCellTowerSharp.tsx new file mode 100644 index 000000000..9406a0401 --- /dev/null +++ b/src/IconCellTowerSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCellTowerSharp as default } diff --git a/src/IconCellTowerTwoTone.tsx b/src/IconCellTowerTwoTone.tsx new file mode 100644 index 000000000..0234790c0 --- /dev/null +++ b/src/IconCellTowerTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCellTowerTwoTone as default } diff --git a/src/IconCellWifiOutlined.tsx b/src/IconCellWifiOutlined.tsx new file mode 100644 index 000000000..11b855ec6 --- /dev/null +++ b/src/IconCellWifiOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCellWifiOutlined as default } diff --git a/src/IconCellWifiRound.tsx b/src/IconCellWifiRound.tsx new file mode 100644 index 000000000..59aed6b0e --- /dev/null +++ b/src/IconCellWifiRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCellWifiRound as default } diff --git a/src/IconCellWifiSharp.tsx b/src/IconCellWifiSharp.tsx new file mode 100644 index 000000000..db4da0500 --- /dev/null +++ b/src/IconCellWifiSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCellWifiSharp as default } diff --git a/src/IconCellWifiTwoTone.tsx b/src/IconCellWifiTwoTone.tsx new file mode 100644 index 000000000..6fc02a989 --- /dev/null +++ b/src/IconCellWifiTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCellWifiTwoTone as default } diff --git a/src/IconCenterFocusStrongOutlined.tsx b/src/IconCenterFocusStrongOutlined.tsx new file mode 100644 index 000000000..012b24ead --- /dev/null +++ b/src/IconCenterFocusStrongOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusStrongOutlined as default } diff --git a/src/IconCenterFocusStrongRound.tsx b/src/IconCenterFocusStrongRound.tsx new file mode 100644 index 000000000..923c153d4 --- /dev/null +++ b/src/IconCenterFocusStrongRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusStrongRound as default } diff --git a/src/IconCenterFocusStrongSharp.tsx b/src/IconCenterFocusStrongSharp.tsx new file mode 100644 index 000000000..ecb75c438 --- /dev/null +++ b/src/IconCenterFocusStrongSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusStrongSharp as default } diff --git a/src/IconCenterFocusStrongTwoTone.tsx b/src/IconCenterFocusStrongTwoTone.tsx new file mode 100644 index 000000000..1095cdcf4 --- /dev/null +++ b/src/IconCenterFocusStrongTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCenterFocusStrongTwoTone as default } diff --git a/src/IconCenterFocusWeakOutlined.tsx b/src/IconCenterFocusWeakOutlined.tsx new file mode 100644 index 000000000..d1beb85ea --- /dev/null +++ b/src/IconCenterFocusWeakOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusWeakOutlined as default } diff --git a/src/IconCenterFocusWeakRound.tsx b/src/IconCenterFocusWeakRound.tsx new file mode 100644 index 000000000..10b80cdde --- /dev/null +++ b/src/IconCenterFocusWeakRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusWeakRound as default } diff --git a/src/IconCenterFocusWeakSharp.tsx b/src/IconCenterFocusWeakSharp.tsx new file mode 100644 index 000000000..f56a8ce1a --- /dev/null +++ b/src/IconCenterFocusWeakSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCenterFocusWeakSharp as default } diff --git a/src/IconCenterFocusWeakTwoTone.tsx b/src/IconCenterFocusWeakTwoTone.tsx new file mode 100644 index 000000000..a98427f93 --- /dev/null +++ b/src/IconCenterFocusWeakTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCenterFocusWeakTwoTone as default } diff --git a/src/IconChairAltOutlined.tsx b/src/IconChairAltOutlined.tsx new file mode 100644 index 000000000..d6b896539 --- /dev/null +++ b/src/IconChairAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconChairAltOutlined as default } diff --git a/src/IconChairAltRound.tsx b/src/IconChairAltRound.tsx new file mode 100644 index 000000000..3a30cdae8 --- /dev/null +++ b/src/IconChairAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconChairAltRound as default } diff --git a/src/IconChairAltSharp.tsx b/src/IconChairAltSharp.tsx new file mode 100644 index 000000000..fe28051e5 --- /dev/null +++ b/src/IconChairAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconChairAltSharp as default } diff --git a/src/IconChairAltTwoTone.tsx b/src/IconChairAltTwoTone.tsx new file mode 100644 index 000000000..69a5cdf06 --- /dev/null +++ b/src/IconChairAltTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconChairAltTwoTone as default } diff --git a/src/IconChairOutlined.tsx b/src/IconChairOutlined.tsx new file mode 100644 index 000000000..5873ad076 --- /dev/null +++ b/src/IconChairOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconChairOutlined as default } diff --git a/src/IconChairRound.tsx b/src/IconChairRound.tsx new file mode 100644 index 000000000..d4c3dda5a --- /dev/null +++ b/src/IconChairRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconChairRound as default } diff --git a/src/IconChairSharp.tsx b/src/IconChairSharp.tsx new file mode 100644 index 000000000..b3d1486c0 --- /dev/null +++ b/src/IconChairSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconChairSharp as default } diff --git a/src/IconChairTwoTone.tsx b/src/IconChairTwoTone.tsx new file mode 100644 index 000000000..610955517 --- /dev/null +++ b/src/IconChairTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconChairTwoTone as default } diff --git a/src/IconChaletOutlined.tsx b/src/IconChaletOutlined.tsx new file mode 100644 index 000000000..893ad8cb6 --- /dev/null +++ b/src/IconChaletOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChaletOutlined as default } diff --git a/src/IconChaletRound.tsx b/src/IconChaletRound.tsx new file mode 100644 index 000000000..e16eaf1fd --- /dev/null +++ b/src/IconChaletRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChaletRound as default } diff --git a/src/IconChaletSharp.tsx b/src/IconChaletSharp.tsx new file mode 100644 index 000000000..67a99094e --- /dev/null +++ b/src/IconChaletSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChaletSharp as default } diff --git a/src/IconChaletTwoTone.tsx b/src/IconChaletTwoTone.tsx new file mode 100644 index 000000000..9b0cbf1ae --- /dev/null +++ b/src/IconChaletTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChaletTwoTone as default } diff --git a/src/IconChangeCircleOutlined.tsx b/src/IconChangeCircleOutlined.tsx new file mode 100644 index 000000000..5d6df1bce --- /dev/null +++ b/src/IconChangeCircleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeCircleOutlined as default } diff --git a/src/IconChangeCircleRound.tsx b/src/IconChangeCircleRound.tsx new file mode 100644 index 000000000..9f76294fd --- /dev/null +++ b/src/IconChangeCircleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeCircleRound as default } diff --git a/src/IconChangeCircleSharp.tsx b/src/IconChangeCircleSharp.tsx new file mode 100644 index 000000000..bb787d16b --- /dev/null +++ b/src/IconChangeCircleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeCircleSharp as default } diff --git a/src/IconChangeCircleTwoTone.tsx b/src/IconChangeCircleTwoTone.tsx new file mode 100644 index 000000000..bed95e364 --- /dev/null +++ b/src/IconChangeCircleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChangeCircleTwoTone as default } diff --git a/src/IconChangeHistoryOutlined.tsx b/src/IconChangeHistoryOutlined.tsx new file mode 100644 index 000000000..4bb745633 --- /dev/null +++ b/src/IconChangeHistoryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeHistoryOutlined as default } diff --git a/src/IconChangeHistoryRound.tsx b/src/IconChangeHistoryRound.tsx new file mode 100644 index 000000000..c3b12840f --- /dev/null +++ b/src/IconChangeHistoryRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeHistoryRound as default } diff --git a/src/IconChangeHistorySharp.tsx b/src/IconChangeHistorySharp.tsx new file mode 100644 index 000000000..2b6e0aca4 --- /dev/null +++ b/src/IconChangeHistorySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChangeHistorySharp as default } diff --git a/src/IconChangeHistoryTwoTone.tsx b/src/IconChangeHistoryTwoTone.tsx new file mode 100644 index 000000000..384ad2c92 --- /dev/null +++ b/src/IconChangeHistoryTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChangeHistoryTwoTone as default } diff --git a/src/IconChargingStationOutlined.tsx b/src/IconChargingStationOutlined.tsx new file mode 100644 index 000000000..8f88d75ae --- /dev/null +++ b/src/IconChargingStationOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChargingStationOutlined as default } diff --git a/src/IconChargingStationRound.tsx b/src/IconChargingStationRound.tsx new file mode 100644 index 000000000..056fb07d9 --- /dev/null +++ b/src/IconChargingStationRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChargingStationRound as default } diff --git a/src/IconChargingStationSharp.tsx b/src/IconChargingStationSharp.tsx new file mode 100644 index 000000000..b0c1b4c60 --- /dev/null +++ b/src/IconChargingStationSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChargingStationSharp as default } diff --git a/src/IconChargingStationTwoTone.tsx b/src/IconChargingStationTwoTone.tsx new file mode 100644 index 000000000..cbe66b504 --- /dev/null +++ b/src/IconChargingStationTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconChargingStationTwoTone as default } diff --git a/src/IconChatBubbleOutlineOutlined.tsx b/src/IconChatBubbleOutlineOutlined.tsx new file mode 100644 index 000000000..f6d8c1a7c --- /dev/null +++ b/src/IconChatBubbleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleOutlineOutlined as default } diff --git a/src/IconChatBubbleOutlineRound.tsx b/src/IconChatBubbleOutlineRound.tsx new file mode 100644 index 000000000..a6d8651a3 --- /dev/null +++ b/src/IconChatBubbleOutlineRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconChatBubbleOutlineRound as default } diff --git a/src/IconChatBubbleOutlineSharp.tsx b/src/IconChatBubbleOutlineSharp.tsx new file mode 100644 index 000000000..b011c2616 --- /dev/null +++ b/src/IconChatBubbleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleOutlineSharp as default } diff --git a/src/IconChatBubbleOutlineTwoTone.tsx b/src/IconChatBubbleOutlineTwoTone.tsx new file mode 100644 index 000000000..2a51b2345 --- /dev/null +++ b/src/IconChatBubbleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleOutlineTwoTone as default } diff --git a/src/IconChatBubbleOutlined.tsx b/src/IconChatBubbleOutlined.tsx new file mode 100644 index 000000000..bb973d7b6 --- /dev/null +++ b/src/IconChatBubbleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleOutlined as default } diff --git a/src/IconChatBubbleRound.tsx b/src/IconChatBubbleRound.tsx new file mode 100644 index 000000000..2837271e5 --- /dev/null +++ b/src/IconChatBubbleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleRound as default } diff --git a/src/IconChatBubbleSharp.tsx b/src/IconChatBubbleSharp.tsx new file mode 100644 index 000000000..5afe5890c --- /dev/null +++ b/src/IconChatBubbleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatBubbleSharp as default } diff --git a/src/IconChatBubbleTwoTone.tsx b/src/IconChatBubbleTwoTone.tsx new file mode 100644 index 000000000..7dbee41cd --- /dev/null +++ b/src/IconChatBubbleTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChatBubbleTwoTone as default } diff --git a/src/IconChatOutlined.tsx b/src/IconChatOutlined.tsx new file mode 100644 index 000000000..91f7d9c97 --- /dev/null +++ b/src/IconChatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatOutlined as default } diff --git a/src/IconChatRound.tsx b/src/IconChatRound.tsx new file mode 100644 index 000000000..94e8050ca --- /dev/null +++ b/src/IconChatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatRound as default } diff --git a/src/IconChatSharp.tsx b/src/IconChatSharp.tsx new file mode 100644 index 000000000..c54fbbfc0 --- /dev/null +++ b/src/IconChatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChatSharp as default } diff --git a/src/IconChatTwoTone.tsx b/src/IconChatTwoTone.tsx new file mode 100644 index 000000000..8529d3a2d --- /dev/null +++ b/src/IconChatTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChatTwoTone as default } diff --git a/src/IconCheckBoxOutlineBlankOutlined.tsx b/src/IconCheckBoxOutlineBlankOutlined.tsx new file mode 100644 index 000000000..a2472283c --- /dev/null +++ b/src/IconCheckBoxOutlineBlankOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxOutlineBlankOutlined as default } diff --git a/src/IconCheckBoxOutlineBlankRound.tsx b/src/IconCheckBoxOutlineBlankRound.tsx new file mode 100644 index 000000000..366198662 --- /dev/null +++ b/src/IconCheckBoxOutlineBlankRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxOutlineBlankRound as default } diff --git a/src/IconCheckBoxOutlineBlankSharp.tsx b/src/IconCheckBoxOutlineBlankSharp.tsx new file mode 100644 index 000000000..8507d2e59 --- /dev/null +++ b/src/IconCheckBoxOutlineBlankSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxOutlineBlankSharp as default } diff --git a/src/IconCheckBoxOutlineBlankTwoTone.tsx b/src/IconCheckBoxOutlineBlankTwoTone.tsx new file mode 100644 index 000000000..89dc10143 --- /dev/null +++ b/src/IconCheckBoxOutlineBlankTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxOutlineBlankTwoTone as default } diff --git a/src/IconCheckBoxOutlined.tsx b/src/IconCheckBoxOutlined.tsx new file mode 100644 index 000000000..a192bc040 --- /dev/null +++ b/src/IconCheckBoxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxOutlined as default } diff --git a/src/IconCheckBoxRound.tsx b/src/IconCheckBoxRound.tsx new file mode 100644 index 000000000..a18b99199 --- /dev/null +++ b/src/IconCheckBoxRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxRound as default } diff --git a/src/IconCheckBoxSharp.tsx b/src/IconCheckBoxSharp.tsx new file mode 100644 index 000000000..dab58d7bb --- /dev/null +++ b/src/IconCheckBoxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckBoxSharp as default } diff --git a/src/IconCheckBoxTwoTone.tsx b/src/IconCheckBoxTwoTone.tsx new file mode 100644 index 000000000..22062c311 --- /dev/null +++ b/src/IconCheckBoxTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCheckBoxTwoTone as default } diff --git a/src/IconCheckCircleOutlineOutlined.tsx b/src/IconCheckCircleOutlineOutlined.tsx new file mode 100644 index 000000000..84a2e3152 --- /dev/null +++ b/src/IconCheckCircleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleOutlineOutlined as default } diff --git a/src/IconCheckCircleOutlineRound.tsx b/src/IconCheckCircleOutlineRound.tsx new file mode 100644 index 000000000..27ef679e4 --- /dev/null +++ b/src/IconCheckCircleOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleOutlineRound as default } diff --git a/src/IconCheckCircleOutlineSharp.tsx b/src/IconCheckCircleOutlineSharp.tsx new file mode 100644 index 000000000..d8cfc3eed --- /dev/null +++ b/src/IconCheckCircleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleOutlineSharp as default } diff --git a/src/IconCheckCircleOutlineTwoTone.tsx b/src/IconCheckCircleOutlineTwoTone.tsx new file mode 100644 index 000000000..13c44ab94 --- /dev/null +++ b/src/IconCheckCircleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleOutlineTwoTone as default } diff --git a/src/IconCheckCircleOutlined.tsx b/src/IconCheckCircleOutlined.tsx new file mode 100644 index 000000000..eeabb561c --- /dev/null +++ b/src/IconCheckCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleOutlined as default } diff --git a/src/IconCheckCircleRound.tsx b/src/IconCheckCircleRound.tsx new file mode 100644 index 000000000..051a84e75 --- /dev/null +++ b/src/IconCheckCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleRound as default } diff --git a/src/IconCheckCircleSharp.tsx b/src/IconCheckCircleSharp.tsx new file mode 100644 index 000000000..86e3f56c2 --- /dev/null +++ b/src/IconCheckCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckCircleSharp as default } diff --git a/src/IconCheckCircleTwoTone.tsx b/src/IconCheckCircleTwoTone.tsx new file mode 100644 index 000000000..8ca230d52 --- /dev/null +++ b/src/IconCheckCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCheckCircleTwoTone as default } diff --git a/src/IconCheckOutlined.tsx b/src/IconCheckOutlined.tsx new file mode 100644 index 000000000..b5cd56fc5 --- /dev/null +++ b/src/IconCheckOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckOutlined as default } diff --git a/src/IconCheckRound.tsx b/src/IconCheckRound.tsx new file mode 100644 index 000000000..028dee5dd --- /dev/null +++ b/src/IconCheckRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckRound as default } diff --git a/src/IconCheckSharp.tsx b/src/IconCheckSharp.tsx new file mode 100644 index 000000000..6879176b9 --- /dev/null +++ b/src/IconCheckSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckSharp as default } diff --git a/src/IconCheckTwoTone.tsx b/src/IconCheckTwoTone.tsx new file mode 100644 index 000000000..bcc661189 --- /dev/null +++ b/src/IconCheckTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCheckTwoTone as default } diff --git a/src/IconChecklistOutlined.tsx b/src/IconChecklistOutlined.tsx new file mode 100644 index 000000000..b859593f8 --- /dev/null +++ b/src/IconChecklistOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistOutlined as default } diff --git a/src/IconChecklistRound.tsx b/src/IconChecklistRound.tsx new file mode 100644 index 000000000..d081b8bb4 --- /dev/null +++ b/src/IconChecklistRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChecklistRound as default } diff --git a/src/IconChecklistRtlOutlined.tsx b/src/IconChecklistRtlOutlined.tsx new file mode 100644 index 000000000..515355fe1 --- /dev/null +++ b/src/IconChecklistRtlOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistRtlOutlined as default } diff --git a/src/IconChecklistRtlRound.tsx b/src/IconChecklistRtlRound.tsx new file mode 100644 index 000000000..1ab9e0934 --- /dev/null +++ b/src/IconChecklistRtlRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistRtlRound as default } diff --git a/src/IconChecklistRtlSharp.tsx b/src/IconChecklistRtlSharp.tsx new file mode 100644 index 000000000..d86d9518b --- /dev/null +++ b/src/IconChecklistRtlSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistRtlSharp as default } diff --git a/src/IconChecklistRtlTwoTone.tsx b/src/IconChecklistRtlTwoTone.tsx new file mode 100644 index 000000000..7a44346e3 --- /dev/null +++ b/src/IconChecklistRtlTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistRtlTwoTone as default } diff --git a/src/IconChecklistSharp.tsx b/src/IconChecklistSharp.tsx new file mode 100644 index 000000000..961e1482d --- /dev/null +++ b/src/IconChecklistSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistSharp as default } diff --git a/src/IconChecklistTwoTone.tsx b/src/IconChecklistTwoTone.tsx new file mode 100644 index 000000000..238573170 --- /dev/null +++ b/src/IconChecklistTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChecklistTwoTone as default } diff --git a/src/IconCheckroomOutlined.tsx b/src/IconCheckroomOutlined.tsx new file mode 100644 index 000000000..6212d5aff --- /dev/null +++ b/src/IconCheckroomOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCheckroomOutlined as default } diff --git a/src/IconCheckroomRound.tsx b/src/IconCheckroomRound.tsx new file mode 100644 index 000000000..8afe39b24 --- /dev/null +++ b/src/IconCheckroomRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCheckroomRound as default } diff --git a/src/IconCheckroomSharp.tsx b/src/IconCheckroomSharp.tsx new file mode 100644 index 000000000..7fb911a7a --- /dev/null +++ b/src/IconCheckroomSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCheckroomSharp as default } diff --git a/src/IconCheckroomTwoTone.tsx b/src/IconCheckroomTwoTone.tsx new file mode 100644 index 000000000..4eb98f018 --- /dev/null +++ b/src/IconCheckroomTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCheckroomTwoTone as default } diff --git a/src/IconChevronLeftOutlined.tsx b/src/IconChevronLeftOutlined.tsx new file mode 100644 index 000000000..721f4e632 --- /dev/null +++ b/src/IconChevronLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronLeftOutlined as default } diff --git a/src/IconChevronLeftRound.tsx b/src/IconChevronLeftRound.tsx new file mode 100644 index 000000000..d62962b4c --- /dev/null +++ b/src/IconChevronLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronLeftRound as default } diff --git a/src/IconChevronLeftSharp.tsx b/src/IconChevronLeftSharp.tsx new file mode 100644 index 000000000..64c340407 --- /dev/null +++ b/src/IconChevronLeftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronLeftSharp as default } diff --git a/src/IconChevronLeftTwoTone.tsx b/src/IconChevronLeftTwoTone.tsx new file mode 100644 index 000000000..362e1d12c --- /dev/null +++ b/src/IconChevronLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronLeftTwoTone as default } diff --git a/src/IconChevronRightOutlined.tsx b/src/IconChevronRightOutlined.tsx new file mode 100644 index 000000000..a95d9a587 --- /dev/null +++ b/src/IconChevronRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronRightOutlined as default } diff --git a/src/IconChevronRightRound.tsx b/src/IconChevronRightRound.tsx new file mode 100644 index 000000000..8627beda6 --- /dev/null +++ b/src/IconChevronRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronRightRound as default } diff --git a/src/IconChevronRightSharp.tsx b/src/IconChevronRightSharp.tsx new file mode 100644 index 000000000..8a4eb6039 --- /dev/null +++ b/src/IconChevronRightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronRightSharp as default } diff --git a/src/IconChevronRightTwoTone.tsx b/src/IconChevronRightTwoTone.tsx new file mode 100644 index 000000000..65fcc1112 --- /dev/null +++ b/src/IconChevronRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChevronRightTwoTone as default } diff --git a/src/IconChildCareOutlined.tsx b/src/IconChildCareOutlined.tsx new file mode 100644 index 000000000..d5e1089d4 --- /dev/null +++ b/src/IconChildCareOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChildCareOutlined as default } diff --git a/src/IconChildCareRound.tsx b/src/IconChildCareRound.tsx new file mode 100644 index 000000000..dde56f3fd --- /dev/null +++ b/src/IconChildCareRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChildCareRound as default } diff --git a/src/IconChildCareSharp.tsx b/src/IconChildCareSharp.tsx new file mode 100644 index 000000000..aba43baa1 --- /dev/null +++ b/src/IconChildCareSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconChildCareSharp as default } diff --git a/src/IconChildCareTwoTone.tsx b/src/IconChildCareTwoTone.tsx new file mode 100644 index 000000000..93ff7776b --- /dev/null +++ b/src/IconChildCareTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconChildCareTwoTone as default } diff --git a/src/IconChildFriendlyOutlined.tsx b/src/IconChildFriendlyOutlined.tsx new file mode 100644 index 000000000..dd47e47d8 --- /dev/null +++ b/src/IconChildFriendlyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChildFriendlyOutlined as default } diff --git a/src/IconChildFriendlyRound.tsx b/src/IconChildFriendlyRound.tsx new file mode 100644 index 000000000..3041c7d81 --- /dev/null +++ b/src/IconChildFriendlyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChildFriendlyRound as default } diff --git a/src/IconChildFriendlySharp.tsx b/src/IconChildFriendlySharp.tsx new file mode 100644 index 000000000..0f76ba163 --- /dev/null +++ b/src/IconChildFriendlySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChildFriendlySharp as default } diff --git a/src/IconChildFriendlyTwoTone.tsx b/src/IconChildFriendlyTwoTone.tsx new file mode 100644 index 000000000..764f36106 --- /dev/null +++ b/src/IconChildFriendlyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChildFriendlyTwoTone as default } diff --git a/src/IconChromeReaderModeOutlined.tsx b/src/IconChromeReaderModeOutlined.tsx new file mode 100644 index 000000000..fed930790 --- /dev/null +++ b/src/IconChromeReaderModeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChromeReaderModeOutlined as default } diff --git a/src/IconChromeReaderModeRound.tsx b/src/IconChromeReaderModeRound.tsx new file mode 100644 index 000000000..230a87fbc --- /dev/null +++ b/src/IconChromeReaderModeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChromeReaderModeRound as default } diff --git a/src/IconChromeReaderModeSharp.tsx b/src/IconChromeReaderModeSharp.tsx new file mode 100644 index 000000000..b36a56ccb --- /dev/null +++ b/src/IconChromeReaderModeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconChromeReaderModeSharp as default } diff --git a/src/IconChromeReaderModeTwoTone.tsx b/src/IconChromeReaderModeTwoTone.tsx new file mode 100644 index 000000000..39f50e08d --- /dev/null +++ b/src/IconChromeReaderModeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconChromeReaderModeTwoTone as default } diff --git a/src/IconChurchOutlined.tsx b/src/IconChurchOutlined.tsx new file mode 100644 index 000000000..324ac0b32 --- /dev/null +++ b/src/IconChurchOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconChurchOutlined as default } diff --git a/src/IconChurchRound.tsx b/src/IconChurchRound.tsx new file mode 100644 index 000000000..a35645288 --- /dev/null +++ b/src/IconChurchRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconChurchRound as default } diff --git a/src/IconChurchSharp.tsx b/src/IconChurchSharp.tsx new file mode 100644 index 000000000..309a5f2e0 --- /dev/null +++ b/src/IconChurchSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconChurchSharp as default } diff --git a/src/IconChurchTwoTone.tsx b/src/IconChurchTwoTone.tsx new file mode 100644 index 000000000..71bf3e5cf --- /dev/null +++ b/src/IconChurchTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconChurchTwoTone as default } diff --git a/src/IconCircleNotificationsOutlined.tsx b/src/IconCircleNotificationsOutlined.tsx new file mode 100644 index 000000000..817460321 --- /dev/null +++ b/src/IconCircleNotificationsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCircleNotificationsOutlined as default } diff --git a/src/IconCircleNotificationsRound.tsx b/src/IconCircleNotificationsRound.tsx new file mode 100644 index 000000000..7c5199e61 --- /dev/null +++ b/src/IconCircleNotificationsRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCircleNotificationsRound as default } diff --git a/src/IconCircleNotificationsSharp.tsx b/src/IconCircleNotificationsSharp.tsx new file mode 100644 index 000000000..0b4bec87d --- /dev/null +++ b/src/IconCircleNotificationsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCircleNotificationsSharp as default } diff --git a/src/IconCircleNotificationsTwoTone.tsx b/src/IconCircleNotificationsTwoTone.tsx new file mode 100644 index 000000000..def80b452 --- /dev/null +++ b/src/IconCircleNotificationsTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCircleNotificationsTwoTone as default } diff --git a/src/IconCircleOutlined.tsx b/src/IconCircleOutlined.tsx new file mode 100644 index 000000000..f0931ca8d --- /dev/null +++ b/src/IconCircleOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCircleOutlined as default } diff --git a/src/IconCircleRound.tsx b/src/IconCircleRound.tsx new file mode 100644 index 000000000..a59ab83a9 --- /dev/null +++ b/src/IconCircleRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCircleRound as default } diff --git a/src/IconCircleSharp.tsx b/src/IconCircleSharp.tsx new file mode 100644 index 000000000..8b2b979e2 --- /dev/null +++ b/src/IconCircleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCircleSharp as default } diff --git a/src/IconCircleTwoTone.tsx b/src/IconCircleTwoTone.tsx new file mode 100644 index 000000000..978f76072 --- /dev/null +++ b/src/IconCircleTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCircleTwoTone as default } diff --git a/src/IconClassOutlined.tsx b/src/IconClassOutlined.tsx new file mode 100644 index 000000000..3eacde6ae --- /dev/null +++ b/src/IconClassOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClassOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClassOutlined as default } diff --git a/src/IconClassRound.tsx b/src/IconClassRound.tsx new file mode 100644 index 000000000..ad8af8030 --- /dev/null +++ b/src/IconClassRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClassRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClassRound as default } diff --git a/src/IconClassSharp.tsx b/src/IconClassSharp.tsx new file mode 100644 index 000000000..779b9a331 --- /dev/null +++ b/src/IconClassSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClassSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClassSharp as default } diff --git a/src/IconClassTwoTone.tsx b/src/IconClassTwoTone.tsx new file mode 100644 index 000000000..2022cd1a3 --- /dev/null +++ b/src/IconClassTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClassTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconClassTwoTone as default } diff --git a/src/IconCleanHandsOutlined.tsx b/src/IconCleanHandsOutlined.tsx new file mode 100644 index 000000000..56484dee0 --- /dev/null +++ b/src/IconCleanHandsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCleanHandsOutlined as default } diff --git a/src/IconCleanHandsRound.tsx b/src/IconCleanHandsRound.tsx new file mode 100644 index 000000000..abb0e785e --- /dev/null +++ b/src/IconCleanHandsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCleanHandsRound as default } diff --git a/src/IconCleanHandsSharp.tsx b/src/IconCleanHandsSharp.tsx new file mode 100644 index 000000000..ba18bdd85 --- /dev/null +++ b/src/IconCleanHandsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCleanHandsSharp as default } diff --git a/src/IconCleanHandsTwoTone.tsx b/src/IconCleanHandsTwoTone.tsx new file mode 100644 index 000000000..afd94bba4 --- /dev/null +++ b/src/IconCleanHandsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCleanHandsTwoTone as default } diff --git a/src/IconCleaningServicesOutlined.tsx b/src/IconCleaningServicesOutlined.tsx new file mode 100644 index 000000000..2163da9d4 --- /dev/null +++ b/src/IconCleaningServicesOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCleaningServicesOutlined as default } diff --git a/src/IconCleaningServicesRound.tsx b/src/IconCleaningServicesRound.tsx new file mode 100644 index 000000000..36fe798e2 --- /dev/null +++ b/src/IconCleaningServicesRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCleaningServicesRound as default } diff --git a/src/IconCleaningServicesSharp.tsx b/src/IconCleaningServicesSharp.tsx new file mode 100644 index 000000000..16164f011 --- /dev/null +++ b/src/IconCleaningServicesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCleaningServicesSharp as default } diff --git a/src/IconCleaningServicesTwoTone.tsx b/src/IconCleaningServicesTwoTone.tsx new file mode 100644 index 000000000..9740f9865 --- /dev/null +++ b/src/IconCleaningServicesTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCleaningServicesTwoTone as default } diff --git a/src/IconClearAllOutlined.tsx b/src/IconClearAllOutlined.tsx new file mode 100644 index 000000000..a4337bdaf --- /dev/null +++ b/src/IconClearAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearAllOutlined as default } diff --git a/src/IconClearAllRound.tsx b/src/IconClearAllRound.tsx new file mode 100644 index 000000000..fbf36fa56 --- /dev/null +++ b/src/IconClearAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearAllRound as default } diff --git a/src/IconClearAllSharp.tsx b/src/IconClearAllSharp.tsx new file mode 100644 index 000000000..a5d439559 --- /dev/null +++ b/src/IconClearAllSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearAllSharp as default } diff --git a/src/IconClearAllTwoTone.tsx b/src/IconClearAllTwoTone.tsx new file mode 100644 index 000000000..d9c7badc0 --- /dev/null +++ b/src/IconClearAllTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearAllTwoTone as default } diff --git a/src/IconClearOutlined.tsx b/src/IconClearOutlined.tsx new file mode 100644 index 000000000..3478d4c14 --- /dev/null +++ b/src/IconClearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearOutlined as default } diff --git a/src/IconClearRound.tsx b/src/IconClearRound.tsx new file mode 100644 index 000000000..0d107c07d --- /dev/null +++ b/src/IconClearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearRound as default } diff --git a/src/IconClearSharp.tsx b/src/IconClearSharp.tsx new file mode 100644 index 000000000..d6fb11f65 --- /dev/null +++ b/src/IconClearSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearSharp as default } diff --git a/src/IconClearTwoTone.tsx b/src/IconClearTwoTone.tsx new file mode 100644 index 000000000..c63494ab2 --- /dev/null +++ b/src/IconClearTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClearTwoTone as default } diff --git a/src/IconCloseFullscreenOutlined.tsx b/src/IconCloseFullscreenOutlined.tsx new file mode 100644 index 000000000..482a61f1f --- /dev/null +++ b/src/IconCloseFullscreenOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseFullscreenOutlined as default } diff --git a/src/IconCloseFullscreenRound.tsx b/src/IconCloseFullscreenRound.tsx new file mode 100644 index 000000000..7d0766a54 --- /dev/null +++ b/src/IconCloseFullscreenRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseFullscreenRound as default } diff --git a/src/IconCloseFullscreenSharp.tsx b/src/IconCloseFullscreenSharp.tsx new file mode 100644 index 000000000..ee29ef5e2 --- /dev/null +++ b/src/IconCloseFullscreenSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseFullscreenSharp as default } diff --git a/src/IconCloseFullscreenTwoTone.tsx b/src/IconCloseFullscreenTwoTone.tsx new file mode 100644 index 000000000..80b32e67e --- /dev/null +++ b/src/IconCloseFullscreenTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseFullscreenTwoTone as default } diff --git a/src/IconCloseOutlined.tsx b/src/IconCloseOutlined.tsx new file mode 100644 index 000000000..ac7521e6b --- /dev/null +++ b/src/IconCloseOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseOutlined as default } diff --git a/src/IconCloseRound.tsx b/src/IconCloseRound.tsx new file mode 100644 index 000000000..d49315e9e --- /dev/null +++ b/src/IconCloseRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseRound as default } diff --git a/src/IconCloseSharp.tsx b/src/IconCloseSharp.tsx new file mode 100644 index 000000000..a483c5b47 --- /dev/null +++ b/src/IconCloseSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseSharp as default } diff --git a/src/IconCloseTwoTone.tsx b/src/IconCloseTwoTone.tsx new file mode 100644 index 000000000..f94acd622 --- /dev/null +++ b/src/IconCloseTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloseTwoTone as default } diff --git a/src/IconClosedCaptionDisabledOutlined.tsx b/src/IconClosedCaptionDisabledOutlined.tsx new file mode 100644 index 000000000..66a3726cc --- /dev/null +++ b/src/IconClosedCaptionDisabledOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconClosedCaptionDisabledOutlined as default } diff --git a/src/IconClosedCaptionDisabledRound.tsx b/src/IconClosedCaptionDisabledRound.tsx new file mode 100644 index 000000000..6c75c897c --- /dev/null +++ b/src/IconClosedCaptionDisabledRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClosedCaptionDisabledRound as default } diff --git a/src/IconClosedCaptionDisabledSharp.tsx b/src/IconClosedCaptionDisabledSharp.tsx new file mode 100644 index 000000000..6d5321137 --- /dev/null +++ b/src/IconClosedCaptionDisabledSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClosedCaptionDisabledSharp as default } diff --git a/src/IconClosedCaptionDisabledTwoTone.tsx b/src/IconClosedCaptionDisabledTwoTone.tsx new file mode 100644 index 000000000..153d57be4 --- /dev/null +++ b/src/IconClosedCaptionDisabledTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconClosedCaptionDisabledTwoTone as default } diff --git a/src/IconClosedCaptionOffOutlined.tsx b/src/IconClosedCaptionOffOutlined.tsx new file mode 100644 index 000000000..33be19928 --- /dev/null +++ b/src/IconClosedCaptionOffOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconClosedCaptionOffOutlined as default } diff --git a/src/IconClosedCaptionOffRound.tsx b/src/IconClosedCaptionOffRound.tsx new file mode 100644 index 000000000..b293bc417 --- /dev/null +++ b/src/IconClosedCaptionOffRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconClosedCaptionOffRound as default } diff --git a/src/IconClosedCaptionOffSharp.tsx b/src/IconClosedCaptionOffSharp.tsx new file mode 100644 index 000000000..78788d930 --- /dev/null +++ b/src/IconClosedCaptionOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconClosedCaptionOffSharp as default } diff --git a/src/IconClosedCaptionOffTwoTone.tsx b/src/IconClosedCaptionOffTwoTone.tsx new file mode 100644 index 000000000..b7946f971 --- /dev/null +++ b/src/IconClosedCaptionOffTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconClosedCaptionOffTwoTone as default } diff --git a/src/IconClosedCaptionOutlined.tsx b/src/IconClosedCaptionOutlined.tsx new file mode 100644 index 000000000..0c8334c2e --- /dev/null +++ b/src/IconClosedCaptionOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClosedCaptionOutlined as default } diff --git a/src/IconClosedCaptionRound.tsx b/src/IconClosedCaptionRound.tsx new file mode 100644 index 000000000..34a2e36a9 --- /dev/null +++ b/src/IconClosedCaptionRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionRound as default } diff --git a/src/IconClosedCaptionSharp.tsx b/src/IconClosedCaptionSharp.tsx new file mode 100644 index 000000000..0a6c10db8 --- /dev/null +++ b/src/IconClosedCaptionSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconClosedCaptionSharp as default } diff --git a/src/IconClosedCaptionTwoTone.tsx b/src/IconClosedCaptionTwoTone.tsx new file mode 100644 index 000000000..fb21b51ca --- /dev/null +++ b/src/IconClosedCaptionTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconClosedCaptionTwoTone as default } diff --git a/src/IconCloudCircleOutlined.tsx b/src/IconCloudCircleOutlined.tsx new file mode 100644 index 000000000..9ba899e1f --- /dev/null +++ b/src/IconCloudCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudCircleOutlined as default } diff --git a/src/IconCloudCircleRound.tsx b/src/IconCloudCircleRound.tsx new file mode 100644 index 000000000..f8baa5668 --- /dev/null +++ b/src/IconCloudCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudCircleRound as default } diff --git a/src/IconCloudCircleSharp.tsx b/src/IconCloudCircleSharp.tsx new file mode 100644 index 000000000..ef3a066b8 --- /dev/null +++ b/src/IconCloudCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudCircleSharp as default } diff --git a/src/IconCloudCircleTwoTone.tsx b/src/IconCloudCircleTwoTone.tsx new file mode 100644 index 000000000..ab5e459b7 --- /dev/null +++ b/src/IconCloudCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudCircleTwoTone as default } diff --git a/src/IconCloudDoneOutlined.tsx b/src/IconCloudDoneOutlined.tsx new file mode 100644 index 000000000..c8a1b7fec --- /dev/null +++ b/src/IconCloudDoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDoneOutlined as default } diff --git a/src/IconCloudDoneRound.tsx b/src/IconCloudDoneRound.tsx new file mode 100644 index 000000000..6352d4d48 --- /dev/null +++ b/src/IconCloudDoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDoneRound as default } diff --git a/src/IconCloudDoneSharp.tsx b/src/IconCloudDoneSharp.tsx new file mode 100644 index 000000000..eea8cd46a --- /dev/null +++ b/src/IconCloudDoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDoneSharp as default } diff --git a/src/IconCloudDoneTwoTone.tsx b/src/IconCloudDoneTwoTone.tsx new file mode 100644 index 000000000..1d623bd31 --- /dev/null +++ b/src/IconCloudDoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudDoneTwoTone as default } diff --git a/src/IconCloudDownloadOutlined.tsx b/src/IconCloudDownloadOutlined.tsx new file mode 100644 index 000000000..1790c868b --- /dev/null +++ b/src/IconCloudDownloadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDownloadOutlined as default } diff --git a/src/IconCloudDownloadRound.tsx b/src/IconCloudDownloadRound.tsx new file mode 100644 index 000000000..7e81cf532 --- /dev/null +++ b/src/IconCloudDownloadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDownloadRound as default } diff --git a/src/IconCloudDownloadSharp.tsx b/src/IconCloudDownloadSharp.tsx new file mode 100644 index 000000000..5629a8f15 --- /dev/null +++ b/src/IconCloudDownloadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudDownloadSharp as default } diff --git a/src/IconCloudDownloadTwoTone.tsx b/src/IconCloudDownloadTwoTone.tsx new file mode 100644 index 000000000..3b88081da --- /dev/null +++ b/src/IconCloudDownloadTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudDownloadTwoTone as default } diff --git a/src/IconCloudOffOutlined.tsx b/src/IconCloudOffOutlined.tsx new file mode 100644 index 000000000..918083d29 --- /dev/null +++ b/src/IconCloudOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudOffOutlined as default } diff --git a/src/IconCloudOffRound.tsx b/src/IconCloudOffRound.tsx new file mode 100644 index 000000000..9a1d8d438 --- /dev/null +++ b/src/IconCloudOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudOffRound as default } diff --git a/src/IconCloudOffSharp.tsx b/src/IconCloudOffSharp.tsx new file mode 100644 index 000000000..b3a530e0e --- /dev/null +++ b/src/IconCloudOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudOffSharp as default } diff --git a/src/IconCloudOffTwoTone.tsx b/src/IconCloudOffTwoTone.tsx new file mode 100644 index 000000000..088324945 --- /dev/null +++ b/src/IconCloudOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudOffTwoTone as default } diff --git a/src/IconCloudOutlined.tsx b/src/IconCloudOutlined.tsx new file mode 100644 index 000000000..f6086455e --- /dev/null +++ b/src/IconCloudOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudOutlined as default } diff --git a/src/IconCloudQueueOutlined.tsx b/src/IconCloudQueueOutlined.tsx new file mode 100644 index 000000000..3e8e2fe77 --- /dev/null +++ b/src/IconCloudQueueOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudQueueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudQueueOutlined as default } diff --git a/src/IconCloudQueueRound.tsx b/src/IconCloudQueueRound.tsx new file mode 100644 index 000000000..825afb2d4 --- /dev/null +++ b/src/IconCloudQueueRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudQueueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudQueueRound as default } diff --git a/src/IconCloudQueueSharp.tsx b/src/IconCloudQueueSharp.tsx new file mode 100644 index 000000000..913616401 --- /dev/null +++ b/src/IconCloudQueueSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudQueueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudQueueSharp as default } diff --git a/src/IconCloudQueueTwoTone.tsx b/src/IconCloudQueueTwoTone.tsx new file mode 100644 index 000000000..4197dabeb --- /dev/null +++ b/src/IconCloudQueueTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudQueueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudQueueTwoTone as default } diff --git a/src/IconCloudRound.tsx b/src/IconCloudRound.tsx new file mode 100644 index 000000000..6286104c0 --- /dev/null +++ b/src/IconCloudRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudRound as default } diff --git a/src/IconCloudSharp.tsx b/src/IconCloudSharp.tsx new file mode 100644 index 000000000..47f603851 --- /dev/null +++ b/src/IconCloudSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudSharp as default } diff --git a/src/IconCloudSyncOutlined.tsx b/src/IconCloudSyncOutlined.tsx new file mode 100644 index 000000000..563a862d0 --- /dev/null +++ b/src/IconCloudSyncOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCloudSyncOutlined as default } diff --git a/src/IconCloudSyncRound.tsx b/src/IconCloudSyncRound.tsx new file mode 100644 index 000000000..28da6300d --- /dev/null +++ b/src/IconCloudSyncRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCloudSyncRound as default } diff --git a/src/IconCloudSyncSharp.tsx b/src/IconCloudSyncSharp.tsx new file mode 100644 index 000000000..db655e4fc --- /dev/null +++ b/src/IconCloudSyncSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCloudSyncSharp as default } diff --git a/src/IconCloudSyncTwoTone.tsx b/src/IconCloudSyncTwoTone.tsx new file mode 100644 index 000000000..28149f05c --- /dev/null +++ b/src/IconCloudSyncTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCloudSyncTwoTone as default } diff --git a/src/IconCloudTwoTone.tsx b/src/IconCloudTwoTone.tsx new file mode 100644 index 000000000..8447205de --- /dev/null +++ b/src/IconCloudTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudTwoTone as default } diff --git a/src/IconCloudUploadOutlined.tsx b/src/IconCloudUploadOutlined.tsx new file mode 100644 index 000000000..6f0e9c603 --- /dev/null +++ b/src/IconCloudUploadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudUploadOutlined as default } diff --git a/src/IconCloudUploadRound.tsx b/src/IconCloudUploadRound.tsx new file mode 100644 index 000000000..cc8df2cae --- /dev/null +++ b/src/IconCloudUploadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudUploadRound as default } diff --git a/src/IconCloudUploadSharp.tsx b/src/IconCloudUploadSharp.tsx new file mode 100644 index 000000000..ec0300259 --- /dev/null +++ b/src/IconCloudUploadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCloudUploadSharp as default } diff --git a/src/IconCloudUploadTwoTone.tsx b/src/IconCloudUploadTwoTone.tsx new file mode 100644 index 000000000..edfcf67c1 --- /dev/null +++ b/src/IconCloudUploadTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCloudUploadTwoTone as default } diff --git a/src/IconCo2Outlined.tsx b/src/IconCo2Outlined.tsx new file mode 100644 index 000000000..49525e48b --- /dev/null +++ b/src/IconCo2Outlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCo2Outlined as default } diff --git a/src/IconCo2Round.tsx b/src/IconCo2Round.tsx new file mode 100644 index 000000000..f28611606 --- /dev/null +++ b/src/IconCo2Round.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCo2Round as default } diff --git a/src/IconCo2Sharp.tsx b/src/IconCo2Sharp.tsx new file mode 100644 index 000000000..a8abc5962 --- /dev/null +++ b/src/IconCo2Sharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCo2Sharp as default } diff --git a/src/IconCo2TwoTone.tsx b/src/IconCo2TwoTone.tsx new file mode 100644 index 000000000..011e454a1 --- /dev/null +++ b/src/IconCo2TwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCo2TwoTone as default } diff --git a/src/IconCoPresentOutlined.tsx b/src/IconCoPresentOutlined.tsx new file mode 100644 index 000000000..1df1d3931 --- /dev/null +++ b/src/IconCoPresentOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconCoPresentOutlined as default } diff --git a/src/IconCoPresentRound.tsx b/src/IconCoPresentRound.tsx new file mode 100644 index 000000000..015de97cc --- /dev/null +++ b/src/IconCoPresentRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconCoPresentRound as default } diff --git a/src/IconCoPresentSharp.tsx b/src/IconCoPresentSharp.tsx new file mode 100644 index 000000000..d136d9928 --- /dev/null +++ b/src/IconCoPresentSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconCoPresentSharp as default } diff --git a/src/IconCoPresentTwoTone.tsx b/src/IconCoPresentTwoTone.tsx new file mode 100644 index 000000000..8cd354465 --- /dev/null +++ b/src/IconCoPresentTwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconCoPresentTwoTone as default } diff --git a/src/IconCodeOffOutlined.tsx b/src/IconCodeOffOutlined.tsx new file mode 100644 index 000000000..dfcc247c8 --- /dev/null +++ b/src/IconCodeOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeOffOutlined as default } diff --git a/src/IconCodeOffRound.tsx b/src/IconCodeOffRound.tsx new file mode 100644 index 000000000..4b26a3ddd --- /dev/null +++ b/src/IconCodeOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeOffRound as default } diff --git a/src/IconCodeOffSharp.tsx b/src/IconCodeOffSharp.tsx new file mode 100644 index 000000000..192b2449e --- /dev/null +++ b/src/IconCodeOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeOffSharp as default } diff --git a/src/IconCodeOffTwoTone.tsx b/src/IconCodeOffTwoTone.tsx new file mode 100644 index 000000000..650740bc8 --- /dev/null +++ b/src/IconCodeOffTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeOffTwoTone as default } diff --git a/src/IconCodeOutlined.tsx b/src/IconCodeOutlined.tsx new file mode 100644 index 000000000..b297f7897 --- /dev/null +++ b/src/IconCodeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeOutlined as default } diff --git a/src/IconCodeRound.tsx b/src/IconCodeRound.tsx new file mode 100644 index 000000000..c7b999a7f --- /dev/null +++ b/src/IconCodeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeRound as default } diff --git a/src/IconCodeSharp.tsx b/src/IconCodeSharp.tsx new file mode 100644 index 000000000..16c70388c --- /dev/null +++ b/src/IconCodeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeSharp as default } diff --git a/src/IconCodeTwoTone.tsx b/src/IconCodeTwoTone.tsx new file mode 100644 index 000000000..494861381 --- /dev/null +++ b/src/IconCodeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCodeTwoTone as default } diff --git a/src/IconCoffeeMakerOutlined.tsx b/src/IconCoffeeMakerOutlined.tsx new file mode 100644 index 000000000..feb86b8e5 --- /dev/null +++ b/src/IconCoffeeMakerOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCoffeeMakerOutlined as default } diff --git a/src/IconCoffeeMakerRound.tsx b/src/IconCoffeeMakerRound.tsx new file mode 100644 index 000000000..aa9af6a3c --- /dev/null +++ b/src/IconCoffeeMakerRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCoffeeMakerRound as default } diff --git a/src/IconCoffeeMakerSharp.tsx b/src/IconCoffeeMakerSharp.tsx new file mode 100644 index 000000000..b8d2053ea --- /dev/null +++ b/src/IconCoffeeMakerSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCoffeeMakerSharp as default } diff --git a/src/IconCoffeeMakerTwoTone.tsx b/src/IconCoffeeMakerTwoTone.tsx new file mode 100644 index 000000000..2f7da32ed --- /dev/null +++ b/src/IconCoffeeMakerTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCoffeeMakerTwoTone as default } diff --git a/src/IconCoffeeOutlined.tsx b/src/IconCoffeeOutlined.tsx new file mode 100644 index 000000000..7715dfca1 --- /dev/null +++ b/src/IconCoffeeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCoffeeOutlined as default } diff --git a/src/IconCoffeeRound.tsx b/src/IconCoffeeRound.tsx new file mode 100644 index 000000000..e5978e5b9 --- /dev/null +++ b/src/IconCoffeeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCoffeeRound as default } diff --git a/src/IconCoffeeSharp.tsx b/src/IconCoffeeSharp.tsx new file mode 100644 index 000000000..d4a5d9018 --- /dev/null +++ b/src/IconCoffeeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCoffeeSharp as default } diff --git a/src/IconCoffeeTwoTone.tsx b/src/IconCoffeeTwoTone.tsx new file mode 100644 index 000000000..3b49caf24 --- /dev/null +++ b/src/IconCoffeeTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCoffeeTwoTone as default } diff --git a/src/IconCollectionsBookmarkOutlined.tsx b/src/IconCollectionsBookmarkOutlined.tsx new file mode 100644 index 000000000..741678f90 --- /dev/null +++ b/src/IconCollectionsBookmarkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsBookmarkOutlined as default } diff --git a/src/IconCollectionsBookmarkRound.tsx b/src/IconCollectionsBookmarkRound.tsx new file mode 100644 index 000000000..8396ded1d --- /dev/null +++ b/src/IconCollectionsBookmarkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsBookmarkRound as default } diff --git a/src/IconCollectionsBookmarkSharp.tsx b/src/IconCollectionsBookmarkSharp.tsx new file mode 100644 index 000000000..2e8039929 --- /dev/null +++ b/src/IconCollectionsBookmarkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsBookmarkSharp as default } diff --git a/src/IconCollectionsBookmarkTwoTone.tsx b/src/IconCollectionsBookmarkTwoTone.tsx new file mode 100644 index 000000000..a54f10bb1 --- /dev/null +++ b/src/IconCollectionsBookmarkTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCollectionsBookmarkTwoTone as default } diff --git a/src/IconCollectionsOutlined.tsx b/src/IconCollectionsOutlined.tsx new file mode 100644 index 000000000..90e3f325c --- /dev/null +++ b/src/IconCollectionsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsOutlined as default } diff --git a/src/IconCollectionsRound.tsx b/src/IconCollectionsRound.tsx new file mode 100644 index 000000000..48a825bca --- /dev/null +++ b/src/IconCollectionsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsRound as default } diff --git a/src/IconCollectionsSharp.tsx b/src/IconCollectionsSharp.tsx new file mode 100644 index 000000000..7e9804bff --- /dev/null +++ b/src/IconCollectionsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCollectionsSharp as default } diff --git a/src/IconCollectionsTwoTone.tsx b/src/IconCollectionsTwoTone.tsx new file mode 100644 index 000000000..6b28e5049 --- /dev/null +++ b/src/IconCollectionsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCollectionsTwoTone as default } diff --git a/src/IconColorLensOutlined.tsx b/src/IconColorLensOutlined.tsx new file mode 100644 index 000000000..3dc5e4ccc --- /dev/null +++ b/src/IconColorLensOutlined.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorLensOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconColorLensOutlined as default } diff --git a/src/IconColorLensRound.tsx b/src/IconColorLensRound.tsx new file mode 100644 index 000000000..2cb7b9074 --- /dev/null +++ b/src/IconColorLensRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorLensRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconColorLensRound as default } diff --git a/src/IconColorLensSharp.tsx b/src/IconColorLensSharp.tsx new file mode 100644 index 000000000..285231f60 --- /dev/null +++ b/src/IconColorLensSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorLensSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconColorLensSharp as default } diff --git a/src/IconColorLensTwoTone.tsx b/src/IconColorLensTwoTone.tsx new file mode 100644 index 000000000..b2e208112 --- /dev/null +++ b/src/IconColorLensTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorLensTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconColorLensTwoTone as default } diff --git a/src/IconColorizeOutlined.tsx b/src/IconColorizeOutlined.tsx new file mode 100644 index 000000000..d6f21df3e --- /dev/null +++ b/src/IconColorizeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconColorizeOutlined as default } diff --git a/src/IconColorizeRound.tsx b/src/IconColorizeRound.tsx new file mode 100644 index 000000000..be9c2243f --- /dev/null +++ b/src/IconColorizeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconColorizeRound as default } diff --git a/src/IconColorizeSharp.tsx b/src/IconColorizeSharp.tsx new file mode 100644 index 000000000..9362a6df6 --- /dev/null +++ b/src/IconColorizeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconColorizeSharp as default } diff --git a/src/IconColorizeTwoTone.tsx b/src/IconColorizeTwoTone.tsx new file mode 100644 index 000000000..211c8877f --- /dev/null +++ b/src/IconColorizeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconColorizeTwoTone as default } diff --git a/src/IconCommentBankOutlined.tsx b/src/IconCommentBankOutlined.tsx new file mode 100644 index 000000000..06918645c --- /dev/null +++ b/src/IconCommentBankOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCommentBankOutlined as default } diff --git a/src/IconCommentBankRound.tsx b/src/IconCommentBankRound.tsx new file mode 100644 index 000000000..2c51189a9 --- /dev/null +++ b/src/IconCommentBankRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCommentBankRound as default } diff --git a/src/IconCommentBankSharp.tsx b/src/IconCommentBankSharp.tsx new file mode 100644 index 000000000..4ce0b4f71 --- /dev/null +++ b/src/IconCommentBankSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommentBankSharp as default } diff --git a/src/IconCommentBankTwoTone.tsx b/src/IconCommentBankTwoTone.tsx new file mode 100644 index 000000000..becc0e71a --- /dev/null +++ b/src/IconCommentBankTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCommentBankTwoTone as default } diff --git a/src/IconCommentOutlined.tsx b/src/IconCommentOutlined.tsx new file mode 100644 index 000000000..106c3d35f --- /dev/null +++ b/src/IconCommentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentOutlined as default } diff --git a/src/IconCommentRound.tsx b/src/IconCommentRound.tsx new file mode 100644 index 000000000..5618d71fa --- /dev/null +++ b/src/IconCommentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentRound as default } diff --git a/src/IconCommentSharp.tsx b/src/IconCommentSharp.tsx new file mode 100644 index 000000000..f28490b1a --- /dev/null +++ b/src/IconCommentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentSharp as default } diff --git a/src/IconCommentTwoTone.tsx b/src/IconCommentTwoTone.tsx new file mode 100644 index 000000000..b02e04644 --- /dev/null +++ b/src/IconCommentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCommentTwoTone as default } diff --git a/src/IconCommentsDisabledOutlined.tsx b/src/IconCommentsDisabledOutlined.tsx new file mode 100644 index 000000000..b7d9394c5 --- /dev/null +++ b/src/IconCommentsDisabledOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentsDisabledOutlined as default } diff --git a/src/IconCommentsDisabledRound.tsx b/src/IconCommentsDisabledRound.tsx new file mode 100644 index 000000000..c44e58f83 --- /dev/null +++ b/src/IconCommentsDisabledRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentsDisabledRound as default } diff --git a/src/IconCommentsDisabledSharp.tsx b/src/IconCommentsDisabledSharp.tsx new file mode 100644 index 000000000..c07e2ccf9 --- /dev/null +++ b/src/IconCommentsDisabledSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommentsDisabledSharp as default } diff --git a/src/IconCommentsDisabledTwoTone.tsx b/src/IconCommentsDisabledTwoTone.tsx new file mode 100644 index 000000000..f78ff79b6 --- /dev/null +++ b/src/IconCommentsDisabledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCommentsDisabledTwoTone as default } diff --git a/src/IconCommitOutlined.tsx b/src/IconCommitOutlined.tsx new file mode 100644 index 000000000..21170784b --- /dev/null +++ b/src/IconCommitOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommitOutlined as default } diff --git a/src/IconCommitRound.tsx b/src/IconCommitRound.tsx new file mode 100644 index 000000000..6bd2235d5 --- /dev/null +++ b/src/IconCommitRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommitRound as default } diff --git a/src/IconCommitSharp.tsx b/src/IconCommitSharp.tsx new file mode 100644 index 000000000..22d66df4e --- /dev/null +++ b/src/IconCommitSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommitSharp as default } diff --git a/src/IconCommitTwoTone.tsx b/src/IconCommitTwoTone.tsx new file mode 100644 index 000000000..4ae8ecc86 --- /dev/null +++ b/src/IconCommitTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCommitTwoTone as default } diff --git a/src/IconCommuteOutlined.tsx b/src/IconCommuteOutlined.tsx new file mode 100644 index 000000000..4dce6c5f2 --- /dev/null +++ b/src/IconCommuteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommuteOutlined as default } diff --git a/src/IconCommuteRound.tsx b/src/IconCommuteRound.tsx new file mode 100644 index 000000000..daafc6295 --- /dev/null +++ b/src/IconCommuteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommuteRound as default } diff --git a/src/IconCommuteSharp.tsx b/src/IconCommuteSharp.tsx new file mode 100644 index 000000000..5da40b040 --- /dev/null +++ b/src/IconCommuteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommuteSharp as default } diff --git a/src/IconCommuteTwoTone.tsx b/src/IconCommuteTwoTone.tsx new file mode 100644 index 000000000..32bf673f4 --- /dev/null +++ b/src/IconCommuteTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCommuteTwoTone as default } diff --git a/src/IconCompareArrowsOutlined.tsx b/src/IconCompareArrowsOutlined.tsx new file mode 100644 index 000000000..033aafb68 --- /dev/null +++ b/src/IconCompareArrowsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareArrowsOutlined as default } diff --git a/src/IconCompareArrowsRound.tsx b/src/IconCompareArrowsRound.tsx new file mode 100644 index 000000000..2c1ba1a52 --- /dev/null +++ b/src/IconCompareArrowsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareArrowsRound as default } diff --git a/src/IconCompareArrowsSharp.tsx b/src/IconCompareArrowsSharp.tsx new file mode 100644 index 000000000..79452377c --- /dev/null +++ b/src/IconCompareArrowsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareArrowsSharp as default } diff --git a/src/IconCompareArrowsTwoTone.tsx b/src/IconCompareArrowsTwoTone.tsx new file mode 100644 index 000000000..1be50bda9 --- /dev/null +++ b/src/IconCompareArrowsTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareArrowsTwoTone as default } diff --git a/src/IconCompareOutlined.tsx b/src/IconCompareOutlined.tsx new file mode 100644 index 000000000..12da86045 --- /dev/null +++ b/src/IconCompareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareOutlined as default } diff --git a/src/IconCompareRound.tsx b/src/IconCompareRound.tsx new file mode 100644 index 000000000..b371b7ddb --- /dev/null +++ b/src/IconCompareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareRound as default } diff --git a/src/IconCompareSharp.tsx b/src/IconCompareSharp.tsx new file mode 100644 index 000000000..2668c5621 --- /dev/null +++ b/src/IconCompareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompareSharp as default } diff --git a/src/IconCompareTwoTone.tsx b/src/IconCompareTwoTone.tsx new file mode 100644 index 000000000..66b3afa77 --- /dev/null +++ b/src/IconCompareTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCompareTwoTone as default } diff --git a/src/IconCompassCalibrationOutlined.tsx b/src/IconCompassCalibrationOutlined.tsx new file mode 100644 index 000000000..e65fdcc0a --- /dev/null +++ b/src/IconCompassCalibrationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompassCalibrationOutlined as default } diff --git a/src/IconCompassCalibrationRound.tsx b/src/IconCompassCalibrationRound.tsx new file mode 100644 index 000000000..fbf4d4683 --- /dev/null +++ b/src/IconCompassCalibrationRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCompassCalibrationRound as default } diff --git a/src/IconCompassCalibrationSharp.tsx b/src/IconCompassCalibrationSharp.tsx new file mode 100644 index 000000000..dfdc20ea9 --- /dev/null +++ b/src/IconCompassCalibrationSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCompassCalibrationSharp as default } diff --git a/src/IconCompassCalibrationTwoTone.tsx b/src/IconCompassCalibrationTwoTone.tsx new file mode 100644 index 000000000..bc031de9f --- /dev/null +++ b/src/IconCompassCalibrationTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconCompassCalibrationTwoTone as default } diff --git a/src/IconCompostOutlined.tsx b/src/IconCompostOutlined.tsx new file mode 100644 index 000000000..f9e6c3a42 --- /dev/null +++ b/src/IconCompostOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompostOutlined as default } diff --git a/src/IconCompostRound.tsx b/src/IconCompostRound.tsx new file mode 100644 index 000000000..efac46605 --- /dev/null +++ b/src/IconCompostRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompostRound as default } diff --git a/src/IconCompostSharp.tsx b/src/IconCompostSharp.tsx new file mode 100644 index 000000000..bd86e30a0 --- /dev/null +++ b/src/IconCompostSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompostSharp as default } diff --git a/src/IconCompostTwoTone.tsx b/src/IconCompostTwoTone.tsx new file mode 100644 index 000000000..234b1e5b5 --- /dev/null +++ b/src/IconCompostTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCompostTwoTone as default } diff --git a/src/IconCompressOutlined.tsx b/src/IconCompressOutlined.tsx new file mode 100644 index 000000000..531300e8f --- /dev/null +++ b/src/IconCompressOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCompressOutlined as default } diff --git a/src/IconCompressRound.tsx b/src/IconCompressRound.tsx new file mode 100644 index 000000000..7fd20f261 --- /dev/null +++ b/src/IconCompressRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCompressRound as default } diff --git a/src/IconCompressSharp.tsx b/src/IconCompressSharp.tsx new file mode 100644 index 000000000..ada1f77ac --- /dev/null +++ b/src/IconCompressSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCompressSharp as default } diff --git a/src/IconCompressTwoTone.tsx b/src/IconCompressTwoTone.tsx new file mode 100644 index 000000000..952d9d79f --- /dev/null +++ b/src/IconCompressTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCompressTwoTone as default } diff --git a/src/IconComputerOutlined.tsx b/src/IconComputerOutlined.tsx new file mode 100644 index 000000000..d88165d3d --- /dev/null +++ b/src/IconComputerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconComputerOutlined as default } diff --git a/src/IconComputerRound.tsx b/src/IconComputerRound.tsx new file mode 100644 index 000000000..4dae3238c --- /dev/null +++ b/src/IconComputerRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComputerRound as default } diff --git a/src/IconComputerSharp.tsx b/src/IconComputerSharp.tsx new file mode 100644 index 000000000..05d698568 --- /dev/null +++ b/src/IconComputerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconComputerSharp as default } diff --git a/src/IconComputerTwoTone.tsx b/src/IconComputerTwoTone.tsx new file mode 100644 index 000000000..b69deb463 --- /dev/null +++ b/src/IconComputerTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconComputerTwoTone as default } diff --git a/src/IconConfirmationNumberOutlined.tsx b/src/IconConfirmationNumberOutlined.tsx new file mode 100644 index 000000000..3cf1b59bb --- /dev/null +++ b/src/IconConfirmationNumberOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConfirmationNumberOutlined as default } diff --git a/src/IconConfirmationNumberRound.tsx b/src/IconConfirmationNumberRound.tsx new file mode 100644 index 000000000..d3ac57bf0 --- /dev/null +++ b/src/IconConfirmationNumberRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConfirmationNumberRound as default } diff --git a/src/IconConfirmationNumberSharp.tsx b/src/IconConfirmationNumberSharp.tsx new file mode 100644 index 000000000..1e391e7b0 --- /dev/null +++ b/src/IconConfirmationNumberSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConfirmationNumberSharp as default } diff --git a/src/IconConfirmationNumberTwoTone.tsx b/src/IconConfirmationNumberTwoTone.tsx new file mode 100644 index 000000000..cb1aef204 --- /dev/null +++ b/src/IconConfirmationNumberTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconConfirmationNumberTwoTone as default } diff --git a/src/IconConnectWithoutContactOutlined.tsx b/src/IconConnectWithoutContactOutlined.tsx new file mode 100644 index 000000000..d11200709 --- /dev/null +++ b/src/IconConnectWithoutContactOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectWithoutContactOutlined as default } diff --git a/src/IconConnectWithoutContactRound.tsx b/src/IconConnectWithoutContactRound.tsx new file mode 100644 index 000000000..58186376c --- /dev/null +++ b/src/IconConnectWithoutContactRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectWithoutContactRound as default } diff --git a/src/IconConnectWithoutContactSharp.tsx b/src/IconConnectWithoutContactSharp.tsx new file mode 100644 index 000000000..2ba51283e --- /dev/null +++ b/src/IconConnectWithoutContactSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectWithoutContactSharp as default } diff --git a/src/IconConnectWithoutContactTwoTone.tsx b/src/IconConnectWithoutContactTwoTone.tsx new file mode 100644 index 000000000..a34209792 --- /dev/null +++ b/src/IconConnectWithoutContactTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectWithoutContactTwoTone as default } diff --git a/src/IconConnectedTvOutlined.tsx b/src/IconConnectedTvOutlined.tsx new file mode 100644 index 000000000..e46b5e6c1 --- /dev/null +++ b/src/IconConnectedTvOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconConnectedTvOutlined as default } diff --git a/src/IconConnectedTvRound.tsx b/src/IconConnectedTvRound.tsx new file mode 100644 index 000000000..25a41874f --- /dev/null +++ b/src/IconConnectedTvRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconConnectedTvRound as default } diff --git a/src/IconConnectedTvSharp.tsx b/src/IconConnectedTvSharp.tsx new file mode 100644 index 000000000..6b3e5d06e --- /dev/null +++ b/src/IconConnectedTvSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconConnectedTvSharp as default } diff --git a/src/IconConnectedTvTwoTone.tsx b/src/IconConnectedTvTwoTone.tsx new file mode 100644 index 000000000..b26b38c60 --- /dev/null +++ b/src/IconConnectedTvTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconConnectedTvTwoTone as default } diff --git a/src/IconConnectingAirportsOutlined.tsx b/src/IconConnectingAirportsOutlined.tsx new file mode 100644 index 000000000..7dba445c7 --- /dev/null +++ b/src/IconConnectingAirportsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectingAirportsOutlined as default } diff --git a/src/IconConnectingAirportsRound.tsx b/src/IconConnectingAirportsRound.tsx new file mode 100644 index 000000000..5e14ffa8c --- /dev/null +++ b/src/IconConnectingAirportsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectingAirportsRound as default } diff --git a/src/IconConnectingAirportsSharp.tsx b/src/IconConnectingAirportsSharp.tsx new file mode 100644 index 000000000..87d30d10b --- /dev/null +++ b/src/IconConnectingAirportsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectingAirportsSharp as default } diff --git a/src/IconConnectingAirportsTwoTone.tsx b/src/IconConnectingAirportsTwoTone.tsx new file mode 100644 index 000000000..62f9b522f --- /dev/null +++ b/src/IconConnectingAirportsTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconConnectingAirportsTwoTone as default } diff --git a/src/IconConstructionOutlined.tsx b/src/IconConstructionOutlined.tsx new file mode 100644 index 000000000..87cc3bdfc --- /dev/null +++ b/src/IconConstructionOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconConstructionOutlined as default } diff --git a/src/IconConstructionRound.tsx b/src/IconConstructionRound.tsx new file mode 100644 index 000000000..3abf37263 --- /dev/null +++ b/src/IconConstructionRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconConstructionRound as default } diff --git a/src/IconConstructionSharp.tsx b/src/IconConstructionSharp.tsx new file mode 100644 index 000000000..66dd20753 --- /dev/null +++ b/src/IconConstructionSharp.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconConstructionSharp as default } diff --git a/src/IconConstructionTwoTone.tsx b/src/IconConstructionTwoTone.tsx new file mode 100644 index 000000000..1122d8f6d --- /dev/null +++ b/src/IconConstructionTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconConstructionTwoTone as default } diff --git a/src/IconContactEmergencyOutlined.tsx b/src/IconContactEmergencyOutlined.tsx new file mode 100644 index 000000000..bac95ea3b --- /dev/null +++ b/src/IconContactEmergencyOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconContactEmergencyOutlined as default } diff --git a/src/IconContactEmergencyRound.tsx b/src/IconContactEmergencyRound.tsx new file mode 100644 index 000000000..970f2e236 --- /dev/null +++ b/src/IconContactEmergencyRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconContactEmergencyRound as default } diff --git a/src/IconContactEmergencySharp.tsx b/src/IconContactEmergencySharp.tsx new file mode 100644 index 000000000..9778f70f3 --- /dev/null +++ b/src/IconContactEmergencySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContactEmergencySharp as default } diff --git a/src/IconContactEmergencyTwoTone.tsx b/src/IconContactEmergencyTwoTone.tsx new file mode 100644 index 000000000..595492f80 --- /dev/null +++ b/src/IconContactEmergencyTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconContactEmergencyTwoTone as default } diff --git a/src/IconContactMailOutlined.tsx b/src/IconContactMailOutlined.tsx new file mode 100644 index 000000000..b9ab0b60c --- /dev/null +++ b/src/IconContactMailOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactMailOutlined as default } diff --git a/src/IconContactMailRound.tsx b/src/IconContactMailRound.tsx new file mode 100644 index 000000000..ecaa41866 --- /dev/null +++ b/src/IconContactMailRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactMailRound as default } diff --git a/src/IconContactMailSharp.tsx b/src/IconContactMailSharp.tsx new file mode 100644 index 000000000..62808a740 --- /dev/null +++ b/src/IconContactMailSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactMailSharp as default } diff --git a/src/IconContactMailTwoTone.tsx b/src/IconContactMailTwoTone.tsx new file mode 100644 index 000000000..682a9fcc9 --- /dev/null +++ b/src/IconContactMailTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContactMailTwoTone as default } diff --git a/src/IconContactPageOutlined.tsx b/src/IconContactPageOutlined.tsx new file mode 100644 index 000000000..f21837f12 --- /dev/null +++ b/src/IconContactPageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPageOutlined as default } diff --git a/src/IconContactPageRound.tsx b/src/IconContactPageRound.tsx new file mode 100644 index 000000000..98d4bdfb4 --- /dev/null +++ b/src/IconContactPageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPageRound as default } diff --git a/src/IconContactPageSharp.tsx b/src/IconContactPageSharp.tsx new file mode 100644 index 000000000..cd6471c53 --- /dev/null +++ b/src/IconContactPageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPageSharp as default } diff --git a/src/IconContactPageTwoTone.tsx b/src/IconContactPageTwoTone.tsx new file mode 100644 index 000000000..ed18b3315 --- /dev/null +++ b/src/IconContactPageTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContactPageTwoTone as default } diff --git a/src/IconContactPhoneOutlined.tsx b/src/IconContactPhoneOutlined.tsx new file mode 100644 index 000000000..0daea8e5e --- /dev/null +++ b/src/IconContactPhoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPhoneOutlined as default } diff --git a/src/IconContactPhoneRound.tsx b/src/IconContactPhoneRound.tsx new file mode 100644 index 000000000..4eacf343e --- /dev/null +++ b/src/IconContactPhoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPhoneRound as default } diff --git a/src/IconContactPhoneSharp.tsx b/src/IconContactPhoneSharp.tsx new file mode 100644 index 000000000..2c97d262c --- /dev/null +++ b/src/IconContactPhoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactPhoneSharp as default } diff --git a/src/IconContactPhoneTwoTone.tsx b/src/IconContactPhoneTwoTone.tsx new file mode 100644 index 000000000..cdefbdfc4 --- /dev/null +++ b/src/IconContactPhoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContactPhoneTwoTone as default } diff --git a/src/IconContactSupportOutlined.tsx b/src/IconContactSupportOutlined.tsx new file mode 100644 index 000000000..dd5a94413 --- /dev/null +++ b/src/IconContactSupportOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactSupportOutlined as default } diff --git a/src/IconContactSupportRound.tsx b/src/IconContactSupportRound.tsx new file mode 100644 index 000000000..b26b8cd53 --- /dev/null +++ b/src/IconContactSupportRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactSupportRound as default } diff --git a/src/IconContactSupportSharp.tsx b/src/IconContactSupportSharp.tsx new file mode 100644 index 000000000..7c8076ee4 --- /dev/null +++ b/src/IconContactSupportSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactSupportSharp as default } diff --git a/src/IconContactSupportTwoTone.tsx b/src/IconContactSupportTwoTone.tsx new file mode 100644 index 000000000..118cf7836 --- /dev/null +++ b/src/IconContactSupportTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContactSupportTwoTone as default } diff --git a/src/IconContactlessOutlined.tsx b/src/IconContactlessOutlined.tsx new file mode 100644 index 000000000..376666ecf --- /dev/null +++ b/src/IconContactlessOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconContactlessOutlined as default } diff --git a/src/IconContactlessRound.tsx b/src/IconContactlessRound.tsx new file mode 100644 index 000000000..009293566 --- /dev/null +++ b/src/IconContactlessRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconContactlessRound as default } diff --git a/src/IconContactlessSharp.tsx b/src/IconContactlessSharp.tsx new file mode 100644 index 000000000..295357faa --- /dev/null +++ b/src/IconContactlessSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContactlessSharp as default } diff --git a/src/IconContactlessTwoTone.tsx b/src/IconContactlessTwoTone.tsx new file mode 100644 index 000000000..daddd08a6 --- /dev/null +++ b/src/IconContactlessTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconContactlessTwoTone as default } diff --git a/src/IconContactsOutlined.tsx b/src/IconContactsOutlined.tsx new file mode 100644 index 000000000..9365f3ccb --- /dev/null +++ b/src/IconContactsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactsOutlined as default } diff --git a/src/IconContactsRound.tsx b/src/IconContactsRound.tsx new file mode 100644 index 000000000..d2fcde962 --- /dev/null +++ b/src/IconContactsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactsRound as default } diff --git a/src/IconContactsSharp.tsx b/src/IconContactsSharp.tsx new file mode 100644 index 000000000..eb55a71b6 --- /dev/null +++ b/src/IconContactsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContactsSharp as default } diff --git a/src/IconContactsTwoTone.tsx b/src/IconContactsTwoTone.tsx new file mode 100644 index 000000000..93e748b6b --- /dev/null +++ b/src/IconContactsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContactsTwoTone as default } diff --git a/src/IconContentCopyOutlined.tsx b/src/IconContentCopyOutlined.tsx new file mode 100644 index 000000000..e5f1374df --- /dev/null +++ b/src/IconContentCopyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCopyOutlined as default } diff --git a/src/IconContentCopyRound.tsx b/src/IconContentCopyRound.tsx new file mode 100644 index 000000000..d06da6e45 --- /dev/null +++ b/src/IconContentCopyRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContentCopyRound as default } diff --git a/src/IconContentCopySharp.tsx b/src/IconContentCopySharp.tsx new file mode 100644 index 000000000..ee7f2d2db --- /dev/null +++ b/src/IconContentCopySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCopySharp as default } diff --git a/src/IconContentCopyTwoTone.tsx b/src/IconContentCopyTwoTone.tsx new file mode 100644 index 000000000..ac49e5430 --- /dev/null +++ b/src/IconContentCopyTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContentCopyTwoTone as default } diff --git a/src/IconContentCutOutlined.tsx b/src/IconContentCutOutlined.tsx new file mode 100644 index 000000000..4cf7f8c98 --- /dev/null +++ b/src/IconContentCutOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCutOutlined as default } diff --git a/src/IconContentCutRound.tsx b/src/IconContentCutRound.tsx new file mode 100644 index 000000000..29013c331 --- /dev/null +++ b/src/IconContentCutRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCutRound as default } diff --git a/src/IconContentCutSharp.tsx b/src/IconContentCutSharp.tsx new file mode 100644 index 000000000..800779f90 --- /dev/null +++ b/src/IconContentCutSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCutSharp as default } diff --git a/src/IconContentCutTwoTone.tsx b/src/IconContentCutTwoTone.tsx new file mode 100644 index 000000000..ad20a3001 --- /dev/null +++ b/src/IconContentCutTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentCutTwoTone as default } diff --git a/src/IconContentPasteGoOutlined.tsx b/src/IconContentPasteGoOutlined.tsx new file mode 100644 index 000000000..e08c51bdf --- /dev/null +++ b/src/IconContentPasteGoOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteGoOutlined as default } diff --git a/src/IconContentPasteGoRound.tsx b/src/IconContentPasteGoRound.tsx new file mode 100644 index 000000000..e738c211f --- /dev/null +++ b/src/IconContentPasteGoRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconContentPasteGoRound as default } diff --git a/src/IconContentPasteGoSharp.tsx b/src/IconContentPasteGoSharp.tsx new file mode 100644 index 000000000..128a6bfa2 --- /dev/null +++ b/src/IconContentPasteGoSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteGoSharp as default } diff --git a/src/IconContentPasteGoTwoTone.tsx b/src/IconContentPasteGoTwoTone.tsx new file mode 100644 index 000000000..c63f72943 --- /dev/null +++ b/src/IconContentPasteGoTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconContentPasteGoTwoTone as default } diff --git a/src/IconContentPasteOffOutlined.tsx b/src/IconContentPasteOffOutlined.tsx new file mode 100644 index 000000000..27603f0d7 --- /dev/null +++ b/src/IconContentPasteOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteOffOutlined as default } diff --git a/src/IconContentPasteOffRound.tsx b/src/IconContentPasteOffRound.tsx new file mode 100644 index 000000000..caf6d2c94 --- /dev/null +++ b/src/IconContentPasteOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteOffRound as default } diff --git a/src/IconContentPasteOffSharp.tsx b/src/IconContentPasteOffSharp.tsx new file mode 100644 index 000000000..e2846381c --- /dev/null +++ b/src/IconContentPasteOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteOffSharp as default } diff --git a/src/IconContentPasteOffTwoTone.tsx b/src/IconContentPasteOffTwoTone.tsx new file mode 100644 index 000000000..4d35b2468 --- /dev/null +++ b/src/IconContentPasteOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContentPasteOffTwoTone as default } diff --git a/src/IconContentPasteOutlined.tsx b/src/IconContentPasteOutlined.tsx new file mode 100644 index 000000000..310dbbac4 --- /dev/null +++ b/src/IconContentPasteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteOutlined as default } diff --git a/src/IconContentPasteRound.tsx b/src/IconContentPasteRound.tsx new file mode 100644 index 000000000..6de5eebc2 --- /dev/null +++ b/src/IconContentPasteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteRound as default } diff --git a/src/IconContentPasteSearchOutlined.tsx b/src/IconContentPasteSearchOutlined.tsx new file mode 100644 index 000000000..7f404cae2 --- /dev/null +++ b/src/IconContentPasteSearchOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteSearchOutlined as default } diff --git a/src/IconContentPasteSearchRound.tsx b/src/IconContentPasteSearchRound.tsx new file mode 100644 index 000000000..edb046915 --- /dev/null +++ b/src/IconContentPasteSearchRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconContentPasteSearchRound as default } diff --git a/src/IconContentPasteSearchSharp.tsx b/src/IconContentPasteSearchSharp.tsx new file mode 100644 index 000000000..23d7d7431 --- /dev/null +++ b/src/IconContentPasteSearchSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconContentPasteSearchSharp as default } diff --git a/src/IconContentPasteSearchTwoTone.tsx b/src/IconContentPasteSearchTwoTone.tsx new file mode 100644 index 000000000..c66f0199d --- /dev/null +++ b/src/IconContentPasteSearchTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconContentPasteSearchTwoTone as default } diff --git a/src/IconContentPasteSharp.tsx b/src/IconContentPasteSharp.tsx new file mode 100644 index 000000000..1a804cd4f --- /dev/null +++ b/src/IconContentPasteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconContentPasteSharp as default } diff --git a/src/IconContentPasteTwoTone.tsx b/src/IconContentPasteTwoTone.tsx new file mode 100644 index 000000000..f98fbc02e --- /dev/null +++ b/src/IconContentPasteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconContentPasteTwoTone as default } diff --git a/src/IconContrastOutlined.tsx b/src/IconContrastOutlined.tsx new file mode 100644 index 000000000..a9e01a968 --- /dev/null +++ b/src/IconContrastOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContrastOutlined as default } diff --git a/src/IconContrastRound.tsx b/src/IconContrastRound.tsx new file mode 100644 index 000000000..8597f0b40 --- /dev/null +++ b/src/IconContrastRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContrastRound as default } diff --git a/src/IconContrastSharp.tsx b/src/IconContrastSharp.tsx new file mode 100644 index 000000000..8b115b6e5 --- /dev/null +++ b/src/IconContrastSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconContrastSharp as default } diff --git a/src/IconContrastTwoTone.tsx b/src/IconContrastTwoTone.tsx new file mode 100644 index 000000000..fd66013a5 --- /dev/null +++ b/src/IconContrastTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconContrastTwoTone as default } diff --git a/src/IconControlCameraOutlined.tsx b/src/IconControlCameraOutlined.tsx new file mode 100644 index 000000000..bf4a9f5a9 --- /dev/null +++ b/src/IconControlCameraOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconControlCameraOutlined as default } diff --git a/src/IconControlCameraRound.tsx b/src/IconControlCameraRound.tsx new file mode 100644 index 000000000..da94e5704 --- /dev/null +++ b/src/IconControlCameraRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlCameraRound as default } diff --git a/src/IconControlCameraSharp.tsx b/src/IconControlCameraSharp.tsx new file mode 100644 index 000000000..45a96ee12 --- /dev/null +++ b/src/IconControlCameraSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconControlCameraSharp as default } diff --git a/src/IconControlCameraTwoTone.tsx b/src/IconControlCameraTwoTone.tsx new file mode 100644 index 000000000..3a940e0cf --- /dev/null +++ b/src/IconControlCameraTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconControlCameraTwoTone as default } diff --git a/src/IconControlPointDuplicateOutlined.tsx b/src/IconControlPointDuplicateOutlined.tsx new file mode 100644 index 000000000..9f0d9d0e0 --- /dev/null +++ b/src/IconControlPointDuplicateOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointDuplicateOutlined as default } diff --git a/src/IconControlPointDuplicateRound.tsx b/src/IconControlPointDuplicateRound.tsx new file mode 100644 index 000000000..2c26279f2 --- /dev/null +++ b/src/IconControlPointDuplicateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointDuplicateRound as default } diff --git a/src/IconControlPointDuplicateSharp.tsx b/src/IconControlPointDuplicateSharp.tsx new file mode 100644 index 000000000..6901adbdf --- /dev/null +++ b/src/IconControlPointDuplicateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointDuplicateSharp as default } diff --git a/src/IconControlPointDuplicateTwoTone.tsx b/src/IconControlPointDuplicateTwoTone.tsx new file mode 100644 index 000000000..65c9c2b36 --- /dev/null +++ b/src/IconControlPointDuplicateTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconControlPointDuplicateTwoTone as default } diff --git a/src/IconControlPointOutlined.tsx b/src/IconControlPointOutlined.tsx new file mode 100644 index 000000000..47e5ecbb7 --- /dev/null +++ b/src/IconControlPointOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointOutlined as default } diff --git a/src/IconControlPointRound.tsx b/src/IconControlPointRound.tsx new file mode 100644 index 000000000..c53ef8683 --- /dev/null +++ b/src/IconControlPointRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointRound as default } diff --git a/src/IconControlPointSharp.tsx b/src/IconControlPointSharp.tsx new file mode 100644 index 000000000..db86e019d --- /dev/null +++ b/src/IconControlPointSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconControlPointSharp as default } diff --git a/src/IconControlPointTwoTone.tsx b/src/IconControlPointTwoTone.tsx new file mode 100644 index 000000000..b3bde5dae --- /dev/null +++ b/src/IconControlPointTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconControlPointTwoTone as default } diff --git a/src/IconCookieOutlined.tsx b/src/IconCookieOutlined.tsx new file mode 100644 index 000000000..592c20e05 --- /dev/null +++ b/src/IconCookieOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCookieOutlined as default } diff --git a/src/IconCookieRound.tsx b/src/IconCookieRound.tsx new file mode 100644 index 000000000..2da3168ce --- /dev/null +++ b/src/IconCookieRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCookieRound as default } diff --git a/src/IconCookieSharp.tsx b/src/IconCookieSharp.tsx new file mode 100644 index 000000000..b4a411ef6 --- /dev/null +++ b/src/IconCookieSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCookieSharp as default } diff --git a/src/IconCookieTwoTone.tsx b/src/IconCookieTwoTone.tsx new file mode 100644 index 000000000..acbc18844 --- /dev/null +++ b/src/IconCookieTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCookieTwoTone as default } diff --git a/src/IconCopyAllOutlined.tsx b/src/IconCopyAllOutlined.tsx new file mode 100644 index 000000000..210e1dda8 --- /dev/null +++ b/src/IconCopyAllOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyAllOutlined as default } diff --git a/src/IconCopyAllRound.tsx b/src/IconCopyAllRound.tsx new file mode 100644 index 000000000..e3f2bc03f --- /dev/null +++ b/src/IconCopyAllRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyAllRound as default } diff --git a/src/IconCopyAllSharp.tsx b/src/IconCopyAllSharp.tsx new file mode 100644 index 000000000..cdee027e2 --- /dev/null +++ b/src/IconCopyAllSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyAllSharp as default } diff --git a/src/IconCopyAllTwoTone.tsx b/src/IconCopyAllTwoTone.tsx new file mode 100644 index 000000000..fd7682b00 --- /dev/null +++ b/src/IconCopyAllTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCopyAllTwoTone as default } diff --git a/src/IconCopyrightOutlined.tsx b/src/IconCopyrightOutlined.tsx new file mode 100644 index 000000000..fe5229b7c --- /dev/null +++ b/src/IconCopyrightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyrightOutlined as default } diff --git a/src/IconCopyrightRound.tsx b/src/IconCopyrightRound.tsx new file mode 100644 index 000000000..bc173fc23 --- /dev/null +++ b/src/IconCopyrightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyrightRound as default } diff --git a/src/IconCopyrightSharp.tsx b/src/IconCopyrightSharp.tsx new file mode 100644 index 000000000..280bc81b6 --- /dev/null +++ b/src/IconCopyrightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCopyrightSharp as default } diff --git a/src/IconCopyrightTwoTone.tsx b/src/IconCopyrightTwoTone.tsx new file mode 100644 index 000000000..4c0100c93 --- /dev/null +++ b/src/IconCopyrightTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCopyrightTwoTone as default } diff --git a/src/IconCoronavirusOutlined.tsx b/src/IconCoronavirusOutlined.tsx new file mode 100644 index 000000000..431fe77f5 --- /dev/null +++ b/src/IconCoronavirusOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCoronavirusOutlined as default } diff --git a/src/IconCoronavirusRound.tsx b/src/IconCoronavirusRound.tsx new file mode 100644 index 000000000..c0fb4cb2b --- /dev/null +++ b/src/IconCoronavirusRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCoronavirusRound as default } diff --git a/src/IconCoronavirusSharp.tsx b/src/IconCoronavirusSharp.tsx new file mode 100644 index 000000000..2e57350cd --- /dev/null +++ b/src/IconCoronavirusSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCoronavirusSharp as default } diff --git a/src/IconCoronavirusTwoTone.tsx b/src/IconCoronavirusTwoTone.tsx new file mode 100644 index 000000000..8e657263f --- /dev/null +++ b/src/IconCoronavirusTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCoronavirusTwoTone as default } diff --git a/src/IconCorporateFareOutlined.tsx b/src/IconCorporateFareOutlined.tsx new file mode 100644 index 000000000..93dc224cd --- /dev/null +++ b/src/IconCorporateFareOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCorporateFareOutlined as default } diff --git a/src/IconCorporateFareRound.tsx b/src/IconCorporateFareRound.tsx new file mode 100644 index 000000000..d6c014858 --- /dev/null +++ b/src/IconCorporateFareRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCorporateFareRound as default } diff --git a/src/IconCorporateFareSharp.tsx b/src/IconCorporateFareSharp.tsx new file mode 100644 index 000000000..c92a79154 --- /dev/null +++ b/src/IconCorporateFareSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCorporateFareSharp as default } diff --git a/src/IconCorporateFareTwoTone.tsx b/src/IconCorporateFareTwoTone.tsx new file mode 100644 index 000000000..d7124d932 --- /dev/null +++ b/src/IconCorporateFareTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCorporateFareTwoTone as default } diff --git a/src/IconCottageOutlined.tsx b/src/IconCottageOutlined.tsx new file mode 100644 index 000000000..61cb59f7f --- /dev/null +++ b/src/IconCottageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCottageOutlined as default } diff --git a/src/IconCottageRound.tsx b/src/IconCottageRound.tsx new file mode 100644 index 000000000..bdbdca3f7 --- /dev/null +++ b/src/IconCottageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCottageRound as default } diff --git a/src/IconCottageSharp.tsx b/src/IconCottageSharp.tsx new file mode 100644 index 000000000..c74733e5e --- /dev/null +++ b/src/IconCottageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCottageSharp as default } diff --git a/src/IconCottageTwoTone.tsx b/src/IconCottageTwoTone.tsx new file mode 100644 index 000000000..bdce6150b --- /dev/null +++ b/src/IconCottageTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCottageTwoTone as default } diff --git a/src/IconCountertopsOutlined.tsx b/src/IconCountertopsOutlined.tsx new file mode 100644 index 000000000..c8d3a5988 --- /dev/null +++ b/src/IconCountertopsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCountertopsOutlined as default } diff --git a/src/IconCountertopsRound.tsx b/src/IconCountertopsRound.tsx new file mode 100644 index 000000000..365a763dc --- /dev/null +++ b/src/IconCountertopsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCountertopsRound as default } diff --git a/src/IconCountertopsSharp.tsx b/src/IconCountertopsSharp.tsx new file mode 100644 index 000000000..08e2f6c0c --- /dev/null +++ b/src/IconCountertopsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCountertopsSharp as default } diff --git a/src/IconCountertopsTwoTone.tsx b/src/IconCountertopsTwoTone.tsx new file mode 100644 index 000000000..d087e4cd0 --- /dev/null +++ b/src/IconCountertopsTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCountertopsTwoTone as default } diff --git a/src/IconCreateNewFolderOutlined.tsx b/src/IconCreateNewFolderOutlined.tsx new file mode 100644 index 000000000..642b1741f --- /dev/null +++ b/src/IconCreateNewFolderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateNewFolderOutlined as default } diff --git a/src/IconCreateNewFolderRound.tsx b/src/IconCreateNewFolderRound.tsx new file mode 100644 index 000000000..93fe6fe8f --- /dev/null +++ b/src/IconCreateNewFolderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateNewFolderRound as default } diff --git a/src/IconCreateNewFolderSharp.tsx b/src/IconCreateNewFolderSharp.tsx new file mode 100644 index 000000000..b4ab71938 --- /dev/null +++ b/src/IconCreateNewFolderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateNewFolderSharp as default } diff --git a/src/IconCreateNewFolderTwoTone.tsx b/src/IconCreateNewFolderTwoTone.tsx new file mode 100644 index 000000000..6dc512d59 --- /dev/null +++ b/src/IconCreateNewFolderTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCreateNewFolderTwoTone as default } diff --git a/src/IconCreateOutlined.tsx b/src/IconCreateOutlined.tsx new file mode 100644 index 000000000..24964edba --- /dev/null +++ b/src/IconCreateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateOutlined as default } diff --git a/src/IconCreateRound.tsx b/src/IconCreateRound.tsx new file mode 100644 index 000000000..60ca3d9ae --- /dev/null +++ b/src/IconCreateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateRound as default } diff --git a/src/IconCreateSharp.tsx b/src/IconCreateSharp.tsx new file mode 100644 index 000000000..294ccbf01 --- /dev/null +++ b/src/IconCreateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreateSharp as default } diff --git a/src/IconCreateTwoTone.tsx b/src/IconCreateTwoTone.tsx new file mode 100644 index 000000000..8eb8c4ea4 --- /dev/null +++ b/src/IconCreateTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCreateTwoTone as default } diff --git a/src/IconCreditCardOffOutlined.tsx b/src/IconCreditCardOffOutlined.tsx new file mode 100644 index 000000000..c3f047cf0 --- /dev/null +++ b/src/IconCreditCardOffOutlined.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardOffOutlined as default } diff --git a/src/IconCreditCardOffRound.tsx b/src/IconCreditCardOffRound.tsx new file mode 100644 index 000000000..120780613 --- /dev/null +++ b/src/IconCreditCardOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardOffRound as default } diff --git a/src/IconCreditCardOffSharp.tsx b/src/IconCreditCardOffSharp.tsx new file mode 100644 index 000000000..2d2a14eed --- /dev/null +++ b/src/IconCreditCardOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardOffSharp as default } diff --git a/src/IconCreditCardOffTwoTone.tsx b/src/IconCreditCardOffTwoTone.tsx new file mode 100644 index 000000000..e4ee9b628 --- /dev/null +++ b/src/IconCreditCardOffTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCreditCardOffTwoTone as default } diff --git a/src/IconCreditCardOutlined.tsx b/src/IconCreditCardOutlined.tsx new file mode 100644 index 000000000..93a5a1226 --- /dev/null +++ b/src/IconCreditCardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardOutlined as default } diff --git a/src/IconCreditCardRound.tsx b/src/IconCreditCardRound.tsx new file mode 100644 index 000000000..38c8ac03f --- /dev/null +++ b/src/IconCreditCardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardRound as default } diff --git a/src/IconCreditCardSharp.tsx b/src/IconCreditCardSharp.tsx new file mode 100644 index 000000000..25cd34780 --- /dev/null +++ b/src/IconCreditCardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCreditCardSharp as default } diff --git a/src/IconCreditCardTwoTone.tsx b/src/IconCreditCardTwoTone.tsx new file mode 100644 index 000000000..343b4e309 --- /dev/null +++ b/src/IconCreditCardTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCreditCardTwoTone as default } diff --git a/src/IconCreditScoreOutlined.tsx b/src/IconCreditScoreOutlined.tsx new file mode 100644 index 000000000..342e9b363 --- /dev/null +++ b/src/IconCreditScoreOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCreditScoreOutlined as default } diff --git a/src/IconCreditScoreRound.tsx b/src/IconCreditScoreRound.tsx new file mode 100644 index 000000000..42e946695 --- /dev/null +++ b/src/IconCreditScoreRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCreditScoreRound as default } diff --git a/src/IconCreditScoreSharp.tsx b/src/IconCreditScoreSharp.tsx new file mode 100644 index 000000000..0de3be09c --- /dev/null +++ b/src/IconCreditScoreSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCreditScoreSharp as default } diff --git a/src/IconCreditScoreTwoTone.tsx b/src/IconCreditScoreTwoTone.tsx new file mode 100644 index 000000000..eeef4c6ae --- /dev/null +++ b/src/IconCreditScoreTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCreditScoreTwoTone as default } diff --git a/src/IconCribOutlined.tsx b/src/IconCribOutlined.tsx new file mode 100644 index 000000000..ec0272927 --- /dev/null +++ b/src/IconCribOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCribOutlined as default } diff --git a/src/IconCribRound.tsx b/src/IconCribRound.tsx new file mode 100644 index 000000000..d05b86efa --- /dev/null +++ b/src/IconCribRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCribRound as default } diff --git a/src/IconCribSharp.tsx b/src/IconCribSharp.tsx new file mode 100644 index 000000000..7ad8470f1 --- /dev/null +++ b/src/IconCribSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCribSharp as default } diff --git a/src/IconCribTwoTone.tsx b/src/IconCribTwoTone.tsx new file mode 100644 index 000000000..064b3af12 --- /dev/null +++ b/src/IconCribTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCribTwoTone as default } diff --git a/src/IconCrisisAlertOutlined.tsx b/src/IconCrisisAlertOutlined.tsx new file mode 100644 index 000000000..24f98215a --- /dev/null +++ b/src/IconCrisisAlertOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCrisisAlertOutlined as default } diff --git a/src/IconCrisisAlertRound.tsx b/src/IconCrisisAlertRound.tsx new file mode 100644 index 000000000..0e792c2ee --- /dev/null +++ b/src/IconCrisisAlertRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCrisisAlertRound as default } diff --git a/src/IconCrisisAlertSharp.tsx b/src/IconCrisisAlertSharp.tsx new file mode 100644 index 000000000..845185081 --- /dev/null +++ b/src/IconCrisisAlertSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCrisisAlertSharp as default } diff --git a/src/IconCrisisAlertTwoTone.tsx b/src/IconCrisisAlertTwoTone.tsx new file mode 100644 index 000000000..4825dc90c --- /dev/null +++ b/src/IconCrisisAlertTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCrisisAlertTwoTone as default } diff --git a/src/IconCrop169.tsx b/src/IconCrop169.tsx index 83962dbc4..3bbce7dee 100644 --- a/src/IconCrop169.tsx +++ b/src/IconCrop169.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconCrop169: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconCrop169Outlined.tsx b/src/IconCrop169Outlined.tsx new file mode 100644 index 000000000..3ae969cd8 --- /dev/null +++ b/src/IconCrop169Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop169Outlined as default } diff --git a/src/IconCrop169Round.tsx b/src/IconCrop169Round.tsx new file mode 100644 index 000000000..0c6bb2a33 --- /dev/null +++ b/src/IconCrop169Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop169Round as default } diff --git a/src/IconCrop169Sharp.tsx b/src/IconCrop169Sharp.tsx new file mode 100644 index 000000000..c3cf73b14 --- /dev/null +++ b/src/IconCrop169Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop169Sharp as default } diff --git a/src/IconCrop169TwoTone.tsx b/src/IconCrop169TwoTone.tsx new file mode 100644 index 000000000..1061b43a3 --- /dev/null +++ b/src/IconCrop169TwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop169TwoTone as default } diff --git a/src/IconCrop32.tsx b/src/IconCrop32.tsx index 74576522c..847e8a412 100644 --- a/src/IconCrop32.tsx +++ b/src/IconCrop32.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconCrop32: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconCrop32Outlined.tsx b/src/IconCrop32Outlined.tsx new file mode 100644 index 000000000..d04278ab4 --- /dev/null +++ b/src/IconCrop32Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop32Outlined as default } diff --git a/src/IconCrop32Round.tsx b/src/IconCrop32Round.tsx new file mode 100644 index 000000000..a0d182b27 --- /dev/null +++ b/src/IconCrop32Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop32Round as default } diff --git a/src/IconCrop32Sharp.tsx b/src/IconCrop32Sharp.tsx new file mode 100644 index 000000000..15192e80c --- /dev/null +++ b/src/IconCrop32Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop32Sharp as default } diff --git a/src/IconCrop32TwoTone.tsx b/src/IconCrop32TwoTone.tsx new file mode 100644 index 000000000..93a879ca7 --- /dev/null +++ b/src/IconCrop32TwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop32TwoTone as default } diff --git a/src/IconCrop54.tsx b/src/IconCrop54.tsx index a8110f3c1..c9aa7223d 100644 --- a/src/IconCrop54.tsx +++ b/src/IconCrop54.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconCrop54: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconCrop54Outlined.tsx b/src/IconCrop54Outlined.tsx new file mode 100644 index 000000000..cac7e64f9 --- /dev/null +++ b/src/IconCrop54Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop54Outlined as default } diff --git a/src/IconCrop54Round.tsx b/src/IconCrop54Round.tsx new file mode 100644 index 000000000..17e86aa6e --- /dev/null +++ b/src/IconCrop54Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop54Round as default } diff --git a/src/IconCrop54Sharp.tsx b/src/IconCrop54Sharp.tsx new file mode 100644 index 000000000..b931ed3dc --- /dev/null +++ b/src/IconCrop54Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop54Sharp as default } diff --git a/src/IconCrop54TwoTone.tsx b/src/IconCrop54TwoTone.tsx new file mode 100644 index 000000000..5346a1d87 --- /dev/null +++ b/src/IconCrop54TwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop54TwoTone as default } diff --git a/src/IconCrop75.tsx b/src/IconCrop75.tsx index 51adfec8e..553fa3195 100644 --- a/src/IconCrop75.tsx +++ b/src/IconCrop75.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconCrop75: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconCrop75Outlined.tsx b/src/IconCrop75Outlined.tsx new file mode 100644 index 000000000..86da689a6 --- /dev/null +++ b/src/IconCrop75Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop75Outlined as default } diff --git a/src/IconCrop75Round.tsx b/src/IconCrop75Round.tsx new file mode 100644 index 000000000..569ad6b35 --- /dev/null +++ b/src/IconCrop75Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop75Round as default } diff --git a/src/IconCrop75Sharp.tsx b/src/IconCrop75Sharp.tsx new file mode 100644 index 000000000..468bfffc5 --- /dev/null +++ b/src/IconCrop75Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop75Sharp as default } diff --git a/src/IconCrop75TwoTone.tsx b/src/IconCrop75TwoTone.tsx new file mode 100644 index 000000000..13ab36eb4 --- /dev/null +++ b/src/IconCrop75TwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCrop75TwoTone as default } diff --git a/src/IconCropDinOutlined.tsx b/src/IconCropDinOutlined.tsx new file mode 100644 index 000000000..a3ebca2e0 --- /dev/null +++ b/src/IconCropDinOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropDinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropDinOutlined as default } diff --git a/src/IconCropDinRound.tsx b/src/IconCropDinRound.tsx new file mode 100644 index 000000000..8b41183da --- /dev/null +++ b/src/IconCropDinRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropDinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropDinRound as default } diff --git a/src/IconCropDinSharp.tsx b/src/IconCropDinSharp.tsx new file mode 100644 index 000000000..2200044c0 --- /dev/null +++ b/src/IconCropDinSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropDinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropDinSharp as default } diff --git a/src/IconCropDinTwoTone.tsx b/src/IconCropDinTwoTone.tsx new file mode 100644 index 000000000..9f3c8a2e6 --- /dev/null +++ b/src/IconCropDinTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropDinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropDinTwoTone as default } diff --git a/src/IconCropFreeOutlined.tsx b/src/IconCropFreeOutlined.tsx new file mode 100644 index 000000000..e64da03d9 --- /dev/null +++ b/src/IconCropFreeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropFreeOutlined as default } diff --git a/src/IconCropFreeRound.tsx b/src/IconCropFreeRound.tsx new file mode 100644 index 000000000..ad10d1f3c --- /dev/null +++ b/src/IconCropFreeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropFreeRound as default } diff --git a/src/IconCropFreeSharp.tsx b/src/IconCropFreeSharp.tsx new file mode 100644 index 000000000..dbcf4bfbf --- /dev/null +++ b/src/IconCropFreeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropFreeSharp as default } diff --git a/src/IconCropFreeTwoTone.tsx b/src/IconCropFreeTwoTone.tsx new file mode 100644 index 000000000..4402100fb --- /dev/null +++ b/src/IconCropFreeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropFreeTwoTone as default } diff --git a/src/IconCropLandscapeOutlined.tsx b/src/IconCropLandscapeOutlined.tsx new file mode 100644 index 000000000..c19e03f6d --- /dev/null +++ b/src/IconCropLandscapeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropLandscapeOutlined as default } diff --git a/src/IconCropLandscapeRound.tsx b/src/IconCropLandscapeRound.tsx new file mode 100644 index 000000000..b0a40647d --- /dev/null +++ b/src/IconCropLandscapeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropLandscapeRound as default } diff --git a/src/IconCropLandscapeSharp.tsx b/src/IconCropLandscapeSharp.tsx new file mode 100644 index 000000000..48fb64120 --- /dev/null +++ b/src/IconCropLandscapeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropLandscapeSharp as default } diff --git a/src/IconCropLandscapeTwoTone.tsx b/src/IconCropLandscapeTwoTone.tsx new file mode 100644 index 000000000..a7374769d --- /dev/null +++ b/src/IconCropLandscapeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropLandscapeTwoTone as default } diff --git a/src/IconCropOriginalOutlined.tsx b/src/IconCropOriginalOutlined.tsx new file mode 100644 index 000000000..c3fe07b15 --- /dev/null +++ b/src/IconCropOriginalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOriginalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropOriginalOutlined as default } diff --git a/src/IconCropOriginalRound.tsx b/src/IconCropOriginalRound.tsx new file mode 100644 index 000000000..a661b856a --- /dev/null +++ b/src/IconCropOriginalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOriginalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropOriginalRound as default } diff --git a/src/IconCropOriginalSharp.tsx b/src/IconCropOriginalSharp.tsx new file mode 100644 index 000000000..83150660b --- /dev/null +++ b/src/IconCropOriginalSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOriginalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropOriginalSharp as default } diff --git a/src/IconCropOriginalTwoTone.tsx b/src/IconCropOriginalTwoTone.tsx new file mode 100644 index 000000000..54301d723 --- /dev/null +++ b/src/IconCropOriginalTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOriginalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropOriginalTwoTone as default } diff --git a/src/IconCropOutlined.tsx b/src/IconCropOutlined.tsx new file mode 100644 index 000000000..231194f02 --- /dev/null +++ b/src/IconCropOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropOutlined as default } diff --git a/src/IconCropPortraitOutlined.tsx b/src/IconCropPortraitOutlined.tsx new file mode 100644 index 000000000..8a940ade6 --- /dev/null +++ b/src/IconCropPortraitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropPortraitOutlined as default } diff --git a/src/IconCropPortraitRound.tsx b/src/IconCropPortraitRound.tsx new file mode 100644 index 000000000..2915dbb9f --- /dev/null +++ b/src/IconCropPortraitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropPortraitRound as default } diff --git a/src/IconCropPortraitSharp.tsx b/src/IconCropPortraitSharp.tsx new file mode 100644 index 000000000..fbe889f0c --- /dev/null +++ b/src/IconCropPortraitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropPortraitSharp as default } diff --git a/src/IconCropPortraitTwoTone.tsx b/src/IconCropPortraitTwoTone.tsx new file mode 100644 index 000000000..cee3c8e7a --- /dev/null +++ b/src/IconCropPortraitTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropPortraitTwoTone as default } diff --git a/src/IconCropRotateOutlined.tsx b/src/IconCropRotateOutlined.tsx new file mode 100644 index 000000000..2cf673c6c --- /dev/null +++ b/src/IconCropRotateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropRotateOutlined as default } diff --git a/src/IconCropRotateRound.tsx b/src/IconCropRotateRound.tsx new file mode 100644 index 000000000..6d5196e26 --- /dev/null +++ b/src/IconCropRotateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropRotateRound as default } diff --git a/src/IconCropRotateSharp.tsx b/src/IconCropRotateSharp.tsx new file mode 100644 index 000000000..a2cd07935 --- /dev/null +++ b/src/IconCropRotateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropRotateSharp as default } diff --git a/src/IconCropRotateTwoTone.tsx b/src/IconCropRotateTwoTone.tsx new file mode 100644 index 000000000..f44717b62 --- /dev/null +++ b/src/IconCropRotateTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropRotateTwoTone as default } diff --git a/src/IconCropRound.tsx b/src/IconCropRound.tsx new file mode 100644 index 000000000..addc00724 --- /dev/null +++ b/src/IconCropRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropRound as default } diff --git a/src/IconCropSharp.tsx b/src/IconCropSharp.tsx new file mode 100644 index 000000000..6e4e17126 --- /dev/null +++ b/src/IconCropSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropSharp as default } diff --git a/src/IconCropSquareOutlined.tsx b/src/IconCropSquareOutlined.tsx new file mode 100644 index 000000000..7e6657d0f --- /dev/null +++ b/src/IconCropSquareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropSquareOutlined as default } diff --git a/src/IconCropSquareRound.tsx b/src/IconCropSquareRound.tsx new file mode 100644 index 000000000..d30e83ed1 --- /dev/null +++ b/src/IconCropSquareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropSquareRound as default } diff --git a/src/IconCropSquareSharp.tsx b/src/IconCropSquareSharp.tsx new file mode 100644 index 000000000..6e354dd6a --- /dev/null +++ b/src/IconCropSquareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropSquareSharp as default } diff --git a/src/IconCropSquareTwoTone.tsx b/src/IconCropSquareTwoTone.tsx new file mode 100644 index 000000000..992d8aa0c --- /dev/null +++ b/src/IconCropSquareTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropSquareTwoTone as default } diff --git a/src/IconCropTwoTone.tsx b/src/IconCropTwoTone.tsx new file mode 100644 index 000000000..865b5472a --- /dev/null +++ b/src/IconCropTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCropTwoTone as default } diff --git a/src/IconCrueltyFreeOutlined.tsx b/src/IconCrueltyFreeOutlined.tsx new file mode 100644 index 000000000..62d6cc022 --- /dev/null +++ b/src/IconCrueltyFreeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCrueltyFreeOutlined as default } diff --git a/src/IconCrueltyFreeRound.tsx b/src/IconCrueltyFreeRound.tsx new file mode 100644 index 000000000..1ec91a591 --- /dev/null +++ b/src/IconCrueltyFreeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCrueltyFreeRound as default } diff --git a/src/IconCrueltyFreeSharp.tsx b/src/IconCrueltyFreeSharp.tsx new file mode 100644 index 000000000..ac9ee8ea1 --- /dev/null +++ b/src/IconCrueltyFreeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconCrueltyFreeSharp as default } diff --git a/src/IconCrueltyFreeTwoTone.tsx b/src/IconCrueltyFreeTwoTone.tsx new file mode 100644 index 000000000..44f46e810 --- /dev/null +++ b/src/IconCrueltyFreeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconCrueltyFreeTwoTone as default } diff --git a/src/IconCssOutlined.tsx b/src/IconCssOutlined.tsx new file mode 100644 index 000000000..efef1df1e --- /dev/null +++ b/src/IconCssOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCssOutlined as default } diff --git a/src/IconCssRound.tsx b/src/IconCssRound.tsx new file mode 100644 index 000000000..7bc18c464 --- /dev/null +++ b/src/IconCssRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCssRound as default } diff --git a/src/IconCssSharp.tsx b/src/IconCssSharp.tsx new file mode 100644 index 000000000..8da386e04 --- /dev/null +++ b/src/IconCssSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCssSharp as default } diff --git a/src/IconCssTwoTone.tsx b/src/IconCssTwoTone.tsx new file mode 100644 index 000000000..8213564f3 --- /dev/null +++ b/src/IconCssTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCssTwoTone as default } diff --git a/src/IconCurrencyBitcoinOutlined.tsx b/src/IconCurrencyBitcoinOutlined.tsx new file mode 100644 index 000000000..999da29c8 --- /dev/null +++ b/src/IconCurrencyBitcoinOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyBitcoinOutlined as default } diff --git a/src/IconCurrencyBitcoinRound.tsx b/src/IconCurrencyBitcoinRound.tsx new file mode 100644 index 000000000..91384e39e --- /dev/null +++ b/src/IconCurrencyBitcoinRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCurrencyBitcoinRound as default } diff --git a/src/IconCurrencyBitcoinSharp.tsx b/src/IconCurrencyBitcoinSharp.tsx new file mode 100644 index 000000000..b42c8639e --- /dev/null +++ b/src/IconCurrencyBitcoinSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyBitcoinSharp as default } diff --git a/src/IconCurrencyBitcoinTwoTone.tsx b/src/IconCurrencyBitcoinTwoTone.tsx new file mode 100644 index 000000000..a62096e1e --- /dev/null +++ b/src/IconCurrencyBitcoinTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyBitcoinTwoTone as default } diff --git a/src/IconCurrencyExchangeOutlined.tsx b/src/IconCurrencyExchangeOutlined.tsx new file mode 100644 index 000000000..a7d6019f2 --- /dev/null +++ b/src/IconCurrencyExchangeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyExchangeOutlined as default } diff --git a/src/IconCurrencyExchangeRound.tsx b/src/IconCurrencyExchangeRound.tsx new file mode 100644 index 000000000..cbb1935d6 --- /dev/null +++ b/src/IconCurrencyExchangeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyExchangeRound as default } diff --git a/src/IconCurrencyExchangeSharp.tsx b/src/IconCurrencyExchangeSharp.tsx new file mode 100644 index 000000000..e2722b749 --- /dev/null +++ b/src/IconCurrencyExchangeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyExchangeSharp as default } diff --git a/src/IconCurrencyExchangeTwoTone.tsx b/src/IconCurrencyExchangeTwoTone.tsx new file mode 100644 index 000000000..8bb12257d --- /dev/null +++ b/src/IconCurrencyExchangeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyExchangeTwoTone as default } diff --git a/src/IconCurrencyFrancOutlined.tsx b/src/IconCurrencyFrancOutlined.tsx new file mode 100644 index 000000000..f66f35ba7 --- /dev/null +++ b/src/IconCurrencyFrancOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyFrancOutlined as default } diff --git a/src/IconCurrencyFrancRound.tsx b/src/IconCurrencyFrancRound.tsx new file mode 100644 index 000000000..4c1a0725e --- /dev/null +++ b/src/IconCurrencyFrancRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyFrancRound as default } diff --git a/src/IconCurrencyFrancSharp.tsx b/src/IconCurrencyFrancSharp.tsx new file mode 100644 index 000000000..e5484ca13 --- /dev/null +++ b/src/IconCurrencyFrancSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyFrancSharp as default } diff --git a/src/IconCurrencyFrancTwoTone.tsx b/src/IconCurrencyFrancTwoTone.tsx new file mode 100644 index 000000000..723689de5 --- /dev/null +++ b/src/IconCurrencyFrancTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyFrancTwoTone as default } diff --git a/src/IconCurrencyLiraOutlined.tsx b/src/IconCurrencyLiraOutlined.tsx new file mode 100644 index 000000000..9a88d9652 --- /dev/null +++ b/src/IconCurrencyLiraOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyLiraOutlined as default } diff --git a/src/IconCurrencyLiraRound.tsx b/src/IconCurrencyLiraRound.tsx new file mode 100644 index 000000000..8834aa611 --- /dev/null +++ b/src/IconCurrencyLiraRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyLiraRound as default } diff --git a/src/IconCurrencyLiraSharp.tsx b/src/IconCurrencyLiraSharp.tsx new file mode 100644 index 000000000..2002e71ad --- /dev/null +++ b/src/IconCurrencyLiraSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyLiraSharp as default } diff --git a/src/IconCurrencyLiraTwoTone.tsx b/src/IconCurrencyLiraTwoTone.tsx new file mode 100644 index 000000000..b5872eaa3 --- /dev/null +++ b/src/IconCurrencyLiraTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyLiraTwoTone as default } diff --git a/src/IconCurrencyPoundOutlined.tsx b/src/IconCurrencyPoundOutlined.tsx new file mode 100644 index 000000000..8bb63395a --- /dev/null +++ b/src/IconCurrencyPoundOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyPoundOutlined as default } diff --git a/src/IconCurrencyPoundRound.tsx b/src/IconCurrencyPoundRound.tsx new file mode 100644 index 000000000..10082c667 --- /dev/null +++ b/src/IconCurrencyPoundRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyPoundRound as default } diff --git a/src/IconCurrencyPoundSharp.tsx b/src/IconCurrencyPoundSharp.tsx new file mode 100644 index 000000000..47c910ad1 --- /dev/null +++ b/src/IconCurrencyPoundSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyPoundSharp as default } diff --git a/src/IconCurrencyPoundTwoTone.tsx b/src/IconCurrencyPoundTwoTone.tsx new file mode 100644 index 000000000..d6e3105e8 --- /dev/null +++ b/src/IconCurrencyPoundTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyPoundTwoTone as default } diff --git a/src/IconCurrencyRubleOutlined.tsx b/src/IconCurrencyRubleOutlined.tsx new file mode 100644 index 000000000..b3139c77f --- /dev/null +++ b/src/IconCurrencyRubleOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRubleOutlined as default } diff --git a/src/IconCurrencyRubleRound.tsx b/src/IconCurrencyRubleRound.tsx new file mode 100644 index 000000000..92abd0924 --- /dev/null +++ b/src/IconCurrencyRubleRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRubleRound as default } diff --git a/src/IconCurrencyRubleSharp.tsx b/src/IconCurrencyRubleSharp.tsx new file mode 100644 index 000000000..13288a956 --- /dev/null +++ b/src/IconCurrencyRubleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRubleSharp as default } diff --git a/src/IconCurrencyRubleTwoTone.tsx b/src/IconCurrencyRubleTwoTone.tsx new file mode 100644 index 000000000..1c3e984b0 --- /dev/null +++ b/src/IconCurrencyRubleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRubleTwoTone as default } diff --git a/src/IconCurrencyRupeeOutlined.tsx b/src/IconCurrencyRupeeOutlined.tsx new file mode 100644 index 000000000..f125b936e --- /dev/null +++ b/src/IconCurrencyRupeeOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCurrencyRupeeOutlined as default } diff --git a/src/IconCurrencyRupeeRound.tsx b/src/IconCurrencyRupeeRound.tsx new file mode 100644 index 000000000..c27235699 --- /dev/null +++ b/src/IconCurrencyRupeeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyRupeeRound as default } diff --git a/src/IconCurrencyRupeeSharp.tsx b/src/IconCurrencyRupeeSharp.tsx new file mode 100644 index 000000000..1cddc5318 --- /dev/null +++ b/src/IconCurrencyRupeeSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCurrencyRupeeSharp as default } diff --git a/src/IconCurrencyRupeeTwoTone.tsx b/src/IconCurrencyRupeeTwoTone.tsx new file mode 100644 index 000000000..b3e9c31a3 --- /dev/null +++ b/src/IconCurrencyRupeeTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconCurrencyRupeeTwoTone as default } diff --git a/src/IconCurrencyYenOutlined.tsx b/src/IconCurrencyYenOutlined.tsx new file mode 100644 index 000000000..285592e86 --- /dev/null +++ b/src/IconCurrencyYenOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYenOutlined as default } diff --git a/src/IconCurrencyYenRound.tsx b/src/IconCurrencyYenRound.tsx new file mode 100644 index 000000000..7705a7c84 --- /dev/null +++ b/src/IconCurrencyYenRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYenRound as default } diff --git a/src/IconCurrencyYenSharp.tsx b/src/IconCurrencyYenSharp.tsx new file mode 100644 index 000000000..83c25fd12 --- /dev/null +++ b/src/IconCurrencyYenSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYenSharp as default } diff --git a/src/IconCurrencyYenTwoTone.tsx b/src/IconCurrencyYenTwoTone.tsx new file mode 100644 index 000000000..cca91349f --- /dev/null +++ b/src/IconCurrencyYenTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYenTwoTone as default } diff --git a/src/IconCurrencyYuanOutlined.tsx b/src/IconCurrencyYuanOutlined.tsx new file mode 100644 index 000000000..109eb3393 --- /dev/null +++ b/src/IconCurrencyYuanOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYuanOutlined as default } diff --git a/src/IconCurrencyYuanRound.tsx b/src/IconCurrencyYuanRound.tsx new file mode 100644 index 000000000..e23f86a24 --- /dev/null +++ b/src/IconCurrencyYuanRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYuanRound as default } diff --git a/src/IconCurrencyYuanSharp.tsx b/src/IconCurrencyYuanSharp.tsx new file mode 100644 index 000000000..ce8d11c5a --- /dev/null +++ b/src/IconCurrencyYuanSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYuanSharp as default } diff --git a/src/IconCurrencyYuanTwoTone.tsx b/src/IconCurrencyYuanTwoTone.tsx new file mode 100644 index 000000000..3c8614ffd --- /dev/null +++ b/src/IconCurrencyYuanTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurrencyYuanTwoTone as default } diff --git a/src/IconCurtainsClosedOutlined.tsx b/src/IconCurtainsClosedOutlined.tsx new file mode 100644 index 000000000..bfbcce43f --- /dev/null +++ b/src/IconCurtainsClosedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtainsClosedOutlined as default } diff --git a/src/IconCurtainsClosedRound.tsx b/src/IconCurtainsClosedRound.tsx new file mode 100644 index 000000000..088a42631 --- /dev/null +++ b/src/IconCurtainsClosedRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCurtainsClosedRound as default } diff --git a/src/IconCurtainsClosedSharp.tsx b/src/IconCurtainsClosedSharp.tsx new file mode 100644 index 000000000..6d27ea317 --- /dev/null +++ b/src/IconCurtainsClosedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtainsClosedSharp as default } diff --git a/src/IconCurtainsClosedTwoTone.tsx b/src/IconCurtainsClosedTwoTone.tsx new file mode 100644 index 000000000..16c45f689 --- /dev/null +++ b/src/IconCurtainsClosedTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCurtainsClosedTwoTone as default } diff --git a/src/IconCurtainsOutlined.tsx b/src/IconCurtainsOutlined.tsx new file mode 100644 index 000000000..9b0c66bb0 --- /dev/null +++ b/src/IconCurtainsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtainsOutlined as default } diff --git a/src/IconCurtainsRound.tsx b/src/IconCurtainsRound.tsx new file mode 100644 index 000000000..4299b685a --- /dev/null +++ b/src/IconCurtainsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconCurtainsRound as default } diff --git a/src/IconCurtainsSharp.tsx b/src/IconCurtainsSharp.tsx new file mode 100644 index 000000000..709522208 --- /dev/null +++ b/src/IconCurtainsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconCurtainsSharp as default } diff --git a/src/IconCurtainsTwoTone.tsx b/src/IconCurtainsTwoTone.tsx new file mode 100644 index 000000000..6c65b5fc0 --- /dev/null +++ b/src/IconCurtainsTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconCurtainsTwoTone as default } diff --git a/src/IconCycloneOutlined.tsx b/src/IconCycloneOutlined.tsx new file mode 100644 index 000000000..e89ca7490 --- /dev/null +++ b/src/IconCycloneOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCycloneOutlined as default } diff --git a/src/IconCycloneRound.tsx b/src/IconCycloneRound.tsx new file mode 100644 index 000000000..d4d9d3f32 --- /dev/null +++ b/src/IconCycloneRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconCycloneRound as default } diff --git a/src/IconCycloneSharp.tsx b/src/IconCycloneSharp.tsx new file mode 100644 index 000000000..87bc4ca9f --- /dev/null +++ b/src/IconCycloneSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconCycloneSharp as default } diff --git a/src/IconCycloneTwoTone.tsx b/src/IconCycloneTwoTone.tsx new file mode 100644 index 000000000..9d1498ad4 --- /dev/null +++ b/src/IconCycloneTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconCycloneTwoTone as default } diff --git a/src/IconDangerousOutlined.tsx b/src/IconDangerousOutlined.tsx new file mode 100644 index 000000000..2a438ceb9 --- /dev/null +++ b/src/IconDangerousOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDangerousOutlined as default } diff --git a/src/IconDangerousRound.tsx b/src/IconDangerousRound.tsx new file mode 100644 index 000000000..4c6d5df3b --- /dev/null +++ b/src/IconDangerousRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDangerousRound as default } diff --git a/src/IconDangerousSharp.tsx b/src/IconDangerousSharp.tsx new file mode 100644 index 000000000..a64f10029 --- /dev/null +++ b/src/IconDangerousSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDangerousSharp as default } diff --git a/src/IconDangerousTwoTone.tsx b/src/IconDangerousTwoTone.tsx new file mode 100644 index 000000000..8a948d087 --- /dev/null +++ b/src/IconDangerousTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDangerousTwoTone as default } diff --git a/src/IconDarkModeOutlined.tsx b/src/IconDarkModeOutlined.tsx new file mode 100644 index 000000000..329a2af14 --- /dev/null +++ b/src/IconDarkModeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDarkModeOutlined as default } diff --git a/src/IconDarkModeRound.tsx b/src/IconDarkModeRound.tsx new file mode 100644 index 000000000..f90da5863 --- /dev/null +++ b/src/IconDarkModeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDarkModeRound as default } diff --git a/src/IconDarkModeSharp.tsx b/src/IconDarkModeSharp.tsx new file mode 100644 index 000000000..649ac5ad3 --- /dev/null +++ b/src/IconDarkModeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDarkModeSharp as default } diff --git a/src/IconDarkModeTwoTone.tsx b/src/IconDarkModeTwoTone.tsx new file mode 100644 index 000000000..edc2c40cd --- /dev/null +++ b/src/IconDarkModeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDarkModeTwoTone as default } diff --git a/src/IconDashboardCustomizeOutlined.tsx b/src/IconDashboardCustomizeOutlined.tsx new file mode 100644 index 000000000..c1042cef8 --- /dev/null +++ b/src/IconDashboardCustomizeOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDashboardCustomizeOutlined as default } diff --git a/src/IconDashboardCustomizeRound.tsx b/src/IconDashboardCustomizeRound.tsx new file mode 100644 index 000000000..6631b64c0 --- /dev/null +++ b/src/IconDashboardCustomizeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDashboardCustomizeRound as default } diff --git a/src/IconDashboardCustomizeSharp.tsx b/src/IconDashboardCustomizeSharp.tsx new file mode 100644 index 000000000..08df18edb --- /dev/null +++ b/src/IconDashboardCustomizeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDashboardCustomizeSharp as default } diff --git a/src/IconDashboardCustomizeTwoTone.tsx b/src/IconDashboardCustomizeTwoTone.tsx new file mode 100644 index 000000000..56783efb0 --- /dev/null +++ b/src/IconDashboardCustomizeTwoTone.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDashboardCustomizeTwoTone as default } diff --git a/src/IconDashboardOutlined.tsx b/src/IconDashboardOutlined.tsx new file mode 100644 index 000000000..c191f4423 --- /dev/null +++ b/src/IconDashboardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDashboardOutlined as default } diff --git a/src/IconDashboardRound.tsx b/src/IconDashboardRound.tsx new file mode 100644 index 000000000..505a705cc --- /dev/null +++ b/src/IconDashboardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDashboardRound as default } diff --git a/src/IconDashboardSharp.tsx b/src/IconDashboardSharp.tsx new file mode 100644 index 000000000..dde5f1db7 --- /dev/null +++ b/src/IconDashboardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDashboardSharp as default } diff --git a/src/IconDashboardTwoTone.tsx b/src/IconDashboardTwoTone.tsx new file mode 100644 index 000000000..245ce5649 --- /dev/null +++ b/src/IconDashboardTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDashboardTwoTone as default } diff --git a/src/IconDataArrayOutlined.tsx b/src/IconDataArrayOutlined.tsx new file mode 100644 index 000000000..790845766 --- /dev/null +++ b/src/IconDataArrayOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArrayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataArrayOutlined as default } diff --git a/src/IconDataArrayRound.tsx b/src/IconDataArrayRound.tsx new file mode 100644 index 000000000..829e9c6aa --- /dev/null +++ b/src/IconDataArrayRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArrayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDataArrayRound as default } diff --git a/src/IconDataArraySharp.tsx b/src/IconDataArraySharp.tsx new file mode 100644 index 000000000..1902775a4 --- /dev/null +++ b/src/IconDataArraySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArraySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataArraySharp as default } diff --git a/src/IconDataArrayTwoTone.tsx b/src/IconDataArrayTwoTone.tsx new file mode 100644 index 000000000..1a54c18c6 --- /dev/null +++ b/src/IconDataArrayTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArrayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataArrayTwoTone as default } diff --git a/src/IconDataExplorationOutlined.tsx b/src/IconDataExplorationOutlined.tsx new file mode 100644 index 000000000..4bcad5c5e --- /dev/null +++ b/src/IconDataExplorationOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataExplorationOutlined as default } diff --git a/src/IconDataExplorationRound.tsx b/src/IconDataExplorationRound.tsx new file mode 100644 index 000000000..966bfae52 --- /dev/null +++ b/src/IconDataExplorationRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataExplorationRound as default } diff --git a/src/IconDataExplorationSharp.tsx b/src/IconDataExplorationSharp.tsx new file mode 100644 index 000000000..a87ed1916 --- /dev/null +++ b/src/IconDataExplorationSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataExplorationSharp as default } diff --git a/src/IconDataExplorationTwoTone.tsx b/src/IconDataExplorationTwoTone.tsx new file mode 100644 index 000000000..85213f96a --- /dev/null +++ b/src/IconDataExplorationTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDataExplorationTwoTone as default } diff --git a/src/IconDataObjectOutlined.tsx b/src/IconDataObjectOutlined.tsx new file mode 100644 index 000000000..6fc5f42b5 --- /dev/null +++ b/src/IconDataObjectOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataObjectOutlined as default } diff --git a/src/IconDataObjectRound.tsx b/src/IconDataObjectRound.tsx new file mode 100644 index 000000000..8121f83db --- /dev/null +++ b/src/IconDataObjectRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDataObjectRound as default } diff --git a/src/IconDataObjectSharp.tsx b/src/IconDataObjectSharp.tsx new file mode 100644 index 000000000..4b5d39f00 --- /dev/null +++ b/src/IconDataObjectSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataObjectSharp as default } diff --git a/src/IconDataObjectTwoTone.tsx b/src/IconDataObjectTwoTone.tsx new file mode 100644 index 000000000..50f2ae7cc --- /dev/null +++ b/src/IconDataObjectTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataObjectTwoTone as default } diff --git a/src/IconDataSaverOffOutlined.tsx b/src/IconDataSaverOffOutlined.tsx new file mode 100644 index 000000000..54f58c403 --- /dev/null +++ b/src/IconDataSaverOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOffOutlined as default } diff --git a/src/IconDataSaverOffRound.tsx b/src/IconDataSaverOffRound.tsx new file mode 100644 index 000000000..437017bca --- /dev/null +++ b/src/IconDataSaverOffRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOffRound as default } diff --git a/src/IconDataSaverOffSharp.tsx b/src/IconDataSaverOffSharp.tsx new file mode 100644 index 000000000..b0863b45b --- /dev/null +++ b/src/IconDataSaverOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOffSharp as default } diff --git a/src/IconDataSaverOffTwoTone.tsx b/src/IconDataSaverOffTwoTone.tsx new file mode 100644 index 000000000..adf92a69c --- /dev/null +++ b/src/IconDataSaverOffTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOffTwoTone as default } diff --git a/src/IconDataSaverOnOutlined.tsx b/src/IconDataSaverOnOutlined.tsx new file mode 100644 index 000000000..bd0f9e908 --- /dev/null +++ b/src/IconDataSaverOnOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOnOutlined as default } diff --git a/src/IconDataSaverOnRound.tsx b/src/IconDataSaverOnRound.tsx new file mode 100644 index 000000000..4ab0981f8 --- /dev/null +++ b/src/IconDataSaverOnRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDataSaverOnRound as default } diff --git a/src/IconDataSaverOnSharp.tsx b/src/IconDataSaverOnSharp.tsx new file mode 100644 index 000000000..39a1e2bac --- /dev/null +++ b/src/IconDataSaverOnSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOnSharp as default } diff --git a/src/IconDataSaverOnTwoTone.tsx b/src/IconDataSaverOnTwoTone.tsx new file mode 100644 index 000000000..d90880558 --- /dev/null +++ b/src/IconDataSaverOnTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDataSaverOnTwoTone as default } diff --git a/src/IconDataThresholdingOutlined.tsx b/src/IconDataThresholdingOutlined.tsx new file mode 100644 index 000000000..992c5d4b4 --- /dev/null +++ b/src/IconDataThresholdingOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDataThresholdingOutlined as default } diff --git a/src/IconDataThresholdingRound.tsx b/src/IconDataThresholdingRound.tsx new file mode 100644 index 000000000..6a8b90bcd --- /dev/null +++ b/src/IconDataThresholdingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDataThresholdingRound as default } diff --git a/src/IconDataThresholdingSharp.tsx b/src/IconDataThresholdingSharp.tsx new file mode 100644 index 000000000..06b7ac1b3 --- /dev/null +++ b/src/IconDataThresholdingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDataThresholdingSharp as default } diff --git a/src/IconDataThresholdingTwoTone.tsx b/src/IconDataThresholdingTwoTone.tsx new file mode 100644 index 000000000..16ce03ac0 --- /dev/null +++ b/src/IconDataThresholdingTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDataThresholdingTwoTone as default } diff --git a/src/IconDataUsageOutlined.tsx b/src/IconDataUsageOutlined.tsx new file mode 100644 index 000000000..ca5188b35 --- /dev/null +++ b/src/IconDataUsageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataUsageOutlined as default } diff --git a/src/IconDataUsageRound.tsx b/src/IconDataUsageRound.tsx new file mode 100644 index 000000000..feb803b67 --- /dev/null +++ b/src/IconDataUsageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataUsageRound as default } diff --git a/src/IconDataUsageSharp.tsx b/src/IconDataUsageSharp.tsx new file mode 100644 index 000000000..b1d371322 --- /dev/null +++ b/src/IconDataUsageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataUsageSharp as default } diff --git a/src/IconDataUsageTwoTone.tsx b/src/IconDataUsageTwoTone.tsx new file mode 100644 index 000000000..9820dd674 --- /dev/null +++ b/src/IconDataUsageTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDataUsageTwoTone as default } diff --git a/src/IconDatasetLinkedOutlined.tsx b/src/IconDatasetLinkedOutlined.tsx new file mode 100644 index 000000000..8709488c9 --- /dev/null +++ b/src/IconDatasetLinkedOutlined.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDatasetLinkedOutlined as default } diff --git a/src/IconDatasetLinkedRound.tsx b/src/IconDatasetLinkedRound.tsx new file mode 100644 index 000000000..868fe2242 --- /dev/null +++ b/src/IconDatasetLinkedRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDatasetLinkedRound as default } diff --git a/src/IconDatasetLinkedSharp.tsx b/src/IconDatasetLinkedSharp.tsx new file mode 100644 index 000000000..c4837e25d --- /dev/null +++ b/src/IconDatasetLinkedSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDatasetLinkedSharp as default } diff --git a/src/IconDatasetLinkedTwoTone.tsx b/src/IconDatasetLinkedTwoTone.tsx new file mode 100644 index 000000000..c739ba3f8 --- /dev/null +++ b/src/IconDatasetLinkedTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDatasetLinkedTwoTone as default } diff --git a/src/IconDatasetOutlined.tsx b/src/IconDatasetOutlined.tsx new file mode 100644 index 000000000..8c2bb89f9 --- /dev/null +++ b/src/IconDatasetOutlined.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDatasetOutlined as default } diff --git a/src/IconDatasetRound.tsx b/src/IconDatasetRound.tsx new file mode 100644 index 000000000..b2e07510e --- /dev/null +++ b/src/IconDatasetRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDatasetRound as default } diff --git a/src/IconDatasetSharp.tsx b/src/IconDatasetSharp.tsx new file mode 100644 index 000000000..899f31eab --- /dev/null +++ b/src/IconDatasetSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDatasetSharp as default } diff --git a/src/IconDatasetTwoTone.tsx b/src/IconDatasetTwoTone.tsx new file mode 100644 index 000000000..02c7c0ef0 --- /dev/null +++ b/src/IconDatasetTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDatasetTwoTone as default } diff --git a/src/IconDateRangeOutlined.tsx b/src/IconDateRangeOutlined.tsx new file mode 100644 index 000000000..f1db1b456 --- /dev/null +++ b/src/IconDateRangeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDateRangeOutlined as default } diff --git a/src/IconDateRangeRound.tsx b/src/IconDateRangeRound.tsx new file mode 100644 index 000000000..a92b258ca --- /dev/null +++ b/src/IconDateRangeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDateRangeRound as default } diff --git a/src/IconDateRangeSharp.tsx b/src/IconDateRangeSharp.tsx new file mode 100644 index 000000000..f536558b6 --- /dev/null +++ b/src/IconDateRangeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDateRangeSharp as default } diff --git a/src/IconDateRangeTwoTone.tsx b/src/IconDateRangeTwoTone.tsx new file mode 100644 index 000000000..98fa25a2b --- /dev/null +++ b/src/IconDateRangeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDateRangeTwoTone as default } diff --git a/src/IconDeblurOutlined.tsx b/src/IconDeblurOutlined.tsx new file mode 100644 index 000000000..44b35096f --- /dev/null +++ b/src/IconDeblurOutlined.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDeblurOutlined as default } diff --git a/src/IconDeblurRound.tsx b/src/IconDeblurRound.tsx new file mode 100644 index 000000000..d4ff0378f --- /dev/null +++ b/src/IconDeblurRound.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDeblurRound as default } diff --git a/src/IconDeblurSharp.tsx b/src/IconDeblurSharp.tsx new file mode 100644 index 000000000..7150e3dcf --- /dev/null +++ b/src/IconDeblurSharp.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDeblurSharp as default } diff --git a/src/IconDeblurTwoTone.tsx b/src/IconDeblurTwoTone.tsx new file mode 100644 index 000000000..5b9ef2877 --- /dev/null +++ b/src/IconDeblurTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDeblurTwoTone as default } diff --git a/src/IconDeckOutlined.tsx b/src/IconDeckOutlined.tsx new file mode 100644 index 000000000..4f6da958c --- /dev/null +++ b/src/IconDeckOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDeckOutlined as default } diff --git a/src/IconDeckRound.tsx b/src/IconDeckRound.tsx new file mode 100644 index 000000000..cef3993da --- /dev/null +++ b/src/IconDeckRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDeckRound as default } diff --git a/src/IconDeckSharp.tsx b/src/IconDeckSharp.tsx new file mode 100644 index 000000000..a9a194dd3 --- /dev/null +++ b/src/IconDeckSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDeckSharp as default } diff --git a/src/IconDeckTwoTone.tsx b/src/IconDeckTwoTone.tsx new file mode 100644 index 000000000..50369a97d --- /dev/null +++ b/src/IconDeckTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDeckTwoTone as default } diff --git a/src/IconDehazeOutlined.tsx b/src/IconDehazeOutlined.tsx new file mode 100644 index 000000000..078184add --- /dev/null +++ b/src/IconDehazeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDehazeOutlined as default } diff --git a/src/IconDehazeRound.tsx b/src/IconDehazeRound.tsx new file mode 100644 index 000000000..42e2cd22d --- /dev/null +++ b/src/IconDehazeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDehazeRound as default } diff --git a/src/IconDehazeSharp.tsx b/src/IconDehazeSharp.tsx new file mode 100644 index 000000000..275fd915c --- /dev/null +++ b/src/IconDehazeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDehazeSharp as default } diff --git a/src/IconDehazeTwoTone.tsx b/src/IconDehazeTwoTone.tsx new file mode 100644 index 000000000..7c5bff988 --- /dev/null +++ b/src/IconDehazeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDehazeTwoTone as default } diff --git a/src/IconDeleteForeverOutlined.tsx b/src/IconDeleteForeverOutlined.tsx new file mode 100644 index 000000000..a2a0429a1 --- /dev/null +++ b/src/IconDeleteForeverOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteForeverOutlined as default } diff --git a/src/IconDeleteForeverRound.tsx b/src/IconDeleteForeverRound.tsx new file mode 100644 index 000000000..188c06688 --- /dev/null +++ b/src/IconDeleteForeverRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeleteForeverRound as default } diff --git a/src/IconDeleteForeverSharp.tsx b/src/IconDeleteForeverSharp.tsx new file mode 100644 index 000000000..90f39c932 --- /dev/null +++ b/src/IconDeleteForeverSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteForeverSharp as default } diff --git a/src/IconDeleteForeverTwoTone.tsx b/src/IconDeleteForeverTwoTone.tsx new file mode 100644 index 000000000..acc66b110 --- /dev/null +++ b/src/IconDeleteForeverTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeleteForeverTwoTone as default } diff --git a/src/IconDeleteOutlineOutlined.tsx b/src/IconDeleteOutlineOutlined.tsx new file mode 100644 index 000000000..27e57b827 --- /dev/null +++ b/src/IconDeleteOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteOutlineOutlined as default } diff --git a/src/IconDeleteOutlineRound.tsx b/src/IconDeleteOutlineRound.tsx new file mode 100644 index 000000000..35554f6ff --- /dev/null +++ b/src/IconDeleteOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteOutlineRound as default } diff --git a/src/IconDeleteOutlineSharp.tsx b/src/IconDeleteOutlineSharp.tsx new file mode 100644 index 000000000..5b62622b2 --- /dev/null +++ b/src/IconDeleteOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteOutlineSharp as default } diff --git a/src/IconDeleteOutlineTwoTone.tsx b/src/IconDeleteOutlineTwoTone.tsx new file mode 100644 index 000000000..7e6324706 --- /dev/null +++ b/src/IconDeleteOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteOutlineTwoTone as default } diff --git a/src/IconDeleteOutlined.tsx b/src/IconDeleteOutlined.tsx new file mode 100644 index 000000000..830dacef3 --- /dev/null +++ b/src/IconDeleteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteOutlined as default } diff --git a/src/IconDeleteRound.tsx b/src/IconDeleteRound.tsx new file mode 100644 index 000000000..8853658bf --- /dev/null +++ b/src/IconDeleteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteRound as default } diff --git a/src/IconDeleteSharp.tsx b/src/IconDeleteSharp.tsx new file mode 100644 index 000000000..786172f90 --- /dev/null +++ b/src/IconDeleteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteSharp as default } diff --git a/src/IconDeleteSweepOutlined.tsx b/src/IconDeleteSweepOutlined.tsx new file mode 100644 index 000000000..a34596a42 --- /dev/null +++ b/src/IconDeleteSweepOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteSweepOutlined as default } diff --git a/src/IconDeleteSweepRound.tsx b/src/IconDeleteSweepRound.tsx new file mode 100644 index 000000000..f1d778099 --- /dev/null +++ b/src/IconDeleteSweepRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteSweepRound as default } diff --git a/src/IconDeleteSweepSharp.tsx b/src/IconDeleteSweepSharp.tsx new file mode 100644 index 000000000..a5beaf9c3 --- /dev/null +++ b/src/IconDeleteSweepSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeleteSweepSharp as default } diff --git a/src/IconDeleteSweepTwoTone.tsx b/src/IconDeleteSweepTwoTone.tsx new file mode 100644 index 000000000..bbab520b2 --- /dev/null +++ b/src/IconDeleteSweepTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeleteSweepTwoTone as default } diff --git a/src/IconDeleteTwoTone.tsx b/src/IconDeleteTwoTone.tsx new file mode 100644 index 000000000..c8cd76eb0 --- /dev/null +++ b/src/IconDeleteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeleteTwoTone as default } diff --git a/src/IconDeliveryDiningOutlined.tsx b/src/IconDeliveryDiningOutlined.tsx new file mode 100644 index 000000000..259552e97 --- /dev/null +++ b/src/IconDeliveryDiningOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeliveryDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDeliveryDiningOutlined as default } diff --git a/src/IconDeliveryDiningRound.tsx b/src/IconDeliveryDiningRound.tsx new file mode 100644 index 000000000..3d142870f --- /dev/null +++ b/src/IconDeliveryDiningRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeliveryDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDeliveryDiningRound as default } diff --git a/src/IconDeliveryDiningSharp.tsx b/src/IconDeliveryDiningSharp.tsx new file mode 100644 index 000000000..455568f12 --- /dev/null +++ b/src/IconDeliveryDiningSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeliveryDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDeliveryDiningSharp as default } diff --git a/src/IconDeliveryDiningTwoTone.tsx b/src/IconDeliveryDiningTwoTone.tsx new file mode 100644 index 000000000..845c047a1 --- /dev/null +++ b/src/IconDeliveryDiningTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeliveryDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDeliveryDiningTwoTone as default } diff --git a/src/IconDensityLargeOutlined.tsx b/src/IconDensityLargeOutlined.tsx new file mode 100644 index 000000000..1991ca418 --- /dev/null +++ b/src/IconDensityLargeOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDensityLargeOutlined as default } diff --git a/src/IconDensityLargeRound.tsx b/src/IconDensityLargeRound.tsx new file mode 100644 index 000000000..4c20c2ed5 --- /dev/null +++ b/src/IconDensityLargeRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDensityLargeRound as default } diff --git a/src/IconDensityLargeSharp.tsx b/src/IconDensityLargeSharp.tsx new file mode 100644 index 000000000..ca5323d7f --- /dev/null +++ b/src/IconDensityLargeSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDensityLargeSharp as default } diff --git a/src/IconDensityLargeTwoTone.tsx b/src/IconDensityLargeTwoTone.tsx new file mode 100644 index 000000000..17e45cb68 --- /dev/null +++ b/src/IconDensityLargeTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDensityLargeTwoTone as default } diff --git a/src/IconDensityMediumOutlined.tsx b/src/IconDensityMediumOutlined.tsx new file mode 100644 index 000000000..95afe702f --- /dev/null +++ b/src/IconDensityMediumOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDensityMediumOutlined as default } diff --git a/src/IconDensityMediumRound.tsx b/src/IconDensityMediumRound.tsx new file mode 100644 index 000000000..7aadfd45a --- /dev/null +++ b/src/IconDensityMediumRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDensityMediumRound as default } diff --git a/src/IconDensityMediumSharp.tsx b/src/IconDensityMediumSharp.tsx new file mode 100644 index 000000000..77ea3f92a --- /dev/null +++ b/src/IconDensityMediumSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDensityMediumSharp as default } diff --git a/src/IconDensityMediumTwoTone.tsx b/src/IconDensityMediumTwoTone.tsx new file mode 100644 index 000000000..4e23d68b8 --- /dev/null +++ b/src/IconDensityMediumTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDensityMediumTwoTone as default } diff --git a/src/IconDensitySmallOutlined.tsx b/src/IconDensitySmallOutlined.tsx new file mode 100644 index 000000000..228aa853e --- /dev/null +++ b/src/IconDensitySmallOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDensitySmallOutlined as default } diff --git a/src/IconDensitySmallRound.tsx b/src/IconDensitySmallRound.tsx new file mode 100644 index 000000000..81b45a959 --- /dev/null +++ b/src/IconDensitySmallRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDensitySmallRound as default } diff --git a/src/IconDensitySmallSharp.tsx b/src/IconDensitySmallSharp.tsx new file mode 100644 index 000000000..d70d86cb2 --- /dev/null +++ b/src/IconDensitySmallSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDensitySmallSharp as default } diff --git a/src/IconDensitySmallTwoTone.tsx b/src/IconDensitySmallTwoTone.tsx new file mode 100644 index 000000000..fa7e2a406 --- /dev/null +++ b/src/IconDensitySmallTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDensitySmallTwoTone as default } diff --git a/src/IconDepartureBoardOutlined.tsx b/src/IconDepartureBoardOutlined.tsx new file mode 100644 index 000000000..41518f3fe --- /dev/null +++ b/src/IconDepartureBoardOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDepartureBoardOutlined as default } diff --git a/src/IconDepartureBoardRound.tsx b/src/IconDepartureBoardRound.tsx new file mode 100644 index 000000000..dc5f0721d --- /dev/null +++ b/src/IconDepartureBoardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDepartureBoardRound as default } diff --git a/src/IconDepartureBoardSharp.tsx b/src/IconDepartureBoardSharp.tsx new file mode 100644 index 000000000..db6098665 --- /dev/null +++ b/src/IconDepartureBoardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDepartureBoardSharp as default } diff --git a/src/IconDepartureBoardTwoTone.tsx b/src/IconDepartureBoardTwoTone.tsx new file mode 100644 index 000000000..99d05c739 --- /dev/null +++ b/src/IconDepartureBoardTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDepartureBoardTwoTone as default } diff --git a/src/IconDescriptionOutlined.tsx b/src/IconDescriptionOutlined.tsx new file mode 100644 index 000000000..07def898c --- /dev/null +++ b/src/IconDescriptionOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDescriptionOutlined as default } diff --git a/src/IconDescriptionRound.tsx b/src/IconDescriptionRound.tsx new file mode 100644 index 000000000..80d903d0a --- /dev/null +++ b/src/IconDescriptionRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDescriptionRound as default } diff --git a/src/IconDescriptionSharp.tsx b/src/IconDescriptionSharp.tsx new file mode 100644 index 000000000..191b04255 --- /dev/null +++ b/src/IconDescriptionSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDescriptionSharp as default } diff --git a/src/IconDescriptionTwoTone.tsx b/src/IconDescriptionTwoTone.tsx new file mode 100644 index 000000000..e542aee1e --- /dev/null +++ b/src/IconDescriptionTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDescriptionTwoTone as default } diff --git a/src/IconDeselectOutlined.tsx b/src/IconDeselectOutlined.tsx new file mode 100644 index 000000000..79836e86e --- /dev/null +++ b/src/IconDeselectOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeselectOutlined as default } diff --git a/src/IconDeselectRound.tsx b/src/IconDeselectRound.tsx new file mode 100644 index 000000000..bd0f25f92 --- /dev/null +++ b/src/IconDeselectRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDeselectRound as default } diff --git a/src/IconDeselectSharp.tsx b/src/IconDeselectSharp.tsx new file mode 100644 index 000000000..734c6c28b --- /dev/null +++ b/src/IconDeselectSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeselectSharp as default } diff --git a/src/IconDeselectTwoTone.tsx b/src/IconDeselectTwoTone.tsx new file mode 100644 index 000000000..efa70e133 --- /dev/null +++ b/src/IconDeselectTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeselectTwoTone as default } diff --git a/src/IconDesignServicesOutlined.tsx b/src/IconDesignServicesOutlined.tsx new file mode 100644 index 000000000..26f2b9ace --- /dev/null +++ b/src/IconDesignServicesOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDesignServicesOutlined as default } diff --git a/src/IconDesignServicesRound.tsx b/src/IconDesignServicesRound.tsx new file mode 100644 index 000000000..60374ba05 --- /dev/null +++ b/src/IconDesignServicesRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDesignServicesRound as default } diff --git a/src/IconDesignServicesSharp.tsx b/src/IconDesignServicesSharp.tsx new file mode 100644 index 000000000..fc22a5830 --- /dev/null +++ b/src/IconDesignServicesSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDesignServicesSharp as default } diff --git a/src/IconDesignServicesTwoTone.tsx b/src/IconDesignServicesTwoTone.tsx new file mode 100644 index 000000000..4bf67d90d --- /dev/null +++ b/src/IconDesignServicesTwoTone.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDesignServicesTwoTone as default } diff --git a/src/IconDeskOutlined.tsx b/src/IconDeskOutlined.tsx new file mode 100644 index 000000000..825943713 --- /dev/null +++ b/src/IconDeskOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeskOutlined as default } diff --git a/src/IconDeskRound.tsx b/src/IconDeskRound.tsx new file mode 100644 index 000000000..4a21aacc5 --- /dev/null +++ b/src/IconDeskRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDeskRound as default } diff --git a/src/IconDeskSharp.tsx b/src/IconDeskSharp.tsx new file mode 100644 index 000000000..daf6d1b01 --- /dev/null +++ b/src/IconDeskSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDeskSharp as default } diff --git a/src/IconDeskTwoTone.tsx b/src/IconDeskTwoTone.tsx new file mode 100644 index 000000000..adeee023b --- /dev/null +++ b/src/IconDeskTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDeskTwoTone as default } diff --git a/src/IconDesktopAccessDisabledOutlined.tsx b/src/IconDesktopAccessDisabledOutlined.tsx new file mode 100644 index 000000000..311909c39 --- /dev/null +++ b/src/IconDesktopAccessDisabledOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopAccessDisabledOutlined as default } diff --git a/src/IconDesktopAccessDisabledRound.tsx b/src/IconDesktopAccessDisabledRound.tsx new file mode 100644 index 000000000..5cf41a530 --- /dev/null +++ b/src/IconDesktopAccessDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopAccessDisabledRound as default } diff --git a/src/IconDesktopAccessDisabledSharp.tsx b/src/IconDesktopAccessDisabledSharp.tsx new file mode 100644 index 000000000..875097957 --- /dev/null +++ b/src/IconDesktopAccessDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopAccessDisabledSharp as default } diff --git a/src/IconDesktopAccessDisabledTwoTone.tsx b/src/IconDesktopAccessDisabledTwoTone.tsx new file mode 100644 index 000000000..8c8f1b0a7 --- /dev/null +++ b/src/IconDesktopAccessDisabledTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDesktopAccessDisabledTwoTone as default } diff --git a/src/IconDesktopMac.tsx b/src/IconDesktopMac.tsx index 4c3163335..9ab029df4 100644 --- a/src/IconDesktopMac.tsx +++ b/src/IconDesktopMac.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconDesktopMac: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconDesktopMacOutlined.tsx b/src/IconDesktopMacOutlined.tsx new file mode 100644 index 000000000..8d6ce506f --- /dev/null +++ b/src/IconDesktopMacOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopMacOutlined as default } diff --git a/src/IconDesktopMacRound.tsx b/src/IconDesktopMacRound.tsx new file mode 100644 index 000000000..ec01a34c2 --- /dev/null +++ b/src/IconDesktopMacRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopMacRound as default } diff --git a/src/IconDesktopMacSharp.tsx b/src/IconDesktopMacSharp.tsx new file mode 100644 index 000000000..dcbcf93c5 --- /dev/null +++ b/src/IconDesktopMacSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopMacSharp as default } diff --git a/src/IconDesktopMacTwoTone.tsx b/src/IconDesktopMacTwoTone.tsx new file mode 100644 index 000000000..c78789a69 --- /dev/null +++ b/src/IconDesktopMacTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDesktopMacTwoTone as default } diff --git a/src/IconDesktopWindows.tsx b/src/IconDesktopWindows.tsx index f3c583bc6..36d79fdb5 100644 --- a/src/IconDesktopWindows.tsx +++ b/src/IconDesktopWindows.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconDesktopWindows: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconDesktopWindowsOutlined.tsx b/src/IconDesktopWindowsOutlined.tsx new file mode 100644 index 000000000..338455ed3 --- /dev/null +++ b/src/IconDesktopWindowsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopWindowsOutlined as default } diff --git a/src/IconDesktopWindowsRound.tsx b/src/IconDesktopWindowsRound.tsx new file mode 100644 index 000000000..a4ab34ed0 --- /dev/null +++ b/src/IconDesktopWindowsRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopWindowsRound as default } diff --git a/src/IconDesktopWindowsSharp.tsx b/src/IconDesktopWindowsSharp.tsx new file mode 100644 index 000000000..ee93e4def --- /dev/null +++ b/src/IconDesktopWindowsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDesktopWindowsSharp as default } diff --git a/src/IconDesktopWindowsTwoTone.tsx b/src/IconDesktopWindowsTwoTone.tsx new file mode 100644 index 000000000..12b4e4da5 --- /dev/null +++ b/src/IconDesktopWindowsTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDesktopWindowsTwoTone as default } diff --git a/src/IconDetailsOutlined.tsx b/src/IconDetailsOutlined.tsx new file mode 100644 index 000000000..d03ea9a88 --- /dev/null +++ b/src/IconDetailsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDetailsOutlined as default } diff --git a/src/IconDetailsRound.tsx b/src/IconDetailsRound.tsx new file mode 100644 index 000000000..045e9da98 --- /dev/null +++ b/src/IconDetailsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDetailsRound as default } diff --git a/src/IconDetailsSharp.tsx b/src/IconDetailsSharp.tsx new file mode 100644 index 000000000..53bbb2da6 --- /dev/null +++ b/src/IconDetailsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDetailsSharp as default } diff --git a/src/IconDetailsTwoTone.tsx b/src/IconDetailsTwoTone.tsx new file mode 100644 index 000000000..ed8ae6856 --- /dev/null +++ b/src/IconDetailsTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDetailsTwoTone as default } diff --git a/src/IconDeveloperBoardOffOutlined.tsx b/src/IconDeveloperBoardOffOutlined.tsx new file mode 100644 index 000000000..f32568b53 --- /dev/null +++ b/src/IconDeveloperBoardOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperBoardOffOutlined as default } diff --git a/src/IconDeveloperBoardOffRound.tsx b/src/IconDeveloperBoardOffRound.tsx new file mode 100644 index 000000000..672984d47 --- /dev/null +++ b/src/IconDeveloperBoardOffRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDeveloperBoardOffRound as default } diff --git a/src/IconDeveloperBoardOffSharp.tsx b/src/IconDeveloperBoardOffSharp.tsx new file mode 100644 index 000000000..ce1e4b9d5 --- /dev/null +++ b/src/IconDeveloperBoardOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperBoardOffSharp as default } diff --git a/src/IconDeveloperBoardOffTwoTone.tsx b/src/IconDeveloperBoardOffTwoTone.tsx new file mode 100644 index 000000000..ae15d5a27 --- /dev/null +++ b/src/IconDeveloperBoardOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeveloperBoardOffTwoTone as default } diff --git a/src/IconDeveloperBoardOutlined.tsx b/src/IconDeveloperBoardOutlined.tsx new file mode 100644 index 000000000..8f200bb0a --- /dev/null +++ b/src/IconDeveloperBoardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperBoardOutlined as default } diff --git a/src/IconDeveloperBoardRound.tsx b/src/IconDeveloperBoardRound.tsx new file mode 100644 index 000000000..ced19ba0b --- /dev/null +++ b/src/IconDeveloperBoardRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardRound as default } diff --git a/src/IconDeveloperBoardSharp.tsx b/src/IconDeveloperBoardSharp.tsx new file mode 100644 index 000000000..bbc523f1c --- /dev/null +++ b/src/IconDeveloperBoardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperBoardSharp as default } diff --git a/src/IconDeveloperBoardTwoTone.tsx b/src/IconDeveloperBoardTwoTone.tsx new file mode 100644 index 000000000..f7c41d124 --- /dev/null +++ b/src/IconDeveloperBoardTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeveloperBoardTwoTone as default } diff --git a/src/IconDeveloperModeOutlined.tsx b/src/IconDeveloperModeOutlined.tsx new file mode 100644 index 000000000..492fcf3d5 --- /dev/null +++ b/src/IconDeveloperModeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperModeOutlined as default } diff --git a/src/IconDeveloperModeRound.tsx b/src/IconDeveloperModeRound.tsx new file mode 100644 index 000000000..ee297c807 --- /dev/null +++ b/src/IconDeveloperModeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperModeRound as default } diff --git a/src/IconDeveloperModeSharp.tsx b/src/IconDeveloperModeSharp.tsx new file mode 100644 index 000000000..bdcc80c05 --- /dev/null +++ b/src/IconDeveloperModeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperModeSharp as default } diff --git a/src/IconDeveloperModeTwoTone.tsx b/src/IconDeveloperModeTwoTone.tsx new file mode 100644 index 000000000..586a162d3 --- /dev/null +++ b/src/IconDeveloperModeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeveloperModeTwoTone as default } diff --git a/src/IconDeviceHubOutlined.tsx b/src/IconDeviceHubOutlined.tsx new file mode 100644 index 000000000..c6889c468 --- /dev/null +++ b/src/IconDeviceHubOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeviceHubOutlined as default } diff --git a/src/IconDeviceHubRound.tsx b/src/IconDeviceHubRound.tsx new file mode 100644 index 000000000..9eb8179fd --- /dev/null +++ b/src/IconDeviceHubRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceHubRound as default } diff --git a/src/IconDeviceHubSharp.tsx b/src/IconDeviceHubSharp.tsx new file mode 100644 index 000000000..f7d8cc210 --- /dev/null +++ b/src/IconDeviceHubSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeviceHubSharp as default } diff --git a/src/IconDeviceHubTwoTone.tsx b/src/IconDeviceHubTwoTone.tsx new file mode 100644 index 000000000..cdae34068 --- /dev/null +++ b/src/IconDeviceHubTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeviceHubTwoTone as default } diff --git a/src/IconDeviceThermostatOutlined.tsx b/src/IconDeviceThermostatOutlined.tsx new file mode 100644 index 000000000..ba888087f --- /dev/null +++ b/src/IconDeviceThermostatOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDeviceThermostatOutlined as default } diff --git a/src/IconDeviceThermostatRound.tsx b/src/IconDeviceThermostatRound.tsx new file mode 100644 index 000000000..5cbae8d5a --- /dev/null +++ b/src/IconDeviceThermostatRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDeviceThermostatRound as default } diff --git a/src/IconDeviceThermostatSharp.tsx b/src/IconDeviceThermostatSharp.tsx new file mode 100644 index 000000000..4cf3b267e --- /dev/null +++ b/src/IconDeviceThermostatSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDeviceThermostatSharp as default } diff --git a/src/IconDeviceThermostatTwoTone.tsx b/src/IconDeviceThermostatTwoTone.tsx new file mode 100644 index 000000000..8e129db04 --- /dev/null +++ b/src/IconDeviceThermostatTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDeviceThermostatTwoTone as default } diff --git a/src/IconDeviceUnknownOutlined.tsx b/src/IconDeviceUnknownOutlined.tsx new file mode 100644 index 000000000..035a84377 --- /dev/null +++ b/src/IconDeviceUnknownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeviceUnknownOutlined as default } diff --git a/src/IconDeviceUnknownRound.tsx b/src/IconDeviceUnknownRound.tsx new file mode 100644 index 000000000..ce759d43b --- /dev/null +++ b/src/IconDeviceUnknownRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceUnknownRound as default } diff --git a/src/IconDeviceUnknownSharp.tsx b/src/IconDeviceUnknownSharp.tsx new file mode 100644 index 000000000..211f3067b --- /dev/null +++ b/src/IconDeviceUnknownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDeviceUnknownSharp as default } diff --git a/src/IconDeviceUnknownTwoTone.tsx b/src/IconDeviceUnknownTwoTone.tsx new file mode 100644 index 000000000..e63a340b3 --- /dev/null +++ b/src/IconDeviceUnknownTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDeviceUnknownTwoTone as default } diff --git a/src/IconDevicesFoldOutlined.tsx b/src/IconDevicesFoldOutlined.tsx new file mode 100644 index 000000000..059c5e627 --- /dev/null +++ b/src/IconDevicesFoldOutlined.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDevicesFoldOutlined as default } diff --git a/src/IconDevicesFoldRound.tsx b/src/IconDevicesFoldRound.tsx new file mode 100644 index 000000000..734c21f40 --- /dev/null +++ b/src/IconDevicesFoldRound.tsx @@ -0,0 +1,47 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDevicesFoldRound as default } diff --git a/src/IconDevicesFoldSharp.tsx b/src/IconDevicesFoldSharp.tsx new file mode 100644 index 000000000..62595c95e --- /dev/null +++ b/src/IconDevicesFoldSharp.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDevicesFoldSharp as default } diff --git a/src/IconDevicesFoldTwoTone.tsx b/src/IconDevicesFoldTwoTone.tsx new file mode 100644 index 000000000..a9c8c371f --- /dev/null +++ b/src/IconDevicesFoldTwoTone.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDevicesFoldTwoTone as default } diff --git a/src/IconDevicesOtherOutlined.tsx b/src/IconDevicesOtherOutlined.tsx new file mode 100644 index 000000000..87383cdb4 --- /dev/null +++ b/src/IconDevicesOtherOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDevicesOtherOutlined as default } diff --git a/src/IconDevicesOtherRound.tsx b/src/IconDevicesOtherRound.tsx new file mode 100644 index 000000000..6aad72020 --- /dev/null +++ b/src/IconDevicesOtherRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOtherRound as default } diff --git a/src/IconDevicesOtherSharp.tsx b/src/IconDevicesOtherSharp.tsx new file mode 100644 index 000000000..1dab4f0da --- /dev/null +++ b/src/IconDevicesOtherSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDevicesOtherSharp as default } diff --git a/src/IconDevicesOtherTwoTone.tsx b/src/IconDevicesOtherTwoTone.tsx new file mode 100644 index 000000000..8cba8d950 --- /dev/null +++ b/src/IconDevicesOtherTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDevicesOtherTwoTone as default } diff --git a/src/IconDevicesOutlined.tsx b/src/IconDevicesOutlined.tsx new file mode 100644 index 000000000..9ad897664 --- /dev/null +++ b/src/IconDevicesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDevicesOutlined as default } diff --git a/src/IconDevicesRound.tsx b/src/IconDevicesRound.tsx new file mode 100644 index 000000000..221bf64a7 --- /dev/null +++ b/src/IconDevicesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDevicesRound as default } diff --git a/src/IconDevicesSharp.tsx b/src/IconDevicesSharp.tsx new file mode 100644 index 000000000..aff17668c --- /dev/null +++ b/src/IconDevicesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDevicesSharp as default } diff --git a/src/IconDevicesTwoTone.tsx b/src/IconDevicesTwoTone.tsx new file mode 100644 index 000000000..12119ea83 --- /dev/null +++ b/src/IconDevicesTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDevicesTwoTone as default } diff --git a/src/IconDialerSipOutlined.tsx b/src/IconDialerSipOutlined.tsx new file mode 100644 index 000000000..6a71c04cd --- /dev/null +++ b/src/IconDialerSipOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialerSipOutlined as default } diff --git a/src/IconDialerSipRound.tsx b/src/IconDialerSipRound.tsx new file mode 100644 index 000000000..5fef07c6b --- /dev/null +++ b/src/IconDialerSipRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialerSipRound as default } diff --git a/src/IconDialerSipSharp.tsx b/src/IconDialerSipSharp.tsx new file mode 100644 index 000000000..0f739e2f2 --- /dev/null +++ b/src/IconDialerSipSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialerSipSharp as default } diff --git a/src/IconDialerSipTwoTone.tsx b/src/IconDialerSipTwoTone.tsx new file mode 100644 index 000000000..b61231c30 --- /dev/null +++ b/src/IconDialerSipTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDialerSipTwoTone as default } diff --git a/src/IconDialpadOutlined.tsx b/src/IconDialpadOutlined.tsx new file mode 100644 index 000000000..1e370f23c --- /dev/null +++ b/src/IconDialpadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialpadOutlined as default } diff --git a/src/IconDialpadRound.tsx b/src/IconDialpadRound.tsx new file mode 100644 index 000000000..65ad44377 --- /dev/null +++ b/src/IconDialpadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialpadRound as default } diff --git a/src/IconDialpadSharp.tsx b/src/IconDialpadSharp.tsx new file mode 100644 index 000000000..f36f1250e --- /dev/null +++ b/src/IconDialpadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialpadSharp as default } diff --git a/src/IconDialpadTwoTone.tsx b/src/IconDialpadTwoTone.tsx new file mode 100644 index 000000000..9509582ff --- /dev/null +++ b/src/IconDialpadTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDialpadTwoTone as default } diff --git a/src/IconDiamondOutlined.tsx b/src/IconDiamondOutlined.tsx new file mode 100644 index 000000000..9ce82fdf8 --- /dev/null +++ b/src/IconDiamondOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDiamondOutlined as default } diff --git a/src/IconDiamondRound.tsx b/src/IconDiamondRound.tsx new file mode 100644 index 000000000..ded17d26c --- /dev/null +++ b/src/IconDiamondRound.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDiamondRound as default } diff --git a/src/IconDiamondSharp.tsx b/src/IconDiamondSharp.tsx new file mode 100644 index 000000000..cc33e67b9 --- /dev/null +++ b/src/IconDiamondSharp.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDiamondSharp as default } diff --git a/src/IconDiamondTwoTone.tsx b/src/IconDiamondTwoTone.tsx new file mode 100644 index 000000000..527639ad4 --- /dev/null +++ b/src/IconDiamondTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiamondTwoTone as default } diff --git a/src/IconDifferenceOutlined.tsx b/src/IconDifferenceOutlined.tsx new file mode 100644 index 000000000..74499443b --- /dev/null +++ b/src/IconDifferenceOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDifferenceOutlined as default } diff --git a/src/IconDifferenceRound.tsx b/src/IconDifferenceRound.tsx new file mode 100644 index 000000000..38b999733 --- /dev/null +++ b/src/IconDifferenceRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDifferenceRound as default } diff --git a/src/IconDifferenceSharp.tsx b/src/IconDifferenceSharp.tsx new file mode 100644 index 000000000..375273ea3 --- /dev/null +++ b/src/IconDifferenceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDifferenceSharp as default } diff --git a/src/IconDifferenceTwoTone.tsx b/src/IconDifferenceTwoTone.tsx new file mode 100644 index 000000000..51ae38351 --- /dev/null +++ b/src/IconDifferenceTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDifferenceTwoTone as default } diff --git a/src/IconDiningOutlined.tsx b/src/IconDiningOutlined.tsx new file mode 100644 index 000000000..c247e13d0 --- /dev/null +++ b/src/IconDiningOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDiningOutlined as default } diff --git a/src/IconDiningRound.tsx b/src/IconDiningRound.tsx new file mode 100644 index 000000000..3531c5cff --- /dev/null +++ b/src/IconDiningRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDiningRound as default } diff --git a/src/IconDiningSharp.tsx b/src/IconDiningSharp.tsx new file mode 100644 index 000000000..bcddcb48a --- /dev/null +++ b/src/IconDiningSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDiningSharp as default } diff --git a/src/IconDiningTwoTone.tsx b/src/IconDiningTwoTone.tsx new file mode 100644 index 000000000..0825c79a6 --- /dev/null +++ b/src/IconDiningTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDiningTwoTone as default } diff --git a/src/IconDinnerDiningOutlined.tsx b/src/IconDinnerDiningOutlined.tsx new file mode 100644 index 000000000..42e65e1ab --- /dev/null +++ b/src/IconDinnerDiningOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDinnerDiningOutlined as default } diff --git a/src/IconDinnerDiningRound.tsx b/src/IconDinnerDiningRound.tsx new file mode 100644 index 000000000..75fa8e22b --- /dev/null +++ b/src/IconDinnerDiningRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDinnerDiningRound as default } diff --git a/src/IconDinnerDiningSharp.tsx b/src/IconDinnerDiningSharp.tsx new file mode 100644 index 000000000..693a1f0f9 --- /dev/null +++ b/src/IconDinnerDiningSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDinnerDiningSharp as default } diff --git a/src/IconDinnerDiningTwoTone.tsx b/src/IconDinnerDiningTwoTone.tsx new file mode 100644 index 000000000..b4975223d --- /dev/null +++ b/src/IconDinnerDiningTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDinnerDiningTwoTone as default } diff --git a/src/IconDirections.tsx b/src/IconDirections.tsx index 2a1395e93..c976fe3ab 100644 --- a/src/IconDirections.tsx +++ b/src/IconDirections.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconDirections: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconDirectionsBikeOutlined.tsx b/src/IconDirectionsBikeOutlined.tsx new file mode 100644 index 000000000..cfeee0744 --- /dev/null +++ b/src/IconDirectionsBikeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBikeOutlined as default } diff --git a/src/IconDirectionsBikeRound.tsx b/src/IconDirectionsBikeRound.tsx new file mode 100644 index 000000000..fc5520c1c --- /dev/null +++ b/src/IconDirectionsBikeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBikeRound as default } diff --git a/src/IconDirectionsBikeSharp.tsx b/src/IconDirectionsBikeSharp.tsx new file mode 100644 index 000000000..2af1447c5 --- /dev/null +++ b/src/IconDirectionsBikeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBikeSharp as default } diff --git a/src/IconDirectionsBikeTwoTone.tsx b/src/IconDirectionsBikeTwoTone.tsx new file mode 100644 index 000000000..9a7a9bf79 --- /dev/null +++ b/src/IconDirectionsBikeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBikeTwoTone as default } diff --git a/src/IconDirectionsBoatFilledOutlined.tsx b/src/IconDirectionsBoatFilledOutlined.tsx new file mode 100644 index 000000000..40a4fb30e --- /dev/null +++ b/src/IconDirectionsBoatFilledOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatFilledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBoatFilledOutlined as default } diff --git a/src/IconDirectionsBoatFilledRound.tsx b/src/IconDirectionsBoatFilledRound.tsx new file mode 100644 index 000000000..20b7bc689 --- /dev/null +++ b/src/IconDirectionsBoatFilledRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDirectionsBoatFilledRound as default } diff --git a/src/IconDirectionsBoatFilledSharp.tsx b/src/IconDirectionsBoatFilledSharp.tsx new file mode 100644 index 000000000..7aef1146a --- /dev/null +++ b/src/IconDirectionsBoatFilledSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDirectionsBoatFilledSharp as default } diff --git a/src/IconDirectionsBoatFilledTwoTone.tsx b/src/IconDirectionsBoatFilledTwoTone.tsx new file mode 100644 index 000000000..f0ff96a69 --- /dev/null +++ b/src/IconDirectionsBoatFilledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDirectionsBoatFilledTwoTone as default } diff --git a/src/IconDirectionsBoatOutlined.tsx b/src/IconDirectionsBoatOutlined.tsx new file mode 100644 index 000000000..65c0ab52b --- /dev/null +++ b/src/IconDirectionsBoatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBoatOutlined as default } diff --git a/src/IconDirectionsBoatRound.tsx b/src/IconDirectionsBoatRound.tsx new file mode 100644 index 000000000..40d64bb30 --- /dev/null +++ b/src/IconDirectionsBoatRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDirectionsBoatRound as default } diff --git a/src/IconDirectionsBoatSharp.tsx b/src/IconDirectionsBoatSharp.tsx new file mode 100644 index 000000000..eda1672ed --- /dev/null +++ b/src/IconDirectionsBoatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBoatSharp as default } diff --git a/src/IconDirectionsBoatTwoTone.tsx b/src/IconDirectionsBoatTwoTone.tsx new file mode 100644 index 000000000..ca6f37d5f --- /dev/null +++ b/src/IconDirectionsBoatTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDirectionsBoatTwoTone as default } diff --git a/src/IconDirectionsBusFilledOutlined.tsx b/src/IconDirectionsBusFilledOutlined.tsx new file mode 100644 index 000000000..c9c2b843a --- /dev/null +++ b/src/IconDirectionsBusFilledOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsBusFilledOutlined as default } diff --git a/src/IconDirectionsBusFilledRound.tsx b/src/IconDirectionsBusFilledRound.tsx new file mode 100644 index 000000000..1e7838ec6 --- /dev/null +++ b/src/IconDirectionsBusFilledRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsBusFilledRound as default } diff --git a/src/IconDirectionsBusFilledSharp.tsx b/src/IconDirectionsBusFilledSharp.tsx new file mode 100644 index 000000000..a87865819 --- /dev/null +++ b/src/IconDirectionsBusFilledSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsBusFilledSharp as default } diff --git a/src/IconDirectionsBusFilledTwoTone.tsx b/src/IconDirectionsBusFilledTwoTone.tsx new file mode 100644 index 000000000..dae3c8ebd --- /dev/null +++ b/src/IconDirectionsBusFilledTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDirectionsBusFilledTwoTone as default } diff --git a/src/IconDirectionsBusOutlined.tsx b/src/IconDirectionsBusOutlined.tsx new file mode 100644 index 000000000..fd947a2fd --- /dev/null +++ b/src/IconDirectionsBusOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDirectionsBusOutlined as default } diff --git a/src/IconDirectionsBusRound.tsx b/src/IconDirectionsBusRound.tsx new file mode 100644 index 000000000..0282fd8db --- /dev/null +++ b/src/IconDirectionsBusRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBusRound as default } diff --git a/src/IconDirectionsBusSharp.tsx b/src/IconDirectionsBusSharp.tsx new file mode 100644 index 000000000..92496ab70 --- /dev/null +++ b/src/IconDirectionsBusSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsBusSharp as default } diff --git a/src/IconDirectionsBusTwoTone.tsx b/src/IconDirectionsBusTwoTone.tsx new file mode 100644 index 000000000..066407da2 --- /dev/null +++ b/src/IconDirectionsBusTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDirectionsBusTwoTone as default } diff --git a/src/IconDirectionsCarFilledOutlined.tsx b/src/IconDirectionsCarFilledOutlined.tsx new file mode 100644 index 000000000..e4ed0cfed --- /dev/null +++ b/src/IconDirectionsCarFilledOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsCarFilledOutlined as default } diff --git a/src/IconDirectionsCarFilledRound.tsx b/src/IconDirectionsCarFilledRound.tsx new file mode 100644 index 000000000..8e480b954 --- /dev/null +++ b/src/IconDirectionsCarFilledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsCarFilledRound as default } diff --git a/src/IconDirectionsCarFilledSharp.tsx b/src/IconDirectionsCarFilledSharp.tsx new file mode 100644 index 000000000..71f52069b --- /dev/null +++ b/src/IconDirectionsCarFilledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsCarFilledSharp as default } diff --git a/src/IconDirectionsCarFilledTwoTone.tsx b/src/IconDirectionsCarFilledTwoTone.tsx new file mode 100644 index 000000000..4ac39e130 --- /dev/null +++ b/src/IconDirectionsCarFilledTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDirectionsCarFilledTwoTone as default } diff --git a/src/IconDirectionsCarOutlined.tsx b/src/IconDirectionsCarOutlined.tsx new file mode 100644 index 000000000..0929e8950 --- /dev/null +++ b/src/IconDirectionsCarOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDirectionsCarOutlined as default } diff --git a/src/IconDirectionsCarRound.tsx b/src/IconDirectionsCarRound.tsx new file mode 100644 index 000000000..2ed310796 --- /dev/null +++ b/src/IconDirectionsCarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsCarRound as default } diff --git a/src/IconDirectionsCarSharp.tsx b/src/IconDirectionsCarSharp.tsx new file mode 100644 index 000000000..c81060c2c --- /dev/null +++ b/src/IconDirectionsCarSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsCarSharp as default } diff --git a/src/IconDirectionsCarTwoTone.tsx b/src/IconDirectionsCarTwoTone.tsx new file mode 100644 index 000000000..6d37a0d53 --- /dev/null +++ b/src/IconDirectionsCarTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDirectionsCarTwoTone as default } diff --git a/src/IconDirectionsOff.tsx b/src/IconDirectionsOff.tsx index db942a8b8..ba640ee21 100644 --- a/src/IconDirectionsOff.tsx +++ b/src/IconDirectionsOff.tsx @@ -14,15 +14,7 @@ const IconDirectionsOff: React.FC = ({ ...props }) => ( - - - + diff --git a/src/IconDirectionsOffOutlined.tsx b/src/IconDirectionsOffOutlined.tsx new file mode 100644 index 000000000..aa8a3e2af --- /dev/null +++ b/src/IconDirectionsOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsOffOutlined as default } diff --git a/src/IconDirectionsOffRound.tsx b/src/IconDirectionsOffRound.tsx new file mode 100644 index 000000000..6b5ac469c --- /dev/null +++ b/src/IconDirectionsOffRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDirectionsOffRound as default } diff --git a/src/IconDirectionsOffSharp.tsx b/src/IconDirectionsOffSharp.tsx new file mode 100644 index 000000000..af1fee7e9 --- /dev/null +++ b/src/IconDirectionsOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDirectionsOffSharp as default } diff --git a/src/IconDirectionsOffTwoTone.tsx b/src/IconDirectionsOffTwoTone.tsx new file mode 100644 index 000000000..a47a2cc91 --- /dev/null +++ b/src/IconDirectionsOffTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsOffTwoTone as default } diff --git a/src/IconDirectionsOutlined.tsx b/src/IconDirectionsOutlined.tsx new file mode 100644 index 000000000..bbee64805 --- /dev/null +++ b/src/IconDirectionsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsOutlined as default } diff --git a/src/IconDirectionsRailwayFilledOutlined.tsx b/src/IconDirectionsRailwayFilledOutlined.tsx new file mode 100644 index 000000000..169e989d5 --- /dev/null +++ b/src/IconDirectionsRailwayFilledOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayFilledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDirectionsRailwayFilledOutlined as default } diff --git a/src/IconDirectionsRailwayFilledRound.tsx b/src/IconDirectionsRailwayFilledRound.tsx new file mode 100644 index 000000000..7ea41dafb --- /dev/null +++ b/src/IconDirectionsRailwayFilledRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayFilledRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsRailwayFilledRound as default } diff --git a/src/IconDirectionsRailwayFilledSharp.tsx b/src/IconDirectionsRailwayFilledSharp.tsx new file mode 100644 index 000000000..bb5036ec8 --- /dev/null +++ b/src/IconDirectionsRailwayFilledSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayFilledSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsRailwayFilledSharp as default } diff --git a/src/IconDirectionsRailwayFilledTwoTone.tsx b/src/IconDirectionsRailwayFilledTwoTone.tsx new file mode 100644 index 000000000..15c326099 --- /dev/null +++ b/src/IconDirectionsRailwayFilledTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayFilledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDirectionsRailwayFilledTwoTone as default } diff --git a/src/IconDirectionsRailwayOutlined.tsx b/src/IconDirectionsRailwayOutlined.tsx new file mode 100644 index 000000000..2f871fe77 --- /dev/null +++ b/src/IconDirectionsRailwayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRailwayOutlined as default } diff --git a/src/IconDirectionsRailwayRound.tsx b/src/IconDirectionsRailwayRound.tsx new file mode 100644 index 000000000..899200c2e --- /dev/null +++ b/src/IconDirectionsRailwayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRailwayRound as default } diff --git a/src/IconDirectionsRailwaySharp.tsx b/src/IconDirectionsRailwaySharp.tsx new file mode 100644 index 000000000..bcf24f821 --- /dev/null +++ b/src/IconDirectionsRailwaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRailwaySharp as default } diff --git a/src/IconDirectionsRailwayTwoTone.tsx b/src/IconDirectionsRailwayTwoTone.tsx new file mode 100644 index 000000000..93bb49908 --- /dev/null +++ b/src/IconDirectionsRailwayTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDirectionsRailwayTwoTone as default } diff --git a/src/IconDirectionsRound.tsx b/src/IconDirectionsRound.tsx new file mode 100644 index 000000000..3401ede66 --- /dev/null +++ b/src/IconDirectionsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRound as default } diff --git a/src/IconDirectionsRunOutlined.tsx b/src/IconDirectionsRunOutlined.tsx new file mode 100644 index 000000000..2f4f08a15 --- /dev/null +++ b/src/IconDirectionsRunOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRunOutlined as default } diff --git a/src/IconDirectionsRunRound.tsx b/src/IconDirectionsRunRound.tsx new file mode 100644 index 000000000..bb6f88d5e --- /dev/null +++ b/src/IconDirectionsRunRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRunRound as default } diff --git a/src/IconDirectionsRunSharp.tsx b/src/IconDirectionsRunSharp.tsx new file mode 100644 index 000000000..19024f0ff --- /dev/null +++ b/src/IconDirectionsRunSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRunSharp as default } diff --git a/src/IconDirectionsRunTwoTone.tsx b/src/IconDirectionsRunTwoTone.tsx new file mode 100644 index 000000000..317db49b0 --- /dev/null +++ b/src/IconDirectionsRunTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsRunTwoTone as default } diff --git a/src/IconDirectionsSharp.tsx b/src/IconDirectionsSharp.tsx new file mode 100644 index 000000000..0694d65e9 --- /dev/null +++ b/src/IconDirectionsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsSharp as default } diff --git a/src/IconDirectionsSubwayFilledOutlined.tsx b/src/IconDirectionsSubwayFilledOutlined.tsx new file mode 100644 index 000000000..28cc19b8d --- /dev/null +++ b/src/IconDirectionsSubwayFilledOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayFilledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsSubwayFilledOutlined as default } diff --git a/src/IconDirectionsSubwayFilledRound.tsx b/src/IconDirectionsSubwayFilledRound.tsx new file mode 100644 index 000000000..7ebaabeb8 --- /dev/null +++ b/src/IconDirectionsSubwayFilledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsSubwayFilledRound as default } diff --git a/src/IconDirectionsSubwayFilledSharp.tsx b/src/IconDirectionsSubwayFilledSharp.tsx new file mode 100644 index 000000000..ec894a2ce --- /dev/null +++ b/src/IconDirectionsSubwayFilledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsSubwayFilledSharp as default } diff --git a/src/IconDirectionsSubwayFilledTwoTone.tsx b/src/IconDirectionsSubwayFilledTwoTone.tsx new file mode 100644 index 000000000..935444103 --- /dev/null +++ b/src/IconDirectionsSubwayFilledTwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayFilledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDirectionsSubwayFilledTwoTone as default } diff --git a/src/IconDirectionsSubwayOutlined.tsx b/src/IconDirectionsSubwayOutlined.tsx new file mode 100644 index 000000000..60fadb79a --- /dev/null +++ b/src/IconDirectionsSubwayOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDirectionsSubwayOutlined as default } diff --git a/src/IconDirectionsSubwayRound.tsx b/src/IconDirectionsSubwayRound.tsx new file mode 100644 index 000000000..e575fa771 --- /dev/null +++ b/src/IconDirectionsSubwayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsSubwayRound as default } diff --git a/src/IconDirectionsSubwaySharp.tsx b/src/IconDirectionsSubwaySharp.tsx new file mode 100644 index 000000000..832013b11 --- /dev/null +++ b/src/IconDirectionsSubwaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsSubwaySharp as default } diff --git a/src/IconDirectionsSubwayTwoTone.tsx b/src/IconDirectionsSubwayTwoTone.tsx new file mode 100644 index 000000000..3799cc51c --- /dev/null +++ b/src/IconDirectionsSubwayTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDirectionsSubwayTwoTone as default } diff --git a/src/IconDirectionsTransitFilledOutlined.tsx b/src/IconDirectionsTransitFilledOutlined.tsx new file mode 100644 index 000000000..0f279a17c --- /dev/null +++ b/src/IconDirectionsTransitFilledOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitFilledOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirectionsTransitFilledOutlined as default } diff --git a/src/IconDirectionsTransitFilledRound.tsx b/src/IconDirectionsTransitFilledRound.tsx new file mode 100644 index 000000000..3ec2d8ece --- /dev/null +++ b/src/IconDirectionsTransitFilledRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitFilledRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsTransitFilledRound as default } diff --git a/src/IconDirectionsTransitFilledSharp.tsx b/src/IconDirectionsTransitFilledSharp.tsx new file mode 100644 index 000000000..56754c8d5 --- /dev/null +++ b/src/IconDirectionsTransitFilledSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitFilledSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirectionsTransitFilledSharp as default } diff --git a/src/IconDirectionsTransitFilledTwoTone.tsx b/src/IconDirectionsTransitFilledTwoTone.tsx new file mode 100644 index 000000000..6d30656be --- /dev/null +++ b/src/IconDirectionsTransitFilledTwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitFilledTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDirectionsTransitFilledTwoTone as default } diff --git a/src/IconDirectionsTransitOutlined.tsx b/src/IconDirectionsTransitOutlined.tsx new file mode 100644 index 000000000..f2170248b --- /dev/null +++ b/src/IconDirectionsTransitOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDirectionsTransitOutlined as default } diff --git a/src/IconDirectionsTransitRound.tsx b/src/IconDirectionsTransitRound.tsx new file mode 100644 index 000000000..d26955e04 --- /dev/null +++ b/src/IconDirectionsTransitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsTransitRound as default } diff --git a/src/IconDirectionsTransitSharp.tsx b/src/IconDirectionsTransitSharp.tsx new file mode 100644 index 000000000..b3daa8bbe --- /dev/null +++ b/src/IconDirectionsTransitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsTransitSharp as default } diff --git a/src/IconDirectionsTransitTwoTone.tsx b/src/IconDirectionsTransitTwoTone.tsx new file mode 100644 index 000000000..9722f5256 --- /dev/null +++ b/src/IconDirectionsTransitTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTransitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDirectionsTransitTwoTone as default } diff --git a/src/IconDirectionsTwoTone.tsx b/src/IconDirectionsTwoTone.tsx new file mode 100644 index 000000000..92fae9690 --- /dev/null +++ b/src/IconDirectionsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDirectionsTwoTone as default } diff --git a/src/IconDirectionsWalkOutlined.tsx b/src/IconDirectionsWalkOutlined.tsx new file mode 100644 index 000000000..246a089be --- /dev/null +++ b/src/IconDirectionsWalkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsWalkOutlined as default } diff --git a/src/IconDirectionsWalkRound.tsx b/src/IconDirectionsWalkRound.tsx new file mode 100644 index 000000000..c74f59355 --- /dev/null +++ b/src/IconDirectionsWalkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsWalkRound as default } diff --git a/src/IconDirectionsWalkSharp.tsx b/src/IconDirectionsWalkSharp.tsx new file mode 100644 index 000000000..b919e2a32 --- /dev/null +++ b/src/IconDirectionsWalkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsWalkSharp as default } diff --git a/src/IconDirectionsWalkTwoTone.tsx b/src/IconDirectionsWalkTwoTone.tsx new file mode 100644 index 000000000..2fa29baa4 --- /dev/null +++ b/src/IconDirectionsWalkTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDirectionsWalkTwoTone as default } diff --git a/src/IconDirtyLensOutlined.tsx b/src/IconDirtyLensOutlined.tsx new file mode 100644 index 000000000..1418f65cb --- /dev/null +++ b/src/IconDirtyLensOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDirtyLensOutlined as default } diff --git a/src/IconDirtyLensRound.tsx b/src/IconDirtyLensRound.tsx new file mode 100644 index 000000000..fce0e29fd --- /dev/null +++ b/src/IconDirtyLensRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirtyLensRound as default } diff --git a/src/IconDirtyLensSharp.tsx b/src/IconDirtyLensSharp.tsx new file mode 100644 index 000000000..e19101393 --- /dev/null +++ b/src/IconDirtyLensSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDirtyLensSharp as default } diff --git a/src/IconDirtyLensTwoTone.tsx b/src/IconDirtyLensTwoTone.tsx new file mode 100644 index 000000000..29511512b --- /dev/null +++ b/src/IconDirtyLensTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDirtyLensTwoTone as default } diff --git a/src/IconDisabledByDefaultOutlined.tsx b/src/IconDisabledByDefaultOutlined.tsx new file mode 100644 index 000000000..23910a36e --- /dev/null +++ b/src/IconDisabledByDefaultOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledByDefaultOutlined as default } diff --git a/src/IconDisabledByDefaultRound.tsx b/src/IconDisabledByDefaultRound.tsx new file mode 100644 index 000000000..605911e12 --- /dev/null +++ b/src/IconDisabledByDefaultRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledByDefaultRound as default } diff --git a/src/IconDisabledByDefaultSharp.tsx b/src/IconDisabledByDefaultSharp.tsx new file mode 100644 index 000000000..4f8a2cdd4 --- /dev/null +++ b/src/IconDisabledByDefaultSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledByDefaultSharp as default } diff --git a/src/IconDisabledByDefaultTwoTone.tsx b/src/IconDisabledByDefaultTwoTone.tsx new file mode 100644 index 000000000..b7f4ed251 --- /dev/null +++ b/src/IconDisabledByDefaultTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDisabledByDefaultTwoTone as default } diff --git a/src/IconDisabledVisibleOutlined.tsx b/src/IconDisabledVisibleOutlined.tsx new file mode 100644 index 000000000..add370fa3 --- /dev/null +++ b/src/IconDisabledVisibleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledVisibleOutlined as default } diff --git a/src/IconDisabledVisibleRound.tsx b/src/IconDisabledVisibleRound.tsx new file mode 100644 index 000000000..f5d47cc3d --- /dev/null +++ b/src/IconDisabledVisibleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledVisibleRound as default } diff --git a/src/IconDisabledVisibleSharp.tsx b/src/IconDisabledVisibleSharp.tsx new file mode 100644 index 000000000..2a137de41 --- /dev/null +++ b/src/IconDisabledVisibleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDisabledVisibleSharp as default } diff --git a/src/IconDisabledVisibleTwoTone.tsx b/src/IconDisabledVisibleTwoTone.tsx new file mode 100644 index 000000000..d49625f24 --- /dev/null +++ b/src/IconDisabledVisibleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDisabledVisibleTwoTone as default } diff --git a/src/IconDiscFullOutlined.tsx b/src/IconDiscFullOutlined.tsx new file mode 100644 index 000000000..acbf79197 --- /dev/null +++ b/src/IconDiscFullOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDiscFullOutlined as default } diff --git a/src/IconDiscFullRound.tsx b/src/IconDiscFullRound.tsx new file mode 100644 index 000000000..7fb40fece --- /dev/null +++ b/src/IconDiscFullRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDiscFullRound as default } diff --git a/src/IconDiscFullSharp.tsx b/src/IconDiscFullSharp.tsx new file mode 100644 index 000000000..868910b08 --- /dev/null +++ b/src/IconDiscFullSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDiscFullSharp as default } diff --git a/src/IconDiscFullTwoTone.tsx b/src/IconDiscFullTwoTone.tsx new file mode 100644 index 000000000..4533fc29b --- /dev/null +++ b/src/IconDiscFullTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDiscFullTwoTone as default } diff --git a/src/IconDiscountOutlined.tsx b/src/IconDiscountOutlined.tsx new file mode 100644 index 000000000..447e912c2 --- /dev/null +++ b/src/IconDiscountOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscountOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDiscountOutlined as default } diff --git a/src/IconDiscountRound.tsx b/src/IconDiscountRound.tsx new file mode 100644 index 000000000..6ab9aacb2 --- /dev/null +++ b/src/IconDiscountRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscountRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDiscountRound as default } diff --git a/src/IconDiscountSharp.tsx b/src/IconDiscountSharp.tsx new file mode 100644 index 000000000..611e79d1a --- /dev/null +++ b/src/IconDiscountSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscountSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiscountSharp as default } diff --git a/src/IconDiscountTwoTone.tsx b/src/IconDiscountTwoTone.tsx new file mode 100644 index 000000000..371148627 --- /dev/null +++ b/src/IconDiscountTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscountTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiscountTwoTone as default } diff --git a/src/IconDisplaySettingsOutlined.tsx b/src/IconDisplaySettingsOutlined.tsx new file mode 100644 index 000000000..f35de094e --- /dev/null +++ b/src/IconDisplaySettingsOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDisplaySettingsOutlined as default } diff --git a/src/IconDisplaySettingsRound.tsx b/src/IconDisplaySettingsRound.tsx new file mode 100644 index 000000000..a674370d1 --- /dev/null +++ b/src/IconDisplaySettingsRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDisplaySettingsRound as default } diff --git a/src/IconDisplaySettingsSharp.tsx b/src/IconDisplaySettingsSharp.tsx new file mode 100644 index 000000000..698a573b2 --- /dev/null +++ b/src/IconDisplaySettingsSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDisplaySettingsSharp as default } diff --git a/src/IconDisplaySettingsTwoTone.tsx b/src/IconDisplaySettingsTwoTone.tsx new file mode 100644 index 000000000..f7cfe7de7 --- /dev/null +++ b/src/IconDisplaySettingsTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDisplaySettingsTwoTone as default } diff --git a/src/IconDiversity1Outlined.tsx b/src/IconDiversity1Outlined.tsx new file mode 100644 index 000000000..d0f03620e --- /dev/null +++ b/src/IconDiversity1Outlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDiversity1Outlined as default } diff --git a/src/IconDiversity1Round.tsx b/src/IconDiversity1Round.tsx new file mode 100644 index 000000000..fb6d2f1b5 --- /dev/null +++ b/src/IconDiversity1Round.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconDiversity1Round as default } diff --git a/src/IconDiversity1Sharp.tsx b/src/IconDiversity1Sharp.tsx new file mode 100644 index 000000000..f4eaa2af9 --- /dev/null +++ b/src/IconDiversity1Sharp.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconDiversity1Sharp as default } diff --git a/src/IconDiversity1TwoTone.tsx b/src/IconDiversity1TwoTone.tsx new file mode 100644 index 000000000..3c6d75a9f --- /dev/null +++ b/src/IconDiversity1TwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconDiversity1TwoTone as default } diff --git a/src/IconDiversity2Outlined.tsx b/src/IconDiversity2Outlined.tsx new file mode 100644 index 000000000..6322d6c25 --- /dev/null +++ b/src/IconDiversity2Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDiversity2Outlined as default } diff --git a/src/IconDiversity2Round.tsx b/src/IconDiversity2Round.tsx new file mode 100644 index 000000000..e71e443a7 --- /dev/null +++ b/src/IconDiversity2Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDiversity2Round as default } diff --git a/src/IconDiversity2Sharp.tsx b/src/IconDiversity2Sharp.tsx new file mode 100644 index 000000000..6288e3491 --- /dev/null +++ b/src/IconDiversity2Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDiversity2Sharp as default } diff --git a/src/IconDiversity2TwoTone.tsx b/src/IconDiversity2TwoTone.tsx new file mode 100644 index 000000000..2d568de15 --- /dev/null +++ b/src/IconDiversity2TwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiversity2TwoTone as default } diff --git a/src/IconDiversity3Outlined.tsx b/src/IconDiversity3Outlined.tsx new file mode 100644 index 000000000..31cdc75e4 --- /dev/null +++ b/src/IconDiversity3Outlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDiversity3Outlined as default } diff --git a/src/IconDiversity3Round.tsx b/src/IconDiversity3Round.tsx new file mode 100644 index 000000000..6dbf5286c --- /dev/null +++ b/src/IconDiversity3Round.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconDiversity3Round as default } diff --git a/src/IconDiversity3Sharp.tsx b/src/IconDiversity3Sharp.tsx new file mode 100644 index 000000000..f1876f47d --- /dev/null +++ b/src/IconDiversity3Sharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDiversity3Sharp as default } diff --git a/src/IconDiversity3TwoTone.tsx b/src/IconDiversity3TwoTone.tsx new file mode 100644 index 000000000..d22066ab0 --- /dev/null +++ b/src/IconDiversity3TwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDiversity3TwoTone as default } diff --git a/src/IconDnsOutlined.tsx b/src/IconDnsOutlined.tsx new file mode 100644 index 000000000..89c98f299 --- /dev/null +++ b/src/IconDnsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDnsOutlined as default } diff --git a/src/IconDnsRound.tsx b/src/IconDnsRound.tsx new file mode 100644 index 000000000..644b3b8ae --- /dev/null +++ b/src/IconDnsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDnsRound as default } diff --git a/src/IconDnsSharp.tsx b/src/IconDnsSharp.tsx new file mode 100644 index 000000000..044a3f01b --- /dev/null +++ b/src/IconDnsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDnsSharp as default } diff --git a/src/IconDnsTwoTone.tsx b/src/IconDnsTwoTone.tsx new file mode 100644 index 000000000..b0e02b2c9 --- /dev/null +++ b/src/IconDnsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDnsTwoTone as default } diff --git a/src/IconDoDisturbAltOutlined.tsx b/src/IconDoDisturbAltOutlined.tsx new file mode 100644 index 000000000..0eb610c1f --- /dev/null +++ b/src/IconDoDisturbAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbAltOutlined as default } diff --git a/src/IconDoDisturbAltRound.tsx b/src/IconDoDisturbAltRound.tsx new file mode 100644 index 000000000..2f2d2c70a --- /dev/null +++ b/src/IconDoDisturbAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbAltRound as default } diff --git a/src/IconDoDisturbAltSharp.tsx b/src/IconDoDisturbAltSharp.tsx new file mode 100644 index 000000000..3ee80e819 --- /dev/null +++ b/src/IconDoDisturbAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbAltSharp as default } diff --git a/src/IconDoDisturbAltTwoTone.tsx b/src/IconDoDisturbAltTwoTone.tsx new file mode 100644 index 000000000..cf3b21b30 --- /dev/null +++ b/src/IconDoDisturbAltTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbAltTwoTone as default } diff --git a/src/IconDoDisturbOffOutlined.tsx b/src/IconDoDisturbOffOutlined.tsx new file mode 100644 index 000000000..bd3a5c130 --- /dev/null +++ b/src/IconDoDisturbOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOffOutlined as default } diff --git a/src/IconDoDisturbOffRound.tsx b/src/IconDoDisturbOffRound.tsx new file mode 100644 index 000000000..873f8dbc3 --- /dev/null +++ b/src/IconDoDisturbOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOffRound as default } diff --git a/src/IconDoDisturbOffSharp.tsx b/src/IconDoDisturbOffSharp.tsx new file mode 100644 index 000000000..367c05f16 --- /dev/null +++ b/src/IconDoDisturbOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOffSharp as default } diff --git a/src/IconDoDisturbOffTwoTone.tsx b/src/IconDoDisturbOffTwoTone.tsx new file mode 100644 index 000000000..900078539 --- /dev/null +++ b/src/IconDoDisturbOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDoDisturbOffTwoTone as default } diff --git a/src/IconDoDisturbOnOutlined.tsx b/src/IconDoDisturbOnOutlined.tsx new file mode 100644 index 000000000..f86992c3e --- /dev/null +++ b/src/IconDoDisturbOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOnOutlined as default } diff --git a/src/IconDoDisturbOnRound.tsx b/src/IconDoDisturbOnRound.tsx new file mode 100644 index 000000000..ea06d4679 --- /dev/null +++ b/src/IconDoDisturbOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOnRound as default } diff --git a/src/IconDoDisturbOnSharp.tsx b/src/IconDoDisturbOnSharp.tsx new file mode 100644 index 000000000..f9d4bca05 --- /dev/null +++ b/src/IconDoDisturbOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOnSharp as default } diff --git a/src/IconDoDisturbOnTwoTone.tsx b/src/IconDoDisturbOnTwoTone.tsx new file mode 100644 index 000000000..067c27f04 --- /dev/null +++ b/src/IconDoDisturbOnTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDoDisturbOnTwoTone as default } diff --git a/src/IconDoDisturbOutlined.tsx b/src/IconDoDisturbOutlined.tsx new file mode 100644 index 000000000..c3d6c9598 --- /dev/null +++ b/src/IconDoDisturbOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbOutlined as default } diff --git a/src/IconDoDisturbRound.tsx b/src/IconDoDisturbRound.tsx new file mode 100644 index 000000000..2ea1b28ae --- /dev/null +++ b/src/IconDoDisturbRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbRound as default } diff --git a/src/IconDoDisturbSharp.tsx b/src/IconDoDisturbSharp.tsx new file mode 100644 index 000000000..4cb5c1bc3 --- /dev/null +++ b/src/IconDoDisturbSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbSharp as default } diff --git a/src/IconDoDisturbTwoTone.tsx b/src/IconDoDisturbTwoTone.tsx new file mode 100644 index 000000000..7142444ac --- /dev/null +++ b/src/IconDoDisturbTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoDisturbTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoDisturbTwoTone as default } diff --git a/src/IconDoNotDisturbAltOutlined.tsx b/src/IconDoNotDisturbAltOutlined.tsx new file mode 100644 index 000000000..fa3ff834b --- /dev/null +++ b/src/IconDoNotDisturbAltOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbAltOutlined as default } diff --git a/src/IconDoNotDisturbAltRound.tsx b/src/IconDoNotDisturbAltRound.tsx new file mode 100644 index 000000000..fea9b5f23 --- /dev/null +++ b/src/IconDoNotDisturbAltRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbAltRound as default } diff --git a/src/IconDoNotDisturbAltSharp.tsx b/src/IconDoNotDisturbAltSharp.tsx new file mode 100644 index 000000000..0f1518861 --- /dev/null +++ b/src/IconDoNotDisturbAltSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbAltSharp as default } diff --git a/src/IconDoNotDisturbAltTwoTone.tsx b/src/IconDoNotDisturbAltTwoTone.tsx new file mode 100644 index 000000000..474a66b2a --- /dev/null +++ b/src/IconDoNotDisturbAltTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbAltTwoTone as default } diff --git a/src/IconDoNotDisturbOffOutlined.tsx b/src/IconDoNotDisturbOffOutlined.tsx new file mode 100644 index 000000000..d54865f65 --- /dev/null +++ b/src/IconDoNotDisturbOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbOffOutlined as default } diff --git a/src/IconDoNotDisturbOffRound.tsx b/src/IconDoNotDisturbOffRound.tsx new file mode 100644 index 000000000..88936fca7 --- /dev/null +++ b/src/IconDoNotDisturbOffRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoNotDisturbOffRound as default } diff --git a/src/IconDoNotDisturbOffSharp.tsx b/src/IconDoNotDisturbOffSharp.tsx new file mode 100644 index 000000000..915f35a6f --- /dev/null +++ b/src/IconDoNotDisturbOffSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoNotDisturbOffSharp as default } diff --git a/src/IconDoNotDisturbOffTwoTone.tsx b/src/IconDoNotDisturbOffTwoTone.tsx new file mode 100644 index 000000000..76dd915f8 --- /dev/null +++ b/src/IconDoNotDisturbOffTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDoNotDisturbOffTwoTone as default } diff --git a/src/IconDoNotDisturbOnOutlined.tsx b/src/IconDoNotDisturbOnOutlined.tsx new file mode 100644 index 000000000..5f0a9573a --- /dev/null +++ b/src/IconDoNotDisturbOnOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnOutlined as default } diff --git a/src/IconDoNotDisturbOnRound.tsx b/src/IconDoNotDisturbOnRound.tsx new file mode 100644 index 000000000..e63d63456 --- /dev/null +++ b/src/IconDoNotDisturbOnRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnRound as default } diff --git a/src/IconDoNotDisturbOnSharp.tsx b/src/IconDoNotDisturbOnSharp.tsx new file mode 100644 index 000000000..16542d9e1 --- /dev/null +++ b/src/IconDoNotDisturbOnSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnSharp as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx b/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx new file mode 100644 index 000000000..c8a2a0cfd --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnTotalSilenceOutlined as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceRound.tsx b/src/IconDoNotDisturbOnTotalSilenceRound.tsx new file mode 100644 index 000000000..04cd6f243 --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnTotalSilenceRound as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceSharp.tsx b/src/IconDoNotDisturbOnTotalSilenceSharp.tsx new file mode 100644 index 000000000..dbe771a69 --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnTotalSilenceSharp as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceTwoTone.tsx b/src/IconDoNotDisturbOnTotalSilenceTwoTone.tsx new file mode 100644 index 000000000..d2114ad51 --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDoNotDisturbOnTotalSilenceTwoTone as default } diff --git a/src/IconDoNotDisturbOnTwoTone.tsx b/src/IconDoNotDisturbOnTwoTone.tsx new file mode 100644 index 000000000..b5fa65fe1 --- /dev/null +++ b/src/IconDoNotDisturbOnTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDoNotDisturbOnTwoTone as default } diff --git a/src/IconDoNotDisturbOutlined.tsx b/src/IconDoNotDisturbOutlined.tsx new file mode 100644 index 000000000..e4d204219 --- /dev/null +++ b/src/IconDoNotDisturbOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbOutlined as default } diff --git a/src/IconDoNotDisturbRound.tsx b/src/IconDoNotDisturbRound.tsx new file mode 100644 index 000000000..b9e8404cf --- /dev/null +++ b/src/IconDoNotDisturbRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbRound as default } diff --git a/src/IconDoNotDisturbSharp.tsx b/src/IconDoNotDisturbSharp.tsx new file mode 100644 index 000000000..f3e59d1ee --- /dev/null +++ b/src/IconDoNotDisturbSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbSharp as default } diff --git a/src/IconDoNotDisturbTwoTone.tsx b/src/IconDoNotDisturbTwoTone.tsx new file mode 100644 index 000000000..9fc8195d2 --- /dev/null +++ b/src/IconDoNotDisturbTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoNotDisturbTwoTone as default } diff --git a/src/IconDoNotStepOutlined.tsx b/src/IconDoNotStepOutlined.tsx new file mode 100644 index 000000000..0fa3fa242 --- /dev/null +++ b/src/IconDoNotStepOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotStepOutlined as default } diff --git a/src/IconDoNotStepRound.tsx b/src/IconDoNotStepRound.tsx new file mode 100644 index 000000000..9c6b8d388 --- /dev/null +++ b/src/IconDoNotStepRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotStepRound as default } diff --git a/src/IconDoNotStepSharp.tsx b/src/IconDoNotStepSharp.tsx new file mode 100644 index 000000000..16ae3a9f6 --- /dev/null +++ b/src/IconDoNotStepSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotStepSharp as default } diff --git a/src/IconDoNotStepTwoTone.tsx b/src/IconDoNotStepTwoTone.tsx new file mode 100644 index 000000000..262cdaa2b --- /dev/null +++ b/src/IconDoNotStepTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDoNotStepTwoTone as default } diff --git a/src/IconDoNotTouchOutlined.tsx b/src/IconDoNotTouchOutlined.tsx new file mode 100644 index 000000000..f03d7326c --- /dev/null +++ b/src/IconDoNotTouchOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotTouchOutlined as default } diff --git a/src/IconDoNotTouchRound.tsx b/src/IconDoNotTouchRound.tsx new file mode 100644 index 000000000..48be00313 --- /dev/null +++ b/src/IconDoNotTouchRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotTouchRound as default } diff --git a/src/IconDoNotTouchSharp.tsx b/src/IconDoNotTouchSharp.tsx new file mode 100644 index 000000000..5b53efff4 --- /dev/null +++ b/src/IconDoNotTouchSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDoNotTouchSharp as default } diff --git a/src/IconDoNotTouchTwoTone.tsx b/src/IconDoNotTouchTwoTone.tsx new file mode 100644 index 000000000..9960429f3 --- /dev/null +++ b/src/IconDoNotTouchTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDoNotTouchTwoTone as default } diff --git a/src/IconDockOutlined.tsx b/src/IconDockOutlined.tsx new file mode 100644 index 000000000..707db4373 --- /dev/null +++ b/src/IconDockOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDockOutlined as default } diff --git a/src/IconDockRound.tsx b/src/IconDockRound.tsx new file mode 100644 index 000000000..2e8c537e2 --- /dev/null +++ b/src/IconDockRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockRound as default } diff --git a/src/IconDockSharp.tsx b/src/IconDockSharp.tsx new file mode 100644 index 000000000..f8742ff47 --- /dev/null +++ b/src/IconDockSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDockSharp as default } diff --git a/src/IconDockTwoTone.tsx b/src/IconDockTwoTone.tsx new file mode 100644 index 000000000..b25603c2f --- /dev/null +++ b/src/IconDockTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDockTwoTone as default } diff --git a/src/IconDocumentScannerOutlined.tsx b/src/IconDocumentScannerOutlined.tsx new file mode 100644 index 000000000..64fb690e1 --- /dev/null +++ b/src/IconDocumentScannerOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDocumentScannerOutlined as default } diff --git a/src/IconDocumentScannerRound.tsx b/src/IconDocumentScannerRound.tsx new file mode 100644 index 000000000..e4c331670 --- /dev/null +++ b/src/IconDocumentScannerRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDocumentScannerRound as default } diff --git a/src/IconDocumentScannerSharp.tsx b/src/IconDocumentScannerSharp.tsx new file mode 100644 index 000000000..235b269c8 --- /dev/null +++ b/src/IconDocumentScannerSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDocumentScannerSharp as default } diff --git a/src/IconDocumentScannerTwoTone.tsx b/src/IconDocumentScannerTwoTone.tsx new file mode 100644 index 000000000..87925bc00 --- /dev/null +++ b/src/IconDocumentScannerTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDocumentScannerTwoTone as default } diff --git a/src/IconDomainAddOutlined.tsx b/src/IconDomainAddOutlined.tsx new file mode 100644 index 000000000..43135f59b --- /dev/null +++ b/src/IconDomainAddOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDomainAddOutlined as default } diff --git a/src/IconDomainAddRound.tsx b/src/IconDomainAddRound.tsx new file mode 100644 index 000000000..05f812439 --- /dev/null +++ b/src/IconDomainAddRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDomainAddRound as default } diff --git a/src/IconDomainAddSharp.tsx b/src/IconDomainAddSharp.tsx new file mode 100644 index 000000000..4e9e40805 --- /dev/null +++ b/src/IconDomainAddSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDomainAddSharp as default } diff --git a/src/IconDomainAddTwoTone.tsx b/src/IconDomainAddTwoTone.tsx new file mode 100644 index 000000000..3b25e37a1 --- /dev/null +++ b/src/IconDomainAddTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconDomainAddTwoTone as default } diff --git a/src/IconDomainDisabledOutlined.tsx b/src/IconDomainDisabledOutlined.tsx new file mode 100644 index 000000000..842527c62 --- /dev/null +++ b/src/IconDomainDisabledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainDisabledOutlined as default } diff --git a/src/IconDomainDisabledRound.tsx b/src/IconDomainDisabledRound.tsx new file mode 100644 index 000000000..d2e826947 --- /dev/null +++ b/src/IconDomainDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainDisabledRound as default } diff --git a/src/IconDomainDisabledSharp.tsx b/src/IconDomainDisabledSharp.tsx new file mode 100644 index 000000000..08d9cfc20 --- /dev/null +++ b/src/IconDomainDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainDisabledSharp as default } diff --git a/src/IconDomainDisabledTwoTone.tsx b/src/IconDomainDisabledTwoTone.tsx new file mode 100644 index 000000000..b8d07f969 --- /dev/null +++ b/src/IconDomainDisabledTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDomainDisabledTwoTone as default } diff --git a/src/IconDomainOutlined.tsx b/src/IconDomainOutlined.tsx new file mode 100644 index 000000000..c1f27339e --- /dev/null +++ b/src/IconDomainOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainOutlined as default } diff --git a/src/IconDomainRound.tsx b/src/IconDomainRound.tsx new file mode 100644 index 000000000..a4773d2a3 --- /dev/null +++ b/src/IconDomainRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainRound as default } diff --git a/src/IconDomainSharp.tsx b/src/IconDomainSharp.tsx new file mode 100644 index 000000000..ec0d1a20a --- /dev/null +++ b/src/IconDomainSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDomainSharp as default } diff --git a/src/IconDomainTwoTone.tsx b/src/IconDomainTwoTone.tsx new file mode 100644 index 000000000..3465081f7 --- /dev/null +++ b/src/IconDomainTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDomainTwoTone as default } diff --git a/src/IconDomainVerificationOutlined.tsx b/src/IconDomainVerificationOutlined.tsx new file mode 100644 index 000000000..271c611be --- /dev/null +++ b/src/IconDomainVerificationOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDomainVerificationOutlined as default } diff --git a/src/IconDomainVerificationRound.tsx b/src/IconDomainVerificationRound.tsx new file mode 100644 index 000000000..09f076fc6 --- /dev/null +++ b/src/IconDomainVerificationRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDomainVerificationRound as default } diff --git a/src/IconDomainVerificationSharp.tsx b/src/IconDomainVerificationSharp.tsx new file mode 100644 index 000000000..7931a691b --- /dev/null +++ b/src/IconDomainVerificationSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDomainVerificationSharp as default } diff --git a/src/IconDomainVerificationTwoTone.tsx b/src/IconDomainVerificationTwoTone.tsx new file mode 100644 index 000000000..0a8c910e3 --- /dev/null +++ b/src/IconDomainVerificationTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDomainVerificationTwoTone as default } diff --git a/src/IconDoneAllOutlined.tsx b/src/IconDoneAllOutlined.tsx new file mode 100644 index 000000000..1fcaefd9d --- /dev/null +++ b/src/IconDoneAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneAllOutlined as default } diff --git a/src/IconDoneAllRound.tsx b/src/IconDoneAllRound.tsx new file mode 100644 index 000000000..9605894ec --- /dev/null +++ b/src/IconDoneAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneAllRound as default } diff --git a/src/IconDoneAllSharp.tsx b/src/IconDoneAllSharp.tsx new file mode 100644 index 000000000..e14471f59 --- /dev/null +++ b/src/IconDoneAllSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneAllSharp as default } diff --git a/src/IconDoneAllTwoTone.tsx b/src/IconDoneAllTwoTone.tsx new file mode 100644 index 000000000..425a6e565 --- /dev/null +++ b/src/IconDoneAllTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneAllTwoTone as default } diff --git a/src/IconDoneOutlineOutlined.tsx b/src/IconDoneOutlineOutlined.tsx new file mode 100644 index 000000000..f30ddb180 --- /dev/null +++ b/src/IconDoneOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneOutlineOutlined as default } diff --git a/src/IconDoneOutlineRound.tsx b/src/IconDoneOutlineRound.tsx new file mode 100644 index 000000000..584792194 --- /dev/null +++ b/src/IconDoneOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneOutlineRound as default } diff --git a/src/IconDoneOutlineSharp.tsx b/src/IconDoneOutlineSharp.tsx new file mode 100644 index 000000000..78c0ce41e --- /dev/null +++ b/src/IconDoneOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneOutlineSharp as default } diff --git a/src/IconDoneOutlineTwoTone.tsx b/src/IconDoneOutlineTwoTone.tsx new file mode 100644 index 000000000..e0df7682e --- /dev/null +++ b/src/IconDoneOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneOutlineTwoTone as default } diff --git a/src/IconDoneOutlined.tsx b/src/IconDoneOutlined.tsx new file mode 100644 index 000000000..a73a25685 --- /dev/null +++ b/src/IconDoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneOutlined as default } diff --git a/src/IconDoneRound.tsx b/src/IconDoneRound.tsx new file mode 100644 index 000000000..eb48f95f2 --- /dev/null +++ b/src/IconDoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneRound as default } diff --git a/src/IconDoneSharp.tsx b/src/IconDoneSharp.tsx new file mode 100644 index 000000000..b30d933d9 --- /dev/null +++ b/src/IconDoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneSharp as default } diff --git a/src/IconDoneTwoTone.tsx b/src/IconDoneTwoTone.tsx new file mode 100644 index 000000000..2c255149b --- /dev/null +++ b/src/IconDoneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDoneTwoTone as default } diff --git a/src/IconDonutLargeOutlined.tsx b/src/IconDonutLargeOutlined.tsx new file mode 100644 index 000000000..2589a46ad --- /dev/null +++ b/src/IconDonutLargeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutLargeOutlined as default } diff --git a/src/IconDonutLargeRound.tsx b/src/IconDonutLargeRound.tsx new file mode 100644 index 000000000..3efad2d73 --- /dev/null +++ b/src/IconDonutLargeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutLargeRound as default } diff --git a/src/IconDonutLargeSharp.tsx b/src/IconDonutLargeSharp.tsx new file mode 100644 index 000000000..0ce2b0941 --- /dev/null +++ b/src/IconDonutLargeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutLargeSharp as default } diff --git a/src/IconDonutLargeTwoTone.tsx b/src/IconDonutLargeTwoTone.tsx new file mode 100644 index 000000000..718ac62ba --- /dev/null +++ b/src/IconDonutLargeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutLargeTwoTone as default } diff --git a/src/IconDonutSmallOutlined.tsx b/src/IconDonutSmallOutlined.tsx new file mode 100644 index 000000000..881500034 --- /dev/null +++ b/src/IconDonutSmallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutSmallOutlined as default } diff --git a/src/IconDonutSmallRound.tsx b/src/IconDonutSmallRound.tsx new file mode 100644 index 000000000..d28563302 --- /dev/null +++ b/src/IconDonutSmallRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutSmallRound as default } diff --git a/src/IconDonutSmallSharp.tsx b/src/IconDonutSmallSharp.tsx new file mode 100644 index 000000000..37406020a --- /dev/null +++ b/src/IconDonutSmallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDonutSmallSharp as default } diff --git a/src/IconDonutSmallTwoTone.tsx b/src/IconDonutSmallTwoTone.tsx new file mode 100644 index 000000000..2f0ccd0bd --- /dev/null +++ b/src/IconDonutSmallTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDonutSmallTwoTone as default } diff --git a/src/IconDoorBackOutlined.tsx b/src/IconDoorBackOutlined.tsx new file mode 100644 index 000000000..1e56ef287 --- /dev/null +++ b/src/IconDoorBackOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDoorBackOutlined as default } diff --git a/src/IconDoorBackRound.tsx b/src/IconDoorBackRound.tsx new file mode 100644 index 000000000..c5a469b8c --- /dev/null +++ b/src/IconDoorBackRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorBackRound as default } diff --git a/src/IconDoorBackSharp.tsx b/src/IconDoorBackSharp.tsx new file mode 100644 index 000000000..813843eb8 --- /dev/null +++ b/src/IconDoorBackSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorBackSharp as default } diff --git a/src/IconDoorBackTwoTone.tsx b/src/IconDoorBackTwoTone.tsx new file mode 100644 index 000000000..2aad2f0de --- /dev/null +++ b/src/IconDoorBackTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoorBackTwoTone as default } diff --git a/src/IconDoorFrontOutlined.tsx b/src/IconDoorFrontOutlined.tsx new file mode 100644 index 000000000..ea83474b6 --- /dev/null +++ b/src/IconDoorFrontOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorFrontOutlined as default } diff --git a/src/IconDoorFrontRound.tsx b/src/IconDoorFrontRound.tsx new file mode 100644 index 000000000..48a8d166f --- /dev/null +++ b/src/IconDoorFrontRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorFrontRound as default } diff --git a/src/IconDoorFrontSharp.tsx b/src/IconDoorFrontSharp.tsx new file mode 100644 index 000000000..2aad19457 --- /dev/null +++ b/src/IconDoorFrontSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorFrontSharp as default } diff --git a/src/IconDoorFrontTwoTone.tsx b/src/IconDoorFrontTwoTone.tsx new file mode 100644 index 000000000..db267a1b7 --- /dev/null +++ b/src/IconDoorFrontTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoorFrontTwoTone as default } diff --git a/src/IconDoorSlidingOutlined.tsx b/src/IconDoorSlidingOutlined.tsx new file mode 100644 index 000000000..5966fc6c9 --- /dev/null +++ b/src/IconDoorSlidingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorSlidingOutlined as default } diff --git a/src/IconDoorSlidingRound.tsx b/src/IconDoorSlidingRound.tsx new file mode 100644 index 000000000..342c02083 --- /dev/null +++ b/src/IconDoorSlidingRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorSlidingRound as default } diff --git a/src/IconDoorSlidingSharp.tsx b/src/IconDoorSlidingSharp.tsx new file mode 100644 index 000000000..10e1a7bad --- /dev/null +++ b/src/IconDoorSlidingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorSlidingSharp as default } diff --git a/src/IconDoorSlidingTwoTone.tsx b/src/IconDoorSlidingTwoTone.tsx new file mode 100644 index 000000000..cb1e214ea --- /dev/null +++ b/src/IconDoorSlidingTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDoorSlidingTwoTone as default } diff --git a/src/IconDoorbellOutlined.tsx b/src/IconDoorbellOutlined.tsx new file mode 100644 index 000000000..31d794f3d --- /dev/null +++ b/src/IconDoorbellOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorbellOutlined as default } diff --git a/src/IconDoorbellRound.tsx b/src/IconDoorbellRound.tsx new file mode 100644 index 000000000..46d5b3ccc --- /dev/null +++ b/src/IconDoorbellRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorbellRound as default } diff --git a/src/IconDoorbellSharp.tsx b/src/IconDoorbellSharp.tsx new file mode 100644 index 000000000..5ce337ffb --- /dev/null +++ b/src/IconDoorbellSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDoorbellSharp as default } diff --git a/src/IconDoorbellTwoTone.tsx b/src/IconDoorbellTwoTone.tsx new file mode 100644 index 000000000..a5f3fa5f4 --- /dev/null +++ b/src/IconDoorbellTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDoorbellTwoTone as default } diff --git a/src/IconDoubleArrowOutlined.tsx b/src/IconDoubleArrowOutlined.tsx new file mode 100644 index 000000000..aaa623dae --- /dev/null +++ b/src/IconDoubleArrowOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDoubleArrowOutlined as default } diff --git a/src/IconDoubleArrowRound.tsx b/src/IconDoubleArrowRound.tsx new file mode 100644 index 000000000..38aea59c0 --- /dev/null +++ b/src/IconDoubleArrowRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDoubleArrowRound as default } diff --git a/src/IconDoubleArrowSharp.tsx b/src/IconDoubleArrowSharp.tsx new file mode 100644 index 000000000..4e147b89f --- /dev/null +++ b/src/IconDoubleArrowSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDoubleArrowSharp as default } diff --git a/src/IconDoubleArrowTwoTone.tsx b/src/IconDoubleArrowTwoTone.tsx new file mode 100644 index 000000000..37e126e95 --- /dev/null +++ b/src/IconDoubleArrowTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDoubleArrowTwoTone as default } diff --git a/src/IconDownhillSkiingOutlined.tsx b/src/IconDownhillSkiingOutlined.tsx new file mode 100644 index 000000000..ce04de991 --- /dev/null +++ b/src/IconDownhillSkiingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownhillSkiingOutlined as default } diff --git a/src/IconDownhillSkiingRound.tsx b/src/IconDownhillSkiingRound.tsx new file mode 100644 index 000000000..f7460a1f5 --- /dev/null +++ b/src/IconDownhillSkiingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownhillSkiingRound as default } diff --git a/src/IconDownhillSkiingSharp.tsx b/src/IconDownhillSkiingSharp.tsx new file mode 100644 index 000000000..49d4dc5b9 --- /dev/null +++ b/src/IconDownhillSkiingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownhillSkiingSharp as default } diff --git a/src/IconDownhillSkiingTwoTone.tsx b/src/IconDownhillSkiingTwoTone.tsx new file mode 100644 index 000000000..a3fd990a9 --- /dev/null +++ b/src/IconDownhillSkiingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownhillSkiingTwoTone as default } diff --git a/src/IconDownloadDoneOutlined.tsx b/src/IconDownloadDoneOutlined.tsx new file mode 100644 index 000000000..82486e22e --- /dev/null +++ b/src/IconDownloadDoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadDoneOutlined as default } diff --git a/src/IconDownloadDoneRound.tsx b/src/IconDownloadDoneRound.tsx new file mode 100644 index 000000000..195c161b9 --- /dev/null +++ b/src/IconDownloadDoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadDoneRound as default } diff --git a/src/IconDownloadDoneSharp.tsx b/src/IconDownloadDoneSharp.tsx new file mode 100644 index 000000000..2cd7f1cc5 --- /dev/null +++ b/src/IconDownloadDoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadDoneSharp as default } diff --git a/src/IconDownloadDoneTwoTone.tsx b/src/IconDownloadDoneTwoTone.tsx new file mode 100644 index 000000000..154575a0f --- /dev/null +++ b/src/IconDownloadDoneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadDoneTwoTone as default } diff --git a/src/IconDownloadForOfflineOutlined.tsx b/src/IconDownloadForOfflineOutlined.tsx new file mode 100644 index 000000000..78b65d021 --- /dev/null +++ b/src/IconDownloadForOfflineOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDownloadForOfflineOutlined as default } diff --git a/src/IconDownloadForOfflineRound.tsx b/src/IconDownloadForOfflineRound.tsx new file mode 100644 index 000000000..1568e0db1 --- /dev/null +++ b/src/IconDownloadForOfflineRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDownloadForOfflineRound as default } diff --git a/src/IconDownloadForOfflineSharp.tsx b/src/IconDownloadForOfflineSharp.tsx new file mode 100644 index 000000000..a4b179bc3 --- /dev/null +++ b/src/IconDownloadForOfflineSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDownloadForOfflineSharp as default } diff --git a/src/IconDownloadForOfflineTwoTone.tsx b/src/IconDownloadForOfflineTwoTone.tsx new file mode 100644 index 000000000..d6c86615c --- /dev/null +++ b/src/IconDownloadForOfflineTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDownloadForOfflineTwoTone as default } diff --git a/src/IconDownloadOutlined.tsx b/src/IconDownloadOutlined.tsx new file mode 100644 index 000000000..b18915b95 --- /dev/null +++ b/src/IconDownloadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadOutlined as default } diff --git a/src/IconDownloadRound.tsx b/src/IconDownloadRound.tsx new file mode 100644 index 000000000..ecedec647 --- /dev/null +++ b/src/IconDownloadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadRound as default } diff --git a/src/IconDownloadSharp.tsx b/src/IconDownloadSharp.tsx new file mode 100644 index 000000000..fda9e6ccb --- /dev/null +++ b/src/IconDownloadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDownloadSharp as default } diff --git a/src/IconDownloadTwoTone.tsx b/src/IconDownloadTwoTone.tsx new file mode 100644 index 000000000..52d349262 --- /dev/null +++ b/src/IconDownloadTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDownloadTwoTone as default } diff --git a/src/IconDownloadingOutlined.tsx b/src/IconDownloadingOutlined.tsx new file mode 100644 index 000000000..3fceb20b2 --- /dev/null +++ b/src/IconDownloadingOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDownloadingOutlined as default } diff --git a/src/IconDownloadingRound.tsx b/src/IconDownloadingRound.tsx new file mode 100644 index 000000000..92a7f2b19 --- /dev/null +++ b/src/IconDownloadingRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDownloadingRound as default } diff --git a/src/IconDownloadingSharp.tsx b/src/IconDownloadingSharp.tsx new file mode 100644 index 000000000..0833314ae --- /dev/null +++ b/src/IconDownloadingSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDownloadingSharp as default } diff --git a/src/IconDownloadingTwoTone.tsx b/src/IconDownloadingTwoTone.tsx new file mode 100644 index 000000000..dbf35c4a4 --- /dev/null +++ b/src/IconDownloadingTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDownloadingTwoTone as default } diff --git a/src/IconDraftsOutlined.tsx b/src/IconDraftsOutlined.tsx new file mode 100644 index 000000000..8810ef317 --- /dev/null +++ b/src/IconDraftsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDraftsOutlined as default } diff --git a/src/IconDraftsRound.tsx b/src/IconDraftsRound.tsx new file mode 100644 index 000000000..71c877eb2 --- /dev/null +++ b/src/IconDraftsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDraftsRound as default } diff --git a/src/IconDraftsSharp.tsx b/src/IconDraftsSharp.tsx new file mode 100644 index 000000000..90cffaf31 --- /dev/null +++ b/src/IconDraftsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDraftsSharp as default } diff --git a/src/IconDraftsTwoTone.tsx b/src/IconDraftsTwoTone.tsx new file mode 100644 index 000000000..6e602ee78 --- /dev/null +++ b/src/IconDraftsTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDraftsTwoTone as default } diff --git a/src/IconDragHandleOutlined.tsx b/src/IconDragHandleOutlined.tsx new file mode 100644 index 000000000..ee99e90cc --- /dev/null +++ b/src/IconDragHandleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragHandleOutlined as default } diff --git a/src/IconDragHandleRound.tsx b/src/IconDragHandleRound.tsx new file mode 100644 index 000000000..ae4d9081e --- /dev/null +++ b/src/IconDragHandleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragHandleRound as default } diff --git a/src/IconDragHandleSharp.tsx b/src/IconDragHandleSharp.tsx new file mode 100644 index 000000000..be25dfd94 --- /dev/null +++ b/src/IconDragHandleSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragHandleSharp as default } diff --git a/src/IconDragHandleTwoTone.tsx b/src/IconDragHandleTwoTone.tsx new file mode 100644 index 000000000..ac423bb07 --- /dev/null +++ b/src/IconDragHandleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragHandleTwoTone as default } diff --git a/src/IconDragIndicatorOutlined.tsx b/src/IconDragIndicatorOutlined.tsx new file mode 100644 index 000000000..017fde3e8 --- /dev/null +++ b/src/IconDragIndicatorOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragIndicatorOutlined as default } diff --git a/src/IconDragIndicatorRound.tsx b/src/IconDragIndicatorRound.tsx new file mode 100644 index 000000000..74a68f10e --- /dev/null +++ b/src/IconDragIndicatorRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragIndicatorRound as default } diff --git a/src/IconDragIndicatorSharp.tsx b/src/IconDragIndicatorSharp.tsx new file mode 100644 index 000000000..578ea0714 --- /dev/null +++ b/src/IconDragIndicatorSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragIndicatorSharp as default } diff --git a/src/IconDragIndicatorTwoTone.tsx b/src/IconDragIndicatorTwoTone.tsx new file mode 100644 index 000000000..f2dfe375d --- /dev/null +++ b/src/IconDragIndicatorTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDragIndicatorTwoTone as default } diff --git a/src/IconDrawOutlined.tsx b/src/IconDrawOutlined.tsx new file mode 100644 index 000000000..564b4292e --- /dev/null +++ b/src/IconDrawOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDrawOutlined as default } diff --git a/src/IconDrawRound.tsx b/src/IconDrawRound.tsx new file mode 100644 index 000000000..47f9ba22c --- /dev/null +++ b/src/IconDrawRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDrawRound as default } diff --git a/src/IconDrawSharp.tsx b/src/IconDrawSharp.tsx new file mode 100644 index 000000000..553e7cf03 --- /dev/null +++ b/src/IconDrawSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDrawSharp as default } diff --git a/src/IconDrawTwoTone.tsx b/src/IconDrawTwoTone.tsx new file mode 100644 index 000000000..28439b507 --- /dev/null +++ b/src/IconDrawTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDrawTwoTone as default } diff --git a/src/IconDriveEtaOutlined.tsx b/src/IconDriveEtaOutlined.tsx new file mode 100644 index 000000000..50068e157 --- /dev/null +++ b/src/IconDriveEtaOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveEtaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDriveEtaOutlined as default } diff --git a/src/IconDriveEtaRound.tsx b/src/IconDriveEtaRound.tsx new file mode 100644 index 000000000..0e25f798f --- /dev/null +++ b/src/IconDriveEtaRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveEtaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDriveEtaRound as default } diff --git a/src/IconDriveEtaSharp.tsx b/src/IconDriveEtaSharp.tsx new file mode 100644 index 000000000..c9c8640cd --- /dev/null +++ b/src/IconDriveEtaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveEtaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDriveEtaSharp as default } diff --git a/src/IconDriveEtaTwoTone.tsx b/src/IconDriveEtaTwoTone.tsx new file mode 100644 index 000000000..4daa165e2 --- /dev/null +++ b/src/IconDriveEtaTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveEtaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDriveEtaTwoTone as default } diff --git a/src/IconDriveFileMoveOutlined.tsx b/src/IconDriveFileMoveOutlined.tsx new file mode 100644 index 000000000..272ccc37c --- /dev/null +++ b/src/IconDriveFileMoveOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFileMoveOutlined as default } diff --git a/src/IconDriveFileMoveRound.tsx b/src/IconDriveFileMoveRound.tsx new file mode 100644 index 000000000..5be312f08 --- /dev/null +++ b/src/IconDriveFileMoveRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFileMoveRound as default } diff --git a/src/IconDriveFileMoveRtlOutlined.tsx b/src/IconDriveFileMoveRtlOutlined.tsx new file mode 100644 index 000000000..89459377e --- /dev/null +++ b/src/IconDriveFileMoveRtlOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRtlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDriveFileMoveRtlOutlined as default } diff --git a/src/IconDriveFileMoveRtlRound.tsx b/src/IconDriveFileMoveRtlRound.tsx new file mode 100644 index 000000000..7eaa77675 --- /dev/null +++ b/src/IconDriveFileMoveRtlRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRtlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDriveFileMoveRtlRound as default } diff --git a/src/IconDriveFileMoveRtlSharp.tsx b/src/IconDriveFileMoveRtlSharp.tsx new file mode 100644 index 000000000..df6334cc4 --- /dev/null +++ b/src/IconDriveFileMoveRtlSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRtlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDriveFileMoveRtlSharp as default } diff --git a/src/IconDriveFileMoveRtlTwoTone.tsx b/src/IconDriveFileMoveRtlTwoTone.tsx new file mode 100644 index 000000000..878c260d7 --- /dev/null +++ b/src/IconDriveFileMoveRtlTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRtlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDriveFileMoveRtlTwoTone as default } diff --git a/src/IconDriveFileMoveSharp.tsx b/src/IconDriveFileMoveSharp.tsx new file mode 100644 index 000000000..444ba8536 --- /dev/null +++ b/src/IconDriveFileMoveSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFileMoveSharp as default } diff --git a/src/IconDriveFileMoveTwoTone.tsx b/src/IconDriveFileMoveTwoTone.tsx new file mode 100644 index 000000000..3f0d0d0da --- /dev/null +++ b/src/IconDriveFileMoveTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDriveFileMoveTwoTone as default } diff --git a/src/IconDriveFileRenameOutlineOutlined.tsx b/src/IconDriveFileRenameOutlineOutlined.tsx new file mode 100644 index 000000000..436f41e71 --- /dev/null +++ b/src/IconDriveFileRenameOutlineOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileRenameOutlineOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDriveFileRenameOutlineOutlined as default } diff --git a/src/IconDriveFileRenameOutlineRound.tsx b/src/IconDriveFileRenameOutlineRound.tsx new file mode 100644 index 000000000..6770cf6b4 --- /dev/null +++ b/src/IconDriveFileRenameOutlineRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileRenameOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDriveFileRenameOutlineRound as default } diff --git a/src/IconDriveFileRenameOutlineSharp.tsx b/src/IconDriveFileRenameOutlineSharp.tsx new file mode 100644 index 000000000..13ae5f5e6 --- /dev/null +++ b/src/IconDriveFileRenameOutlineSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileRenameOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDriveFileRenameOutlineSharp as default } diff --git a/src/IconDriveFileRenameOutlineTwoTone.tsx b/src/IconDriveFileRenameOutlineTwoTone.tsx new file mode 100644 index 000000000..9168de9a4 --- /dev/null +++ b/src/IconDriveFileRenameOutlineTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileRenameOutlineTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconDriveFileRenameOutlineTwoTone as default } diff --git a/src/IconDriveFolderUploadOutlined.tsx b/src/IconDriveFolderUploadOutlined.tsx new file mode 100644 index 000000000..dc315cc29 --- /dev/null +++ b/src/IconDriveFolderUploadOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFolderUploadOutlined as default } diff --git a/src/IconDriveFolderUploadRound.tsx b/src/IconDriveFolderUploadRound.tsx new file mode 100644 index 000000000..6bfa828a8 --- /dev/null +++ b/src/IconDriveFolderUploadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFolderUploadRound as default } diff --git a/src/IconDriveFolderUploadSharp.tsx b/src/IconDriveFolderUploadSharp.tsx new file mode 100644 index 000000000..6e0c7d763 --- /dev/null +++ b/src/IconDriveFolderUploadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDriveFolderUploadSharp as default } diff --git a/src/IconDriveFolderUploadTwoTone.tsx b/src/IconDriveFolderUploadTwoTone.tsx new file mode 100644 index 000000000..81197e054 --- /dev/null +++ b/src/IconDriveFolderUploadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconDriveFolderUploadTwoTone as default } diff --git a/src/IconDryCleaningOutlined.tsx b/src/IconDryCleaningOutlined.tsx new file mode 100644 index 000000000..9b941d6d0 --- /dev/null +++ b/src/IconDryCleaningOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDryCleaningOutlined as default } diff --git a/src/IconDryCleaningRound.tsx b/src/IconDryCleaningRound.tsx new file mode 100644 index 000000000..36ae4b92b --- /dev/null +++ b/src/IconDryCleaningRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconDryCleaningRound as default } diff --git a/src/IconDryCleaningSharp.tsx b/src/IconDryCleaningSharp.tsx new file mode 100644 index 000000000..46ea9d728 --- /dev/null +++ b/src/IconDryCleaningSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconDryCleaningSharp as default } diff --git a/src/IconDryCleaningTwoTone.tsx b/src/IconDryCleaningTwoTone.tsx new file mode 100644 index 000000000..0365ed286 --- /dev/null +++ b/src/IconDryCleaningTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconDryCleaningTwoTone as default } diff --git a/src/IconDryOutlined.tsx b/src/IconDryOutlined.tsx new file mode 100644 index 000000000..35ccb6792 --- /dev/null +++ b/src/IconDryOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDryOutlined as default } diff --git a/src/IconDryRound.tsx b/src/IconDryRound.tsx new file mode 100644 index 000000000..90cafa1af --- /dev/null +++ b/src/IconDryRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDryRound as default } diff --git a/src/IconDrySharp.tsx b/src/IconDrySharp.tsx new file mode 100644 index 000000000..1036dd246 --- /dev/null +++ b/src/IconDrySharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDrySharp as default } diff --git a/src/IconDryTwoTone.tsx b/src/IconDryTwoTone.tsx new file mode 100644 index 000000000..2aae47d53 --- /dev/null +++ b/src/IconDryTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDryTwoTone as default } diff --git a/src/IconDuoOutlined.tsx b/src/IconDuoOutlined.tsx new file mode 100644 index 000000000..780ef7bda --- /dev/null +++ b/src/IconDuoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDuoOutlined as default } diff --git a/src/IconDuoRound.tsx b/src/IconDuoRound.tsx new file mode 100644 index 000000000..7872fd792 --- /dev/null +++ b/src/IconDuoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDuoRound as default } diff --git a/src/IconDuoSharp.tsx b/src/IconDuoSharp.tsx new file mode 100644 index 000000000..e44b6bf33 --- /dev/null +++ b/src/IconDuoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDuoSharp as default } diff --git a/src/IconDuoTwoTone.tsx b/src/IconDuoTwoTone.tsx new file mode 100644 index 000000000..eade3a829 --- /dev/null +++ b/src/IconDuoTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDuoTwoTone as default } diff --git a/src/IconDvrOutlined.tsx b/src/IconDvrOutlined.tsx new file mode 100644 index 000000000..54d30dca6 --- /dev/null +++ b/src/IconDvrOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDvrOutlined as default } diff --git a/src/IconDvrRound.tsx b/src/IconDvrRound.tsx new file mode 100644 index 000000000..bebbe178a --- /dev/null +++ b/src/IconDvrRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDvrRound as default } diff --git a/src/IconDvrSharp.tsx b/src/IconDvrSharp.tsx new file mode 100644 index 000000000..7fe5b4ab0 --- /dev/null +++ b/src/IconDvrSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconDvrSharp as default } diff --git a/src/IconDvrTwoTone.tsx b/src/IconDvrTwoTone.tsx new file mode 100644 index 000000000..b99e30fce --- /dev/null +++ b/src/IconDvrTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconDvrTwoTone as default } diff --git a/src/IconDynamicFeedOutlined.tsx b/src/IconDynamicFeedOutlined.tsx new file mode 100644 index 000000000..082ae5b22 --- /dev/null +++ b/src/IconDynamicFeedOutlined.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconDynamicFeedOutlined as default } diff --git a/src/IconDynamicFeedRound.tsx b/src/IconDynamicFeedRound.tsx new file mode 100644 index 000000000..5e1cb2e9f --- /dev/null +++ b/src/IconDynamicFeedRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconDynamicFeedRound as default } diff --git a/src/IconDynamicFeedSharp.tsx b/src/IconDynamicFeedSharp.tsx new file mode 100644 index 000000000..7dedd769b --- /dev/null +++ b/src/IconDynamicFeedSharp.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconDynamicFeedSharp as default } diff --git a/src/IconDynamicFeedTwoTone.tsx b/src/IconDynamicFeedTwoTone.tsx new file mode 100644 index 000000000..f4aede9c9 --- /dev/null +++ b/src/IconDynamicFeedTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconDynamicFeedTwoTone as default } diff --git a/src/IconDynamicFormOutlined.tsx b/src/IconDynamicFormOutlined.tsx new file mode 100644 index 000000000..ab649fdce --- /dev/null +++ b/src/IconDynamicFormOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDynamicFormOutlined as default } diff --git a/src/IconDynamicFormRound.tsx b/src/IconDynamicFormRound.tsx new file mode 100644 index 000000000..d4e98470b --- /dev/null +++ b/src/IconDynamicFormRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDynamicFormRound as default } diff --git a/src/IconDynamicFormSharp.tsx b/src/IconDynamicFormSharp.tsx new file mode 100644 index 000000000..602f069aa --- /dev/null +++ b/src/IconDynamicFormSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconDynamicFormSharp as default } diff --git a/src/IconDynamicFormTwoTone.tsx b/src/IconDynamicFormTwoTone.tsx new file mode 100644 index 000000000..b9764dfd3 --- /dev/null +++ b/src/IconDynamicFormTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconDynamicFormTwoTone as default } diff --git a/src/IconEMobiledataOutlined.tsx b/src/IconEMobiledataOutlined.tsx new file mode 100644 index 000000000..15913befd --- /dev/null +++ b/src/IconEMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEMobiledataOutlined as default } diff --git a/src/IconEMobiledataRound.tsx b/src/IconEMobiledataRound.tsx new file mode 100644 index 000000000..64b13b208 --- /dev/null +++ b/src/IconEMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEMobiledataRound as default } diff --git a/src/IconEMobiledataSharp.tsx b/src/IconEMobiledataSharp.tsx new file mode 100644 index 000000000..584f10f09 --- /dev/null +++ b/src/IconEMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEMobiledataSharp as default } diff --git a/src/IconEMobiledataTwoTone.tsx b/src/IconEMobiledataTwoTone.tsx new file mode 100644 index 000000000..0a094038f --- /dev/null +++ b/src/IconEMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEMobiledataTwoTone as default } diff --git a/src/IconEarbudsBatteryOutlined.tsx b/src/IconEarbudsBatteryOutlined.tsx new file mode 100644 index 000000000..afd9b8f7e --- /dev/null +++ b/src/IconEarbudsBatteryOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatteryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEarbudsBatteryOutlined as default } diff --git a/src/IconEarbudsBatteryRound.tsx b/src/IconEarbudsBatteryRound.tsx new file mode 100644 index 000000000..932e2aae2 --- /dev/null +++ b/src/IconEarbudsBatteryRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatteryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEarbudsBatteryRound as default } diff --git a/src/IconEarbudsBatterySharp.tsx b/src/IconEarbudsBatterySharp.tsx new file mode 100644 index 000000000..1646dc9ed --- /dev/null +++ b/src/IconEarbudsBatterySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatterySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEarbudsBatterySharp as default } diff --git a/src/IconEarbudsBatteryTwoTone.tsx b/src/IconEarbudsBatteryTwoTone.tsx new file mode 100644 index 000000000..7235b1b48 --- /dev/null +++ b/src/IconEarbudsBatteryTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatteryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEarbudsBatteryTwoTone as default } diff --git a/src/IconEarbudsOutlined.tsx b/src/IconEarbudsOutlined.tsx new file mode 100644 index 000000000..ce70e2e6d --- /dev/null +++ b/src/IconEarbudsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEarbudsOutlined as default } diff --git a/src/IconEarbudsRound.tsx b/src/IconEarbudsRound.tsx new file mode 100644 index 000000000..513828ff6 --- /dev/null +++ b/src/IconEarbudsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEarbudsRound as default } diff --git a/src/IconEarbudsSharp.tsx b/src/IconEarbudsSharp.tsx new file mode 100644 index 000000000..e3e4b64e9 --- /dev/null +++ b/src/IconEarbudsSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEarbudsSharp as default } diff --git a/src/IconEarbudsTwoTone.tsx b/src/IconEarbudsTwoTone.tsx new file mode 100644 index 000000000..91f9321f1 --- /dev/null +++ b/src/IconEarbudsTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEarbudsTwoTone as default } diff --git a/src/IconEastOutlined.tsx b/src/IconEastOutlined.tsx new file mode 100644 index 000000000..6e8c7f3c8 --- /dev/null +++ b/src/IconEastOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEastOutlined as default } diff --git a/src/IconEastRound.tsx b/src/IconEastRound.tsx new file mode 100644 index 000000000..e9e69dddf --- /dev/null +++ b/src/IconEastRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEastRound as default } diff --git a/src/IconEastSharp.tsx b/src/IconEastSharp.tsx new file mode 100644 index 000000000..cac10c24e --- /dev/null +++ b/src/IconEastSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEastSharp as default } diff --git a/src/IconEastTwoTone.tsx b/src/IconEastTwoTone.tsx new file mode 100644 index 000000000..4dbe320ba --- /dev/null +++ b/src/IconEastTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEastTwoTone as default } diff --git a/src/IconEdgesensorHighOutlined.tsx b/src/IconEdgesensorHighOutlined.tsx new file mode 100644 index 000000000..d17645aa0 --- /dev/null +++ b/src/IconEdgesensorHighOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorHighOutlined as default } diff --git a/src/IconEdgesensorHighRound.tsx b/src/IconEdgesensorHighRound.tsx new file mode 100644 index 000000000..85e383fd7 --- /dev/null +++ b/src/IconEdgesensorHighRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorHighRound as default } diff --git a/src/IconEdgesensorHighSharp.tsx b/src/IconEdgesensorHighSharp.tsx new file mode 100644 index 000000000..5d86f2a02 --- /dev/null +++ b/src/IconEdgesensorHighSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorHighSharp as default } diff --git a/src/IconEdgesensorHighTwoTone.tsx b/src/IconEdgesensorHighTwoTone.tsx new file mode 100644 index 000000000..efe13340a --- /dev/null +++ b/src/IconEdgesensorHighTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEdgesensorHighTwoTone as default } diff --git a/src/IconEdgesensorLowOutlined.tsx b/src/IconEdgesensorLowOutlined.tsx new file mode 100644 index 000000000..4ef32ba1f --- /dev/null +++ b/src/IconEdgesensorLowOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorLowOutlined as default } diff --git a/src/IconEdgesensorLowRound.tsx b/src/IconEdgesensorLowRound.tsx new file mode 100644 index 000000000..2f166ecef --- /dev/null +++ b/src/IconEdgesensorLowRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorLowRound as default } diff --git a/src/IconEdgesensorLowSharp.tsx b/src/IconEdgesensorLowSharp.tsx new file mode 100644 index 000000000..3843b9453 --- /dev/null +++ b/src/IconEdgesensorLowSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEdgesensorLowSharp as default } diff --git a/src/IconEdgesensorLowTwoTone.tsx b/src/IconEdgesensorLowTwoTone.tsx new file mode 100644 index 000000000..f930b076d --- /dev/null +++ b/src/IconEdgesensorLowTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconEdgesensorLowTwoTone as default } diff --git a/src/IconEditAttributesOutlined.tsx b/src/IconEditAttributesOutlined.tsx new file mode 100644 index 000000000..f1244f7bc --- /dev/null +++ b/src/IconEditAttributesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditAttributesOutlined as default } diff --git a/src/IconEditAttributesRound.tsx b/src/IconEditAttributesRound.tsx new file mode 100644 index 000000000..4fe252806 --- /dev/null +++ b/src/IconEditAttributesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditAttributesRound as default } diff --git a/src/IconEditAttributesSharp.tsx b/src/IconEditAttributesSharp.tsx new file mode 100644 index 000000000..8023c73ec --- /dev/null +++ b/src/IconEditAttributesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditAttributesSharp as default } diff --git a/src/IconEditAttributesTwoTone.tsx b/src/IconEditAttributesTwoTone.tsx new file mode 100644 index 000000000..24d266b4d --- /dev/null +++ b/src/IconEditAttributesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEditAttributesTwoTone as default } diff --git a/src/IconEditCalendarOutlined.tsx b/src/IconEditCalendarOutlined.tsx new file mode 100644 index 000000000..1f2158e4f --- /dev/null +++ b/src/IconEditCalendarOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditCalendarOutlined as default } diff --git a/src/IconEditCalendarRound.tsx b/src/IconEditCalendarRound.tsx new file mode 100644 index 000000000..c45bb82eb --- /dev/null +++ b/src/IconEditCalendarRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditCalendarRound as default } diff --git a/src/IconEditCalendarSharp.tsx b/src/IconEditCalendarSharp.tsx new file mode 100644 index 000000000..fec5c6543 --- /dev/null +++ b/src/IconEditCalendarSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEditCalendarSharp as default } diff --git a/src/IconEditCalendarTwoTone.tsx b/src/IconEditCalendarTwoTone.tsx new file mode 100644 index 000000000..cbf903734 --- /dev/null +++ b/src/IconEditCalendarTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEditCalendarTwoTone as default } diff --git a/src/IconEditLocationAltOutlined.tsx b/src/IconEditLocationAltOutlined.tsx new file mode 100644 index 000000000..218a30aad --- /dev/null +++ b/src/IconEditLocationAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEditLocationAltOutlined as default } diff --git a/src/IconEditLocationAltRound.tsx b/src/IconEditLocationAltRound.tsx new file mode 100644 index 000000000..2381b958e --- /dev/null +++ b/src/IconEditLocationAltRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconEditLocationAltRound as default } diff --git a/src/IconEditLocationAltSharp.tsx b/src/IconEditLocationAltSharp.tsx new file mode 100644 index 000000000..08a2325e5 --- /dev/null +++ b/src/IconEditLocationAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEditLocationAltSharp as default } diff --git a/src/IconEditLocationAltTwoTone.tsx b/src/IconEditLocationAltTwoTone.tsx new file mode 100644 index 000000000..1b6642902 --- /dev/null +++ b/src/IconEditLocationAltTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEditLocationAltTwoTone as default } diff --git a/src/IconEditLocationOutlined.tsx b/src/IconEditLocationOutlined.tsx new file mode 100644 index 000000000..ab160dbdf --- /dev/null +++ b/src/IconEditLocationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditLocationOutlined as default } diff --git a/src/IconEditLocationRound.tsx b/src/IconEditLocationRound.tsx new file mode 100644 index 000000000..a83cdb41a --- /dev/null +++ b/src/IconEditLocationRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEditLocationRound as default } diff --git a/src/IconEditLocationSharp.tsx b/src/IconEditLocationSharp.tsx new file mode 100644 index 000000000..d350a448d --- /dev/null +++ b/src/IconEditLocationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditLocationSharp as default } diff --git a/src/IconEditLocationTwoTone.tsx b/src/IconEditLocationTwoTone.tsx new file mode 100644 index 000000000..82f5ec894 --- /dev/null +++ b/src/IconEditLocationTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEditLocationTwoTone as default } diff --git a/src/IconEditNoteOutlined.tsx b/src/IconEditNoteOutlined.tsx new file mode 100644 index 000000000..ca36c775d --- /dev/null +++ b/src/IconEditNoteOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditNoteOutlined as default } diff --git a/src/IconEditNoteRound.tsx b/src/IconEditNoteRound.tsx new file mode 100644 index 000000000..31d3f0ff4 --- /dev/null +++ b/src/IconEditNoteRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditNoteRound as default } diff --git a/src/IconEditNoteSharp.tsx b/src/IconEditNoteSharp.tsx new file mode 100644 index 000000000..c6904120c --- /dev/null +++ b/src/IconEditNoteSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditNoteSharp as default } diff --git a/src/IconEditNoteTwoTone.tsx b/src/IconEditNoteTwoTone.tsx new file mode 100644 index 000000000..7e0305487 --- /dev/null +++ b/src/IconEditNoteTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditNoteTwoTone as default } diff --git a/src/IconEditNotificationsOutlined.tsx b/src/IconEditNotificationsOutlined.tsx new file mode 100644 index 000000000..169c7871d --- /dev/null +++ b/src/IconEditNotificationsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEditNotificationsOutlined as default } diff --git a/src/IconEditNotificationsRound.tsx b/src/IconEditNotificationsRound.tsx new file mode 100644 index 000000000..b411bc086 --- /dev/null +++ b/src/IconEditNotificationsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEditNotificationsRound as default } diff --git a/src/IconEditNotificationsSharp.tsx b/src/IconEditNotificationsSharp.tsx new file mode 100644 index 000000000..a492342f5 --- /dev/null +++ b/src/IconEditNotificationsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEditNotificationsSharp as default } diff --git a/src/IconEditNotificationsTwoTone.tsx b/src/IconEditNotificationsTwoTone.tsx new file mode 100644 index 000000000..7c1f8bef7 --- /dev/null +++ b/src/IconEditNotificationsTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEditNotificationsTwoTone as default } diff --git a/src/IconEditOffOutlined.tsx b/src/IconEditOffOutlined.tsx new file mode 100644 index 000000000..9786abe25 --- /dev/null +++ b/src/IconEditOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEditOffOutlined as default } diff --git a/src/IconEditOffRound.tsx b/src/IconEditOffRound.tsx new file mode 100644 index 000000000..674a39dde --- /dev/null +++ b/src/IconEditOffRound.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconEditOffRound as default } diff --git a/src/IconEditOffSharp.tsx b/src/IconEditOffSharp.tsx new file mode 100644 index 000000000..677097f19 --- /dev/null +++ b/src/IconEditOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEditOffSharp as default } diff --git a/src/IconEditOffTwoTone.tsx b/src/IconEditOffTwoTone.tsx new file mode 100644 index 000000000..d71cf688a --- /dev/null +++ b/src/IconEditOffTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEditOffTwoTone as default } diff --git a/src/IconEditOutlined.tsx b/src/IconEditOutlined.tsx new file mode 100644 index 000000000..9eab66d78 --- /dev/null +++ b/src/IconEditOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditOutlined as default } diff --git a/src/IconEditRoadOutlined.tsx b/src/IconEditRoadOutlined.tsx new file mode 100644 index 000000000..51a833c40 --- /dev/null +++ b/src/IconEditRoadOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconEditRoadOutlined as default } diff --git a/src/IconEditRoadRound.tsx b/src/IconEditRoadRound.tsx new file mode 100644 index 000000000..c13e5165b --- /dev/null +++ b/src/IconEditRoadRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEditRoadRound as default } diff --git a/src/IconEditRoadSharp.tsx b/src/IconEditRoadSharp.tsx new file mode 100644 index 000000000..0ca5bf0f9 --- /dev/null +++ b/src/IconEditRoadSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconEditRoadSharp as default } diff --git a/src/IconEditRoadTwoTone.tsx b/src/IconEditRoadTwoTone.tsx new file mode 100644 index 000000000..fa48169ab --- /dev/null +++ b/src/IconEditRoadTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEditRoadTwoTone as default } diff --git a/src/IconEditRound.tsx b/src/IconEditRound.tsx new file mode 100644 index 000000000..cfb80f5fa --- /dev/null +++ b/src/IconEditRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditRound as default } diff --git a/src/IconEditSharp.tsx b/src/IconEditSharp.tsx new file mode 100644 index 000000000..3be725bb5 --- /dev/null +++ b/src/IconEditSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEditSharp as default } diff --git a/src/IconEditTwoTone.tsx b/src/IconEditTwoTone.tsx new file mode 100644 index 000000000..9c889ab7d --- /dev/null +++ b/src/IconEditTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEditTwoTone as default } diff --git a/src/IconEggAltOutlined.tsx b/src/IconEggAltOutlined.tsx new file mode 100644 index 000000000..75003bf75 --- /dev/null +++ b/src/IconEggAltOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconEggAltOutlined as default } diff --git a/src/IconEggAltRound.tsx b/src/IconEggAltRound.tsx new file mode 100644 index 000000000..38ca05d67 --- /dev/null +++ b/src/IconEggAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEggAltRound as default } diff --git a/src/IconEggAltSharp.tsx b/src/IconEggAltSharp.tsx new file mode 100644 index 000000000..e75a7d2b6 --- /dev/null +++ b/src/IconEggAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEggAltSharp as default } diff --git a/src/IconEggAltTwoTone.tsx b/src/IconEggAltTwoTone.tsx new file mode 100644 index 000000000..f86ec6d80 --- /dev/null +++ b/src/IconEggAltTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconEggAltTwoTone as default } diff --git a/src/IconEggOutlined.tsx b/src/IconEggOutlined.tsx new file mode 100644 index 000000000..67a1bec77 --- /dev/null +++ b/src/IconEggOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEggOutlined as default } diff --git a/src/IconEggRound.tsx b/src/IconEggRound.tsx new file mode 100644 index 000000000..f4562a8b8 --- /dev/null +++ b/src/IconEggRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEggRound as default } diff --git a/src/IconEggSharp.tsx b/src/IconEggSharp.tsx new file mode 100644 index 000000000..0fb683664 --- /dev/null +++ b/src/IconEggSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEggSharp as default } diff --git a/src/IconEggTwoTone.tsx b/src/IconEggTwoTone.tsx new file mode 100644 index 000000000..a9202a98a --- /dev/null +++ b/src/IconEggTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEggTwoTone as default } diff --git a/src/IconEjectOutlined.tsx b/src/IconEjectOutlined.tsx new file mode 100644 index 000000000..9d9349457 --- /dev/null +++ b/src/IconEjectOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEjectOutlined as default } diff --git a/src/IconEjectRound.tsx b/src/IconEjectRound.tsx new file mode 100644 index 000000000..90edaaa23 --- /dev/null +++ b/src/IconEjectRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEjectRound as default } diff --git a/src/IconEjectSharp.tsx b/src/IconEjectSharp.tsx new file mode 100644 index 000000000..03f85c292 --- /dev/null +++ b/src/IconEjectSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEjectSharp as default } diff --git a/src/IconEjectTwoTone.tsx b/src/IconEjectTwoTone.tsx new file mode 100644 index 000000000..a115f3da8 --- /dev/null +++ b/src/IconEjectTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEjectTwoTone as default } diff --git a/src/IconElderlyOutlined.tsx b/src/IconElderlyOutlined.tsx new file mode 100644 index 000000000..4bc50bf19 --- /dev/null +++ b/src/IconElderlyOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconElderlyOutlined as default } diff --git a/src/IconElderlyRound.tsx b/src/IconElderlyRound.tsx new file mode 100644 index 000000000..eb9528734 --- /dev/null +++ b/src/IconElderlyRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconElderlyRound as default } diff --git a/src/IconElderlySharp.tsx b/src/IconElderlySharp.tsx new file mode 100644 index 000000000..cfff1b52e --- /dev/null +++ b/src/IconElderlySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconElderlySharp as default } diff --git a/src/IconElderlyTwoTone.tsx b/src/IconElderlyTwoTone.tsx new file mode 100644 index 000000000..fe8e8d548 --- /dev/null +++ b/src/IconElderlyTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconElderlyTwoTone as default } diff --git a/src/IconElderlyWomanOutlined.tsx b/src/IconElderlyWomanOutlined.tsx new file mode 100644 index 000000000..1c74d8ce9 --- /dev/null +++ b/src/IconElderlyWomanOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElderlyWomanOutlined as default } diff --git a/src/IconElderlyWomanRound.tsx b/src/IconElderlyWomanRound.tsx new file mode 100644 index 000000000..994e653cd --- /dev/null +++ b/src/IconElderlyWomanRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElderlyWomanRound as default } diff --git a/src/IconElderlyWomanSharp.tsx b/src/IconElderlyWomanSharp.tsx new file mode 100644 index 000000000..1f39a5f31 --- /dev/null +++ b/src/IconElderlyWomanSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElderlyWomanSharp as default } diff --git a/src/IconElderlyWomanTwoTone.tsx b/src/IconElderlyWomanTwoTone.tsx new file mode 100644 index 000000000..f486d4885 --- /dev/null +++ b/src/IconElderlyWomanTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElderlyWomanTwoTone as default } diff --git a/src/IconElectricBikeOutlined.tsx b/src/IconElectricBikeOutlined.tsx new file mode 100644 index 000000000..3ab01cfa6 --- /dev/null +++ b/src/IconElectricBikeOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricBikeOutlined as default } diff --git a/src/IconElectricBikeRound.tsx b/src/IconElectricBikeRound.tsx new file mode 100644 index 000000000..87365d45a --- /dev/null +++ b/src/IconElectricBikeRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconElectricBikeRound as default } diff --git a/src/IconElectricBikeSharp.tsx b/src/IconElectricBikeSharp.tsx new file mode 100644 index 000000000..c9182656b --- /dev/null +++ b/src/IconElectricBikeSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricBikeSharp as default } diff --git a/src/IconElectricBikeTwoTone.tsx b/src/IconElectricBikeTwoTone.tsx new file mode 100644 index 000000000..2eebfca58 --- /dev/null +++ b/src/IconElectricBikeTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricBikeTwoTone as default } diff --git a/src/IconElectricBoltOutlined.tsx b/src/IconElectricBoltOutlined.tsx new file mode 100644 index 000000000..dc89cb847 --- /dev/null +++ b/src/IconElectricBoltOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconElectricBoltOutlined as default } diff --git a/src/IconElectricBoltRound.tsx b/src/IconElectricBoltRound.tsx new file mode 100644 index 000000000..1598aaf7f --- /dev/null +++ b/src/IconElectricBoltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricBoltRound as default } diff --git a/src/IconElectricBoltSharp.tsx b/src/IconElectricBoltSharp.tsx new file mode 100644 index 000000000..c29f48ab0 --- /dev/null +++ b/src/IconElectricBoltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconElectricBoltSharp as default } diff --git a/src/IconElectricBoltTwoTone.tsx b/src/IconElectricBoltTwoTone.tsx new file mode 100644 index 000000000..898fb2ee0 --- /dev/null +++ b/src/IconElectricBoltTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconElectricBoltTwoTone as default } diff --git a/src/IconElectricCarOutlined.tsx b/src/IconElectricCarOutlined.tsx new file mode 100644 index 000000000..e8f514a65 --- /dev/null +++ b/src/IconElectricCarOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricCarOutlined as default } diff --git a/src/IconElectricCarRound.tsx b/src/IconElectricCarRound.tsx new file mode 100644 index 000000000..3e9df9888 --- /dev/null +++ b/src/IconElectricCarRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconElectricCarRound as default } diff --git a/src/IconElectricCarSharp.tsx b/src/IconElectricCarSharp.tsx new file mode 100644 index 000000000..8df179621 --- /dev/null +++ b/src/IconElectricCarSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconElectricCarSharp as default } diff --git a/src/IconElectricCarTwoTone.tsx b/src/IconElectricCarTwoTone.tsx new file mode 100644 index 000000000..66299d457 --- /dev/null +++ b/src/IconElectricCarTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconElectricCarTwoTone as default } diff --git a/src/IconElectricMeterOutlined.tsx b/src/IconElectricMeterOutlined.tsx new file mode 100644 index 000000000..e97a26ed1 --- /dev/null +++ b/src/IconElectricMeterOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconElectricMeterOutlined as default } diff --git a/src/IconElectricMeterRound.tsx b/src/IconElectricMeterRound.tsx new file mode 100644 index 000000000..62d75bcc1 --- /dev/null +++ b/src/IconElectricMeterRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconElectricMeterRound as default } diff --git a/src/IconElectricMeterSharp.tsx b/src/IconElectricMeterSharp.tsx new file mode 100644 index 000000000..0d346b859 --- /dev/null +++ b/src/IconElectricMeterSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconElectricMeterSharp as default } diff --git a/src/IconElectricMeterTwoTone.tsx b/src/IconElectricMeterTwoTone.tsx new file mode 100644 index 000000000..66c19d238 --- /dev/null +++ b/src/IconElectricMeterTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricMeterTwoTone as default } diff --git a/src/IconElectricMopedOutlined.tsx b/src/IconElectricMopedOutlined.tsx new file mode 100644 index 000000000..dd675a8e8 --- /dev/null +++ b/src/IconElectricMopedOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricMopedOutlined as default } diff --git a/src/IconElectricMopedRound.tsx b/src/IconElectricMopedRound.tsx new file mode 100644 index 000000000..1910ac083 --- /dev/null +++ b/src/IconElectricMopedRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconElectricMopedRound as default } diff --git a/src/IconElectricMopedSharp.tsx b/src/IconElectricMopedSharp.tsx new file mode 100644 index 000000000..5b77e4fb4 --- /dev/null +++ b/src/IconElectricMopedSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricMopedSharp as default } diff --git a/src/IconElectricMopedTwoTone.tsx b/src/IconElectricMopedTwoTone.tsx new file mode 100644 index 000000000..02cce26d5 --- /dev/null +++ b/src/IconElectricMopedTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconElectricMopedTwoTone as default } diff --git a/src/IconElectricRickshawOutlined.tsx b/src/IconElectricRickshawOutlined.tsx new file mode 100644 index 000000000..02021f3b5 --- /dev/null +++ b/src/IconElectricRickshawOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricRickshawOutlined as default } diff --git a/src/IconElectricRickshawRound.tsx b/src/IconElectricRickshawRound.tsx new file mode 100644 index 000000000..715180140 --- /dev/null +++ b/src/IconElectricRickshawRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconElectricRickshawRound as default } diff --git a/src/IconElectricRickshawSharp.tsx b/src/IconElectricRickshawSharp.tsx new file mode 100644 index 000000000..48ad2b3d0 --- /dev/null +++ b/src/IconElectricRickshawSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricRickshawSharp as default } diff --git a/src/IconElectricRickshawTwoTone.tsx b/src/IconElectricRickshawTwoTone.tsx new file mode 100644 index 000000000..032964399 --- /dev/null +++ b/src/IconElectricRickshawTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconElectricRickshawTwoTone as default } diff --git a/src/IconElectricScooterOutlined.tsx b/src/IconElectricScooterOutlined.tsx new file mode 100644 index 000000000..d6f73549b --- /dev/null +++ b/src/IconElectricScooterOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconElectricScooterOutlined as default } diff --git a/src/IconElectricScooterRound.tsx b/src/IconElectricScooterRound.tsx new file mode 100644 index 000000000..fbcf74639 --- /dev/null +++ b/src/IconElectricScooterRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricScooterRound as default } diff --git a/src/IconElectricScooterSharp.tsx b/src/IconElectricScooterSharp.tsx new file mode 100644 index 000000000..cd07c37d0 --- /dev/null +++ b/src/IconElectricScooterSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconElectricScooterSharp as default } diff --git a/src/IconElectricScooterTwoTone.tsx b/src/IconElectricScooterTwoTone.tsx new file mode 100644 index 000000000..bd82e714f --- /dev/null +++ b/src/IconElectricScooterTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconElectricScooterTwoTone as default } diff --git a/src/IconElectricalServicesOutlined.tsx b/src/IconElectricalServicesOutlined.tsx new file mode 100644 index 000000000..d0e33eb0c --- /dev/null +++ b/src/IconElectricalServicesOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricalServicesOutlined as default } diff --git a/src/IconElectricalServicesRound.tsx b/src/IconElectricalServicesRound.tsx new file mode 100644 index 000000000..e511877da --- /dev/null +++ b/src/IconElectricalServicesRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconElectricalServicesRound as default } diff --git a/src/IconElectricalServicesSharp.tsx b/src/IconElectricalServicesSharp.tsx new file mode 100644 index 000000000..ca155c355 --- /dev/null +++ b/src/IconElectricalServicesSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconElectricalServicesSharp as default } diff --git a/src/IconElectricalServicesTwoTone.tsx b/src/IconElectricalServicesTwoTone.tsx new file mode 100644 index 000000000..7659faaa0 --- /dev/null +++ b/src/IconElectricalServicesTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconElectricalServicesTwoTone as default } diff --git a/src/IconElevatorOutlined.tsx b/src/IconElevatorOutlined.tsx new file mode 100644 index 000000000..738686bc0 --- /dev/null +++ b/src/IconElevatorOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconElevatorOutlined as default } diff --git a/src/IconElevatorRound.tsx b/src/IconElevatorRound.tsx new file mode 100644 index 000000000..398643ceb --- /dev/null +++ b/src/IconElevatorRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconElevatorRound as default } diff --git a/src/IconElevatorSharp.tsx b/src/IconElevatorSharp.tsx new file mode 100644 index 000000000..384bf1bb7 --- /dev/null +++ b/src/IconElevatorSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconElevatorSharp as default } diff --git a/src/IconElevatorTwoTone.tsx b/src/IconElevatorTwoTone.tsx new file mode 100644 index 000000000..6aa6d5d4d --- /dev/null +++ b/src/IconElevatorTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconElevatorTwoTone as default } diff --git a/src/IconEmailOutlined.tsx b/src/IconEmailOutlined.tsx new file mode 100644 index 000000000..f0da006c3 --- /dev/null +++ b/src/IconEmailOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmailOutlined as default } diff --git a/src/IconEmailRound.tsx b/src/IconEmailRound.tsx new file mode 100644 index 000000000..6963d869e --- /dev/null +++ b/src/IconEmailRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmailRound as default } diff --git a/src/IconEmailSharp.tsx b/src/IconEmailSharp.tsx new file mode 100644 index 000000000..de1ad8e03 --- /dev/null +++ b/src/IconEmailSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmailSharp as default } diff --git a/src/IconEmailTwoTone.tsx b/src/IconEmailTwoTone.tsx new file mode 100644 index 000000000..55c72c13c --- /dev/null +++ b/src/IconEmailTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEmailTwoTone as default } diff --git a/src/IconEmergencyOutlined.tsx b/src/IconEmergencyOutlined.tsx new file mode 100644 index 000000000..94344ae56 --- /dev/null +++ b/src/IconEmergencyOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmergencyOutlined as default } diff --git a/src/IconEmergencyRecordingOutlined.tsx b/src/IconEmergencyRecordingOutlined.tsx new file mode 100644 index 000000000..cf2ccfbc1 --- /dev/null +++ b/src/IconEmergencyRecordingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyRecordingOutlined as default } diff --git a/src/IconEmergencyRecordingRound.tsx b/src/IconEmergencyRecordingRound.tsx new file mode 100644 index 000000000..84eb88a19 --- /dev/null +++ b/src/IconEmergencyRecordingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEmergencyRecordingRound as default } diff --git a/src/IconEmergencyRecordingSharp.tsx b/src/IconEmergencyRecordingSharp.tsx new file mode 100644 index 000000000..6a780598f --- /dev/null +++ b/src/IconEmergencyRecordingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyRecordingSharp as default } diff --git a/src/IconEmergencyRecordingTwoTone.tsx b/src/IconEmergencyRecordingTwoTone.tsx new file mode 100644 index 000000000..e5fbb9d1a --- /dev/null +++ b/src/IconEmergencyRecordingTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEmergencyRecordingTwoTone as default } diff --git a/src/IconEmergencyRound.tsx b/src/IconEmergencyRound.tsx new file mode 100644 index 000000000..54009d4a7 --- /dev/null +++ b/src/IconEmergencyRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmergencyRound as default } diff --git a/src/IconEmergencyShareOutlined.tsx b/src/IconEmergencyShareOutlined.tsx new file mode 100644 index 000000000..7491e43e9 --- /dev/null +++ b/src/IconEmergencyShareOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyShareOutlined as default } diff --git a/src/IconEmergencyShareRound.tsx b/src/IconEmergencyShareRound.tsx new file mode 100644 index 000000000..6bba6ceee --- /dev/null +++ b/src/IconEmergencyShareRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEmergencyShareRound as default } diff --git a/src/IconEmergencyShareSharp.tsx b/src/IconEmergencyShareSharp.tsx new file mode 100644 index 000000000..174d429ee --- /dev/null +++ b/src/IconEmergencyShareSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEmergencyShareSharp as default } diff --git a/src/IconEmergencyShareTwoTone.tsx b/src/IconEmergencyShareTwoTone.tsx new file mode 100644 index 000000000..b8bff5d58 --- /dev/null +++ b/src/IconEmergencyShareTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEmergencyShareTwoTone as default } diff --git a/src/IconEmergencySharp.tsx b/src/IconEmergencySharp.tsx new file mode 100644 index 000000000..151c3f41c --- /dev/null +++ b/src/IconEmergencySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmergencySharp as default } diff --git a/src/IconEmergencyTwoTone.tsx b/src/IconEmergencyTwoTone.tsx new file mode 100644 index 000000000..e86609249 --- /dev/null +++ b/src/IconEmergencyTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEmergencyTwoTone as default } diff --git a/src/IconEmojiEmotionsOutlined.tsx b/src/IconEmojiEmotionsOutlined.tsx new file mode 100644 index 000000000..425f3bb4b --- /dev/null +++ b/src/IconEmojiEmotionsOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEmotionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconEmojiEmotionsOutlined as default } diff --git a/src/IconEmojiEmotionsRound.tsx b/src/IconEmojiEmotionsRound.tsx new file mode 100644 index 000000000..2e8f14b31 --- /dev/null +++ b/src/IconEmojiEmotionsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEmotionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEmojiEmotionsRound as default } diff --git a/src/IconEmojiEmotionsSharp.tsx b/src/IconEmojiEmotionsSharp.tsx new file mode 100644 index 000000000..5e927bd6c --- /dev/null +++ b/src/IconEmojiEmotionsSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEmotionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEmojiEmotionsSharp as default } diff --git a/src/IconEmojiEmotionsTwoTone.tsx b/src/IconEmojiEmotionsTwoTone.tsx new file mode 100644 index 000000000..979a58f6f --- /dev/null +++ b/src/IconEmojiEmotionsTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEmotionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconEmojiEmotionsTwoTone as default } diff --git a/src/IconEmojiEventsOutlined.tsx b/src/IconEmojiEventsOutlined.tsx new file mode 100644 index 000000000..b03d4fe81 --- /dev/null +++ b/src/IconEmojiEventsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmojiEventsOutlined as default } diff --git a/src/IconEmojiEventsRound.tsx b/src/IconEmojiEventsRound.tsx new file mode 100644 index 000000000..e19eee4d5 --- /dev/null +++ b/src/IconEmojiEventsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmojiEventsRound as default } diff --git a/src/IconEmojiEventsSharp.tsx b/src/IconEmojiEventsSharp.tsx new file mode 100644 index 000000000..e08f35f0a --- /dev/null +++ b/src/IconEmojiEventsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEmojiEventsSharp as default } diff --git a/src/IconEmojiEventsTwoTone.tsx b/src/IconEmojiEventsTwoTone.tsx new file mode 100644 index 000000000..bbacf65dd --- /dev/null +++ b/src/IconEmojiEventsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEmojiEventsTwoTone as default } diff --git a/src/IconEmojiFoodBeverageOutlined.tsx b/src/IconEmojiFoodBeverageOutlined.tsx new file mode 100644 index 000000000..ce42d62cf --- /dev/null +++ b/src/IconEmojiFoodBeverageOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiFoodBeverageOutlined as default } diff --git a/src/IconEmojiFoodBeverageRound.tsx b/src/IconEmojiFoodBeverageRound.tsx new file mode 100644 index 000000000..8c2d6450d --- /dev/null +++ b/src/IconEmojiFoodBeverageRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconEmojiFoodBeverageRound as default } diff --git a/src/IconEmojiFoodBeverageSharp.tsx b/src/IconEmojiFoodBeverageSharp.tsx new file mode 100644 index 000000000..f384ebd5f --- /dev/null +++ b/src/IconEmojiFoodBeverageSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiFoodBeverageSharp as default } diff --git a/src/IconEmojiFoodBeverageTwoTone.tsx b/src/IconEmojiFoodBeverageTwoTone.tsx new file mode 100644 index 000000000..518b27f7a --- /dev/null +++ b/src/IconEmojiFoodBeverageTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconEmojiFoodBeverageTwoTone as default } diff --git a/src/IconEmojiNatureOutlined.tsx b/src/IconEmojiNatureOutlined.tsx new file mode 100644 index 000000000..241950fb6 --- /dev/null +++ b/src/IconEmojiNatureOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiNatureOutlined as default } diff --git a/src/IconEmojiNatureRound.tsx b/src/IconEmojiNatureRound.tsx new file mode 100644 index 000000000..7f3339fd2 --- /dev/null +++ b/src/IconEmojiNatureRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconEmojiNatureRound as default } diff --git a/src/IconEmojiNatureSharp.tsx b/src/IconEmojiNatureSharp.tsx new file mode 100644 index 000000000..be1072ddc --- /dev/null +++ b/src/IconEmojiNatureSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiNatureSharp as default } diff --git a/src/IconEmojiNatureTwoTone.tsx b/src/IconEmojiNatureTwoTone.tsx new file mode 100644 index 000000000..6a0f8706d --- /dev/null +++ b/src/IconEmojiNatureTwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconEmojiNatureTwoTone as default } diff --git a/src/IconEmojiObjectsOutlined.tsx b/src/IconEmojiObjectsOutlined.tsx new file mode 100644 index 000000000..7da6f35ab --- /dev/null +++ b/src/IconEmojiObjectsOutlined.tsx @@ -0,0 +1,41 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEmojiObjectsOutlined as default } diff --git a/src/IconEmojiObjectsRound.tsx b/src/IconEmojiObjectsRound.tsx new file mode 100644 index 000000000..ee7ecb4f8 --- /dev/null +++ b/src/IconEmojiObjectsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiObjectsRound as default } diff --git a/src/IconEmojiObjectsSharp.tsx b/src/IconEmojiObjectsSharp.tsx new file mode 100644 index 000000000..c150e1214 --- /dev/null +++ b/src/IconEmojiObjectsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEmojiObjectsSharp as default } diff --git a/src/IconEmojiObjectsTwoTone.tsx b/src/IconEmojiObjectsTwoTone.tsx new file mode 100644 index 000000000..bd2cfbd7a --- /dev/null +++ b/src/IconEmojiObjectsTwoTone.tsx @@ -0,0 +1,43 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconEmojiObjectsTwoTone as default } diff --git a/src/IconEmojiPeopleOutlined.tsx b/src/IconEmojiPeopleOutlined.tsx new file mode 100644 index 000000000..538197110 --- /dev/null +++ b/src/IconEmojiPeopleOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiPeopleOutlined as default } diff --git a/src/IconEmojiPeopleRound.tsx b/src/IconEmojiPeopleRound.tsx new file mode 100644 index 000000000..3251fea10 --- /dev/null +++ b/src/IconEmojiPeopleRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconEmojiPeopleRound as default } diff --git a/src/IconEmojiPeopleSharp.tsx b/src/IconEmojiPeopleSharp.tsx new file mode 100644 index 000000000..6114aba14 --- /dev/null +++ b/src/IconEmojiPeopleSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiPeopleSharp as default } diff --git a/src/IconEmojiPeopleTwoTone.tsx b/src/IconEmojiPeopleTwoTone.tsx new file mode 100644 index 000000000..0befe4bed --- /dev/null +++ b/src/IconEmojiPeopleTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconEmojiPeopleTwoTone as default } diff --git a/src/IconEmojiSymbolsOutlined.tsx b/src/IconEmojiSymbolsOutlined.tsx new file mode 100644 index 000000000..83d625f7b --- /dev/null +++ b/src/IconEmojiSymbolsOutlined.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbolsOutlined as default } diff --git a/src/IconEmojiSymbolsRound.tsx b/src/IconEmojiSymbolsRound.tsx new file mode 100644 index 000000000..c001fc156 --- /dev/null +++ b/src/IconEmojiSymbolsRound.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbolsRound as default } diff --git a/src/IconEmojiSymbolsSharp.tsx b/src/IconEmojiSymbolsSharp.tsx new file mode 100644 index 000000000..bf5871f69 --- /dev/null +++ b/src/IconEmojiSymbolsSharp.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbolsSharp as default } diff --git a/src/IconEmojiSymbolsTwoTone.tsx b/src/IconEmojiSymbolsTwoTone.tsx new file mode 100644 index 000000000..c54de7f0c --- /dev/null +++ b/src/IconEmojiSymbolsTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconEmojiSymbolsTwoTone as default } diff --git a/src/IconEmojiTransportationOutlined.tsx b/src/IconEmojiTransportationOutlined.tsx new file mode 100644 index 000000000..442df038a --- /dev/null +++ b/src/IconEmojiTransportationOutlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportationOutlined as default } diff --git a/src/IconEmojiTransportationRound.tsx b/src/IconEmojiTransportationRound.tsx new file mode 100644 index 000000000..3f93bbf44 --- /dev/null +++ b/src/IconEmojiTransportationRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportationRound as default } diff --git a/src/IconEmojiTransportationSharp.tsx b/src/IconEmojiTransportationSharp.tsx new file mode 100644 index 000000000..075cb47c8 --- /dev/null +++ b/src/IconEmojiTransportationSharp.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportationSharp as default } diff --git a/src/IconEmojiTransportationTwoTone.tsx b/src/IconEmojiTransportationTwoTone.tsx new file mode 100644 index 000000000..f40fe404d --- /dev/null +++ b/src/IconEmojiTransportationTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconEmojiTransportationTwoTone as default } diff --git a/src/IconEnergySavingsLeafOutlined.tsx b/src/IconEnergySavingsLeafOutlined.tsx new file mode 100644 index 000000000..750a6a8b1 --- /dev/null +++ b/src/IconEnergySavingsLeafOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEnergySavingsLeafOutlined as default } diff --git a/src/IconEnergySavingsLeafRound.tsx b/src/IconEnergySavingsLeafRound.tsx new file mode 100644 index 000000000..75f90b9b3 --- /dev/null +++ b/src/IconEnergySavingsLeafRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconEnergySavingsLeafRound as default } diff --git a/src/IconEnergySavingsLeafSharp.tsx b/src/IconEnergySavingsLeafSharp.tsx new file mode 100644 index 000000000..4885d9d59 --- /dev/null +++ b/src/IconEnergySavingsLeafSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEnergySavingsLeafSharp as default } diff --git a/src/IconEnergySavingsLeafTwoTone.tsx b/src/IconEnergySavingsLeafTwoTone.tsx new file mode 100644 index 000000000..10373ace7 --- /dev/null +++ b/src/IconEnergySavingsLeafTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconEnergySavingsLeafTwoTone as default } diff --git a/src/IconEngineeringOutlined.tsx b/src/IconEngineeringOutlined.tsx new file mode 100644 index 000000000..8514b17ac --- /dev/null +++ b/src/IconEngineeringOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconEngineeringOutlined as default } diff --git a/src/IconEngineeringRound.tsx b/src/IconEngineeringRound.tsx new file mode 100644 index 000000000..4b26100b8 --- /dev/null +++ b/src/IconEngineeringRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconEngineeringRound as default } diff --git a/src/IconEngineeringSharp.tsx b/src/IconEngineeringSharp.tsx new file mode 100644 index 000000000..1f766755a --- /dev/null +++ b/src/IconEngineeringSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconEngineeringSharp as default } diff --git a/src/IconEngineeringTwoTone.tsx b/src/IconEngineeringTwoTone.tsx new file mode 100644 index 000000000..a6a84698c --- /dev/null +++ b/src/IconEngineeringTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconEngineeringTwoTone as default } diff --git a/src/IconEnhancedEncryptionOutlined.tsx b/src/IconEnhancedEncryptionOutlined.tsx new file mode 100644 index 000000000..bb3841186 --- /dev/null +++ b/src/IconEnhancedEncryptionOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEnhancedEncryptionOutlined as default } diff --git a/src/IconEnhancedEncryptionRound.tsx b/src/IconEnhancedEncryptionRound.tsx new file mode 100644 index 000000000..7610ae3e5 --- /dev/null +++ b/src/IconEnhancedEncryptionRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEnhancedEncryptionRound as default } diff --git a/src/IconEnhancedEncryptionSharp.tsx b/src/IconEnhancedEncryptionSharp.tsx new file mode 100644 index 000000000..92394710a --- /dev/null +++ b/src/IconEnhancedEncryptionSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEnhancedEncryptionSharp as default } diff --git a/src/IconEnhancedEncryptionTwoTone.tsx b/src/IconEnhancedEncryptionTwoTone.tsx new file mode 100644 index 000000000..fd0712a21 --- /dev/null +++ b/src/IconEnhancedEncryptionTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEnhancedEncryptionTwoTone as default } diff --git a/src/IconEqualizerOutlined.tsx b/src/IconEqualizerOutlined.tsx new file mode 100644 index 000000000..cfb36312c --- /dev/null +++ b/src/IconEqualizerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEqualizerOutlined as default } diff --git a/src/IconEqualizerRound.tsx b/src/IconEqualizerRound.tsx new file mode 100644 index 000000000..f72495d20 --- /dev/null +++ b/src/IconEqualizerRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualizerRound as default } diff --git a/src/IconEqualizerSharp.tsx b/src/IconEqualizerSharp.tsx new file mode 100644 index 000000000..6de974acd --- /dev/null +++ b/src/IconEqualizerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEqualizerSharp as default } diff --git a/src/IconEqualizerTwoTone.tsx b/src/IconEqualizerTwoTone.tsx new file mode 100644 index 000000000..34f7ddf44 --- /dev/null +++ b/src/IconEqualizerTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEqualizerTwoTone as default } diff --git a/src/IconErrorOutlineOutlined.tsx b/src/IconErrorOutlineOutlined.tsx new file mode 100644 index 000000000..fcd2a130a --- /dev/null +++ b/src/IconErrorOutlineOutlined.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlineOutlined as default } diff --git a/src/IconErrorOutlineRound.tsx b/src/IconErrorOutlineRound.tsx new file mode 100644 index 000000000..d3c555b92 --- /dev/null +++ b/src/IconErrorOutlineRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlineRound as default } diff --git a/src/IconErrorOutlineSharp.tsx b/src/IconErrorOutlineSharp.tsx new file mode 100644 index 000000000..19e1bc033 --- /dev/null +++ b/src/IconErrorOutlineSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlineSharp as default } diff --git a/src/IconErrorOutlineTwoTone.tsx b/src/IconErrorOutlineTwoTone.tsx new file mode 100644 index 000000000..55808553a --- /dev/null +++ b/src/IconErrorOutlineTwoTone.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlineTwoTone as default } diff --git a/src/IconErrorOutlined.tsx b/src/IconErrorOutlined.tsx new file mode 100644 index 000000000..7ecc7759e --- /dev/null +++ b/src/IconErrorOutlined.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlined as default } diff --git a/src/IconErrorRound.tsx b/src/IconErrorRound.tsx new file mode 100644 index 000000000..4c137a23c --- /dev/null +++ b/src/IconErrorRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorRound as default } diff --git a/src/IconErrorSharp.tsx b/src/IconErrorSharp.tsx new file mode 100644 index 000000000..d20bca75e --- /dev/null +++ b/src/IconErrorSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorSharp as default } diff --git a/src/IconErrorTwoTone.tsx b/src/IconErrorTwoTone.tsx new file mode 100644 index 000000000..b050e6870 --- /dev/null +++ b/src/IconErrorTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconErrorTwoTone as default } diff --git a/src/IconEscalatorOutlined.tsx b/src/IconEscalatorOutlined.tsx new file mode 100644 index 000000000..f5a3e52fd --- /dev/null +++ b/src/IconEscalatorOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEscalatorOutlined as default } diff --git a/src/IconEscalatorRound.tsx b/src/IconEscalatorRound.tsx new file mode 100644 index 000000000..a2049ff01 --- /dev/null +++ b/src/IconEscalatorRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEscalatorRound as default } diff --git a/src/IconEscalatorSharp.tsx b/src/IconEscalatorSharp.tsx new file mode 100644 index 000000000..86b7095fe --- /dev/null +++ b/src/IconEscalatorSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEscalatorSharp as default } diff --git a/src/IconEscalatorTwoTone.tsx b/src/IconEscalatorTwoTone.tsx new file mode 100644 index 000000000..2d84e7e63 --- /dev/null +++ b/src/IconEscalatorTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconEscalatorTwoTone as default } diff --git a/src/IconEscalatorWarningOutlined.tsx b/src/IconEscalatorWarningOutlined.tsx new file mode 100644 index 000000000..f709ea570 --- /dev/null +++ b/src/IconEscalatorWarningOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEscalatorWarningOutlined as default } diff --git a/src/IconEscalatorWarningRound.tsx b/src/IconEscalatorWarningRound.tsx new file mode 100644 index 000000000..2cf812216 --- /dev/null +++ b/src/IconEscalatorWarningRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEscalatorWarningRound as default } diff --git a/src/IconEscalatorWarningSharp.tsx b/src/IconEscalatorWarningSharp.tsx new file mode 100644 index 000000000..73a530033 --- /dev/null +++ b/src/IconEscalatorWarningSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEscalatorWarningSharp as default } diff --git a/src/IconEscalatorWarningTwoTone.tsx b/src/IconEscalatorWarningTwoTone.tsx new file mode 100644 index 000000000..b7303faa2 --- /dev/null +++ b/src/IconEscalatorWarningTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconEscalatorWarningTwoTone as default } diff --git a/src/IconEuroOutlined.tsx b/src/IconEuroOutlined.tsx new file mode 100644 index 000000000..ce53ea246 --- /dev/null +++ b/src/IconEuroOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEuroOutlined as default } diff --git a/src/IconEuroRound.tsx b/src/IconEuroRound.tsx new file mode 100644 index 000000000..de75cbdaf --- /dev/null +++ b/src/IconEuroRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconEuroRound as default } diff --git a/src/IconEuroSharp.tsx b/src/IconEuroSharp.tsx new file mode 100644 index 000000000..d43c67f55 --- /dev/null +++ b/src/IconEuroSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEuroSharp as default } diff --git a/src/IconEuroSymbolOutlined.tsx b/src/IconEuroSymbolOutlined.tsx new file mode 100644 index 000000000..8be5ba7c9 --- /dev/null +++ b/src/IconEuroSymbolOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEuroSymbolOutlined as default } diff --git a/src/IconEuroSymbolRound.tsx b/src/IconEuroSymbolRound.tsx new file mode 100644 index 000000000..e637fe0ee --- /dev/null +++ b/src/IconEuroSymbolRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEuroSymbolRound as default } diff --git a/src/IconEuroSymbolSharp.tsx b/src/IconEuroSymbolSharp.tsx new file mode 100644 index 000000000..07be84e7d --- /dev/null +++ b/src/IconEuroSymbolSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEuroSymbolSharp as default } diff --git a/src/IconEuroSymbolTwoTone.tsx b/src/IconEuroSymbolTwoTone.tsx new file mode 100644 index 000000000..0eaabab8d --- /dev/null +++ b/src/IconEuroSymbolTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEuroSymbolTwoTone as default } diff --git a/src/IconEuroTwoTone.tsx b/src/IconEuroTwoTone.tsx new file mode 100644 index 000000000..d272b257e --- /dev/null +++ b/src/IconEuroTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEuroTwoTone as default } diff --git a/src/IconEvStationOutlined.tsx b/src/IconEvStationOutlined.tsx new file mode 100644 index 000000000..fac06517f --- /dev/null +++ b/src/IconEvStationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEvStationOutlined as default } diff --git a/src/IconEvStationRound.tsx b/src/IconEvStationRound.tsx new file mode 100644 index 000000000..ae6c3bacc --- /dev/null +++ b/src/IconEvStationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEvStationRound as default } diff --git a/src/IconEvStationSharp.tsx b/src/IconEvStationSharp.tsx new file mode 100644 index 000000000..a9f8be644 --- /dev/null +++ b/src/IconEvStationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEvStationSharp as default } diff --git a/src/IconEvStationTwoTone.tsx b/src/IconEvStationTwoTone.tsx new file mode 100644 index 000000000..dee84df0c --- /dev/null +++ b/src/IconEvStationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEvStationTwoTone as default } diff --git a/src/IconEventAvailableOutlined.tsx b/src/IconEventAvailableOutlined.tsx new file mode 100644 index 000000000..f35976e25 --- /dev/null +++ b/src/IconEventAvailableOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventAvailableOutlined as default } diff --git a/src/IconEventAvailableRound.tsx b/src/IconEventAvailableRound.tsx new file mode 100644 index 000000000..a9a866b4c --- /dev/null +++ b/src/IconEventAvailableRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventAvailableRound as default } diff --git a/src/IconEventAvailableSharp.tsx b/src/IconEventAvailableSharp.tsx new file mode 100644 index 000000000..6a8eb405a --- /dev/null +++ b/src/IconEventAvailableSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventAvailableSharp as default } diff --git a/src/IconEventAvailableTwoTone.tsx b/src/IconEventAvailableTwoTone.tsx new file mode 100644 index 000000000..dd6f14c55 --- /dev/null +++ b/src/IconEventAvailableTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEventAvailableTwoTone as default } diff --git a/src/IconEventBusyOutlined.tsx b/src/IconEventBusyOutlined.tsx new file mode 100644 index 000000000..da49f36e1 --- /dev/null +++ b/src/IconEventBusyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventBusyOutlined as default } diff --git a/src/IconEventBusyRound.tsx b/src/IconEventBusyRound.tsx new file mode 100644 index 000000000..b282f69a6 --- /dev/null +++ b/src/IconEventBusyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventBusyRound as default } diff --git a/src/IconEventBusySharp.tsx b/src/IconEventBusySharp.tsx new file mode 100644 index 000000000..587449b34 --- /dev/null +++ b/src/IconEventBusySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventBusySharp as default } diff --git a/src/IconEventBusyTwoTone.tsx b/src/IconEventBusyTwoTone.tsx new file mode 100644 index 000000000..44a6a6700 --- /dev/null +++ b/src/IconEventBusyTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEventBusyTwoTone as default } diff --git a/src/IconEventNoteOutlined.tsx b/src/IconEventNoteOutlined.tsx new file mode 100644 index 000000000..fc511118e --- /dev/null +++ b/src/IconEventNoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventNoteOutlined as default } diff --git a/src/IconEventNoteRound.tsx b/src/IconEventNoteRound.tsx new file mode 100644 index 000000000..c7de81692 --- /dev/null +++ b/src/IconEventNoteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventNoteRound as default } diff --git a/src/IconEventNoteSharp.tsx b/src/IconEventNoteSharp.tsx new file mode 100644 index 000000000..f897fd1e1 --- /dev/null +++ b/src/IconEventNoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventNoteSharp as default } diff --git a/src/IconEventNoteTwoTone.tsx b/src/IconEventNoteTwoTone.tsx new file mode 100644 index 000000000..f30469c9d --- /dev/null +++ b/src/IconEventNoteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEventNoteTwoTone as default } diff --git a/src/IconEventOutlined.tsx b/src/IconEventOutlined.tsx new file mode 100644 index 000000000..e93096804 --- /dev/null +++ b/src/IconEventOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventOutlined as default } diff --git a/src/IconEventRepeatOutlined.tsx b/src/IconEventRepeatOutlined.tsx new file mode 100644 index 000000000..4f75844d0 --- /dev/null +++ b/src/IconEventRepeatOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEventRepeatOutlined as default } diff --git a/src/IconEventRepeatRound.tsx b/src/IconEventRepeatRound.tsx new file mode 100644 index 000000000..7376958cc --- /dev/null +++ b/src/IconEventRepeatRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEventRepeatRound as default } diff --git a/src/IconEventRepeatSharp.tsx b/src/IconEventRepeatSharp.tsx new file mode 100644 index 000000000..0b66d9a8d --- /dev/null +++ b/src/IconEventRepeatSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconEventRepeatSharp as default } diff --git a/src/IconEventRepeatTwoTone.tsx b/src/IconEventRepeatTwoTone.tsx new file mode 100644 index 000000000..c09475bbb --- /dev/null +++ b/src/IconEventRepeatTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconEventRepeatTwoTone as default } diff --git a/src/IconEventRound.tsx b/src/IconEventRound.tsx new file mode 100644 index 000000000..3d2d86903 --- /dev/null +++ b/src/IconEventRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventRound as default } diff --git a/src/IconEventSeatOutlined.tsx b/src/IconEventSeatOutlined.tsx new file mode 100644 index 000000000..029c7f469 --- /dev/null +++ b/src/IconEventSeatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventSeatOutlined as default } diff --git a/src/IconEventSeatRound.tsx b/src/IconEventSeatRound.tsx new file mode 100644 index 000000000..28f75fa86 --- /dev/null +++ b/src/IconEventSeatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventSeatRound as default } diff --git a/src/IconEventSeatSharp.tsx b/src/IconEventSeatSharp.tsx new file mode 100644 index 000000000..b8ab2aba5 --- /dev/null +++ b/src/IconEventSeatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventSeatSharp as default } diff --git a/src/IconEventSeatTwoTone.tsx b/src/IconEventSeatTwoTone.tsx new file mode 100644 index 000000000..5e30fc9ae --- /dev/null +++ b/src/IconEventSeatTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEventSeatTwoTone as default } diff --git a/src/IconEventSharp.tsx b/src/IconEventSharp.tsx new file mode 100644 index 000000000..db0dd9161 --- /dev/null +++ b/src/IconEventSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconEventSharp as default } diff --git a/src/IconEventTwoTone.tsx b/src/IconEventTwoTone.tsx new file mode 100644 index 000000000..4ae97e0d9 --- /dev/null +++ b/src/IconEventTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconEventTwoTone as default } diff --git a/src/IconExitToAppOutlined.tsx b/src/IconExitToAppOutlined.tsx new file mode 100644 index 000000000..17969f576 --- /dev/null +++ b/src/IconExitToAppOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExitToAppOutlined as default } diff --git a/src/IconExitToAppRound.tsx b/src/IconExitToAppRound.tsx new file mode 100644 index 000000000..50f51e1d1 --- /dev/null +++ b/src/IconExitToAppRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExitToAppRound as default } diff --git a/src/IconExitToAppSharp.tsx b/src/IconExitToAppSharp.tsx new file mode 100644 index 000000000..dfaf7b9b3 --- /dev/null +++ b/src/IconExitToAppSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExitToAppSharp as default } diff --git a/src/IconExitToAppTwoTone.tsx b/src/IconExitToAppTwoTone.tsx new file mode 100644 index 000000000..a5d6e72e9 --- /dev/null +++ b/src/IconExitToAppTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExitToAppTwoTone as default } diff --git a/src/IconExpandCircleDownOutlined.tsx b/src/IconExpandCircleDownOutlined.tsx new file mode 100644 index 000000000..69fc39ea3 --- /dev/null +++ b/src/IconExpandCircleDownOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandCircleDownOutlined as default } diff --git a/src/IconExpandCircleDownRound.tsx b/src/IconExpandCircleDownRound.tsx new file mode 100644 index 000000000..291e7a69e --- /dev/null +++ b/src/IconExpandCircleDownRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandCircleDownRound as default } diff --git a/src/IconExpandCircleDownSharp.tsx b/src/IconExpandCircleDownSharp.tsx new file mode 100644 index 000000000..b6e0f23d1 --- /dev/null +++ b/src/IconExpandCircleDownSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandCircleDownSharp as default } diff --git a/src/IconExpandCircleDownTwoTone.tsx b/src/IconExpandCircleDownTwoTone.tsx new file mode 100644 index 000000000..f5f255e0f --- /dev/null +++ b/src/IconExpandCircleDownTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExpandCircleDownTwoTone as default } diff --git a/src/IconExpandLessOutlined.tsx b/src/IconExpandLessOutlined.tsx new file mode 100644 index 000000000..795971d4c --- /dev/null +++ b/src/IconExpandLessOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandLessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandLessOutlined as default } diff --git a/src/IconExpandLessRound.tsx b/src/IconExpandLessRound.tsx new file mode 100644 index 000000000..f941cb51f --- /dev/null +++ b/src/IconExpandLessRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandLessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandLessRound as default } diff --git a/src/IconExpandLessSharp.tsx b/src/IconExpandLessSharp.tsx new file mode 100644 index 000000000..9ffc19ae3 --- /dev/null +++ b/src/IconExpandLessSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandLessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandLessSharp as default } diff --git a/src/IconExpandLessTwoTone.tsx b/src/IconExpandLessTwoTone.tsx new file mode 100644 index 000000000..43781cb68 --- /dev/null +++ b/src/IconExpandLessTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandLessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandLessTwoTone as default } diff --git a/src/IconExpandMoreOutlined.tsx b/src/IconExpandMoreOutlined.tsx new file mode 100644 index 000000000..e253e8860 --- /dev/null +++ b/src/IconExpandMoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandMoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandMoreOutlined as default } diff --git a/src/IconExpandMoreRound.tsx b/src/IconExpandMoreRound.tsx new file mode 100644 index 000000000..835b6cae2 --- /dev/null +++ b/src/IconExpandMoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandMoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandMoreRound as default } diff --git a/src/IconExpandMoreSharp.tsx b/src/IconExpandMoreSharp.tsx new file mode 100644 index 000000000..34b260b32 --- /dev/null +++ b/src/IconExpandMoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandMoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandMoreSharp as default } diff --git a/src/IconExpandMoreTwoTone.tsx b/src/IconExpandMoreTwoTone.tsx new file mode 100644 index 000000000..cd8c95181 --- /dev/null +++ b/src/IconExpandMoreTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandMoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExpandMoreTwoTone as default } diff --git a/src/IconExpandOutlined.tsx b/src/IconExpandOutlined.tsx new file mode 100644 index 000000000..4de8dd96a --- /dev/null +++ b/src/IconExpandOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconExpandOutlined as default } diff --git a/src/IconExpandRound.tsx b/src/IconExpandRound.tsx new file mode 100644 index 000000000..44960ae32 --- /dev/null +++ b/src/IconExpandRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconExpandRound as default } diff --git a/src/IconExpandSharp.tsx b/src/IconExpandSharp.tsx new file mode 100644 index 000000000..e2494333f --- /dev/null +++ b/src/IconExpandSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconExpandSharp as default } diff --git a/src/IconExpandTwoTone.tsx b/src/IconExpandTwoTone.tsx new file mode 100644 index 000000000..842cea538 --- /dev/null +++ b/src/IconExpandTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconExpandTwoTone as default } diff --git a/src/IconExplicitOutlined.tsx b/src/IconExplicitOutlined.tsx new file mode 100644 index 000000000..decae5020 --- /dev/null +++ b/src/IconExplicitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExplicitOutlined as default } diff --git a/src/IconExplicitRound.tsx b/src/IconExplicitRound.tsx new file mode 100644 index 000000000..d3d378fa8 --- /dev/null +++ b/src/IconExplicitRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplicitRound as default } diff --git a/src/IconExplicitSharp.tsx b/src/IconExplicitSharp.tsx new file mode 100644 index 000000000..c309ebcea --- /dev/null +++ b/src/IconExplicitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExplicitSharp as default } diff --git a/src/IconExplicitTwoTone.tsx b/src/IconExplicitTwoTone.tsx new file mode 100644 index 000000000..cce9af183 --- /dev/null +++ b/src/IconExplicitTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExplicitTwoTone as default } diff --git a/src/IconExploreOffOutlined.tsx b/src/IconExploreOffOutlined.tsx new file mode 100644 index 000000000..80830e15a --- /dev/null +++ b/src/IconExploreOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreOffOutlined as default } diff --git a/src/IconExploreOffRound.tsx b/src/IconExploreOffRound.tsx new file mode 100644 index 000000000..58373b9e4 --- /dev/null +++ b/src/IconExploreOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreOffRound as default } diff --git a/src/IconExploreOffSharp.tsx b/src/IconExploreOffSharp.tsx new file mode 100644 index 000000000..78bb69f1f --- /dev/null +++ b/src/IconExploreOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreOffSharp as default } diff --git a/src/IconExploreOffTwoTone.tsx b/src/IconExploreOffTwoTone.tsx new file mode 100644 index 000000000..d1342e6f8 --- /dev/null +++ b/src/IconExploreOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExploreOffTwoTone as default } diff --git a/src/IconExploreOutlined.tsx b/src/IconExploreOutlined.tsx new file mode 100644 index 000000000..7da48dab1 --- /dev/null +++ b/src/IconExploreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreOutlined as default } diff --git a/src/IconExploreRound.tsx b/src/IconExploreRound.tsx new file mode 100644 index 000000000..393a5bd10 --- /dev/null +++ b/src/IconExploreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreRound as default } diff --git a/src/IconExploreSharp.tsx b/src/IconExploreSharp.tsx new file mode 100644 index 000000000..e3f4fe183 --- /dev/null +++ b/src/IconExploreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExploreSharp as default } diff --git a/src/IconExploreTwoTone.tsx b/src/IconExploreTwoTone.tsx new file mode 100644 index 000000000..df16f2f16 --- /dev/null +++ b/src/IconExploreTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExploreTwoTone as default } diff --git a/src/IconExposureNeg1Outlined.tsx b/src/IconExposureNeg1Outlined.tsx new file mode 100644 index 000000000..bdba8db0d --- /dev/null +++ b/src/IconExposureNeg1Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg1Outlined as default } diff --git a/src/IconExposureNeg1Round.tsx b/src/IconExposureNeg1Round.tsx new file mode 100644 index 000000000..54794746c --- /dev/null +++ b/src/IconExposureNeg1Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg1Round as default } diff --git a/src/IconExposureNeg1Sharp.tsx b/src/IconExposureNeg1Sharp.tsx new file mode 100644 index 000000000..4697d538e --- /dev/null +++ b/src/IconExposureNeg1Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg1Sharp as default } diff --git a/src/IconExposureNeg1TwoTone.tsx b/src/IconExposureNeg1TwoTone.tsx new file mode 100644 index 000000000..10d4c63d4 --- /dev/null +++ b/src/IconExposureNeg1TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg1TwoTone as default } diff --git a/src/IconExposureNeg2Outlined.tsx b/src/IconExposureNeg2Outlined.tsx new file mode 100644 index 000000000..462d1ff5c --- /dev/null +++ b/src/IconExposureNeg2Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg2Outlined as default } diff --git a/src/IconExposureNeg2Round.tsx b/src/IconExposureNeg2Round.tsx new file mode 100644 index 000000000..61f206567 --- /dev/null +++ b/src/IconExposureNeg2Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg2Round as default } diff --git a/src/IconExposureNeg2Sharp.tsx b/src/IconExposureNeg2Sharp.tsx new file mode 100644 index 000000000..0923ed6d9 --- /dev/null +++ b/src/IconExposureNeg2Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg2Sharp as default } diff --git a/src/IconExposureNeg2TwoTone.tsx b/src/IconExposureNeg2TwoTone.tsx new file mode 100644 index 000000000..b4b07c8eb --- /dev/null +++ b/src/IconExposureNeg2TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureNeg2TwoTone as default } diff --git a/src/IconExposureOutlined.tsx b/src/IconExposureOutlined.tsx new file mode 100644 index 000000000..07dc866fc --- /dev/null +++ b/src/IconExposureOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureOutlined as default } diff --git a/src/IconExposurePlus1Outlined.tsx b/src/IconExposurePlus1Outlined.tsx new file mode 100644 index 000000000..783ea59c8 --- /dev/null +++ b/src/IconExposurePlus1Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus1Outlined as default } diff --git a/src/IconExposurePlus1Round.tsx b/src/IconExposurePlus1Round.tsx new file mode 100644 index 000000000..63077b003 --- /dev/null +++ b/src/IconExposurePlus1Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus1Round as default } diff --git a/src/IconExposurePlus1Sharp.tsx b/src/IconExposurePlus1Sharp.tsx new file mode 100644 index 000000000..7671f1105 --- /dev/null +++ b/src/IconExposurePlus1Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus1Sharp as default } diff --git a/src/IconExposurePlus1TwoTone.tsx b/src/IconExposurePlus1TwoTone.tsx new file mode 100644 index 000000000..3574bbfdb --- /dev/null +++ b/src/IconExposurePlus1TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus1TwoTone as default } diff --git a/src/IconExposurePlus2Outlined.tsx b/src/IconExposurePlus2Outlined.tsx new file mode 100644 index 000000000..174e222ca --- /dev/null +++ b/src/IconExposurePlus2Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus2Outlined as default } diff --git a/src/IconExposurePlus2Round.tsx b/src/IconExposurePlus2Round.tsx new file mode 100644 index 000000000..02236ed16 --- /dev/null +++ b/src/IconExposurePlus2Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus2Round as default } diff --git a/src/IconExposurePlus2Sharp.tsx b/src/IconExposurePlus2Sharp.tsx new file mode 100644 index 000000000..9ff81428e --- /dev/null +++ b/src/IconExposurePlus2Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus2Sharp as default } diff --git a/src/IconExposurePlus2TwoTone.tsx b/src/IconExposurePlus2TwoTone.tsx new file mode 100644 index 000000000..00d0f7bfb --- /dev/null +++ b/src/IconExposurePlus2TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposurePlus2TwoTone as default } diff --git a/src/IconExposureRound.tsx b/src/IconExposureRound.tsx new file mode 100644 index 000000000..561e52a97 --- /dev/null +++ b/src/IconExposureRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureRound as default } diff --git a/src/IconExposureSharp.tsx b/src/IconExposureSharp.tsx new file mode 100644 index 000000000..9c32b6cd6 --- /dev/null +++ b/src/IconExposureSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureSharp as default } diff --git a/src/IconExposureTwoTone.tsx b/src/IconExposureTwoTone.tsx new file mode 100644 index 000000000..82267a7c9 --- /dev/null +++ b/src/IconExposureTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExposureTwoTone as default } diff --git a/src/IconExposureZeroOutlined.tsx b/src/IconExposureZeroOutlined.tsx new file mode 100644 index 000000000..7a9060322 --- /dev/null +++ b/src/IconExposureZeroOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureZeroOutlined as default } diff --git a/src/IconExposureZeroRound.tsx b/src/IconExposureZeroRound.tsx new file mode 100644 index 000000000..ea829b55c --- /dev/null +++ b/src/IconExposureZeroRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureZeroRound as default } diff --git a/src/IconExposureZeroSharp.tsx b/src/IconExposureZeroSharp.tsx new file mode 100644 index 000000000..11b869cf1 --- /dev/null +++ b/src/IconExposureZeroSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureZeroSharp as default } diff --git a/src/IconExposureZeroTwoTone.tsx b/src/IconExposureZeroTwoTone.tsx new file mode 100644 index 000000000..78c13a9d6 --- /dev/null +++ b/src/IconExposureZeroTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExposureZeroTwoTone as default } diff --git a/src/IconExtensionOffOutlined.tsx b/src/IconExtensionOffOutlined.tsx new file mode 100644 index 000000000..1c8449157 --- /dev/null +++ b/src/IconExtensionOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionOffOutlined as default } diff --git a/src/IconExtensionOffRound.tsx b/src/IconExtensionOffRound.tsx new file mode 100644 index 000000000..37f738cf5 --- /dev/null +++ b/src/IconExtensionOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionOffRound as default } diff --git a/src/IconExtensionOffSharp.tsx b/src/IconExtensionOffSharp.tsx new file mode 100644 index 000000000..c7d619b05 --- /dev/null +++ b/src/IconExtensionOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionOffSharp as default } diff --git a/src/IconExtensionOffTwoTone.tsx b/src/IconExtensionOffTwoTone.tsx new file mode 100644 index 000000000..317d6acfa --- /dev/null +++ b/src/IconExtensionOffTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExtensionOffTwoTone as default } diff --git a/src/IconExtensionOutlined.tsx b/src/IconExtensionOutlined.tsx new file mode 100644 index 000000000..017e3111d --- /dev/null +++ b/src/IconExtensionOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionOutlined as default } diff --git a/src/IconExtensionRound.tsx b/src/IconExtensionRound.tsx new file mode 100644 index 000000000..88dc25901 --- /dev/null +++ b/src/IconExtensionRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionRound as default } diff --git a/src/IconExtensionSharp.tsx b/src/IconExtensionSharp.tsx new file mode 100644 index 000000000..3a7dc8093 --- /dev/null +++ b/src/IconExtensionSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconExtensionSharp as default } diff --git a/src/IconExtensionTwoTone.tsx b/src/IconExtensionTwoTone.tsx new file mode 100644 index 000000000..a0f6eb738 --- /dev/null +++ b/src/IconExtensionTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconExtensionTwoTone as default } diff --git a/src/IconFace2Outlined.tsx b/src/IconFace2Outlined.tsx new file mode 100644 index 000000000..6bde04f43 --- /dev/null +++ b/src/IconFace2Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace2Outlined as default } diff --git a/src/IconFace2Round.tsx b/src/IconFace2Round.tsx new file mode 100644 index 000000000..0d980bc7e --- /dev/null +++ b/src/IconFace2Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFace2Round as default } diff --git a/src/IconFace2Sharp.tsx b/src/IconFace2Sharp.tsx new file mode 100644 index 000000000..6fae7fee9 --- /dev/null +++ b/src/IconFace2Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace2Sharp as default } diff --git a/src/IconFace2TwoTone.tsx b/src/IconFace2TwoTone.tsx new file mode 100644 index 000000000..33560ad12 --- /dev/null +++ b/src/IconFace2TwoTone.tsx @@ -0,0 +1,49 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconFace2TwoTone as default } diff --git a/src/IconFace3Outlined.tsx b/src/IconFace3Outlined.tsx new file mode 100644 index 000000000..7c9e2fe00 --- /dev/null +++ b/src/IconFace3Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace3Outlined as default } diff --git a/src/IconFace3Round.tsx b/src/IconFace3Round.tsx new file mode 100644 index 000000000..403098d07 --- /dev/null +++ b/src/IconFace3Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFace3Round as default } diff --git a/src/IconFace3Sharp.tsx b/src/IconFace3Sharp.tsx new file mode 100644 index 000000000..097bdcb33 --- /dev/null +++ b/src/IconFace3Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace3Sharp as default } diff --git a/src/IconFace3TwoTone.tsx b/src/IconFace3TwoTone.tsx new file mode 100644 index 000000000..c9329829c --- /dev/null +++ b/src/IconFace3TwoTone.tsx @@ -0,0 +1,41 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconFace3TwoTone as default } diff --git a/src/IconFace4Outlined.tsx b/src/IconFace4Outlined.tsx new file mode 100644 index 000000000..51eb63088 --- /dev/null +++ b/src/IconFace4Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace4Outlined as default } diff --git a/src/IconFace4Round.tsx b/src/IconFace4Round.tsx new file mode 100644 index 000000000..d107bcec3 --- /dev/null +++ b/src/IconFace4Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFace4Round as default } diff --git a/src/IconFace4Sharp.tsx b/src/IconFace4Sharp.tsx new file mode 100644 index 000000000..65b91fff6 --- /dev/null +++ b/src/IconFace4Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace4Sharp as default } diff --git a/src/IconFace4TwoTone.tsx b/src/IconFace4TwoTone.tsx new file mode 100644 index 000000000..0c19931eb --- /dev/null +++ b/src/IconFace4TwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconFace4TwoTone as default } diff --git a/src/IconFace5Outlined.tsx b/src/IconFace5Outlined.tsx new file mode 100644 index 000000000..d44dcbcc3 --- /dev/null +++ b/src/IconFace5Outlined.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconFace5Outlined as default } diff --git a/src/IconFace5Round.tsx b/src/IconFace5Round.tsx new file mode 100644 index 000000000..b307c5021 --- /dev/null +++ b/src/IconFace5Round.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconFace5Round as default } diff --git a/src/IconFace5Sharp.tsx b/src/IconFace5Sharp.tsx new file mode 100644 index 000000000..99304cdf4 --- /dev/null +++ b/src/IconFace5Sharp.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconFace5Sharp as default } diff --git a/src/IconFace5TwoTone.tsx b/src/IconFace5TwoTone.tsx new file mode 100644 index 000000000..ff8e17101 --- /dev/null +++ b/src/IconFace5TwoTone.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconFace5TwoTone as default } diff --git a/src/IconFace6Outlined.tsx b/src/IconFace6Outlined.tsx new file mode 100644 index 000000000..82a14d2a9 --- /dev/null +++ b/src/IconFace6Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace6Outlined as default } diff --git a/src/IconFace6Round.tsx b/src/IconFace6Round.tsx new file mode 100644 index 000000000..fc07e855f --- /dev/null +++ b/src/IconFace6Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFace6Round as default } diff --git a/src/IconFace6Sharp.tsx b/src/IconFace6Sharp.tsx new file mode 100644 index 000000000..f9e82d92c --- /dev/null +++ b/src/IconFace6Sharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFace6Sharp as default } diff --git a/src/IconFace6TwoTone.tsx b/src/IconFace6TwoTone.tsx new file mode 100644 index 000000000..38d048fae --- /dev/null +++ b/src/IconFace6TwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFace6TwoTone as default } diff --git a/src/IconFaceOutlined.tsx b/src/IconFaceOutlined.tsx new file mode 100644 index 000000000..11cb3e822 --- /dev/null +++ b/src/IconFaceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFaceOutlined as default } diff --git a/src/IconFaceRetouchingNaturalOutlined.tsx b/src/IconFaceRetouchingNaturalOutlined.tsx new file mode 100644 index 000000000..ad3f901e0 --- /dev/null +++ b/src/IconFaceRetouchingNaturalOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingNaturalOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFaceRetouchingNaturalOutlined as default } diff --git a/src/IconFaceRetouchingNaturalRound.tsx b/src/IconFaceRetouchingNaturalRound.tsx new file mode 100644 index 000000000..14871d7a4 --- /dev/null +++ b/src/IconFaceRetouchingNaturalRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingNaturalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFaceRetouchingNaturalRound as default } diff --git a/src/IconFaceRetouchingNaturalSharp.tsx b/src/IconFaceRetouchingNaturalSharp.tsx new file mode 100644 index 000000000..e6633d66f --- /dev/null +++ b/src/IconFaceRetouchingNaturalSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingNaturalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFaceRetouchingNaturalSharp as default } diff --git a/src/IconFaceRetouchingNaturalTwoTone.tsx b/src/IconFaceRetouchingNaturalTwoTone.tsx new file mode 100644 index 000000000..b05711f57 --- /dev/null +++ b/src/IconFaceRetouchingNaturalTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingNaturalTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconFaceRetouchingNaturalTwoTone as default } diff --git a/src/IconFaceRetouchingOffOutlined.tsx b/src/IconFaceRetouchingOffOutlined.tsx new file mode 100644 index 000000000..f76c30179 --- /dev/null +++ b/src/IconFaceRetouchingOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFaceRetouchingOffOutlined as default } diff --git a/src/IconFaceRetouchingOffRound.tsx b/src/IconFaceRetouchingOffRound.tsx new file mode 100644 index 000000000..8f6580dbe --- /dev/null +++ b/src/IconFaceRetouchingOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFaceRetouchingOffRound as default } diff --git a/src/IconFaceRetouchingOffSharp.tsx b/src/IconFaceRetouchingOffSharp.tsx new file mode 100644 index 000000000..2ac8c9f85 --- /dev/null +++ b/src/IconFaceRetouchingOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFaceRetouchingOffSharp as default } diff --git a/src/IconFaceRetouchingOffTwoTone.tsx b/src/IconFaceRetouchingOffTwoTone.tsx new file mode 100644 index 000000000..f398ac7ba --- /dev/null +++ b/src/IconFaceRetouchingOffTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFaceRetouchingOffTwoTone as default } diff --git a/src/IconFaceRound.tsx b/src/IconFaceRound.tsx new file mode 100644 index 000000000..e5f6cb298 --- /dev/null +++ b/src/IconFaceRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFaceRound as default } diff --git a/src/IconFaceSharp.tsx b/src/IconFaceSharp.tsx new file mode 100644 index 000000000..dca1fabfd --- /dev/null +++ b/src/IconFaceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFaceSharp as default } diff --git a/src/IconFaceTwoTone.tsx b/src/IconFaceTwoTone.tsx new file mode 100644 index 000000000..7edce9585 --- /dev/null +++ b/src/IconFaceTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFaceTwoTone as default } diff --git a/src/IconFactCheckOutlined.tsx b/src/IconFactCheckOutlined.tsx new file mode 100644 index 000000000..511fea3de --- /dev/null +++ b/src/IconFactCheckOutlined.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconFactCheckOutlined as default } diff --git a/src/IconFactCheckRound.tsx b/src/IconFactCheckRound.tsx new file mode 100644 index 000000000..f912dcd03 --- /dev/null +++ b/src/IconFactCheckRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFactCheckRound as default } diff --git a/src/IconFactCheckSharp.tsx b/src/IconFactCheckSharp.tsx new file mode 100644 index 000000000..0fef5b875 --- /dev/null +++ b/src/IconFactCheckSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFactCheckSharp as default } diff --git a/src/IconFactCheckTwoTone.tsx b/src/IconFactCheckTwoTone.tsx new file mode 100644 index 000000000..00f463c21 --- /dev/null +++ b/src/IconFactCheckTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconFactCheckTwoTone as default } diff --git a/src/IconFactoryOutlined.tsx b/src/IconFactoryOutlined.tsx new file mode 100644 index 000000000..b242f1976 --- /dev/null +++ b/src/IconFactoryOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFactoryOutlined as default } diff --git a/src/IconFactoryRound.tsx b/src/IconFactoryRound.tsx new file mode 100644 index 000000000..b1dda0bbe --- /dev/null +++ b/src/IconFactoryRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFactoryRound as default } diff --git a/src/IconFactorySharp.tsx b/src/IconFactorySharp.tsx new file mode 100644 index 000000000..1bc8eb078 --- /dev/null +++ b/src/IconFactorySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFactorySharp as default } diff --git a/src/IconFactoryTwoTone.tsx b/src/IconFactoryTwoTone.tsx new file mode 100644 index 000000000..749689dca --- /dev/null +++ b/src/IconFactoryTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFactoryTwoTone as default } diff --git a/src/IconFamilyRestroomOutlined.tsx b/src/IconFamilyRestroomOutlined.tsx new file mode 100644 index 000000000..11ea90f8e --- /dev/null +++ b/src/IconFamilyRestroomOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFamilyRestroomOutlined as default } diff --git a/src/IconFamilyRestroomRound.tsx b/src/IconFamilyRestroomRound.tsx new file mode 100644 index 000000000..5d1a239fa --- /dev/null +++ b/src/IconFamilyRestroomRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFamilyRestroomRound as default } diff --git a/src/IconFamilyRestroomSharp.tsx b/src/IconFamilyRestroomSharp.tsx new file mode 100644 index 000000000..d472c5b05 --- /dev/null +++ b/src/IconFamilyRestroomSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFamilyRestroomSharp as default } diff --git a/src/IconFamilyRestroomTwoTone.tsx b/src/IconFamilyRestroomTwoTone.tsx new file mode 100644 index 000000000..9a7e94b6f --- /dev/null +++ b/src/IconFamilyRestroomTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFamilyRestroomTwoTone as default } diff --git a/src/IconFastForwardOutlined.tsx b/src/IconFastForwardOutlined.tsx new file mode 100644 index 000000000..41f9ff6e8 --- /dev/null +++ b/src/IconFastForwardOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFastForwardOutlined as default } diff --git a/src/IconFastForwardRound.tsx b/src/IconFastForwardRound.tsx new file mode 100644 index 000000000..83542824d --- /dev/null +++ b/src/IconFastForwardRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastForwardRound as default } diff --git a/src/IconFastForwardSharp.tsx b/src/IconFastForwardSharp.tsx new file mode 100644 index 000000000..1d35935e7 --- /dev/null +++ b/src/IconFastForwardSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFastForwardSharp as default } diff --git a/src/IconFastForwardTwoTone.tsx b/src/IconFastForwardTwoTone.tsx new file mode 100644 index 000000000..8e6cda515 --- /dev/null +++ b/src/IconFastForwardTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconFastForwardTwoTone as default } diff --git a/src/IconFastRewindOutlined.tsx b/src/IconFastRewindOutlined.tsx new file mode 100644 index 000000000..a5f2d01f8 --- /dev/null +++ b/src/IconFastRewindOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFastRewindOutlined as default } diff --git a/src/IconFastRewindRound.tsx b/src/IconFastRewindRound.tsx new file mode 100644 index 000000000..1fdfbd8cc --- /dev/null +++ b/src/IconFastRewindRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastRewindRound as default } diff --git a/src/IconFastRewindSharp.tsx b/src/IconFastRewindSharp.tsx new file mode 100644 index 000000000..5cece7309 --- /dev/null +++ b/src/IconFastRewindSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFastRewindSharp as default } diff --git a/src/IconFastRewindTwoTone.tsx b/src/IconFastRewindTwoTone.tsx new file mode 100644 index 000000000..894658b69 --- /dev/null +++ b/src/IconFastRewindTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFastRewindTwoTone as default } diff --git a/src/IconFastfoodOutlined.tsx b/src/IconFastfoodOutlined.tsx new file mode 100644 index 000000000..ff48e6161 --- /dev/null +++ b/src/IconFastfoodOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFastfoodOutlined as default } diff --git a/src/IconFastfoodRound.tsx b/src/IconFastfoodRound.tsx new file mode 100644 index 000000000..3c2fbc2fc --- /dev/null +++ b/src/IconFastfoodRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFastfoodRound as default } diff --git a/src/IconFastfoodSharp.tsx b/src/IconFastfoodSharp.tsx new file mode 100644 index 000000000..4641fc5a0 --- /dev/null +++ b/src/IconFastfoodSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFastfoodSharp as default } diff --git a/src/IconFastfoodTwoTone.tsx b/src/IconFastfoodTwoTone.tsx new file mode 100644 index 000000000..d8c3f2388 --- /dev/null +++ b/src/IconFastfoodTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFastfoodTwoTone as default } diff --git a/src/IconFavoriteBorderOutlined.tsx b/src/IconFavoriteBorderOutlined.tsx new file mode 100644 index 000000000..99f22baba --- /dev/null +++ b/src/IconFavoriteBorderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteBorderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteBorderOutlined as default } diff --git a/src/IconFavoriteBorderRound.tsx b/src/IconFavoriteBorderRound.tsx new file mode 100644 index 000000000..289eab376 --- /dev/null +++ b/src/IconFavoriteBorderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteBorderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteBorderRound as default } diff --git a/src/IconFavoriteBorderSharp.tsx b/src/IconFavoriteBorderSharp.tsx new file mode 100644 index 000000000..0a2d9bb5f --- /dev/null +++ b/src/IconFavoriteBorderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteBorderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteBorderSharp as default } diff --git a/src/IconFavoriteBorderTwoTone.tsx b/src/IconFavoriteBorderTwoTone.tsx new file mode 100644 index 000000000..83d9fa851 --- /dev/null +++ b/src/IconFavoriteBorderTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteBorderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteBorderTwoTone as default } diff --git a/src/IconFavoriteOutlined.tsx b/src/IconFavoriteOutlined.tsx new file mode 100644 index 000000000..32714d96f --- /dev/null +++ b/src/IconFavoriteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteOutlined as default } diff --git a/src/IconFavoriteRound.tsx b/src/IconFavoriteRound.tsx new file mode 100644 index 000000000..4707c54a5 --- /dev/null +++ b/src/IconFavoriteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteRound as default } diff --git a/src/IconFavoriteSharp.tsx b/src/IconFavoriteSharp.tsx new file mode 100644 index 000000000..d6ebdcd51 --- /dev/null +++ b/src/IconFavoriteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFavoriteSharp as default } diff --git a/src/IconFavoriteTwoTone.tsx b/src/IconFavoriteTwoTone.tsx new file mode 100644 index 000000000..eadd15113 --- /dev/null +++ b/src/IconFavoriteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFavoriteTwoTone as default } diff --git a/src/IconFaxOutlined.tsx b/src/IconFaxOutlined.tsx new file mode 100644 index 000000000..44cf9c352 --- /dev/null +++ b/src/IconFaxOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconFaxOutlined as default } diff --git a/src/IconFaxRound.tsx b/src/IconFaxRound.tsx new file mode 100644 index 000000000..d7900de9f --- /dev/null +++ b/src/IconFaxRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFaxRound as default } diff --git a/src/IconFaxSharp.tsx b/src/IconFaxSharp.tsx new file mode 100644 index 000000000..a24f29b9b --- /dev/null +++ b/src/IconFaxSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFaxSharp as default } diff --git a/src/IconFaxTwoTone.tsx b/src/IconFaxTwoTone.tsx new file mode 100644 index 000000000..64fe08935 --- /dev/null +++ b/src/IconFaxTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconFaxTwoTone as default } diff --git a/src/IconFeaturedPlayListOutlined.tsx b/src/IconFeaturedPlayListOutlined.tsx new file mode 100644 index 000000000..86a5e98f0 --- /dev/null +++ b/src/IconFeaturedPlayListOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeaturedPlayListOutlined as default } diff --git a/src/IconFeaturedPlayListRound.tsx b/src/IconFeaturedPlayListRound.tsx new file mode 100644 index 000000000..262a459c0 --- /dev/null +++ b/src/IconFeaturedPlayListRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedPlayListRound as default } diff --git a/src/IconFeaturedPlayListSharp.tsx b/src/IconFeaturedPlayListSharp.tsx new file mode 100644 index 000000000..1067b05f8 --- /dev/null +++ b/src/IconFeaturedPlayListSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeaturedPlayListSharp as default } diff --git a/src/IconFeaturedPlayListTwoTone.tsx b/src/IconFeaturedPlayListTwoTone.tsx new file mode 100644 index 000000000..b1b323f27 --- /dev/null +++ b/src/IconFeaturedPlayListTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFeaturedPlayListTwoTone as default } diff --git a/src/IconFeaturedVideoOutlined.tsx b/src/IconFeaturedVideoOutlined.tsx new file mode 100644 index 000000000..bda8041b6 --- /dev/null +++ b/src/IconFeaturedVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeaturedVideoOutlined as default } diff --git a/src/IconFeaturedVideoRound.tsx b/src/IconFeaturedVideoRound.tsx new file mode 100644 index 000000000..06ef8ddd0 --- /dev/null +++ b/src/IconFeaturedVideoRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedVideoRound as default } diff --git a/src/IconFeaturedVideoSharp.tsx b/src/IconFeaturedVideoSharp.tsx new file mode 100644 index 000000000..8726d6fba --- /dev/null +++ b/src/IconFeaturedVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeaturedVideoSharp as default } diff --git a/src/IconFeaturedVideoTwoTone.tsx b/src/IconFeaturedVideoTwoTone.tsx new file mode 100644 index 000000000..42b8bbea8 --- /dev/null +++ b/src/IconFeaturedVideoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFeaturedVideoTwoTone as default } diff --git a/src/IconFeedOutlined.tsx b/src/IconFeedOutlined.tsx new file mode 100644 index 000000000..2dfd98216 --- /dev/null +++ b/src/IconFeedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFeedOutlined as default } diff --git a/src/IconFeedRound.tsx b/src/IconFeedRound.tsx new file mode 100644 index 000000000..a292b8593 --- /dev/null +++ b/src/IconFeedRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFeedRound as default } diff --git a/src/IconFeedSharp.tsx b/src/IconFeedSharp.tsx new file mode 100644 index 000000000..18cbfcbf5 --- /dev/null +++ b/src/IconFeedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFeedSharp as default } diff --git a/src/IconFeedTwoTone.tsx b/src/IconFeedTwoTone.tsx new file mode 100644 index 000000000..2bf4b4a31 --- /dev/null +++ b/src/IconFeedTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFeedTwoTone as default } diff --git a/src/IconFeedbackOutlined.tsx b/src/IconFeedbackOutlined.tsx new file mode 100644 index 000000000..23667938b --- /dev/null +++ b/src/IconFeedbackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeedbackOutlined as default } diff --git a/src/IconFeedbackRound.tsx b/src/IconFeedbackRound.tsx new file mode 100644 index 000000000..aeef9357f --- /dev/null +++ b/src/IconFeedbackRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeedbackRound as default } diff --git a/src/IconFeedbackSharp.tsx b/src/IconFeedbackSharp.tsx new file mode 100644 index 000000000..fa79a76d5 --- /dev/null +++ b/src/IconFeedbackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFeedbackSharp as default } diff --git a/src/IconFeedbackTwoTone.tsx b/src/IconFeedbackTwoTone.tsx new file mode 100644 index 000000000..b28add5ff --- /dev/null +++ b/src/IconFeedbackTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFeedbackTwoTone as default } diff --git a/src/IconFemaleOutlined.tsx b/src/IconFemaleOutlined.tsx new file mode 100644 index 000000000..9c6385ecb --- /dev/null +++ b/src/IconFemaleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFemaleOutlined as default } diff --git a/src/IconFemaleRound.tsx b/src/IconFemaleRound.tsx new file mode 100644 index 000000000..b696df2d8 --- /dev/null +++ b/src/IconFemaleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFemaleRound as default } diff --git a/src/IconFemaleSharp.tsx b/src/IconFemaleSharp.tsx new file mode 100644 index 000000000..24ae23a39 --- /dev/null +++ b/src/IconFemaleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFemaleSharp as default } diff --git a/src/IconFemaleTwoTone.tsx b/src/IconFemaleTwoTone.tsx new file mode 100644 index 000000000..aeb804558 --- /dev/null +++ b/src/IconFemaleTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFemaleTwoTone as default } diff --git a/src/IconFenceOutlined.tsx b/src/IconFenceOutlined.tsx new file mode 100644 index 000000000..3e565e9d7 --- /dev/null +++ b/src/IconFenceOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFenceOutlined as default } diff --git a/src/IconFenceRound.tsx b/src/IconFenceRound.tsx new file mode 100644 index 000000000..71c5a23ba --- /dev/null +++ b/src/IconFenceRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFenceRound as default } diff --git a/src/IconFenceSharp.tsx b/src/IconFenceSharp.tsx new file mode 100644 index 000000000..dfb044d6e --- /dev/null +++ b/src/IconFenceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFenceSharp as default } diff --git a/src/IconFenceTwoTone.tsx b/src/IconFenceTwoTone.tsx new file mode 100644 index 000000000..86424b100 --- /dev/null +++ b/src/IconFenceTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFenceTwoTone as default } diff --git a/src/IconFestivalOutlined.tsx b/src/IconFestivalOutlined.tsx new file mode 100644 index 000000000..c20a78c94 --- /dev/null +++ b/src/IconFestivalOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFestivalOutlined as default } diff --git a/src/IconFestivalRound.tsx b/src/IconFestivalRound.tsx new file mode 100644 index 000000000..7acbfccb9 --- /dev/null +++ b/src/IconFestivalRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFestivalRound as default } diff --git a/src/IconFestivalSharp.tsx b/src/IconFestivalSharp.tsx new file mode 100644 index 000000000..4f0fa46e5 --- /dev/null +++ b/src/IconFestivalSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFestivalSharp as default } diff --git a/src/IconFestivalTwoTone.tsx b/src/IconFestivalTwoTone.tsx new file mode 100644 index 000000000..83cdefd31 --- /dev/null +++ b/src/IconFestivalTwoTone.tsx @@ -0,0 +1,48 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconFestivalTwoTone as default } diff --git a/src/IconFiberDvrOutlined.tsx b/src/IconFiberDvrOutlined.tsx new file mode 100644 index 000000000..95a645f45 --- /dev/null +++ b/src/IconFiberDvrOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberDvrOutlined as default } diff --git a/src/IconFiberDvrRound.tsx b/src/IconFiberDvrRound.tsx new file mode 100644 index 000000000..ee42088ff --- /dev/null +++ b/src/IconFiberDvrRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberDvrRound as default } diff --git a/src/IconFiberDvrSharp.tsx b/src/IconFiberDvrSharp.tsx new file mode 100644 index 000000000..92875be5d --- /dev/null +++ b/src/IconFiberDvrSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberDvrSharp as default } diff --git a/src/IconFiberDvrTwoTone.tsx b/src/IconFiberDvrTwoTone.tsx new file mode 100644 index 000000000..9ab5b03c4 --- /dev/null +++ b/src/IconFiberDvrTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFiberDvrTwoTone as default } diff --git a/src/IconFiberManualRecordOutlined.tsx b/src/IconFiberManualRecordOutlined.tsx new file mode 100644 index 000000000..bceeb4a6b --- /dev/null +++ b/src/IconFiberManualRecordOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberManualRecordOutlined as default } diff --git a/src/IconFiberManualRecordRound.tsx b/src/IconFiberManualRecordRound.tsx new file mode 100644 index 000000000..272a18670 --- /dev/null +++ b/src/IconFiberManualRecordRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberManualRecordRound as default } diff --git a/src/IconFiberManualRecordSharp.tsx b/src/IconFiberManualRecordSharp.tsx new file mode 100644 index 000000000..21869bc89 --- /dev/null +++ b/src/IconFiberManualRecordSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberManualRecordSharp as default } diff --git a/src/IconFiberManualRecordTwoTone.tsx b/src/IconFiberManualRecordTwoTone.tsx new file mode 100644 index 000000000..363596d33 --- /dev/null +++ b/src/IconFiberManualRecordTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFiberManualRecordTwoTone as default } diff --git a/src/IconFiberNewOutlined.tsx b/src/IconFiberNewOutlined.tsx new file mode 100644 index 000000000..c6b79b72f --- /dev/null +++ b/src/IconFiberNewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberNewOutlined as default } diff --git a/src/IconFiberNewRound.tsx b/src/IconFiberNewRound.tsx new file mode 100644 index 000000000..1f31f5aa3 --- /dev/null +++ b/src/IconFiberNewRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberNewRound as default } diff --git a/src/IconFiberNewSharp.tsx b/src/IconFiberNewSharp.tsx new file mode 100644 index 000000000..782eb96b7 --- /dev/null +++ b/src/IconFiberNewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberNewSharp as default } diff --git a/src/IconFiberNewTwoTone.tsx b/src/IconFiberNewTwoTone.tsx new file mode 100644 index 000000000..5975d8d8f --- /dev/null +++ b/src/IconFiberNewTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFiberNewTwoTone as default } diff --git a/src/IconFiberPinOutlined.tsx b/src/IconFiberPinOutlined.tsx new file mode 100644 index 000000000..5e3699f41 --- /dev/null +++ b/src/IconFiberPinOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberPinOutlined as default } diff --git a/src/IconFiberPinRound.tsx b/src/IconFiberPinRound.tsx new file mode 100644 index 000000000..4188b87f6 --- /dev/null +++ b/src/IconFiberPinRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberPinRound as default } diff --git a/src/IconFiberPinSharp.tsx b/src/IconFiberPinSharp.tsx new file mode 100644 index 000000000..e5cbeec12 --- /dev/null +++ b/src/IconFiberPinSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberPinSharp as default } diff --git a/src/IconFiberPinTwoTone.tsx b/src/IconFiberPinTwoTone.tsx new file mode 100644 index 000000000..43ec3c7ea --- /dev/null +++ b/src/IconFiberPinTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFiberPinTwoTone as default } diff --git a/src/IconFiberSmartRecordOutlined.tsx b/src/IconFiberSmartRecordOutlined.tsx new file mode 100644 index 000000000..bf6ee8ae9 --- /dev/null +++ b/src/IconFiberSmartRecordOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberSmartRecordOutlined as default } diff --git a/src/IconFiberSmartRecordRound.tsx b/src/IconFiberSmartRecordRound.tsx new file mode 100644 index 000000000..91e20bdd5 --- /dev/null +++ b/src/IconFiberSmartRecordRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFiberSmartRecordRound as default } diff --git a/src/IconFiberSmartRecordSharp.tsx b/src/IconFiberSmartRecordSharp.tsx new file mode 100644 index 000000000..89e5772a4 --- /dev/null +++ b/src/IconFiberSmartRecordSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFiberSmartRecordSharp as default } diff --git a/src/IconFiberSmartRecordTwoTone.tsx b/src/IconFiberSmartRecordTwoTone.tsx new file mode 100644 index 000000000..91d64d29a --- /dev/null +++ b/src/IconFiberSmartRecordTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFiberSmartRecordTwoTone as default } diff --git a/src/IconFileCopyOutlined.tsx b/src/IconFileCopyOutlined.tsx new file mode 100644 index 000000000..bd8c46569 --- /dev/null +++ b/src/IconFileCopyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileCopyOutlined as default } diff --git a/src/IconFileCopyRound.tsx b/src/IconFileCopyRound.tsx new file mode 100644 index 000000000..26d7acc10 --- /dev/null +++ b/src/IconFileCopyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileCopyRound as default } diff --git a/src/IconFileCopySharp.tsx b/src/IconFileCopySharp.tsx new file mode 100644 index 000000000..b987cfe81 --- /dev/null +++ b/src/IconFileCopySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileCopySharp as default } diff --git a/src/IconFileCopyTwoTone.tsx b/src/IconFileCopyTwoTone.tsx new file mode 100644 index 000000000..5c980c62e --- /dev/null +++ b/src/IconFileCopyTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFileCopyTwoTone as default } diff --git a/src/IconFileDownloadDoneOutlined.tsx b/src/IconFileDownloadDoneOutlined.tsx new file mode 100644 index 000000000..d73ca30f6 --- /dev/null +++ b/src/IconFileDownloadDoneOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadDoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFileDownloadDoneOutlined as default } diff --git a/src/IconFileDownloadDoneRound.tsx b/src/IconFileDownloadDoneRound.tsx new file mode 100644 index 000000000..8a4686327 --- /dev/null +++ b/src/IconFileDownloadDoneRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadDoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFileDownloadDoneRound as default } diff --git a/src/IconFileDownloadDoneSharp.tsx b/src/IconFileDownloadDoneSharp.tsx new file mode 100644 index 000000000..7c261980f --- /dev/null +++ b/src/IconFileDownloadDoneSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadDoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFileDownloadDoneSharp as default } diff --git a/src/IconFileDownloadDoneTwoTone.tsx b/src/IconFileDownloadDoneTwoTone.tsx new file mode 100644 index 000000000..52525b037 --- /dev/null +++ b/src/IconFileDownloadDoneTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadDoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFileDownloadDoneTwoTone as default } diff --git a/src/IconFileDownloadOffOutlined.tsx b/src/IconFileDownloadOffOutlined.tsx new file mode 100644 index 000000000..765a02483 --- /dev/null +++ b/src/IconFileDownloadOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileDownloadOffOutlined as default } diff --git a/src/IconFileDownloadOffRound.tsx b/src/IconFileDownloadOffRound.tsx new file mode 100644 index 000000000..8721a4859 --- /dev/null +++ b/src/IconFileDownloadOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileDownloadOffRound as default } diff --git a/src/IconFileDownloadOffSharp.tsx b/src/IconFileDownloadOffSharp.tsx new file mode 100644 index 000000000..07fca3e44 --- /dev/null +++ b/src/IconFileDownloadOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFileDownloadOffSharp as default } diff --git a/src/IconFileDownloadOffTwoTone.tsx b/src/IconFileDownloadOffTwoTone.tsx new file mode 100644 index 000000000..43d4d1f1d --- /dev/null +++ b/src/IconFileDownloadOffTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFileDownloadOffTwoTone as default } diff --git a/src/IconFileDownloadOutlined.tsx b/src/IconFileDownloadOutlined.tsx new file mode 100644 index 000000000..f4a056b82 --- /dev/null +++ b/src/IconFileDownloadOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileDownloadOutlined as default } diff --git a/src/IconFileDownloadRound.tsx b/src/IconFileDownloadRound.tsx new file mode 100644 index 000000000..ca1178ea5 --- /dev/null +++ b/src/IconFileDownloadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileDownloadRound as default } diff --git a/src/IconFileDownloadSharp.tsx b/src/IconFileDownloadSharp.tsx new file mode 100644 index 000000000..42a785d4d --- /dev/null +++ b/src/IconFileDownloadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileDownloadSharp as default } diff --git a/src/IconFileDownloadTwoTone.tsx b/src/IconFileDownloadTwoTone.tsx new file mode 100644 index 000000000..7d60127f4 --- /dev/null +++ b/src/IconFileDownloadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFileDownloadTwoTone as default } diff --git a/src/IconFileOpenOutlined.tsx b/src/IconFileOpenOutlined.tsx new file mode 100644 index 000000000..2a9b88cd5 --- /dev/null +++ b/src/IconFileOpenOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileOpenOutlined as default } diff --git a/src/IconFileOpenRound.tsx b/src/IconFileOpenRound.tsx new file mode 100644 index 000000000..5aa1a3634 --- /dev/null +++ b/src/IconFileOpenRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileOpenRound as default } diff --git a/src/IconFileOpenSharp.tsx b/src/IconFileOpenSharp.tsx new file mode 100644 index 000000000..eca825ed5 --- /dev/null +++ b/src/IconFileOpenSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileOpenSharp as default } diff --git a/src/IconFileOpenTwoTone.tsx b/src/IconFileOpenTwoTone.tsx new file mode 100644 index 000000000..92aba3d25 --- /dev/null +++ b/src/IconFileOpenTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFileOpenTwoTone as default } diff --git a/src/IconFilePresentOutlined.tsx b/src/IconFilePresentOutlined.tsx new file mode 100644 index 000000000..fa709478d --- /dev/null +++ b/src/IconFilePresentOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilePresentOutlined as default } diff --git a/src/IconFilePresentRound.tsx b/src/IconFilePresentRound.tsx new file mode 100644 index 000000000..16be53ec2 --- /dev/null +++ b/src/IconFilePresentRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilePresentRound as default } diff --git a/src/IconFilePresentSharp.tsx b/src/IconFilePresentSharp.tsx new file mode 100644 index 000000000..dc7e6e397 --- /dev/null +++ b/src/IconFilePresentSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilePresentSharp as default } diff --git a/src/IconFilePresentTwoTone.tsx b/src/IconFilePresentTwoTone.tsx new file mode 100644 index 000000000..aa90fcc84 --- /dev/null +++ b/src/IconFilePresentTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFilePresentTwoTone as default } diff --git a/src/IconFileUploadOutlined.tsx b/src/IconFileUploadOutlined.tsx new file mode 100644 index 000000000..783bbedea --- /dev/null +++ b/src/IconFileUploadOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileUploadOutlined as default } diff --git a/src/IconFileUploadRound.tsx b/src/IconFileUploadRound.tsx new file mode 100644 index 000000000..6b7c26cf3 --- /dev/null +++ b/src/IconFileUploadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileUploadRound as default } diff --git a/src/IconFileUploadSharp.tsx b/src/IconFileUploadSharp.tsx new file mode 100644 index 000000000..7703eee2d --- /dev/null +++ b/src/IconFileUploadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFileUploadSharp as default } diff --git a/src/IconFileUploadTwoTone.tsx b/src/IconFileUploadTwoTone.tsx new file mode 100644 index 000000000..e4863f6dd --- /dev/null +++ b/src/IconFileUploadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFileUploadTwoTone as default } diff --git a/src/IconFilter1Outlined.tsx b/src/IconFilter1Outlined.tsx new file mode 100644 index 000000000..addb726e0 --- /dev/null +++ b/src/IconFilter1Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter1Outlined as default } diff --git a/src/IconFilter1Round.tsx b/src/IconFilter1Round.tsx new file mode 100644 index 000000000..e6d3a2c1a --- /dev/null +++ b/src/IconFilter1Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter1Round as default } diff --git a/src/IconFilter1Sharp.tsx b/src/IconFilter1Sharp.tsx new file mode 100644 index 000000000..902b33f3d --- /dev/null +++ b/src/IconFilter1Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter1Sharp as default } diff --git a/src/IconFilter1TwoTone.tsx b/src/IconFilter1TwoTone.tsx new file mode 100644 index 000000000..21c66b4dd --- /dev/null +++ b/src/IconFilter1TwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter1TwoTone as default } diff --git a/src/IconFilter2Outlined.tsx b/src/IconFilter2Outlined.tsx new file mode 100644 index 000000000..b68a6f91c --- /dev/null +++ b/src/IconFilter2Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter2Outlined as default } diff --git a/src/IconFilter2Round.tsx b/src/IconFilter2Round.tsx new file mode 100644 index 000000000..3b3a25da5 --- /dev/null +++ b/src/IconFilter2Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter2Round as default } diff --git a/src/IconFilter2Sharp.tsx b/src/IconFilter2Sharp.tsx new file mode 100644 index 000000000..9658bc815 --- /dev/null +++ b/src/IconFilter2Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter2Sharp as default } diff --git a/src/IconFilter2TwoTone.tsx b/src/IconFilter2TwoTone.tsx new file mode 100644 index 000000000..a7d6981b9 --- /dev/null +++ b/src/IconFilter2TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter2TwoTone as default } diff --git a/src/IconFilter3Outlined.tsx b/src/IconFilter3Outlined.tsx new file mode 100644 index 000000000..2e0d13d19 --- /dev/null +++ b/src/IconFilter3Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter3Outlined as default } diff --git a/src/IconFilter3Round.tsx b/src/IconFilter3Round.tsx new file mode 100644 index 000000000..3abef1372 --- /dev/null +++ b/src/IconFilter3Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter3Round as default } diff --git a/src/IconFilter3Sharp.tsx b/src/IconFilter3Sharp.tsx new file mode 100644 index 000000000..7c7ae313d --- /dev/null +++ b/src/IconFilter3Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter3Sharp as default } diff --git a/src/IconFilter3TwoTone.tsx b/src/IconFilter3TwoTone.tsx new file mode 100644 index 000000000..67506bcef --- /dev/null +++ b/src/IconFilter3TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter3TwoTone as default } diff --git a/src/IconFilter4Outlined.tsx b/src/IconFilter4Outlined.tsx new file mode 100644 index 000000000..010648de1 --- /dev/null +++ b/src/IconFilter4Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter4Outlined as default } diff --git a/src/IconFilter4Round.tsx b/src/IconFilter4Round.tsx new file mode 100644 index 000000000..bcfa4fc11 --- /dev/null +++ b/src/IconFilter4Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter4Round as default } diff --git a/src/IconFilter4Sharp.tsx b/src/IconFilter4Sharp.tsx new file mode 100644 index 000000000..a4ad84e9b --- /dev/null +++ b/src/IconFilter4Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter4Sharp as default } diff --git a/src/IconFilter4TwoTone.tsx b/src/IconFilter4TwoTone.tsx new file mode 100644 index 000000000..2be910202 --- /dev/null +++ b/src/IconFilter4TwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter4TwoTone as default } diff --git a/src/IconFilter5Outlined.tsx b/src/IconFilter5Outlined.tsx new file mode 100644 index 000000000..d41c79a42 --- /dev/null +++ b/src/IconFilter5Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter5Outlined as default } diff --git a/src/IconFilter5Round.tsx b/src/IconFilter5Round.tsx new file mode 100644 index 000000000..1c47d5d51 --- /dev/null +++ b/src/IconFilter5Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter5Round as default } diff --git a/src/IconFilter5Sharp.tsx b/src/IconFilter5Sharp.tsx new file mode 100644 index 000000000..ce23797ad --- /dev/null +++ b/src/IconFilter5Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter5Sharp as default } diff --git a/src/IconFilter5TwoTone.tsx b/src/IconFilter5TwoTone.tsx new file mode 100644 index 000000000..5c5dc937d --- /dev/null +++ b/src/IconFilter5TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter5TwoTone as default } diff --git a/src/IconFilter6Outlined.tsx b/src/IconFilter6Outlined.tsx new file mode 100644 index 000000000..cdbfc5664 --- /dev/null +++ b/src/IconFilter6Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter6Outlined as default } diff --git a/src/IconFilter6Round.tsx b/src/IconFilter6Round.tsx new file mode 100644 index 000000000..ac98cb0df --- /dev/null +++ b/src/IconFilter6Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter6Round as default } diff --git a/src/IconFilter6Sharp.tsx b/src/IconFilter6Sharp.tsx new file mode 100644 index 000000000..4f8b47d1f --- /dev/null +++ b/src/IconFilter6Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter6Sharp as default } diff --git a/src/IconFilter6TwoTone.tsx b/src/IconFilter6TwoTone.tsx new file mode 100644 index 000000000..8d005b606 --- /dev/null +++ b/src/IconFilter6TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter6TwoTone as default } diff --git a/src/IconFilter7Outlined.tsx b/src/IconFilter7Outlined.tsx new file mode 100644 index 000000000..d1675c212 --- /dev/null +++ b/src/IconFilter7Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter7Outlined as default } diff --git a/src/IconFilter7Round.tsx b/src/IconFilter7Round.tsx new file mode 100644 index 000000000..74e532458 --- /dev/null +++ b/src/IconFilter7Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter7Round as default } diff --git a/src/IconFilter7Sharp.tsx b/src/IconFilter7Sharp.tsx new file mode 100644 index 000000000..3f1be9f0b --- /dev/null +++ b/src/IconFilter7Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter7Sharp as default } diff --git a/src/IconFilter7TwoTone.tsx b/src/IconFilter7TwoTone.tsx new file mode 100644 index 000000000..ae138fea0 --- /dev/null +++ b/src/IconFilter7TwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter7TwoTone as default } diff --git a/src/IconFilter8Outlined.tsx b/src/IconFilter8Outlined.tsx new file mode 100644 index 000000000..18ee06f22 --- /dev/null +++ b/src/IconFilter8Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter8Outlined as default } diff --git a/src/IconFilter8Round.tsx b/src/IconFilter8Round.tsx new file mode 100644 index 000000000..c1122125c --- /dev/null +++ b/src/IconFilter8Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter8Round as default } diff --git a/src/IconFilter8Sharp.tsx b/src/IconFilter8Sharp.tsx new file mode 100644 index 000000000..d000ae2ee --- /dev/null +++ b/src/IconFilter8Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter8Sharp as default } diff --git a/src/IconFilter8TwoTone.tsx b/src/IconFilter8TwoTone.tsx new file mode 100644 index 000000000..c7184f4b4 --- /dev/null +++ b/src/IconFilter8TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter8TwoTone as default } diff --git a/src/IconFilter9Outlined.tsx b/src/IconFilter9Outlined.tsx new file mode 100644 index 000000000..5f77f494b --- /dev/null +++ b/src/IconFilter9Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9Outlined as default } diff --git a/src/IconFilter9PlusOutlined.tsx b/src/IconFilter9PlusOutlined.tsx new file mode 100644 index 000000000..5260e097d --- /dev/null +++ b/src/IconFilter9PlusOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9PlusOutlined as default } diff --git a/src/IconFilter9PlusRound.tsx b/src/IconFilter9PlusRound.tsx new file mode 100644 index 000000000..dca6dd41f --- /dev/null +++ b/src/IconFilter9PlusRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9PlusRound as default } diff --git a/src/IconFilter9PlusSharp.tsx b/src/IconFilter9PlusSharp.tsx new file mode 100644 index 000000000..42bf610f0 --- /dev/null +++ b/src/IconFilter9PlusSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9PlusSharp as default } diff --git a/src/IconFilter9PlusTwoTone.tsx b/src/IconFilter9PlusTwoTone.tsx new file mode 100644 index 000000000..2c52a223b --- /dev/null +++ b/src/IconFilter9PlusTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFilter9PlusTwoTone as default } diff --git a/src/IconFilter9Round.tsx b/src/IconFilter9Round.tsx new file mode 100644 index 000000000..3289374aa --- /dev/null +++ b/src/IconFilter9Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9Round as default } diff --git a/src/IconFilter9Sharp.tsx b/src/IconFilter9Sharp.tsx new file mode 100644 index 000000000..1a8cfb00b --- /dev/null +++ b/src/IconFilter9Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilter9Sharp as default } diff --git a/src/IconFilter9TwoTone.tsx b/src/IconFilter9TwoTone.tsx new file mode 100644 index 000000000..e38bf98db --- /dev/null +++ b/src/IconFilter9TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilter9TwoTone as default } diff --git a/src/IconFilterAltOffOutlined.tsx b/src/IconFilterAltOffOutlined.tsx new file mode 100644 index 000000000..1a65c7c3e --- /dev/null +++ b/src/IconFilterAltOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFilterAltOffOutlined as default } diff --git a/src/IconFilterAltOffRound.tsx b/src/IconFilterAltOffRound.tsx new file mode 100644 index 000000000..7f652536f --- /dev/null +++ b/src/IconFilterAltOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFilterAltOffRound as default } diff --git a/src/IconFilterAltOffSharp.tsx b/src/IconFilterAltOffSharp.tsx new file mode 100644 index 000000000..77402582e --- /dev/null +++ b/src/IconFilterAltOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFilterAltOffSharp as default } diff --git a/src/IconFilterAltOffTwoTone.tsx b/src/IconFilterAltOffTwoTone.tsx new file mode 100644 index 000000000..f361a9181 --- /dev/null +++ b/src/IconFilterAltOffTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFilterAltOffTwoTone as default } diff --git a/src/IconFilterAltOutlined.tsx b/src/IconFilterAltOutlined.tsx new file mode 100644 index 000000000..345f47fbf --- /dev/null +++ b/src/IconFilterAltOutlined.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFilterAltOutlined as default } diff --git a/src/IconFilterAltRound.tsx b/src/IconFilterAltRound.tsx new file mode 100644 index 000000000..31b5ad3fd --- /dev/null +++ b/src/IconFilterAltRound.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFilterAltRound as default } diff --git a/src/IconFilterAltSharp.tsx b/src/IconFilterAltSharp.tsx new file mode 100644 index 000000000..7a5e04072 --- /dev/null +++ b/src/IconFilterAltSharp.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFilterAltSharp as default } diff --git a/src/IconFilterAltTwoTone.tsx b/src/IconFilterAltTwoTone.tsx new file mode 100644 index 000000000..119809d89 --- /dev/null +++ b/src/IconFilterAltTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterAltTwoTone as default } diff --git a/src/IconFilterBAndWOutlined.tsx b/src/IconFilterBAndWOutlined.tsx new file mode 100644 index 000000000..809220291 --- /dev/null +++ b/src/IconFilterBAndWOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterBAndWOutlined as default } diff --git a/src/IconFilterBAndWRound.tsx b/src/IconFilterBAndWRound.tsx new file mode 100644 index 000000000..6ee982f08 --- /dev/null +++ b/src/IconFilterBAndWRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterBAndWRound as default } diff --git a/src/IconFilterBAndWSharp.tsx b/src/IconFilterBAndWSharp.tsx new file mode 100644 index 000000000..62a742353 --- /dev/null +++ b/src/IconFilterBAndWSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterBAndWSharp as default } diff --git a/src/IconFilterBAndWTwoTone.tsx b/src/IconFilterBAndWTwoTone.tsx new file mode 100644 index 000000000..3beb96c2f --- /dev/null +++ b/src/IconFilterBAndWTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterBAndWTwoTone as default } diff --git a/src/IconFilterCenterFocusOutlined.tsx b/src/IconFilterCenterFocusOutlined.tsx new file mode 100644 index 000000000..97a12d4c5 --- /dev/null +++ b/src/IconFilterCenterFocusOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterCenterFocusOutlined as default } diff --git a/src/IconFilterCenterFocusRound.tsx b/src/IconFilterCenterFocusRound.tsx new file mode 100644 index 000000000..7e6dd06de --- /dev/null +++ b/src/IconFilterCenterFocusRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterCenterFocusRound as default } diff --git a/src/IconFilterCenterFocusSharp.tsx b/src/IconFilterCenterFocusSharp.tsx new file mode 100644 index 000000000..d8bc3b0e1 --- /dev/null +++ b/src/IconFilterCenterFocusSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterCenterFocusSharp as default } diff --git a/src/IconFilterCenterFocusTwoTone.tsx b/src/IconFilterCenterFocusTwoTone.tsx new file mode 100644 index 000000000..3564afcf4 --- /dev/null +++ b/src/IconFilterCenterFocusTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterCenterFocusTwoTone as default } diff --git a/src/IconFilterDramaOutlined.tsx b/src/IconFilterDramaOutlined.tsx new file mode 100644 index 000000000..1f5e644ae --- /dev/null +++ b/src/IconFilterDramaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterDramaOutlined as default } diff --git a/src/IconFilterDramaRound.tsx b/src/IconFilterDramaRound.tsx new file mode 100644 index 000000000..4322dca86 --- /dev/null +++ b/src/IconFilterDramaRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterDramaRound as default } diff --git a/src/IconFilterDramaSharp.tsx b/src/IconFilterDramaSharp.tsx new file mode 100644 index 000000000..d2da2c9ad --- /dev/null +++ b/src/IconFilterDramaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterDramaSharp as default } diff --git a/src/IconFilterDramaTwoTone.tsx b/src/IconFilterDramaTwoTone.tsx new file mode 100644 index 000000000..7d5eefe69 --- /dev/null +++ b/src/IconFilterDramaTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterDramaTwoTone as default } diff --git a/src/IconFilterFramesOutlined.tsx b/src/IconFilterFramesOutlined.tsx new file mode 100644 index 000000000..5df9a482d --- /dev/null +++ b/src/IconFilterFramesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterFramesOutlined as default } diff --git a/src/IconFilterFramesRound.tsx b/src/IconFilterFramesRound.tsx new file mode 100644 index 000000000..3d99a7e29 --- /dev/null +++ b/src/IconFilterFramesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterFramesRound as default } diff --git a/src/IconFilterFramesSharp.tsx b/src/IconFilterFramesSharp.tsx new file mode 100644 index 000000000..c76b55ad8 --- /dev/null +++ b/src/IconFilterFramesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterFramesSharp as default } diff --git a/src/IconFilterFramesTwoTone.tsx b/src/IconFilterFramesTwoTone.tsx new file mode 100644 index 000000000..18d48df07 --- /dev/null +++ b/src/IconFilterFramesTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterFramesTwoTone as default } diff --git a/src/IconFilterHdrOutlined.tsx b/src/IconFilterHdrOutlined.tsx new file mode 100644 index 000000000..6821f6dc3 --- /dev/null +++ b/src/IconFilterHdrOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterHdrOutlined as default } diff --git a/src/IconFilterHdrRound.tsx b/src/IconFilterHdrRound.tsx new file mode 100644 index 000000000..050951806 --- /dev/null +++ b/src/IconFilterHdrRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterHdrRound as default } diff --git a/src/IconFilterHdrSharp.tsx b/src/IconFilterHdrSharp.tsx new file mode 100644 index 000000000..03bb13f34 --- /dev/null +++ b/src/IconFilterHdrSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterHdrSharp as default } diff --git a/src/IconFilterHdrTwoTone.tsx b/src/IconFilterHdrTwoTone.tsx new file mode 100644 index 000000000..f172ea502 --- /dev/null +++ b/src/IconFilterHdrTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterHdrTwoTone as default } diff --git a/src/IconFilterListOffOutlined.tsx b/src/IconFilterListOffOutlined.tsx new file mode 100644 index 000000000..18ade43b0 --- /dev/null +++ b/src/IconFilterListOffOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterListOffOutlined as default } diff --git a/src/IconFilterListOffRound.tsx b/src/IconFilterListOffRound.tsx new file mode 100644 index 000000000..da16e061e --- /dev/null +++ b/src/IconFilterListOffRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterListOffRound as default } diff --git a/src/IconFilterListOffSharp.tsx b/src/IconFilterListOffSharp.tsx new file mode 100644 index 000000000..a0df80dac --- /dev/null +++ b/src/IconFilterListOffSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterListOffSharp as default } diff --git a/src/IconFilterListOffTwoTone.tsx b/src/IconFilterListOffTwoTone.tsx new file mode 100644 index 000000000..3140780d5 --- /dev/null +++ b/src/IconFilterListOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFilterListOffTwoTone as default } diff --git a/src/IconFilterListOutlined.tsx b/src/IconFilterListOutlined.tsx new file mode 100644 index 000000000..de42e3309 --- /dev/null +++ b/src/IconFilterListOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterListOutlined as default } diff --git a/src/IconFilterListRound.tsx b/src/IconFilterListRound.tsx new file mode 100644 index 000000000..880e0a80a --- /dev/null +++ b/src/IconFilterListRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterListRound as default } diff --git a/src/IconFilterListSharp.tsx b/src/IconFilterListSharp.tsx new file mode 100644 index 000000000..e89f2455e --- /dev/null +++ b/src/IconFilterListSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterListSharp as default } diff --git a/src/IconFilterListTwoTone.tsx b/src/IconFilterListTwoTone.tsx new file mode 100644 index 000000000..cbb8ed4e5 --- /dev/null +++ b/src/IconFilterListTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterListTwoTone as default } diff --git a/src/IconFilterNoneOutlined.tsx b/src/IconFilterNoneOutlined.tsx new file mode 100644 index 000000000..1469f79cc --- /dev/null +++ b/src/IconFilterNoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterNoneOutlined as default } diff --git a/src/IconFilterNoneRound.tsx b/src/IconFilterNoneRound.tsx new file mode 100644 index 000000000..984db92ff --- /dev/null +++ b/src/IconFilterNoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterNoneRound as default } diff --git a/src/IconFilterNoneSharp.tsx b/src/IconFilterNoneSharp.tsx new file mode 100644 index 000000000..e92d43bc1 --- /dev/null +++ b/src/IconFilterNoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterNoneSharp as default } diff --git a/src/IconFilterNoneTwoTone.tsx b/src/IconFilterNoneTwoTone.tsx new file mode 100644 index 000000000..dc60768ad --- /dev/null +++ b/src/IconFilterNoneTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterNoneTwoTone as default } diff --git a/src/IconFilterOutlined.tsx b/src/IconFilterOutlined.tsx new file mode 100644 index 000000000..d2d28b0fc --- /dev/null +++ b/src/IconFilterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterOutlined as default } diff --git a/src/IconFilterRound.tsx b/src/IconFilterRound.tsx new file mode 100644 index 000000000..67444a464 --- /dev/null +++ b/src/IconFilterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterRound as default } diff --git a/src/IconFilterSharp.tsx b/src/IconFilterSharp.tsx new file mode 100644 index 000000000..a8147cf0d --- /dev/null +++ b/src/IconFilterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterSharp as default } diff --git a/src/IconFilterTiltShiftOutlined.tsx b/src/IconFilterTiltShiftOutlined.tsx new file mode 100644 index 000000000..5bba50019 --- /dev/null +++ b/src/IconFilterTiltShiftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterTiltShiftOutlined as default } diff --git a/src/IconFilterTiltShiftRound.tsx b/src/IconFilterTiltShiftRound.tsx new file mode 100644 index 000000000..3e625bccb --- /dev/null +++ b/src/IconFilterTiltShiftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterTiltShiftRound as default } diff --git a/src/IconFilterTiltShiftSharp.tsx b/src/IconFilterTiltShiftSharp.tsx new file mode 100644 index 000000000..293f715ef --- /dev/null +++ b/src/IconFilterTiltShiftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterTiltShiftSharp as default } diff --git a/src/IconFilterTiltShiftTwoTone.tsx b/src/IconFilterTiltShiftTwoTone.tsx new file mode 100644 index 000000000..77adf5808 --- /dev/null +++ b/src/IconFilterTiltShiftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterTiltShiftTwoTone as default } diff --git a/src/IconFilterTwoTone.tsx b/src/IconFilterTwoTone.tsx new file mode 100644 index 000000000..9b8638717 --- /dev/null +++ b/src/IconFilterTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterTwoTone as default } diff --git a/src/IconFilterVintageOutlined.tsx b/src/IconFilterVintageOutlined.tsx new file mode 100644 index 000000000..6c6f8e1ab --- /dev/null +++ b/src/IconFilterVintageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterVintageOutlined as default } diff --git a/src/IconFilterVintageRound.tsx b/src/IconFilterVintageRound.tsx new file mode 100644 index 000000000..42c356df1 --- /dev/null +++ b/src/IconFilterVintageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterVintageRound as default } diff --git a/src/IconFilterVintageSharp.tsx b/src/IconFilterVintageSharp.tsx new file mode 100644 index 000000000..bf6eef662 --- /dev/null +++ b/src/IconFilterVintageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFilterVintageSharp as default } diff --git a/src/IconFilterVintageTwoTone.tsx b/src/IconFilterVintageTwoTone.tsx new file mode 100644 index 000000000..31a8de167 --- /dev/null +++ b/src/IconFilterVintageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFilterVintageTwoTone as default } diff --git a/src/IconFindInPageOutlined.tsx b/src/IconFindInPageOutlined.tsx new file mode 100644 index 000000000..edd3bdd43 --- /dev/null +++ b/src/IconFindInPageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindInPageOutlined as default } diff --git a/src/IconFindInPageRound.tsx b/src/IconFindInPageRound.tsx new file mode 100644 index 000000000..7f70c64a5 --- /dev/null +++ b/src/IconFindInPageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindInPageRound as default } diff --git a/src/IconFindInPageSharp.tsx b/src/IconFindInPageSharp.tsx new file mode 100644 index 000000000..7f4b8b301 --- /dev/null +++ b/src/IconFindInPageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindInPageSharp as default } diff --git a/src/IconFindInPageTwoTone.tsx b/src/IconFindInPageTwoTone.tsx new file mode 100644 index 000000000..be0a830cc --- /dev/null +++ b/src/IconFindInPageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFindInPageTwoTone as default } diff --git a/src/IconFindReplaceOutlined.tsx b/src/IconFindReplaceOutlined.tsx new file mode 100644 index 000000000..bf32ca0ef --- /dev/null +++ b/src/IconFindReplaceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindReplaceOutlined as default } diff --git a/src/IconFindReplaceRound.tsx b/src/IconFindReplaceRound.tsx new file mode 100644 index 000000000..9a66e61da --- /dev/null +++ b/src/IconFindReplaceRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindReplaceRound as default } diff --git a/src/IconFindReplaceSharp.tsx b/src/IconFindReplaceSharp.tsx new file mode 100644 index 000000000..56c318cc1 --- /dev/null +++ b/src/IconFindReplaceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindReplaceSharp as default } diff --git a/src/IconFindReplaceTwoTone.tsx b/src/IconFindReplaceTwoTone.tsx new file mode 100644 index 000000000..2bddf8892 --- /dev/null +++ b/src/IconFindReplaceTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFindReplaceTwoTone as default } diff --git a/src/IconFingerprintOutlined.tsx b/src/IconFingerprintOutlined.tsx new file mode 100644 index 000000000..d6a3217a1 --- /dev/null +++ b/src/IconFingerprintOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFingerprintOutlined as default } diff --git a/src/IconFingerprintRound.tsx b/src/IconFingerprintRound.tsx new file mode 100644 index 000000000..32168ecb4 --- /dev/null +++ b/src/IconFingerprintRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFingerprintRound as default } diff --git a/src/IconFingerprintSharp.tsx b/src/IconFingerprintSharp.tsx new file mode 100644 index 000000000..a6ba8f0a1 --- /dev/null +++ b/src/IconFingerprintSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFingerprintSharp as default } diff --git a/src/IconFingerprintTwoTone.tsx b/src/IconFingerprintTwoTone.tsx new file mode 100644 index 000000000..ebc1be997 --- /dev/null +++ b/src/IconFingerprintTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFingerprintTwoTone as default } diff --git a/src/IconFireExtinguisherOutlined.tsx b/src/IconFireExtinguisherOutlined.tsx new file mode 100644 index 000000000..f5f209ffb --- /dev/null +++ b/src/IconFireExtinguisherOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFireExtinguisherOutlined as default } diff --git a/src/IconFireExtinguisherRound.tsx b/src/IconFireExtinguisherRound.tsx new file mode 100644 index 000000000..5fc577a5c --- /dev/null +++ b/src/IconFireExtinguisherRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFireExtinguisherRound as default } diff --git a/src/IconFireExtinguisherSharp.tsx b/src/IconFireExtinguisherSharp.tsx new file mode 100644 index 000000000..70bac74ac --- /dev/null +++ b/src/IconFireExtinguisherSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFireExtinguisherSharp as default } diff --git a/src/IconFireExtinguisherTwoTone.tsx b/src/IconFireExtinguisherTwoTone.tsx new file mode 100644 index 000000000..6d66faf3d --- /dev/null +++ b/src/IconFireExtinguisherTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFireExtinguisherTwoTone as default } diff --git a/src/IconFireHydrantAltOutlined.tsx b/src/IconFireHydrantAltOutlined.tsx new file mode 100644 index 000000000..7e077b3b6 --- /dev/null +++ b/src/IconFireHydrantAltOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireHydrantAltOutlined as default } diff --git a/src/IconFireHydrantAltRound.tsx b/src/IconFireHydrantAltRound.tsx new file mode 100644 index 000000000..f986874ad --- /dev/null +++ b/src/IconFireHydrantAltRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFireHydrantAltRound as default } diff --git a/src/IconFireHydrantAltSharp.tsx b/src/IconFireHydrantAltSharp.tsx new file mode 100644 index 000000000..1825157ae --- /dev/null +++ b/src/IconFireHydrantAltSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireHydrantAltSharp as default } diff --git a/src/IconFireHydrantAltTwoTone.tsx b/src/IconFireHydrantAltTwoTone.tsx new file mode 100644 index 000000000..4195b9097 --- /dev/null +++ b/src/IconFireHydrantAltTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconFireHydrantAltTwoTone as default } diff --git a/src/IconFireTruckOutlined.tsx b/src/IconFireTruckOutlined.tsx new file mode 100644 index 000000000..1d5e352ee --- /dev/null +++ b/src/IconFireTruckOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireTruckOutlined as default } diff --git a/src/IconFireTruckRound.tsx b/src/IconFireTruckRound.tsx new file mode 100644 index 000000000..fb80a7251 --- /dev/null +++ b/src/IconFireTruckRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFireTruckRound as default } diff --git a/src/IconFireTruckSharp.tsx b/src/IconFireTruckSharp.tsx new file mode 100644 index 000000000..445f5a650 --- /dev/null +++ b/src/IconFireTruckSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireTruckSharp as default } diff --git a/src/IconFireTruckTwoTone.tsx b/src/IconFireTruckTwoTone.tsx new file mode 100644 index 000000000..90459eb92 --- /dev/null +++ b/src/IconFireTruckTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFireTruckTwoTone as default } diff --git a/src/IconFireplaceOutlined.tsx b/src/IconFireplaceOutlined.tsx new file mode 100644 index 000000000..2147a5fc6 --- /dev/null +++ b/src/IconFireplaceOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFireplaceOutlined as default } diff --git a/src/IconFireplaceRound.tsx b/src/IconFireplaceRound.tsx new file mode 100644 index 000000000..08f78bd83 --- /dev/null +++ b/src/IconFireplaceRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFireplaceRound as default } diff --git a/src/IconFireplaceSharp.tsx b/src/IconFireplaceSharp.tsx new file mode 100644 index 000000000..194a6c014 --- /dev/null +++ b/src/IconFireplaceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFireplaceSharp as default } diff --git a/src/IconFireplaceTwoTone.tsx b/src/IconFireplaceTwoTone.tsx new file mode 100644 index 000000000..c354163d2 --- /dev/null +++ b/src/IconFireplaceTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFireplaceTwoTone as default } diff --git a/src/IconFirstPageOutlined.tsx b/src/IconFirstPageOutlined.tsx new file mode 100644 index 000000000..486ebc03a --- /dev/null +++ b/src/IconFirstPageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFirstPageOutlined as default } diff --git a/src/IconFirstPageRound.tsx b/src/IconFirstPageRound.tsx new file mode 100644 index 000000000..0e1f0ccae --- /dev/null +++ b/src/IconFirstPageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFirstPageRound as default } diff --git a/src/IconFirstPageSharp.tsx b/src/IconFirstPageSharp.tsx new file mode 100644 index 000000000..079816299 --- /dev/null +++ b/src/IconFirstPageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFirstPageSharp as default } diff --git a/src/IconFirstPageTwoTone.tsx b/src/IconFirstPageTwoTone.tsx new file mode 100644 index 000000000..8e7ba1e3e --- /dev/null +++ b/src/IconFirstPageTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFirstPageTwoTone as default } diff --git a/src/IconFitScreenOutlined.tsx b/src/IconFitScreenOutlined.tsx new file mode 100644 index 000000000..063c325dd --- /dev/null +++ b/src/IconFitScreenOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFitScreenOutlined as default } diff --git a/src/IconFitScreenRound.tsx b/src/IconFitScreenRound.tsx new file mode 100644 index 000000000..719ed1f5d --- /dev/null +++ b/src/IconFitScreenRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFitScreenRound as default } diff --git a/src/IconFitScreenSharp.tsx b/src/IconFitScreenSharp.tsx new file mode 100644 index 000000000..46c42112c --- /dev/null +++ b/src/IconFitScreenSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFitScreenSharp as default } diff --git a/src/IconFitScreenTwoTone.tsx b/src/IconFitScreenTwoTone.tsx new file mode 100644 index 000000000..91d83d5f6 --- /dev/null +++ b/src/IconFitScreenTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFitScreenTwoTone as default } diff --git a/src/IconFitbitOutlined.tsx b/src/IconFitbitOutlined.tsx new file mode 100644 index 000000000..577ca2271 --- /dev/null +++ b/src/IconFitbitOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitbitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitbitOutlined as default } diff --git a/src/IconFitbitRound.tsx b/src/IconFitbitRound.tsx new file mode 100644 index 000000000..6e460dc0a --- /dev/null +++ b/src/IconFitbitRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitbitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitbitRound as default } diff --git a/src/IconFitbitSharp.tsx b/src/IconFitbitSharp.tsx new file mode 100644 index 000000000..c035c6c66 --- /dev/null +++ b/src/IconFitbitSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitbitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitbitSharp as default } diff --git a/src/IconFitbitTwoTone.tsx b/src/IconFitbitTwoTone.tsx new file mode 100644 index 000000000..e51be1971 --- /dev/null +++ b/src/IconFitbitTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitbitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitbitTwoTone as default } diff --git a/src/IconFitnessCenterOutlined.tsx b/src/IconFitnessCenterOutlined.tsx new file mode 100644 index 000000000..cd3ac64cd --- /dev/null +++ b/src/IconFitnessCenterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitnessCenterOutlined as default } diff --git a/src/IconFitnessCenterRound.tsx b/src/IconFitnessCenterRound.tsx new file mode 100644 index 000000000..82111fa8a --- /dev/null +++ b/src/IconFitnessCenterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitnessCenterRound as default } diff --git a/src/IconFitnessCenterSharp.tsx b/src/IconFitnessCenterSharp.tsx new file mode 100644 index 000000000..63d2bfb86 --- /dev/null +++ b/src/IconFitnessCenterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitnessCenterSharp as default } diff --git a/src/IconFitnessCenterTwoTone.tsx b/src/IconFitnessCenterTwoTone.tsx new file mode 100644 index 000000000..921fe648b --- /dev/null +++ b/src/IconFitnessCenterTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFitnessCenterTwoTone as default } diff --git a/src/IconFlagCircleOutlined.tsx b/src/IconFlagCircleOutlined.tsx new file mode 100644 index 000000000..04947ce32 --- /dev/null +++ b/src/IconFlagCircleOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlagCircleOutlined as default } diff --git a/src/IconFlagCircleRound.tsx b/src/IconFlagCircleRound.tsx new file mode 100644 index 000000000..1fa4c2cad --- /dev/null +++ b/src/IconFlagCircleRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlagCircleRound as default } diff --git a/src/IconFlagCircleSharp.tsx b/src/IconFlagCircleSharp.tsx new file mode 100644 index 000000000..974c76a49 --- /dev/null +++ b/src/IconFlagCircleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFlagCircleSharp as default } diff --git a/src/IconFlagCircleTwoTone.tsx b/src/IconFlagCircleTwoTone.tsx new file mode 100644 index 000000000..b46804964 --- /dev/null +++ b/src/IconFlagCircleTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconFlagCircleTwoTone as default } diff --git a/src/IconFlagOutlined.tsx b/src/IconFlagOutlined.tsx new file mode 100644 index 000000000..2ac7761f6 --- /dev/null +++ b/src/IconFlagOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlagOutlined as default } diff --git a/src/IconFlagRound.tsx b/src/IconFlagRound.tsx new file mode 100644 index 000000000..8dcd880c4 --- /dev/null +++ b/src/IconFlagRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlagRound as default } diff --git a/src/IconFlagSharp.tsx b/src/IconFlagSharp.tsx new file mode 100644 index 000000000..3e22f331e --- /dev/null +++ b/src/IconFlagSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlagSharp as default } diff --git a/src/IconFlagTwoTone.tsx b/src/IconFlagTwoTone.tsx new file mode 100644 index 000000000..637e9705a --- /dev/null +++ b/src/IconFlagTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFlagTwoTone as default } diff --git a/src/IconFlakyOutlined.tsx b/src/IconFlakyOutlined.tsx new file mode 100644 index 000000000..5e4821ba3 --- /dev/null +++ b/src/IconFlakyOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlakyOutlined as default } diff --git a/src/IconFlakyRound.tsx b/src/IconFlakyRound.tsx new file mode 100644 index 000000000..0cc4c8e80 --- /dev/null +++ b/src/IconFlakyRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFlakyRound as default } diff --git a/src/IconFlakySharp.tsx b/src/IconFlakySharp.tsx new file mode 100644 index 000000000..e494966e6 --- /dev/null +++ b/src/IconFlakySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlakySharp as default } diff --git a/src/IconFlakyTwoTone.tsx b/src/IconFlakyTwoTone.tsx new file mode 100644 index 000000000..7f692ac98 --- /dev/null +++ b/src/IconFlakyTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlakyTwoTone as default } diff --git a/src/IconFlareOutlined.tsx b/src/IconFlareOutlined.tsx new file mode 100644 index 000000000..771b66a15 --- /dev/null +++ b/src/IconFlareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlareOutlined as default } diff --git a/src/IconFlareRound.tsx b/src/IconFlareRound.tsx new file mode 100644 index 000000000..c00c73865 --- /dev/null +++ b/src/IconFlareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlareRound as default } diff --git a/src/IconFlareSharp.tsx b/src/IconFlareSharp.tsx new file mode 100644 index 000000000..daa448093 --- /dev/null +++ b/src/IconFlareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlareSharp as default } diff --git a/src/IconFlareTwoTone.tsx b/src/IconFlareTwoTone.tsx new file mode 100644 index 000000000..0b22b2768 --- /dev/null +++ b/src/IconFlareTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlareTwoTone as default } diff --git a/src/IconFlashAutoOutlined.tsx b/src/IconFlashAutoOutlined.tsx new file mode 100644 index 000000000..37da927ca --- /dev/null +++ b/src/IconFlashAutoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashAutoOutlined as default } diff --git a/src/IconFlashAutoRound.tsx b/src/IconFlashAutoRound.tsx new file mode 100644 index 000000000..f98256220 --- /dev/null +++ b/src/IconFlashAutoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashAutoRound as default } diff --git a/src/IconFlashAutoSharp.tsx b/src/IconFlashAutoSharp.tsx new file mode 100644 index 000000000..3e6ca9cd1 --- /dev/null +++ b/src/IconFlashAutoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashAutoSharp as default } diff --git a/src/IconFlashAutoTwoTone.tsx b/src/IconFlashAutoTwoTone.tsx new file mode 100644 index 000000000..5ec565a85 --- /dev/null +++ b/src/IconFlashAutoTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashAutoTwoTone as default } diff --git a/src/IconFlashOffOutlined.tsx b/src/IconFlashOffOutlined.tsx new file mode 100644 index 000000000..2530c9e09 --- /dev/null +++ b/src/IconFlashOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOffOutlined as default } diff --git a/src/IconFlashOffRound.tsx b/src/IconFlashOffRound.tsx new file mode 100644 index 000000000..7c26b17cd --- /dev/null +++ b/src/IconFlashOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOffRound as default } diff --git a/src/IconFlashOffSharp.tsx b/src/IconFlashOffSharp.tsx new file mode 100644 index 000000000..bab778ef7 --- /dev/null +++ b/src/IconFlashOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOffSharp as default } diff --git a/src/IconFlashOffTwoTone.tsx b/src/IconFlashOffTwoTone.tsx new file mode 100644 index 000000000..c7c01d510 --- /dev/null +++ b/src/IconFlashOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOffTwoTone as default } diff --git a/src/IconFlashOnOutlined.tsx b/src/IconFlashOnOutlined.tsx new file mode 100644 index 000000000..8de87abb7 --- /dev/null +++ b/src/IconFlashOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOnOutlined as default } diff --git a/src/IconFlashOnRound.tsx b/src/IconFlashOnRound.tsx new file mode 100644 index 000000000..bd74c419f --- /dev/null +++ b/src/IconFlashOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOnRound as default } diff --git a/src/IconFlashOnSharp.tsx b/src/IconFlashOnSharp.tsx new file mode 100644 index 000000000..b16748dfa --- /dev/null +++ b/src/IconFlashOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOnSharp as default } diff --git a/src/IconFlashOnTwoTone.tsx b/src/IconFlashOnTwoTone.tsx new file mode 100644 index 000000000..f84c74b87 --- /dev/null +++ b/src/IconFlashOnTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlashOnTwoTone as default } diff --git a/src/IconFlashlightOffOutlined.tsx b/src/IconFlashlightOffOutlined.tsx new file mode 100644 index 000000000..e4974284c --- /dev/null +++ b/src/IconFlashlightOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlashlightOffOutlined as default } diff --git a/src/IconFlashlightOffRound.tsx b/src/IconFlashlightOffRound.tsx new file mode 100644 index 000000000..35e0dfc25 --- /dev/null +++ b/src/IconFlashlightOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFlashlightOffRound as default } diff --git a/src/IconFlashlightOffSharp.tsx b/src/IconFlashlightOffSharp.tsx new file mode 100644 index 000000000..a2dedb6bb --- /dev/null +++ b/src/IconFlashlightOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFlashlightOffSharp as default } diff --git a/src/IconFlashlightOffTwoTone.tsx b/src/IconFlashlightOffTwoTone.tsx new file mode 100644 index 000000000..f3ed70dfb --- /dev/null +++ b/src/IconFlashlightOffTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconFlashlightOffTwoTone as default } diff --git a/src/IconFlashlightOnOutlined.tsx b/src/IconFlashlightOnOutlined.tsx new file mode 100644 index 000000000..20ba4f9c1 --- /dev/null +++ b/src/IconFlashlightOnOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlashlightOnOutlined as default } diff --git a/src/IconFlashlightOnRound.tsx b/src/IconFlashlightOnRound.tsx new file mode 100644 index 000000000..fab54da0e --- /dev/null +++ b/src/IconFlashlightOnRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlashlightOnRound as default } diff --git a/src/IconFlashlightOnSharp.tsx b/src/IconFlashlightOnSharp.tsx new file mode 100644 index 000000000..a89bfe0ea --- /dev/null +++ b/src/IconFlashlightOnSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlashlightOnSharp as default } diff --git a/src/IconFlashlightOnTwoTone.tsx b/src/IconFlashlightOnTwoTone.tsx new file mode 100644 index 000000000..6fcf44d4c --- /dev/null +++ b/src/IconFlashlightOnTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFlashlightOnTwoTone as default } diff --git a/src/IconFlatwareOutlined.tsx b/src/IconFlatwareOutlined.tsx new file mode 100644 index 000000000..a486afd6a --- /dev/null +++ b/src/IconFlatwareOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlatwareOutlined as default } diff --git a/src/IconFlatwareRound.tsx b/src/IconFlatwareRound.tsx new file mode 100644 index 000000000..577330390 --- /dev/null +++ b/src/IconFlatwareRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlatwareRound as default } diff --git a/src/IconFlatwareSharp.tsx b/src/IconFlatwareSharp.tsx new file mode 100644 index 000000000..a294baef7 --- /dev/null +++ b/src/IconFlatwareSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlatwareSharp as default } diff --git a/src/IconFlatwareTwoTone.tsx b/src/IconFlatwareTwoTone.tsx new file mode 100644 index 000000000..2c85cf3bc --- /dev/null +++ b/src/IconFlatwareTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFlatwareTwoTone as default } diff --git a/src/IconFlightClassOutlined.tsx b/src/IconFlightClassOutlined.tsx new file mode 100644 index 000000000..b22569b2e --- /dev/null +++ b/src/IconFlightClassOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightClassOutlined as default } diff --git a/src/IconFlightClassRound.tsx b/src/IconFlightClassRound.tsx new file mode 100644 index 000000000..90eb3720a --- /dev/null +++ b/src/IconFlightClassRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightClassRound as default } diff --git a/src/IconFlightClassSharp.tsx b/src/IconFlightClassSharp.tsx new file mode 100644 index 000000000..a12706062 --- /dev/null +++ b/src/IconFlightClassSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightClassSharp as default } diff --git a/src/IconFlightClassTwoTone.tsx b/src/IconFlightClassTwoTone.tsx new file mode 100644 index 000000000..13d123173 --- /dev/null +++ b/src/IconFlightClassTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFlightClassTwoTone as default } diff --git a/src/IconFlightLandOutlined.tsx b/src/IconFlightLandOutlined.tsx new file mode 100644 index 000000000..26d651337 --- /dev/null +++ b/src/IconFlightLandOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightLandOutlined as default } diff --git a/src/IconFlightLandRound.tsx b/src/IconFlightLandRound.tsx new file mode 100644 index 000000000..73e632f0d --- /dev/null +++ b/src/IconFlightLandRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightLandRound as default } diff --git a/src/IconFlightLandSharp.tsx b/src/IconFlightLandSharp.tsx new file mode 100644 index 000000000..9eec6e1db --- /dev/null +++ b/src/IconFlightLandSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightLandSharp as default } diff --git a/src/IconFlightLandTwoTone.tsx b/src/IconFlightLandTwoTone.tsx new file mode 100644 index 000000000..ff5ad58d6 --- /dev/null +++ b/src/IconFlightLandTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightLandTwoTone as default } diff --git a/src/IconFlightOutlined.tsx b/src/IconFlightOutlined.tsx new file mode 100644 index 000000000..d55bf271a --- /dev/null +++ b/src/IconFlightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightOutlined as default } diff --git a/src/IconFlightRound.tsx b/src/IconFlightRound.tsx new file mode 100644 index 000000000..41fb703a1 --- /dev/null +++ b/src/IconFlightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightRound as default } diff --git a/src/IconFlightSharp.tsx b/src/IconFlightSharp.tsx new file mode 100644 index 000000000..b6c26484b --- /dev/null +++ b/src/IconFlightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightSharp as default } diff --git a/src/IconFlightTakeoffOutlined.tsx b/src/IconFlightTakeoffOutlined.tsx new file mode 100644 index 000000000..8412cf38e --- /dev/null +++ b/src/IconFlightTakeoffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightTakeoffOutlined as default } diff --git a/src/IconFlightTakeoffRound.tsx b/src/IconFlightTakeoffRound.tsx new file mode 100644 index 000000000..cf192201c --- /dev/null +++ b/src/IconFlightTakeoffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightTakeoffRound as default } diff --git a/src/IconFlightTakeoffSharp.tsx b/src/IconFlightTakeoffSharp.tsx new file mode 100644 index 000000000..91de87239 --- /dev/null +++ b/src/IconFlightTakeoffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightTakeoffSharp as default } diff --git a/src/IconFlightTakeoffTwoTone.tsx b/src/IconFlightTakeoffTwoTone.tsx new file mode 100644 index 000000000..5e8356836 --- /dev/null +++ b/src/IconFlightTakeoffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightTakeoffTwoTone as default } diff --git a/src/IconFlightTwoTone.tsx b/src/IconFlightTwoTone.tsx new file mode 100644 index 000000000..b9d1213c0 --- /dev/null +++ b/src/IconFlightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlightTwoTone as default } diff --git a/src/IconFlipCameraAndroidOutlined.tsx b/src/IconFlipCameraAndroidOutlined.tsx new file mode 100644 index 000000000..84ed72fe7 --- /dev/null +++ b/src/IconFlipCameraAndroidOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFlipCameraAndroidOutlined as default } diff --git a/src/IconFlipCameraAndroidRound.tsx b/src/IconFlipCameraAndroidRound.tsx new file mode 100644 index 000000000..9780b52b0 --- /dev/null +++ b/src/IconFlipCameraAndroidRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFlipCameraAndroidRound as default } diff --git a/src/IconFlipCameraAndroidSharp.tsx b/src/IconFlipCameraAndroidSharp.tsx new file mode 100644 index 000000000..2fd834724 --- /dev/null +++ b/src/IconFlipCameraAndroidSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFlipCameraAndroidSharp as default } diff --git a/src/IconFlipCameraAndroidTwoTone.tsx b/src/IconFlipCameraAndroidTwoTone.tsx new file mode 100644 index 000000000..2b98d2111 --- /dev/null +++ b/src/IconFlipCameraAndroidTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconFlipCameraAndroidTwoTone as default } diff --git a/src/IconFlipCameraIosOutlined.tsx b/src/IconFlipCameraIosOutlined.tsx new file mode 100644 index 000000000..44aaa8c7b --- /dev/null +++ b/src/IconFlipCameraIosOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconFlipCameraIosOutlined as default } diff --git a/src/IconFlipCameraIosRound.tsx b/src/IconFlipCameraIosRound.tsx new file mode 100644 index 000000000..76d24922c --- /dev/null +++ b/src/IconFlipCameraIosRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFlipCameraIosRound as default } diff --git a/src/IconFlipCameraIosSharp.tsx b/src/IconFlipCameraIosSharp.tsx new file mode 100644 index 000000000..6f73095e8 --- /dev/null +++ b/src/IconFlipCameraIosSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFlipCameraIosSharp as default } diff --git a/src/IconFlipCameraIosTwoTone.tsx b/src/IconFlipCameraIosTwoTone.tsx new file mode 100644 index 000000000..d8b558ae3 --- /dev/null +++ b/src/IconFlipCameraIosTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconFlipCameraIosTwoTone as default } diff --git a/src/IconFlipOutlined.tsx b/src/IconFlipOutlined.tsx new file mode 100644 index 000000000..3906b03a5 --- /dev/null +++ b/src/IconFlipOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipOutlined as default } diff --git a/src/IconFlipRound.tsx b/src/IconFlipRound.tsx new file mode 100644 index 000000000..a1ae50e96 --- /dev/null +++ b/src/IconFlipRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipRound as default } diff --git a/src/IconFlipSharp.tsx b/src/IconFlipSharp.tsx new file mode 100644 index 000000000..372d6b2f1 --- /dev/null +++ b/src/IconFlipSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipSharp as default } diff --git a/src/IconFlipToBackOutlined.tsx b/src/IconFlipToBackOutlined.tsx new file mode 100644 index 000000000..e96d3b832 --- /dev/null +++ b/src/IconFlipToBackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToBackOutlined as default } diff --git a/src/IconFlipToBackRound.tsx b/src/IconFlipToBackRound.tsx new file mode 100644 index 000000000..e5bd9afc3 --- /dev/null +++ b/src/IconFlipToBackRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToBackRound as default } diff --git a/src/IconFlipToBackSharp.tsx b/src/IconFlipToBackSharp.tsx new file mode 100644 index 000000000..249f3e8c8 --- /dev/null +++ b/src/IconFlipToBackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToBackSharp as default } diff --git a/src/IconFlipToBackTwoTone.tsx b/src/IconFlipToBackTwoTone.tsx new file mode 100644 index 000000000..09c910837 --- /dev/null +++ b/src/IconFlipToBackTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToBackTwoTone as default } diff --git a/src/IconFlipToFrontOutlined.tsx b/src/IconFlipToFrontOutlined.tsx new file mode 100644 index 000000000..350e833a7 --- /dev/null +++ b/src/IconFlipToFrontOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToFrontOutlined as default } diff --git a/src/IconFlipToFrontRound.tsx b/src/IconFlipToFrontRound.tsx new file mode 100644 index 000000000..fb49c1bf2 --- /dev/null +++ b/src/IconFlipToFrontRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToFrontRound as default } diff --git a/src/IconFlipToFrontSharp.tsx b/src/IconFlipToFrontSharp.tsx new file mode 100644 index 000000000..f5f15902b --- /dev/null +++ b/src/IconFlipToFrontSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToFrontSharp as default } diff --git a/src/IconFlipToFrontTwoTone.tsx b/src/IconFlipToFrontTwoTone.tsx new file mode 100644 index 000000000..68a40e8f6 --- /dev/null +++ b/src/IconFlipToFrontTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipToFrontTwoTone as default } diff --git a/src/IconFlipTwoTone.tsx b/src/IconFlipTwoTone.tsx new file mode 100644 index 000000000..538ddccb8 --- /dev/null +++ b/src/IconFlipTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFlipTwoTone as default } diff --git a/src/IconFloodOutlined.tsx b/src/IconFloodOutlined.tsx new file mode 100644 index 000000000..561860bb8 --- /dev/null +++ b/src/IconFloodOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFloodOutlined as default } diff --git a/src/IconFloodRound.tsx b/src/IconFloodRound.tsx new file mode 100644 index 000000000..17df71088 --- /dev/null +++ b/src/IconFloodRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFloodRound as default } diff --git a/src/IconFloodSharp.tsx b/src/IconFloodSharp.tsx new file mode 100644 index 000000000..327cf7e02 --- /dev/null +++ b/src/IconFloodSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFloodSharp as default } diff --git a/src/IconFloodTwoTone.tsx b/src/IconFloodTwoTone.tsx new file mode 100644 index 000000000..814035269 --- /dev/null +++ b/src/IconFloodTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFloodTwoTone as default } diff --git a/src/IconFluorescentOutlined.tsx b/src/IconFluorescentOutlined.tsx new file mode 100644 index 000000000..73f71390a --- /dev/null +++ b/src/IconFluorescentOutlined.tsx @@ -0,0 +1,47 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconFluorescentOutlined as default } diff --git a/src/IconFluorescentRound.tsx b/src/IconFluorescentRound.tsx new file mode 100644 index 000000000..b1f544b63 --- /dev/null +++ b/src/IconFluorescentRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconFluorescentRound as default } diff --git a/src/IconFluorescentSharp.tsx b/src/IconFluorescentSharp.tsx new file mode 100644 index 000000000..4059765ca --- /dev/null +++ b/src/IconFluorescentSharp.tsx @@ -0,0 +1,47 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconFluorescentSharp as default } diff --git a/src/IconFluorescentTwoTone.tsx b/src/IconFluorescentTwoTone.tsx new file mode 100644 index 000000000..79bcbe286 --- /dev/null +++ b/src/IconFluorescentTwoTone.tsx @@ -0,0 +1,48 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconFluorescentTwoTone as default } diff --git a/src/IconFlutterDashOutlined.tsx b/src/IconFlutterDashOutlined.tsx new file mode 100644 index 000000000..882730f94 --- /dev/null +++ b/src/IconFlutterDashOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFlutterDashOutlined as default } diff --git a/src/IconFlutterDashRound.tsx b/src/IconFlutterDashRound.tsx new file mode 100644 index 000000000..28737e0d4 --- /dev/null +++ b/src/IconFlutterDashRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFlutterDashRound as default } diff --git a/src/IconFlutterDashSharp.tsx b/src/IconFlutterDashSharp.tsx new file mode 100644 index 000000000..323534907 --- /dev/null +++ b/src/IconFlutterDashSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconFlutterDashSharp as default } diff --git a/src/IconFlutterDashTwoTone.tsx b/src/IconFlutterDashTwoTone.tsx new file mode 100644 index 000000000..4e707e231 --- /dev/null +++ b/src/IconFlutterDashTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFlutterDashTwoTone as default } diff --git a/src/IconFmdBadOutlined.tsx b/src/IconFmdBadOutlined.tsx new file mode 100644 index 000000000..466482d26 --- /dev/null +++ b/src/IconFmdBadOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFmdBadOutlined as default } diff --git a/src/IconFmdBadRound.tsx b/src/IconFmdBadRound.tsx new file mode 100644 index 000000000..2efdac8b4 --- /dev/null +++ b/src/IconFmdBadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFmdBadRound as default } diff --git a/src/IconFmdBadSharp.tsx b/src/IconFmdBadSharp.tsx new file mode 100644 index 000000000..aad2f8f21 --- /dev/null +++ b/src/IconFmdBadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFmdBadSharp as default } diff --git a/src/IconFmdBadTwoTone.tsx b/src/IconFmdBadTwoTone.tsx new file mode 100644 index 000000000..be2619a54 --- /dev/null +++ b/src/IconFmdBadTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFmdBadTwoTone as default } diff --git a/src/IconFmdGoodOutlined.tsx b/src/IconFmdGoodOutlined.tsx new file mode 100644 index 000000000..5f071ded9 --- /dev/null +++ b/src/IconFmdGoodOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdGoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFmdGoodOutlined as default } diff --git a/src/IconFmdGoodRound.tsx b/src/IconFmdGoodRound.tsx new file mode 100644 index 000000000..906b26137 --- /dev/null +++ b/src/IconFmdGoodRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdGoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFmdGoodRound as default } diff --git a/src/IconFmdGoodSharp.tsx b/src/IconFmdGoodSharp.tsx new file mode 100644 index 000000000..bdbdb61fe --- /dev/null +++ b/src/IconFmdGoodSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdGoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFmdGoodSharp as default } diff --git a/src/IconFmdGoodTwoTone.tsx b/src/IconFmdGoodTwoTone.tsx new file mode 100644 index 000000000..67a1cb90d --- /dev/null +++ b/src/IconFmdGoodTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdGoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFmdGoodTwoTone as default } diff --git a/src/IconFolderCopyOutlined.tsx b/src/IconFolderCopyOutlined.tsx new file mode 100644 index 000000000..354d14898 --- /dev/null +++ b/src/IconFolderCopyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderCopyOutlined as default } diff --git a/src/IconFolderCopyRound.tsx b/src/IconFolderCopyRound.tsx new file mode 100644 index 000000000..eeacf7abe --- /dev/null +++ b/src/IconFolderCopyRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFolderCopyRound as default } diff --git a/src/IconFolderCopySharp.tsx b/src/IconFolderCopySharp.tsx new file mode 100644 index 000000000..a42d58d3c --- /dev/null +++ b/src/IconFolderCopySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFolderCopySharp as default } diff --git a/src/IconFolderCopyTwoTone.tsx b/src/IconFolderCopyTwoTone.tsx new file mode 100644 index 000000000..cc6a3f222 --- /dev/null +++ b/src/IconFolderCopyTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFolderCopyTwoTone as default } diff --git a/src/IconFolderDeleteOutlined.tsx b/src/IconFolderDeleteOutlined.tsx new file mode 100644 index 000000000..bb3611184 --- /dev/null +++ b/src/IconFolderDeleteOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderDeleteOutlined as default } diff --git a/src/IconFolderDeleteRound.tsx b/src/IconFolderDeleteRound.tsx new file mode 100644 index 000000000..e20ad735f --- /dev/null +++ b/src/IconFolderDeleteRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderDeleteRound as default } diff --git a/src/IconFolderDeleteSharp.tsx b/src/IconFolderDeleteSharp.tsx new file mode 100644 index 000000000..b6a2b7487 --- /dev/null +++ b/src/IconFolderDeleteSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderDeleteSharp as default } diff --git a/src/IconFolderDeleteTwoTone.tsx b/src/IconFolderDeleteTwoTone.tsx new file mode 100644 index 000000000..77c713c74 --- /dev/null +++ b/src/IconFolderDeleteTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFolderDeleteTwoTone as default } diff --git a/src/IconFolderOffOutlined.tsx b/src/IconFolderOffOutlined.tsx new file mode 100644 index 000000000..ec0797663 --- /dev/null +++ b/src/IconFolderOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFolderOffOutlined as default } diff --git a/src/IconFolderOffRound.tsx b/src/IconFolderOffRound.tsx new file mode 100644 index 000000000..7be122f6b --- /dev/null +++ b/src/IconFolderOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFolderOffRound as default } diff --git a/src/IconFolderOffSharp.tsx b/src/IconFolderOffSharp.tsx new file mode 100644 index 000000000..e254fd3c5 --- /dev/null +++ b/src/IconFolderOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFolderOffSharp as default } diff --git a/src/IconFolderOffTwoTone.tsx b/src/IconFolderOffTwoTone.tsx new file mode 100644 index 000000000..13fdea727 --- /dev/null +++ b/src/IconFolderOffTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconFolderOffTwoTone as default } diff --git a/src/IconFolderOpenOutlined.tsx b/src/IconFolderOpenOutlined.tsx new file mode 100644 index 000000000..dd7f90814 --- /dev/null +++ b/src/IconFolderOpenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderOpenOutlined as default } diff --git a/src/IconFolderOpenRound.tsx b/src/IconFolderOpenRound.tsx new file mode 100644 index 000000000..9ae6ee9a5 --- /dev/null +++ b/src/IconFolderOpenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderOpenRound as default } diff --git a/src/IconFolderOpenSharp.tsx b/src/IconFolderOpenSharp.tsx new file mode 100644 index 000000000..728c27fcb --- /dev/null +++ b/src/IconFolderOpenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderOpenSharp as default } diff --git a/src/IconFolderOpenTwoTone.tsx b/src/IconFolderOpenTwoTone.tsx new file mode 100644 index 000000000..881652cab --- /dev/null +++ b/src/IconFolderOpenTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFolderOpenTwoTone as default } diff --git a/src/IconFolderOutlined.tsx b/src/IconFolderOutlined.tsx new file mode 100644 index 000000000..18c2d3736 --- /dev/null +++ b/src/IconFolderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderOutlined as default } diff --git a/src/IconFolderRound.tsx b/src/IconFolderRound.tsx new file mode 100644 index 000000000..2c03de466 --- /dev/null +++ b/src/IconFolderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderRound as default } diff --git a/src/IconFolderSharedOutlined.tsx b/src/IconFolderSharedOutlined.tsx new file mode 100644 index 000000000..811c5df7f --- /dev/null +++ b/src/IconFolderSharedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSharedOutlined as default } diff --git a/src/IconFolderSharedRound.tsx b/src/IconFolderSharedRound.tsx new file mode 100644 index 000000000..91f0f0805 --- /dev/null +++ b/src/IconFolderSharedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSharedRound as default } diff --git a/src/IconFolderSharedSharp.tsx b/src/IconFolderSharedSharp.tsx new file mode 100644 index 000000000..e665cf24a --- /dev/null +++ b/src/IconFolderSharedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSharedSharp as default } diff --git a/src/IconFolderSharedTwoTone.tsx b/src/IconFolderSharedTwoTone.tsx new file mode 100644 index 000000000..e880fd8f0 --- /dev/null +++ b/src/IconFolderSharedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFolderSharedTwoTone as default } diff --git a/src/IconFolderSharp.tsx b/src/IconFolderSharp.tsx new file mode 100644 index 000000000..36b39ef94 --- /dev/null +++ b/src/IconFolderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSharp as default } diff --git a/src/IconFolderSpecialOutlined.tsx b/src/IconFolderSpecialOutlined.tsx new file mode 100644 index 000000000..db30988e5 --- /dev/null +++ b/src/IconFolderSpecialOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSpecialOutlined as default } diff --git a/src/IconFolderSpecialRound.tsx b/src/IconFolderSpecialRound.tsx new file mode 100644 index 000000000..b58ef551f --- /dev/null +++ b/src/IconFolderSpecialRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSpecialRound as default } diff --git a/src/IconFolderSpecialSharp.tsx b/src/IconFolderSpecialSharp.tsx new file mode 100644 index 000000000..55a29eca3 --- /dev/null +++ b/src/IconFolderSpecialSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFolderSpecialSharp as default } diff --git a/src/IconFolderSpecialTwoTone.tsx b/src/IconFolderSpecialTwoTone.tsx new file mode 100644 index 000000000..49d3cad27 --- /dev/null +++ b/src/IconFolderSpecialTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFolderSpecialTwoTone as default } diff --git a/src/IconFolderTwoTone.tsx b/src/IconFolderTwoTone.tsx new file mode 100644 index 000000000..91cc76f2d --- /dev/null +++ b/src/IconFolderTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFolderTwoTone as default } diff --git a/src/IconFolderZipOutlined.tsx b/src/IconFolderZipOutlined.tsx new file mode 100644 index 000000000..70fa576fe --- /dev/null +++ b/src/IconFolderZipOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderZipOutlined as default } diff --git a/src/IconFolderZipRound.tsx b/src/IconFolderZipRound.tsx new file mode 100644 index 000000000..489ba8292 --- /dev/null +++ b/src/IconFolderZipRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderZipRound as default } diff --git a/src/IconFolderZipSharp.tsx b/src/IconFolderZipSharp.tsx new file mode 100644 index 000000000..f161488a2 --- /dev/null +++ b/src/IconFolderZipSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFolderZipSharp as default } diff --git a/src/IconFolderZipTwoTone.tsx b/src/IconFolderZipTwoTone.tsx new file mode 100644 index 000000000..57634875e --- /dev/null +++ b/src/IconFolderZipTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconFolderZipTwoTone as default } diff --git a/src/IconFollowTheSignsOutlined.tsx b/src/IconFollowTheSignsOutlined.tsx new file mode 100644 index 000000000..ff4af8ce1 --- /dev/null +++ b/src/IconFollowTheSignsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFollowTheSignsOutlined as default } diff --git a/src/IconFollowTheSignsRound.tsx b/src/IconFollowTheSignsRound.tsx new file mode 100644 index 000000000..6505e2c60 --- /dev/null +++ b/src/IconFollowTheSignsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFollowTheSignsRound as default } diff --git a/src/IconFollowTheSignsSharp.tsx b/src/IconFollowTheSignsSharp.tsx new file mode 100644 index 000000000..6de215574 --- /dev/null +++ b/src/IconFollowTheSignsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFollowTheSignsSharp as default } diff --git a/src/IconFollowTheSignsTwoTone.tsx b/src/IconFollowTheSignsTwoTone.tsx new file mode 100644 index 000000000..294303b1e --- /dev/null +++ b/src/IconFollowTheSignsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFollowTheSignsTwoTone as default } diff --git a/src/IconFontDownloadOffOutlined.tsx b/src/IconFontDownloadOffOutlined.tsx new file mode 100644 index 000000000..77242811a --- /dev/null +++ b/src/IconFontDownloadOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadOffOutlined as default } diff --git a/src/IconFontDownloadOffRound.tsx b/src/IconFontDownloadOffRound.tsx new file mode 100644 index 000000000..17fa62028 --- /dev/null +++ b/src/IconFontDownloadOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadOffRound as default } diff --git a/src/IconFontDownloadOffSharp.tsx b/src/IconFontDownloadOffSharp.tsx new file mode 100644 index 000000000..133002c27 --- /dev/null +++ b/src/IconFontDownloadOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadOffSharp as default } diff --git a/src/IconFontDownloadOffTwoTone.tsx b/src/IconFontDownloadOffTwoTone.tsx new file mode 100644 index 000000000..744fddec8 --- /dev/null +++ b/src/IconFontDownloadOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFontDownloadOffTwoTone as default } diff --git a/src/IconFontDownloadOutlined.tsx b/src/IconFontDownloadOutlined.tsx new file mode 100644 index 000000000..24b6c3866 --- /dev/null +++ b/src/IconFontDownloadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadOutlined as default } diff --git a/src/IconFontDownloadRound.tsx b/src/IconFontDownloadRound.tsx new file mode 100644 index 000000000..6ddd3154d --- /dev/null +++ b/src/IconFontDownloadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadRound as default } diff --git a/src/IconFontDownloadSharp.tsx b/src/IconFontDownloadSharp.tsx new file mode 100644 index 000000000..d5be189ee --- /dev/null +++ b/src/IconFontDownloadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFontDownloadSharp as default } diff --git a/src/IconFontDownloadTwoTone.tsx b/src/IconFontDownloadTwoTone.tsx new file mode 100644 index 000000000..3158f63ed --- /dev/null +++ b/src/IconFontDownloadTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFontDownloadTwoTone as default } diff --git a/src/IconFoodBankOutlined.tsx b/src/IconFoodBankOutlined.tsx new file mode 100644 index 000000000..5a198035b --- /dev/null +++ b/src/IconFoodBankOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoodBankOutlined as default } diff --git a/src/IconFoodBankRound.tsx b/src/IconFoodBankRound.tsx new file mode 100644 index 000000000..09720f318 --- /dev/null +++ b/src/IconFoodBankRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoodBankRound as default } diff --git a/src/IconFoodBankSharp.tsx b/src/IconFoodBankSharp.tsx new file mode 100644 index 000000000..485a3649b --- /dev/null +++ b/src/IconFoodBankSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoodBankSharp as default } diff --git a/src/IconFoodBankTwoTone.tsx b/src/IconFoodBankTwoTone.tsx new file mode 100644 index 000000000..7f76cf794 --- /dev/null +++ b/src/IconFoodBankTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFoodBankTwoTone as default } diff --git a/src/IconForestOutlined.tsx b/src/IconForestOutlined.tsx new file mode 100644 index 000000000..8ea72e0ed --- /dev/null +++ b/src/IconForestOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconForestOutlined as default } diff --git a/src/IconForestRound.tsx b/src/IconForestRound.tsx new file mode 100644 index 000000000..2dfde0afc --- /dev/null +++ b/src/IconForestRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconForestRound as default } diff --git a/src/IconForestSharp.tsx b/src/IconForestSharp.tsx new file mode 100644 index 000000000..73eed9734 --- /dev/null +++ b/src/IconForestSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconForestSharp as default } diff --git a/src/IconForestTwoTone.tsx b/src/IconForestTwoTone.tsx new file mode 100644 index 000000000..4d3532414 --- /dev/null +++ b/src/IconForestTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconForestTwoTone as default } diff --git a/src/IconForkLeftOutlined.tsx b/src/IconForkLeftOutlined.tsx new file mode 100644 index 000000000..f1b29b405 --- /dev/null +++ b/src/IconForkLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkLeftOutlined as default } diff --git a/src/IconForkLeftRound.tsx b/src/IconForkLeftRound.tsx new file mode 100644 index 000000000..f89c4365c --- /dev/null +++ b/src/IconForkLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconForkLeftRound as default } diff --git a/src/IconForkLeftSharp.tsx b/src/IconForkLeftSharp.tsx new file mode 100644 index 000000000..17ea51321 --- /dev/null +++ b/src/IconForkLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkLeftSharp as default } diff --git a/src/IconForkLeftTwoTone.tsx b/src/IconForkLeftTwoTone.tsx new file mode 100644 index 000000000..1fd22d3f5 --- /dev/null +++ b/src/IconForkLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkLeftTwoTone as default } diff --git a/src/IconForkRightOutlined.tsx b/src/IconForkRightOutlined.tsx new file mode 100644 index 000000000..0d0dcfe0c --- /dev/null +++ b/src/IconForkRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkRightOutlined as default } diff --git a/src/IconForkRightRound.tsx b/src/IconForkRightRound.tsx new file mode 100644 index 000000000..2a9439b23 --- /dev/null +++ b/src/IconForkRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconForkRightRound as default } diff --git a/src/IconForkRightSharp.tsx b/src/IconForkRightSharp.tsx new file mode 100644 index 000000000..940152cf7 --- /dev/null +++ b/src/IconForkRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkRightSharp as default } diff --git a/src/IconForkRightTwoTone.tsx b/src/IconForkRightTwoTone.tsx new file mode 100644 index 000000000..a7e6eb3bd --- /dev/null +++ b/src/IconForkRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconForkRightTwoTone as default } diff --git a/src/IconFormatAlignCenterOutlined.tsx b/src/IconFormatAlignCenterOutlined.tsx new file mode 100644 index 000000000..7fb71ce87 --- /dev/null +++ b/src/IconFormatAlignCenterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignCenterOutlined as default } diff --git a/src/IconFormatAlignCenterRound.tsx b/src/IconFormatAlignCenterRound.tsx new file mode 100644 index 000000000..d0b88577c --- /dev/null +++ b/src/IconFormatAlignCenterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignCenterRound as default } diff --git a/src/IconFormatAlignCenterSharp.tsx b/src/IconFormatAlignCenterSharp.tsx new file mode 100644 index 000000000..9bd49072a --- /dev/null +++ b/src/IconFormatAlignCenterSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignCenterSharp as default } diff --git a/src/IconFormatAlignCenterTwoTone.tsx b/src/IconFormatAlignCenterTwoTone.tsx new file mode 100644 index 000000000..48f8790c4 --- /dev/null +++ b/src/IconFormatAlignCenterTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignCenterTwoTone as default } diff --git a/src/IconFormatAlignJustifyOutlined.tsx b/src/IconFormatAlignJustifyOutlined.tsx new file mode 100644 index 000000000..590800db5 --- /dev/null +++ b/src/IconFormatAlignJustifyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignJustifyOutlined as default } diff --git a/src/IconFormatAlignJustifyRound.tsx b/src/IconFormatAlignJustifyRound.tsx new file mode 100644 index 000000000..9db8d2631 --- /dev/null +++ b/src/IconFormatAlignJustifyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignJustifyRound as default } diff --git a/src/IconFormatAlignJustifySharp.tsx b/src/IconFormatAlignJustifySharp.tsx new file mode 100644 index 000000000..b4f78145e --- /dev/null +++ b/src/IconFormatAlignJustifySharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignJustifySharp as default } diff --git a/src/IconFormatAlignJustifyTwoTone.tsx b/src/IconFormatAlignJustifyTwoTone.tsx new file mode 100644 index 000000000..3a8c8d134 --- /dev/null +++ b/src/IconFormatAlignJustifyTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignJustifyTwoTone as default } diff --git a/src/IconFormatAlignLeftOutlined.tsx b/src/IconFormatAlignLeftOutlined.tsx new file mode 100644 index 000000000..f1df319be --- /dev/null +++ b/src/IconFormatAlignLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignLeftOutlined as default } diff --git a/src/IconFormatAlignLeftRound.tsx b/src/IconFormatAlignLeftRound.tsx new file mode 100644 index 000000000..3d1ed237f --- /dev/null +++ b/src/IconFormatAlignLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignLeftRound as default } diff --git a/src/IconFormatAlignLeftSharp.tsx b/src/IconFormatAlignLeftSharp.tsx new file mode 100644 index 000000000..0e94b1877 --- /dev/null +++ b/src/IconFormatAlignLeftSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignLeftSharp as default } diff --git a/src/IconFormatAlignLeftTwoTone.tsx b/src/IconFormatAlignLeftTwoTone.tsx new file mode 100644 index 000000000..7a4e3f0d8 --- /dev/null +++ b/src/IconFormatAlignLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignLeftTwoTone as default } diff --git a/src/IconFormatAlignRightOutlined.tsx b/src/IconFormatAlignRightOutlined.tsx new file mode 100644 index 000000000..2287cebee --- /dev/null +++ b/src/IconFormatAlignRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignRightOutlined as default } diff --git a/src/IconFormatAlignRightRound.tsx b/src/IconFormatAlignRightRound.tsx new file mode 100644 index 000000000..b5e44c2bd --- /dev/null +++ b/src/IconFormatAlignRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignRightRound as default } diff --git a/src/IconFormatAlignRightSharp.tsx b/src/IconFormatAlignRightSharp.tsx new file mode 100644 index 000000000..6d8c98458 --- /dev/null +++ b/src/IconFormatAlignRightSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignRightSharp as default } diff --git a/src/IconFormatAlignRightTwoTone.tsx b/src/IconFormatAlignRightTwoTone.tsx new file mode 100644 index 000000000..ba851d90f --- /dev/null +++ b/src/IconFormatAlignRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatAlignRightTwoTone as default } diff --git a/src/IconFormatBoldOutlined.tsx b/src/IconFormatBoldOutlined.tsx new file mode 100644 index 000000000..12f2dceb8 --- /dev/null +++ b/src/IconFormatBoldOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatBoldOutlined as default } diff --git a/src/IconFormatBoldRound.tsx b/src/IconFormatBoldRound.tsx new file mode 100644 index 000000000..ed918c343 --- /dev/null +++ b/src/IconFormatBoldRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatBoldRound as default } diff --git a/src/IconFormatBoldSharp.tsx b/src/IconFormatBoldSharp.tsx new file mode 100644 index 000000000..a3c999b87 --- /dev/null +++ b/src/IconFormatBoldSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatBoldSharp as default } diff --git a/src/IconFormatBoldTwoTone.tsx b/src/IconFormatBoldTwoTone.tsx new file mode 100644 index 000000000..a5491bb59 --- /dev/null +++ b/src/IconFormatBoldTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatBoldTwoTone as default } diff --git a/src/IconFormatClearOutlined.tsx b/src/IconFormatClearOutlined.tsx new file mode 100644 index 000000000..80ba6be69 --- /dev/null +++ b/src/IconFormatClearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatClearOutlined as default } diff --git a/src/IconFormatClearRound.tsx b/src/IconFormatClearRound.tsx new file mode 100644 index 000000000..5e254237c --- /dev/null +++ b/src/IconFormatClearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatClearRound as default } diff --git a/src/IconFormatClearSharp.tsx b/src/IconFormatClearSharp.tsx new file mode 100644 index 000000000..26f199219 --- /dev/null +++ b/src/IconFormatClearSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatClearSharp as default } diff --git a/src/IconFormatClearTwoTone.tsx b/src/IconFormatClearTwoTone.tsx new file mode 100644 index 000000000..5bdb34c3a --- /dev/null +++ b/src/IconFormatClearTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatClearTwoTone as default } diff --git a/src/IconFormatColorFillOutlined.tsx b/src/IconFormatColorFillOutlined.tsx new file mode 100644 index 000000000..8350017ff --- /dev/null +++ b/src/IconFormatColorFillOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatColorFillOutlined as default } diff --git a/src/IconFormatColorFillRound.tsx b/src/IconFormatColorFillRound.tsx new file mode 100644 index 000000000..3d9be2791 --- /dev/null +++ b/src/IconFormatColorFillRound.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFormatColorFillRound as default } diff --git a/src/IconFormatColorFillSharp.tsx b/src/IconFormatColorFillSharp.tsx new file mode 100644 index 000000000..174c31e88 --- /dev/null +++ b/src/IconFormatColorFillSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconFormatColorFillSharp as default } diff --git a/src/IconFormatColorFillTwoTone.tsx b/src/IconFormatColorFillTwoTone.tsx new file mode 100644 index 000000000..e05a0a177 --- /dev/null +++ b/src/IconFormatColorFillTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatColorFillTwoTone as default } diff --git a/src/IconFormatColorResetOutlined.tsx b/src/IconFormatColorResetOutlined.tsx new file mode 100644 index 000000000..85878775a --- /dev/null +++ b/src/IconFormatColorResetOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatColorResetOutlined as default } diff --git a/src/IconFormatColorResetRound.tsx b/src/IconFormatColorResetRound.tsx new file mode 100644 index 000000000..bb7dbec35 --- /dev/null +++ b/src/IconFormatColorResetRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatColorResetRound as default } diff --git a/src/IconFormatColorResetSharp.tsx b/src/IconFormatColorResetSharp.tsx new file mode 100644 index 000000000..ef99f87e2 --- /dev/null +++ b/src/IconFormatColorResetSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorResetSharp as default } diff --git a/src/IconFormatColorResetTwoTone.tsx b/src/IconFormatColorResetTwoTone.tsx new file mode 100644 index 000000000..ae204f2f5 --- /dev/null +++ b/src/IconFormatColorResetTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatColorResetTwoTone as default } diff --git a/src/IconFormatColorTextOutlined.tsx b/src/IconFormatColorTextOutlined.tsx new file mode 100644 index 000000000..925bce320 --- /dev/null +++ b/src/IconFormatColorTextOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatColorTextOutlined as default } diff --git a/src/IconFormatColorTextRound.tsx b/src/IconFormatColorTextRound.tsx new file mode 100644 index 000000000..741e997ff --- /dev/null +++ b/src/IconFormatColorTextRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFormatColorTextRound as default } diff --git a/src/IconFormatColorTextSharp.tsx b/src/IconFormatColorTextSharp.tsx new file mode 100644 index 000000000..4273fc2d9 --- /dev/null +++ b/src/IconFormatColorTextSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatColorTextSharp as default } diff --git a/src/IconFormatColorTextTwoTone.tsx b/src/IconFormatColorTextTwoTone.tsx new file mode 100644 index 000000000..1bbf18057 --- /dev/null +++ b/src/IconFormatColorTextTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatColorTextTwoTone as default } diff --git a/src/IconFormatIndentDecreaseOutlined.tsx b/src/IconFormatIndentDecreaseOutlined.tsx new file mode 100644 index 000000000..a9d16e188 --- /dev/null +++ b/src/IconFormatIndentDecreaseOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentDecreaseOutlined as default } diff --git a/src/IconFormatIndentDecreaseRound.tsx b/src/IconFormatIndentDecreaseRound.tsx new file mode 100644 index 000000000..691d80b5a --- /dev/null +++ b/src/IconFormatIndentDecreaseRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentDecreaseRound as default } diff --git a/src/IconFormatIndentDecreaseSharp.tsx b/src/IconFormatIndentDecreaseSharp.tsx new file mode 100644 index 000000000..9e8c10164 --- /dev/null +++ b/src/IconFormatIndentDecreaseSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentDecreaseSharp as default } diff --git a/src/IconFormatIndentDecreaseTwoTone.tsx b/src/IconFormatIndentDecreaseTwoTone.tsx new file mode 100644 index 000000000..8d63903df --- /dev/null +++ b/src/IconFormatIndentDecreaseTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentDecreaseTwoTone as default } diff --git a/src/IconFormatIndentIncreaseOutlined.tsx b/src/IconFormatIndentIncreaseOutlined.tsx new file mode 100644 index 000000000..5dba97a01 --- /dev/null +++ b/src/IconFormatIndentIncreaseOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentIncreaseOutlined as default } diff --git a/src/IconFormatIndentIncreaseRound.tsx b/src/IconFormatIndentIncreaseRound.tsx new file mode 100644 index 000000000..0c450e1c9 --- /dev/null +++ b/src/IconFormatIndentIncreaseRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentIncreaseRound as default } diff --git a/src/IconFormatIndentIncreaseSharp.tsx b/src/IconFormatIndentIncreaseSharp.tsx new file mode 100644 index 000000000..46d6a5465 --- /dev/null +++ b/src/IconFormatIndentIncreaseSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentIncreaseSharp as default } diff --git a/src/IconFormatIndentIncreaseTwoTone.tsx b/src/IconFormatIndentIncreaseTwoTone.tsx new file mode 100644 index 000000000..f818df710 --- /dev/null +++ b/src/IconFormatIndentIncreaseTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatIndentIncreaseTwoTone as default } diff --git a/src/IconFormatItalicOutlined.tsx b/src/IconFormatItalicOutlined.tsx new file mode 100644 index 000000000..547ad3f1b --- /dev/null +++ b/src/IconFormatItalicOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatItalicOutlined as default } diff --git a/src/IconFormatItalicRound.tsx b/src/IconFormatItalicRound.tsx new file mode 100644 index 000000000..25fdc67b1 --- /dev/null +++ b/src/IconFormatItalicRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatItalicRound as default } diff --git a/src/IconFormatItalicSharp.tsx b/src/IconFormatItalicSharp.tsx new file mode 100644 index 000000000..7039b85d1 --- /dev/null +++ b/src/IconFormatItalicSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatItalicSharp as default } diff --git a/src/IconFormatItalicTwoTone.tsx b/src/IconFormatItalicTwoTone.tsx new file mode 100644 index 000000000..46db99718 --- /dev/null +++ b/src/IconFormatItalicTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatItalicTwoTone as default } diff --git a/src/IconFormatLineSpacingOutlined.tsx b/src/IconFormatLineSpacingOutlined.tsx new file mode 100644 index 000000000..4af717a21 --- /dev/null +++ b/src/IconFormatLineSpacingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatLineSpacingOutlined as default } diff --git a/src/IconFormatLineSpacingRound.tsx b/src/IconFormatLineSpacingRound.tsx new file mode 100644 index 000000000..a12a2e16c --- /dev/null +++ b/src/IconFormatLineSpacingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatLineSpacingRound as default } diff --git a/src/IconFormatLineSpacingSharp.tsx b/src/IconFormatLineSpacingSharp.tsx new file mode 100644 index 000000000..c9d46822e --- /dev/null +++ b/src/IconFormatLineSpacingSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLineSpacingSharp as default } diff --git a/src/IconFormatLineSpacingTwoTone.tsx b/src/IconFormatLineSpacingTwoTone.tsx new file mode 100644 index 000000000..38092860a --- /dev/null +++ b/src/IconFormatLineSpacingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatLineSpacingTwoTone as default } diff --git a/src/IconFormatListBulletedOutlined.tsx b/src/IconFormatListBulletedOutlined.tsx new file mode 100644 index 000000000..d30726815 --- /dev/null +++ b/src/IconFormatListBulletedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListBulletedOutlined as default } diff --git a/src/IconFormatListBulletedRound.tsx b/src/IconFormatListBulletedRound.tsx new file mode 100644 index 000000000..8988e56b4 --- /dev/null +++ b/src/IconFormatListBulletedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListBulletedRound as default } diff --git a/src/IconFormatListBulletedSharp.tsx b/src/IconFormatListBulletedSharp.tsx new file mode 100644 index 000000000..de520c651 --- /dev/null +++ b/src/IconFormatListBulletedSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedSharp as default } diff --git a/src/IconFormatListBulletedTwoTone.tsx b/src/IconFormatListBulletedTwoTone.tsx new file mode 100644 index 000000000..03928dc7d --- /dev/null +++ b/src/IconFormatListBulletedTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconFormatListBulletedTwoTone as default } diff --git a/src/IconFormatListNumberedOutlined.tsx b/src/IconFormatListNumberedOutlined.tsx new file mode 100644 index 000000000..8ae50a132 --- /dev/null +++ b/src/IconFormatListNumberedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedOutlined as default } diff --git a/src/IconFormatListNumberedRound.tsx b/src/IconFormatListNumberedRound.tsx new file mode 100644 index 000000000..3f0df7424 --- /dev/null +++ b/src/IconFormatListNumberedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedRound as default } diff --git a/src/IconFormatListNumberedRtlOutlined.tsx b/src/IconFormatListNumberedRtlOutlined.tsx new file mode 100644 index 000000000..4c0a736f5 --- /dev/null +++ b/src/IconFormatListNumberedRtlOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedRtlOutlined as default } diff --git a/src/IconFormatListNumberedRtlRound.tsx b/src/IconFormatListNumberedRtlRound.tsx new file mode 100644 index 000000000..3f20778e3 --- /dev/null +++ b/src/IconFormatListNumberedRtlRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedRtlRound as default } diff --git a/src/IconFormatListNumberedRtlSharp.tsx b/src/IconFormatListNumberedRtlSharp.tsx new file mode 100644 index 000000000..a7039c761 --- /dev/null +++ b/src/IconFormatListNumberedRtlSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedRtlSharp as default } diff --git a/src/IconFormatListNumberedRtlTwoTone.tsx b/src/IconFormatListNumberedRtlTwoTone.tsx new file mode 100644 index 000000000..665dbe5b3 --- /dev/null +++ b/src/IconFormatListNumberedRtlTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedRtlTwoTone as default } diff --git a/src/IconFormatListNumberedSharp.tsx b/src/IconFormatListNumberedSharp.tsx new file mode 100644 index 000000000..c52a9e0eb --- /dev/null +++ b/src/IconFormatListNumberedSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedSharp as default } diff --git a/src/IconFormatListNumberedTwoTone.tsx b/src/IconFormatListNumberedTwoTone.tsx new file mode 100644 index 000000000..e1dc452e9 --- /dev/null +++ b/src/IconFormatListNumberedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatListNumberedTwoTone as default } diff --git a/src/IconFormatOverlineOutlined.tsx b/src/IconFormatOverlineOutlined.tsx new file mode 100644 index 000000000..f002332b7 --- /dev/null +++ b/src/IconFormatOverlineOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatOverlineOutlined as default } diff --git a/src/IconFormatOverlineRound.tsx b/src/IconFormatOverlineRound.tsx new file mode 100644 index 000000000..95b72ae35 --- /dev/null +++ b/src/IconFormatOverlineRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatOverlineRound as default } diff --git a/src/IconFormatOverlineSharp.tsx b/src/IconFormatOverlineSharp.tsx new file mode 100644 index 000000000..c65fdb3ee --- /dev/null +++ b/src/IconFormatOverlineSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatOverlineSharp as default } diff --git a/src/IconFormatOverlineTwoTone.tsx b/src/IconFormatOverlineTwoTone.tsx new file mode 100644 index 000000000..edd9966cf --- /dev/null +++ b/src/IconFormatOverlineTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFormatOverlineTwoTone as default } diff --git a/src/IconFormatPaintOutlined.tsx b/src/IconFormatPaintOutlined.tsx new file mode 100644 index 000000000..91b8a8f51 --- /dev/null +++ b/src/IconFormatPaintOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatPaintOutlined as default } diff --git a/src/IconFormatPaintRound.tsx b/src/IconFormatPaintRound.tsx new file mode 100644 index 000000000..4fc5fc008 --- /dev/null +++ b/src/IconFormatPaintRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatPaintRound as default } diff --git a/src/IconFormatPaintSharp.tsx b/src/IconFormatPaintSharp.tsx new file mode 100644 index 000000000..8e874b700 --- /dev/null +++ b/src/IconFormatPaintSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatPaintSharp as default } diff --git a/src/IconFormatPaintTwoTone.tsx b/src/IconFormatPaintTwoTone.tsx new file mode 100644 index 000000000..93d967f45 --- /dev/null +++ b/src/IconFormatPaintTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatPaintTwoTone as default } diff --git a/src/IconFormatQuoteOutlined.tsx b/src/IconFormatQuoteOutlined.tsx new file mode 100644 index 000000000..54fa2b27a --- /dev/null +++ b/src/IconFormatQuoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatQuoteOutlined as default } diff --git a/src/IconFormatQuoteRound.tsx b/src/IconFormatQuoteRound.tsx new file mode 100644 index 000000000..5b1115dc0 --- /dev/null +++ b/src/IconFormatQuoteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatQuoteRound as default } diff --git a/src/IconFormatQuoteSharp.tsx b/src/IconFormatQuoteSharp.tsx new file mode 100644 index 000000000..74e385c59 --- /dev/null +++ b/src/IconFormatQuoteSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteSharp as default } diff --git a/src/IconFormatQuoteTwoTone.tsx b/src/IconFormatQuoteTwoTone.tsx new file mode 100644 index 000000000..c375e4651 --- /dev/null +++ b/src/IconFormatQuoteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatQuoteTwoTone as default } diff --git a/src/IconFormatShapesOutlined.tsx b/src/IconFormatShapesOutlined.tsx new file mode 100644 index 000000000..8a5722b05 --- /dev/null +++ b/src/IconFormatShapesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatShapesOutlined as default } diff --git a/src/IconFormatShapesRound.tsx b/src/IconFormatShapesRound.tsx new file mode 100644 index 000000000..a78908469 --- /dev/null +++ b/src/IconFormatShapesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatShapesRound as default } diff --git a/src/IconFormatShapesSharp.tsx b/src/IconFormatShapesSharp.tsx new file mode 100644 index 000000000..b122cca0d --- /dev/null +++ b/src/IconFormatShapesSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatShapesSharp as default } diff --git a/src/IconFormatShapesTwoTone.tsx b/src/IconFormatShapesTwoTone.tsx new file mode 100644 index 000000000..e2801621f --- /dev/null +++ b/src/IconFormatShapesTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatShapesTwoTone as default } diff --git a/src/IconFormatSizeOutlined.tsx b/src/IconFormatSizeOutlined.tsx new file mode 100644 index 000000000..7321bcc64 --- /dev/null +++ b/src/IconFormatSizeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatSizeOutlined as default } diff --git a/src/IconFormatSizeRound.tsx b/src/IconFormatSizeRound.tsx new file mode 100644 index 000000000..a98a6581f --- /dev/null +++ b/src/IconFormatSizeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatSizeRound as default } diff --git a/src/IconFormatSizeSharp.tsx b/src/IconFormatSizeSharp.tsx new file mode 100644 index 000000000..5671db3d1 --- /dev/null +++ b/src/IconFormatSizeSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatSizeSharp as default } diff --git a/src/IconFormatSizeTwoTone.tsx b/src/IconFormatSizeTwoTone.tsx new file mode 100644 index 000000000..00b65153c --- /dev/null +++ b/src/IconFormatSizeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatSizeTwoTone as default } diff --git a/src/IconFormatStrikethroughOutlined.tsx b/src/IconFormatStrikethroughOutlined.tsx new file mode 100644 index 000000000..b625845f9 --- /dev/null +++ b/src/IconFormatStrikethroughOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatStrikethroughOutlined as default } diff --git a/src/IconFormatStrikethroughRound.tsx b/src/IconFormatStrikethroughRound.tsx new file mode 100644 index 000000000..370601c81 --- /dev/null +++ b/src/IconFormatStrikethroughRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatStrikethroughRound as default } diff --git a/src/IconFormatStrikethroughSharp.tsx b/src/IconFormatStrikethroughSharp.tsx new file mode 100644 index 000000000..8eecfa9c3 --- /dev/null +++ b/src/IconFormatStrikethroughSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatStrikethroughSharp as default } diff --git a/src/IconFormatStrikethroughTwoTone.tsx b/src/IconFormatStrikethroughTwoTone.tsx new file mode 100644 index 000000000..3f07bc7d4 --- /dev/null +++ b/src/IconFormatStrikethroughTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatStrikethroughTwoTone as default } diff --git a/src/IconFormatTextdirectionLToROutlined.tsx b/src/IconFormatTextdirectionLToROutlined.tsx new file mode 100644 index 000000000..772d60c95 --- /dev/null +++ b/src/IconFormatTextdirectionLToROutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToROutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatTextdirectionLToROutlined as default } diff --git a/src/IconFormatTextdirectionLToRRound.tsx b/src/IconFormatTextdirectionLToRRound.tsx new file mode 100644 index 000000000..f10ddbbfc --- /dev/null +++ b/src/IconFormatTextdirectionLToRRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToRRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatTextdirectionLToRRound as default } diff --git a/src/IconFormatTextdirectionLToRSharp.tsx b/src/IconFormatTextdirectionLToRSharp.tsx new file mode 100644 index 000000000..bd05e17a6 --- /dev/null +++ b/src/IconFormatTextdirectionLToRSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToRSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionLToRSharp as default } diff --git a/src/IconFormatTextdirectionLToRTwoTone.tsx b/src/IconFormatTextdirectionLToRTwoTone.tsx new file mode 100644 index 000000000..97fd754d8 --- /dev/null +++ b/src/IconFormatTextdirectionLToRTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToRTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatTextdirectionLToRTwoTone as default } diff --git a/src/IconFormatTextdirectionRToLOutlined.tsx b/src/IconFormatTextdirectionRToLOutlined.tsx new file mode 100644 index 000000000..e8fdec209 --- /dev/null +++ b/src/IconFormatTextdirectionRToLOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatTextdirectionRToLOutlined as default } diff --git a/src/IconFormatTextdirectionRToLRound.tsx b/src/IconFormatTextdirectionRToLRound.tsx new file mode 100644 index 000000000..7dde35234 --- /dev/null +++ b/src/IconFormatTextdirectionRToLRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatTextdirectionRToLRound as default } diff --git a/src/IconFormatTextdirectionRToLSharp.tsx b/src/IconFormatTextdirectionRToLSharp.tsx new file mode 100644 index 000000000..56ace1e95 --- /dev/null +++ b/src/IconFormatTextdirectionRToLSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionRToLSharp as default } diff --git a/src/IconFormatTextdirectionRToLTwoTone.tsx b/src/IconFormatTextdirectionRToLTwoTone.tsx new file mode 100644 index 000000000..34d5ca68c --- /dev/null +++ b/src/IconFormatTextdirectionRToLTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFormatTextdirectionRToLTwoTone as default } diff --git a/src/IconFormatUnderlinedOutlined.tsx b/src/IconFormatUnderlinedOutlined.tsx new file mode 100644 index 000000000..336811ae2 --- /dev/null +++ b/src/IconFormatUnderlinedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatUnderlinedOutlined as default } diff --git a/src/IconFormatUnderlinedRound.tsx b/src/IconFormatUnderlinedRound.tsx new file mode 100644 index 000000000..229d3770b --- /dev/null +++ b/src/IconFormatUnderlinedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatUnderlinedRound as default } diff --git a/src/IconFormatUnderlinedSharp.tsx b/src/IconFormatUnderlinedSharp.tsx new file mode 100644 index 000000000..ac68ca873 --- /dev/null +++ b/src/IconFormatUnderlinedSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedSharp as default } diff --git a/src/IconFormatUnderlinedTwoTone.tsx b/src/IconFormatUnderlinedTwoTone.tsx new file mode 100644 index 000000000..f47f44012 --- /dev/null +++ b/src/IconFormatUnderlinedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFormatUnderlinedTwoTone as default } diff --git a/src/IconFortOutlined.tsx b/src/IconFortOutlined.tsx new file mode 100644 index 000000000..39161e0e0 --- /dev/null +++ b/src/IconFortOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconFortOutlined as default } diff --git a/src/IconFortRound.tsx b/src/IconFortRound.tsx new file mode 100644 index 000000000..f4b127b3c --- /dev/null +++ b/src/IconFortRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFortRound as default } diff --git a/src/IconFortSharp.tsx b/src/IconFortSharp.tsx new file mode 100644 index 000000000..4778c83dc --- /dev/null +++ b/src/IconFortSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconFortSharp as default } diff --git a/src/IconFortTwoTone.tsx b/src/IconFortTwoTone.tsx new file mode 100644 index 000000000..25a442050 --- /dev/null +++ b/src/IconFortTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconFortTwoTone as default } diff --git a/src/IconForumOutlined.tsx b/src/IconForumOutlined.tsx new file mode 100644 index 000000000..62f61fb2d --- /dev/null +++ b/src/IconForumOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForumOutlined as default } diff --git a/src/IconForumRound.tsx b/src/IconForumRound.tsx new file mode 100644 index 000000000..e593d51d8 --- /dev/null +++ b/src/IconForumRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForumRound as default } diff --git a/src/IconForumSharp.tsx b/src/IconForumSharp.tsx new file mode 100644 index 000000000..3800814c1 --- /dev/null +++ b/src/IconForumSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForumSharp as default } diff --git a/src/IconForumTwoTone.tsx b/src/IconForumTwoTone.tsx new file mode 100644 index 000000000..945967879 --- /dev/null +++ b/src/IconForumTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconForumTwoTone as default } diff --git a/src/IconForward10Outlined.tsx b/src/IconForward10Outlined.tsx new file mode 100644 index 000000000..4a5471489 --- /dev/null +++ b/src/IconForward10Outlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconForward10Outlined as default } diff --git a/src/IconForward10Round.tsx b/src/IconForward10Round.tsx new file mode 100644 index 000000000..372342542 --- /dev/null +++ b/src/IconForward10Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward10Round as default } diff --git a/src/IconForward10Sharp.tsx b/src/IconForward10Sharp.tsx new file mode 100644 index 000000000..7b4fb59c6 --- /dev/null +++ b/src/IconForward10Sharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconForward10Sharp as default } diff --git a/src/IconForward10TwoTone.tsx b/src/IconForward10TwoTone.tsx new file mode 100644 index 000000000..3f7d74100 --- /dev/null +++ b/src/IconForward10TwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconForward10TwoTone as default } diff --git a/src/IconForward30Outlined.tsx b/src/IconForward30Outlined.tsx new file mode 100644 index 000000000..95bb75758 --- /dev/null +++ b/src/IconForward30Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward30Outlined as default } diff --git a/src/IconForward30Round.tsx b/src/IconForward30Round.tsx new file mode 100644 index 000000000..56a8f221a --- /dev/null +++ b/src/IconForward30Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward30Round as default } diff --git a/src/IconForward30Sharp.tsx b/src/IconForward30Sharp.tsx new file mode 100644 index 000000000..dc4a969d2 --- /dev/null +++ b/src/IconForward30Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward30Sharp as default } diff --git a/src/IconForward30TwoTone.tsx b/src/IconForward30TwoTone.tsx new file mode 100644 index 000000000..792fb5257 --- /dev/null +++ b/src/IconForward30TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward30TwoTone as default } diff --git a/src/IconForward5Outlined.tsx b/src/IconForward5Outlined.tsx new file mode 100644 index 000000000..b221afc31 --- /dev/null +++ b/src/IconForward5Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward5Outlined as default } diff --git a/src/IconForward5Round.tsx b/src/IconForward5Round.tsx new file mode 100644 index 000000000..03d966459 --- /dev/null +++ b/src/IconForward5Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward5Round as default } diff --git a/src/IconForward5Sharp.tsx b/src/IconForward5Sharp.tsx new file mode 100644 index 000000000..1b077964a --- /dev/null +++ b/src/IconForward5Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward5Sharp as default } diff --git a/src/IconForward5TwoTone.tsx b/src/IconForward5TwoTone.tsx new file mode 100644 index 000000000..287e1a866 --- /dev/null +++ b/src/IconForward5TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForward5TwoTone as default } diff --git a/src/IconForwardOutlined.tsx b/src/IconForwardOutlined.tsx new file mode 100644 index 000000000..abaddf08b --- /dev/null +++ b/src/IconForwardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForwardOutlined as default } diff --git a/src/IconForwardRound.tsx b/src/IconForwardRound.tsx new file mode 100644 index 000000000..9c349c46a --- /dev/null +++ b/src/IconForwardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForwardRound as default } diff --git a/src/IconForwardSharp.tsx b/src/IconForwardSharp.tsx new file mode 100644 index 000000000..72407eb57 --- /dev/null +++ b/src/IconForwardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconForwardSharp as default } diff --git a/src/IconForwardToInboxOutlined.tsx b/src/IconForwardToInboxOutlined.tsx new file mode 100644 index 000000000..d95d5db2c --- /dev/null +++ b/src/IconForwardToInboxOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconForwardToInboxOutlined as default } diff --git a/src/IconForwardToInboxRound.tsx b/src/IconForwardToInboxRound.tsx new file mode 100644 index 000000000..79b199e19 --- /dev/null +++ b/src/IconForwardToInboxRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconForwardToInboxRound as default } diff --git a/src/IconForwardToInboxSharp.tsx b/src/IconForwardToInboxSharp.tsx new file mode 100644 index 000000000..10aa22fdf --- /dev/null +++ b/src/IconForwardToInboxSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconForwardToInboxSharp as default } diff --git a/src/IconForwardToInboxTwoTone.tsx b/src/IconForwardToInboxTwoTone.tsx new file mode 100644 index 000000000..8ef619db3 --- /dev/null +++ b/src/IconForwardToInboxTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconForwardToInboxTwoTone as default } diff --git a/src/IconForwardTwoTone.tsx b/src/IconForwardTwoTone.tsx new file mode 100644 index 000000000..1b6877cc2 --- /dev/null +++ b/src/IconForwardTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconForwardTwoTone as default } diff --git a/src/IconFoundationOutlined.tsx b/src/IconFoundationOutlined.tsx new file mode 100644 index 000000000..5ac7bd234 --- /dev/null +++ b/src/IconFoundationOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoundationOutlined as default } diff --git a/src/IconFoundationRound.tsx b/src/IconFoundationRound.tsx new file mode 100644 index 000000000..443804a4f --- /dev/null +++ b/src/IconFoundationRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoundationRound as default } diff --git a/src/IconFoundationSharp.tsx b/src/IconFoundationSharp.tsx new file mode 100644 index 000000000..cada8b77e --- /dev/null +++ b/src/IconFoundationSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFoundationSharp as default } diff --git a/src/IconFoundationTwoTone.tsx b/src/IconFoundationTwoTone.tsx new file mode 100644 index 000000000..e456de928 --- /dev/null +++ b/src/IconFoundationTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFoundationTwoTone as default } diff --git a/src/IconFreeBreakfastOutlined.tsx b/src/IconFreeBreakfastOutlined.tsx new file mode 100644 index 000000000..ba96248da --- /dev/null +++ b/src/IconFreeBreakfastOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeBreakfastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeBreakfastOutlined as default } diff --git a/src/IconFreeBreakfastRound.tsx b/src/IconFreeBreakfastRound.tsx new file mode 100644 index 000000000..06eafd5b4 --- /dev/null +++ b/src/IconFreeBreakfastRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeBreakfastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeBreakfastRound as default } diff --git a/src/IconFreeBreakfastSharp.tsx b/src/IconFreeBreakfastSharp.tsx new file mode 100644 index 000000000..c38efbbc0 --- /dev/null +++ b/src/IconFreeBreakfastSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeBreakfastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeBreakfastSharp as default } diff --git a/src/IconFreeBreakfastTwoTone.tsx b/src/IconFreeBreakfastTwoTone.tsx new file mode 100644 index 000000000..5cd8a6639 --- /dev/null +++ b/src/IconFreeBreakfastTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeBreakfastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFreeBreakfastTwoTone as default } diff --git a/src/IconFreeCancellationOutlined.tsx b/src/IconFreeCancellationOutlined.tsx new file mode 100644 index 000000000..5a9722488 --- /dev/null +++ b/src/IconFreeCancellationOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeCancellationOutlined as default } diff --git a/src/IconFreeCancellationRound.tsx b/src/IconFreeCancellationRound.tsx new file mode 100644 index 000000000..971f7eaa1 --- /dev/null +++ b/src/IconFreeCancellationRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeCancellationRound as default } diff --git a/src/IconFreeCancellationSharp.tsx b/src/IconFreeCancellationSharp.tsx new file mode 100644 index 000000000..750906ff9 --- /dev/null +++ b/src/IconFreeCancellationSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFreeCancellationSharp as default } diff --git a/src/IconFreeCancellationTwoTone.tsx b/src/IconFreeCancellationTwoTone.tsx new file mode 100644 index 000000000..6496f2090 --- /dev/null +++ b/src/IconFreeCancellationTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFreeCancellationTwoTone as default } diff --git a/src/IconFrontHandOutlined.tsx b/src/IconFrontHandOutlined.tsx new file mode 100644 index 000000000..51473dbfc --- /dev/null +++ b/src/IconFrontHandOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFrontHandOutlined as default } diff --git a/src/IconFrontHandRound.tsx b/src/IconFrontHandRound.tsx new file mode 100644 index 000000000..0eb6ff8cc --- /dev/null +++ b/src/IconFrontHandRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFrontHandRound as default } diff --git a/src/IconFrontHandSharp.tsx b/src/IconFrontHandSharp.tsx new file mode 100644 index 000000000..f5d2a331c --- /dev/null +++ b/src/IconFrontHandSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFrontHandSharp as default } diff --git a/src/IconFrontHandTwoTone.tsx b/src/IconFrontHandTwoTone.tsx new file mode 100644 index 000000000..45722ff73 --- /dev/null +++ b/src/IconFrontHandTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconFrontHandTwoTone as default } diff --git a/src/IconFullscreenExitOutlined.tsx b/src/IconFullscreenExitOutlined.tsx new file mode 100644 index 000000000..886be174a --- /dev/null +++ b/src/IconFullscreenExitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenExitOutlined as default } diff --git a/src/IconFullscreenExitRound.tsx b/src/IconFullscreenExitRound.tsx new file mode 100644 index 000000000..82ddbf662 --- /dev/null +++ b/src/IconFullscreenExitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenExitRound as default } diff --git a/src/IconFullscreenExitSharp.tsx b/src/IconFullscreenExitSharp.tsx new file mode 100644 index 000000000..f76dbfca7 --- /dev/null +++ b/src/IconFullscreenExitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenExitSharp as default } diff --git a/src/IconFullscreenExitTwoTone.tsx b/src/IconFullscreenExitTwoTone.tsx new file mode 100644 index 000000000..d786e7b9f --- /dev/null +++ b/src/IconFullscreenExitTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenExitTwoTone as default } diff --git a/src/IconFullscreenOutlined.tsx b/src/IconFullscreenOutlined.tsx new file mode 100644 index 000000000..a4f56b735 --- /dev/null +++ b/src/IconFullscreenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenOutlined as default } diff --git a/src/IconFullscreenRound.tsx b/src/IconFullscreenRound.tsx new file mode 100644 index 000000000..0fe50f1c6 --- /dev/null +++ b/src/IconFullscreenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenRound as default } diff --git a/src/IconFullscreenSharp.tsx b/src/IconFullscreenSharp.tsx new file mode 100644 index 000000000..c297b5c44 --- /dev/null +++ b/src/IconFullscreenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenSharp as default } diff --git a/src/IconFullscreenTwoTone.tsx b/src/IconFullscreenTwoTone.tsx new file mode 100644 index 000000000..99014e4d9 --- /dev/null +++ b/src/IconFullscreenTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFullscreenTwoTone as default } diff --git a/src/IconFunctionsOutlined.tsx b/src/IconFunctionsOutlined.tsx new file mode 100644 index 000000000..73906ffd2 --- /dev/null +++ b/src/IconFunctionsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFunctionsOutlined as default } diff --git a/src/IconFunctionsRound.tsx b/src/IconFunctionsRound.tsx new file mode 100644 index 000000000..ce6885d09 --- /dev/null +++ b/src/IconFunctionsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFunctionsRound as default } diff --git a/src/IconFunctionsSharp.tsx b/src/IconFunctionsSharp.tsx new file mode 100644 index 000000000..1dfbb43a2 --- /dev/null +++ b/src/IconFunctionsSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionsSharp as default } diff --git a/src/IconFunctionsTwoTone.tsx b/src/IconFunctionsTwoTone.tsx new file mode 100644 index 000000000..5f9443090 --- /dev/null +++ b/src/IconFunctionsTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconFunctionsTwoTone as default } diff --git a/src/IconGMobiledataOutlined.tsx b/src/IconGMobiledataOutlined.tsx new file mode 100644 index 000000000..23c9f30d1 --- /dev/null +++ b/src/IconGMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGMobiledataOutlined as default } diff --git a/src/IconGMobiledataRound.tsx b/src/IconGMobiledataRound.tsx new file mode 100644 index 000000000..25aa50807 --- /dev/null +++ b/src/IconGMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGMobiledataRound as default } diff --git a/src/IconGMobiledataSharp.tsx b/src/IconGMobiledataSharp.tsx new file mode 100644 index 000000000..c6ccd6faf --- /dev/null +++ b/src/IconGMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGMobiledataSharp as default } diff --git a/src/IconGMobiledataTwoTone.tsx b/src/IconGMobiledataTwoTone.tsx new file mode 100644 index 000000000..e735209d3 --- /dev/null +++ b/src/IconGMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGMobiledataTwoTone as default } diff --git a/src/IconGTranslateOutlined.tsx b/src/IconGTranslateOutlined.tsx new file mode 100644 index 000000000..9d22fae20 --- /dev/null +++ b/src/IconGTranslateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGTranslateOutlined as default } diff --git a/src/IconGTranslateRound.tsx b/src/IconGTranslateRound.tsx new file mode 100644 index 000000000..41df3b367 --- /dev/null +++ b/src/IconGTranslateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGTranslateRound as default } diff --git a/src/IconGTranslateSharp.tsx b/src/IconGTranslateSharp.tsx new file mode 100644 index 000000000..ffb2ab2ae --- /dev/null +++ b/src/IconGTranslateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGTranslateSharp as default } diff --git a/src/IconGTranslateTwoTone.tsx b/src/IconGTranslateTwoTone.tsx new file mode 100644 index 000000000..bcd0a772a --- /dev/null +++ b/src/IconGTranslateTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGTranslateTwoTone as default } diff --git a/src/IconGamepadOutlined.tsx b/src/IconGamepadOutlined.tsx new file mode 100644 index 000000000..2dede2d6a --- /dev/null +++ b/src/IconGamepadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGamepadOutlined as default } diff --git a/src/IconGamepadRound.tsx b/src/IconGamepadRound.tsx new file mode 100644 index 000000000..fbc71d9c1 --- /dev/null +++ b/src/IconGamepadRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGamepadRound as default } diff --git a/src/IconGamepadSharp.tsx b/src/IconGamepadSharp.tsx new file mode 100644 index 000000000..71ce22e55 --- /dev/null +++ b/src/IconGamepadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGamepadSharp as default } diff --git a/src/IconGamepadTwoTone.tsx b/src/IconGamepadTwoTone.tsx new file mode 100644 index 000000000..37f03056d --- /dev/null +++ b/src/IconGamepadTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGamepadTwoTone as default } diff --git a/src/IconGamesOutlined.tsx b/src/IconGamesOutlined.tsx new file mode 100644 index 000000000..bf38f2f98 --- /dev/null +++ b/src/IconGamesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGamesOutlined as default } diff --git a/src/IconGamesRound.tsx b/src/IconGamesRound.tsx new file mode 100644 index 000000000..19f18339c --- /dev/null +++ b/src/IconGamesRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGamesRound as default } diff --git a/src/IconGamesSharp.tsx b/src/IconGamesSharp.tsx new file mode 100644 index 000000000..a851306d5 --- /dev/null +++ b/src/IconGamesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGamesSharp as default } diff --git a/src/IconGamesTwoTone.tsx b/src/IconGamesTwoTone.tsx new file mode 100644 index 000000000..458d4ffaa --- /dev/null +++ b/src/IconGamesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGamesTwoTone as default } diff --git a/src/IconGarageOutlined.tsx b/src/IconGarageOutlined.tsx new file mode 100644 index 000000000..3f287b8ae --- /dev/null +++ b/src/IconGarageOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGarageOutlined as default } diff --git a/src/IconGarageRound.tsx b/src/IconGarageRound.tsx new file mode 100644 index 000000000..85a722373 --- /dev/null +++ b/src/IconGarageRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGarageRound as default } diff --git a/src/IconGarageSharp.tsx b/src/IconGarageSharp.tsx new file mode 100644 index 000000000..86c8ad7b5 --- /dev/null +++ b/src/IconGarageSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGarageSharp as default } diff --git a/src/IconGarageTwoTone.tsx b/src/IconGarageTwoTone.tsx new file mode 100644 index 000000000..52951101f --- /dev/null +++ b/src/IconGarageTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGarageTwoTone as default } diff --git a/src/IconGasMeterOutlined.tsx b/src/IconGasMeterOutlined.tsx new file mode 100644 index 000000000..4a3a8bc1d --- /dev/null +++ b/src/IconGasMeterOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconGasMeterOutlined as default } diff --git a/src/IconGasMeterRound.tsx b/src/IconGasMeterRound.tsx new file mode 100644 index 000000000..4da1800bb --- /dev/null +++ b/src/IconGasMeterRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconGasMeterRound as default } diff --git a/src/IconGasMeterSharp.tsx b/src/IconGasMeterSharp.tsx new file mode 100644 index 000000000..4f57d52e3 --- /dev/null +++ b/src/IconGasMeterSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGasMeterSharp as default } diff --git a/src/IconGasMeterTwoTone.tsx b/src/IconGasMeterTwoTone.tsx new file mode 100644 index 000000000..9fe945ebd --- /dev/null +++ b/src/IconGasMeterTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGasMeterTwoTone as default } diff --git a/src/IconGavelOutlined.tsx b/src/IconGavelOutlined.tsx new file mode 100644 index 000000000..d7102dbeb --- /dev/null +++ b/src/IconGavelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGavelOutlined as default } diff --git a/src/IconGavelRound.tsx b/src/IconGavelRound.tsx new file mode 100644 index 000000000..0edd81d4e --- /dev/null +++ b/src/IconGavelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGavelRound as default } diff --git a/src/IconGavelSharp.tsx b/src/IconGavelSharp.tsx new file mode 100644 index 000000000..5b3e11e0d --- /dev/null +++ b/src/IconGavelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGavelSharp as default } diff --git a/src/IconGavelTwoTone.tsx b/src/IconGavelTwoTone.tsx new file mode 100644 index 000000000..ed5febfe5 --- /dev/null +++ b/src/IconGavelTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGavelTwoTone as default } diff --git a/src/IconGeneratingTokensOutlined.tsx b/src/IconGeneratingTokensOutlined.tsx new file mode 100644 index 000000000..8327a37aa --- /dev/null +++ b/src/IconGeneratingTokensOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneratingTokensOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGeneratingTokensOutlined as default } diff --git a/src/IconGeneratingTokensRound.tsx b/src/IconGeneratingTokensRound.tsx new file mode 100644 index 000000000..aab11f844 --- /dev/null +++ b/src/IconGeneratingTokensRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneratingTokensRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGeneratingTokensRound as default } diff --git a/src/IconGeneratingTokensSharp.tsx b/src/IconGeneratingTokensSharp.tsx new file mode 100644 index 000000000..f2f70f268 --- /dev/null +++ b/src/IconGeneratingTokensSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneratingTokensSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGeneratingTokensSharp as default } diff --git a/src/IconGeneratingTokensTwoTone.tsx b/src/IconGeneratingTokensTwoTone.tsx new file mode 100644 index 000000000..f85d26c8b --- /dev/null +++ b/src/IconGeneratingTokensTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneratingTokensTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGeneratingTokensTwoTone as default } diff --git a/src/IconGestureOutlined.tsx b/src/IconGestureOutlined.tsx new file mode 100644 index 000000000..8578f2a48 --- /dev/null +++ b/src/IconGestureOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGestureOutlined as default } diff --git a/src/IconGestureRound.tsx b/src/IconGestureRound.tsx new file mode 100644 index 000000000..145aa8385 --- /dev/null +++ b/src/IconGestureRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGestureRound as default } diff --git a/src/IconGestureSharp.tsx b/src/IconGestureSharp.tsx new file mode 100644 index 000000000..a76534ad4 --- /dev/null +++ b/src/IconGestureSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGestureSharp as default } diff --git a/src/IconGestureTwoTone.tsx b/src/IconGestureTwoTone.tsx new file mode 100644 index 000000000..f407bf444 --- /dev/null +++ b/src/IconGestureTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGestureTwoTone as default } diff --git a/src/IconGetAppOutlined.tsx b/src/IconGetAppOutlined.tsx new file mode 100644 index 000000000..311432197 --- /dev/null +++ b/src/IconGetAppOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGetAppOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGetAppOutlined as default } diff --git a/src/IconGetAppRound.tsx b/src/IconGetAppRound.tsx new file mode 100644 index 000000000..5ed816fbc --- /dev/null +++ b/src/IconGetAppRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGetAppRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGetAppRound as default } diff --git a/src/IconGetAppSharp.tsx b/src/IconGetAppSharp.tsx new file mode 100644 index 000000000..6fac1ce0c --- /dev/null +++ b/src/IconGetAppSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGetAppSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGetAppSharp as default } diff --git a/src/IconGetAppTwoTone.tsx b/src/IconGetAppTwoTone.tsx new file mode 100644 index 000000000..d2b802786 --- /dev/null +++ b/src/IconGetAppTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGetAppTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGetAppTwoTone as default } diff --git a/src/IconGifBoxOutlined.tsx b/src/IconGifBoxOutlined.tsx new file mode 100644 index 000000000..df5ad3462 --- /dev/null +++ b/src/IconGifBoxOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifBoxOutlined as default } diff --git a/src/IconGifBoxRound.tsx b/src/IconGifBoxRound.tsx new file mode 100644 index 000000000..386f4d7f3 --- /dev/null +++ b/src/IconGifBoxRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifBoxRound as default } diff --git a/src/IconGifBoxSharp.tsx b/src/IconGifBoxSharp.tsx new file mode 100644 index 000000000..6302619ff --- /dev/null +++ b/src/IconGifBoxSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifBoxSharp as default } diff --git a/src/IconGifBoxTwoTone.tsx b/src/IconGifBoxTwoTone.tsx new file mode 100644 index 000000000..64dc6179a --- /dev/null +++ b/src/IconGifBoxTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGifBoxTwoTone as default } diff --git a/src/IconGifOutlined.tsx b/src/IconGifOutlined.tsx new file mode 100644 index 000000000..c07f1aa13 --- /dev/null +++ b/src/IconGifOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifOutlined as default } diff --git a/src/IconGifRound.tsx b/src/IconGifRound.tsx new file mode 100644 index 000000000..f40a7f028 --- /dev/null +++ b/src/IconGifRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifRound as default } diff --git a/src/IconGifSharp.tsx b/src/IconGifSharp.tsx new file mode 100644 index 000000000..e726d353a --- /dev/null +++ b/src/IconGifSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifSharp as default } diff --git a/src/IconGifTwoTone.tsx b/src/IconGifTwoTone.tsx new file mode 100644 index 000000000..f3104f3b8 --- /dev/null +++ b/src/IconGifTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGifTwoTone as default } diff --git a/src/IconGirlOutlined.tsx b/src/IconGirlOutlined.tsx new file mode 100644 index 000000000..67aab5dd6 --- /dev/null +++ b/src/IconGirlOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGirlOutlined as default } diff --git a/src/IconGirlRound.tsx b/src/IconGirlRound.tsx new file mode 100644 index 000000000..20c6ff527 --- /dev/null +++ b/src/IconGirlRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGirlRound as default } diff --git a/src/IconGirlSharp.tsx b/src/IconGirlSharp.tsx new file mode 100644 index 000000000..0b6284155 --- /dev/null +++ b/src/IconGirlSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGirlSharp as default } diff --git a/src/IconGirlTwoTone.tsx b/src/IconGirlTwoTone.tsx new file mode 100644 index 000000000..9483d3c5b --- /dev/null +++ b/src/IconGirlTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGirlTwoTone as default } diff --git a/src/IconGiteOutlined.tsx b/src/IconGiteOutlined.tsx new file mode 100644 index 000000000..bd4abd0f4 --- /dev/null +++ b/src/IconGiteOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGiteOutlined as default } diff --git a/src/IconGiteRound.tsx b/src/IconGiteRound.tsx new file mode 100644 index 000000000..3a502de75 --- /dev/null +++ b/src/IconGiteRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGiteRound as default } diff --git a/src/IconGiteSharp.tsx b/src/IconGiteSharp.tsx new file mode 100644 index 000000000..5e22e2961 --- /dev/null +++ b/src/IconGiteSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGiteSharp as default } diff --git a/src/IconGiteTwoTone.tsx b/src/IconGiteTwoTone.tsx new file mode 100644 index 000000000..87cb189ae --- /dev/null +++ b/src/IconGiteTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGiteTwoTone as default } diff --git a/src/IconGolfCourseOutlined.tsx b/src/IconGolfCourseOutlined.tsx new file mode 100644 index 000000000..a5a4366a6 --- /dev/null +++ b/src/IconGolfCourseOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGolfCourseOutlined as default } diff --git a/src/IconGolfCourseRound.tsx b/src/IconGolfCourseRound.tsx new file mode 100644 index 000000000..202639547 --- /dev/null +++ b/src/IconGolfCourseRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGolfCourseRound as default } diff --git a/src/IconGolfCourseSharp.tsx b/src/IconGolfCourseSharp.tsx new file mode 100644 index 000000000..903cd646f --- /dev/null +++ b/src/IconGolfCourseSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGolfCourseSharp as default } diff --git a/src/IconGolfCourseTwoTone.tsx b/src/IconGolfCourseTwoTone.tsx new file mode 100644 index 000000000..69ed6b0e7 --- /dev/null +++ b/src/IconGolfCourseTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconGolfCourseTwoTone as default } diff --git a/src/IconGppBadOutlined.tsx b/src/IconGppBadOutlined.tsx new file mode 100644 index 000000000..66c611571 --- /dev/null +++ b/src/IconGppBadOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppBadOutlined as default } diff --git a/src/IconGppBadRound.tsx b/src/IconGppBadRound.tsx new file mode 100644 index 000000000..61e99cd00 --- /dev/null +++ b/src/IconGppBadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppBadRound as default } diff --git a/src/IconGppBadSharp.tsx b/src/IconGppBadSharp.tsx new file mode 100644 index 000000000..c8bf89c34 --- /dev/null +++ b/src/IconGppBadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppBadSharp as default } diff --git a/src/IconGppBadTwoTone.tsx b/src/IconGppBadTwoTone.tsx new file mode 100644 index 000000000..fb2cb2101 --- /dev/null +++ b/src/IconGppBadTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconGppBadTwoTone as default } diff --git a/src/IconGppGoodOutlined.tsx b/src/IconGppGoodOutlined.tsx new file mode 100644 index 000000000..76835c6f4 --- /dev/null +++ b/src/IconGppGoodOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppGoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppGoodOutlined as default } diff --git a/src/IconGppGoodRound.tsx b/src/IconGppGoodRound.tsx new file mode 100644 index 000000000..4aba206d6 --- /dev/null +++ b/src/IconGppGoodRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppGoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppGoodRound as default } diff --git a/src/IconGppGoodSharp.tsx b/src/IconGppGoodSharp.tsx new file mode 100644 index 000000000..da3fcdab5 --- /dev/null +++ b/src/IconGppGoodSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppGoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppGoodSharp as default } diff --git a/src/IconGppGoodTwoTone.tsx b/src/IconGppGoodTwoTone.tsx new file mode 100644 index 000000000..447c73a99 --- /dev/null +++ b/src/IconGppGoodTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppGoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconGppGoodTwoTone as default } diff --git a/src/IconGppMaybeOutlined.tsx b/src/IconGppMaybeOutlined.tsx new file mode 100644 index 000000000..af31a686b --- /dev/null +++ b/src/IconGppMaybeOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconGppMaybeOutlined as default } diff --git a/src/IconGppMaybeRound.tsx b/src/IconGppMaybeRound.tsx new file mode 100644 index 000000000..424cde190 --- /dev/null +++ b/src/IconGppMaybeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppMaybeRound as default } diff --git a/src/IconGppMaybeSharp.tsx b/src/IconGppMaybeSharp.tsx new file mode 100644 index 000000000..95cd4c4c1 --- /dev/null +++ b/src/IconGppMaybeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGppMaybeSharp as default } diff --git a/src/IconGppMaybeTwoTone.tsx b/src/IconGppMaybeTwoTone.tsx new file mode 100644 index 000000000..193d4b517 --- /dev/null +++ b/src/IconGppMaybeTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconGppMaybeTwoTone as default } diff --git a/src/IconGpsFixedOutlined.tsx b/src/IconGpsFixedOutlined.tsx new file mode 100644 index 000000000..28df6080a --- /dev/null +++ b/src/IconGpsFixedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsFixedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsFixedOutlined as default } diff --git a/src/IconGpsFixedRound.tsx b/src/IconGpsFixedRound.tsx new file mode 100644 index 000000000..5fc0a1040 --- /dev/null +++ b/src/IconGpsFixedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsFixedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsFixedRound as default } diff --git a/src/IconGpsFixedSharp.tsx b/src/IconGpsFixedSharp.tsx new file mode 100644 index 000000000..8ebe3a5a5 --- /dev/null +++ b/src/IconGpsFixedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsFixedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsFixedSharp as default } diff --git a/src/IconGpsFixedTwoTone.tsx b/src/IconGpsFixedTwoTone.tsx new file mode 100644 index 000000000..d226d8f54 --- /dev/null +++ b/src/IconGpsFixedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsFixedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGpsFixedTwoTone as default } diff --git a/src/IconGpsNotFixedOutlined.tsx b/src/IconGpsNotFixedOutlined.tsx new file mode 100644 index 000000000..f0bfd42c5 --- /dev/null +++ b/src/IconGpsNotFixedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsNotFixedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsNotFixedOutlined as default } diff --git a/src/IconGpsNotFixedRound.tsx b/src/IconGpsNotFixedRound.tsx new file mode 100644 index 000000000..5b6b56831 --- /dev/null +++ b/src/IconGpsNotFixedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsNotFixedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsNotFixedRound as default } diff --git a/src/IconGpsNotFixedSharp.tsx b/src/IconGpsNotFixedSharp.tsx new file mode 100644 index 000000000..4642a658d --- /dev/null +++ b/src/IconGpsNotFixedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsNotFixedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsNotFixedSharp as default } diff --git a/src/IconGpsNotFixedTwoTone.tsx b/src/IconGpsNotFixedTwoTone.tsx new file mode 100644 index 000000000..314a9587e --- /dev/null +++ b/src/IconGpsNotFixedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsNotFixedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsNotFixedTwoTone as default } diff --git a/src/IconGpsOffOutlined.tsx b/src/IconGpsOffOutlined.tsx new file mode 100644 index 000000000..cea12c6e2 --- /dev/null +++ b/src/IconGpsOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsOffOutlined as default } diff --git a/src/IconGpsOffRound.tsx b/src/IconGpsOffRound.tsx new file mode 100644 index 000000000..1b53c5dd7 --- /dev/null +++ b/src/IconGpsOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsOffRound as default } diff --git a/src/IconGpsOffSharp.tsx b/src/IconGpsOffSharp.tsx new file mode 100644 index 000000000..7ded50b78 --- /dev/null +++ b/src/IconGpsOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsOffSharp as default } diff --git a/src/IconGpsOffTwoTone.tsx b/src/IconGpsOffTwoTone.tsx new file mode 100644 index 000000000..565f0d157 --- /dev/null +++ b/src/IconGpsOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGpsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGpsOffTwoTone as default } diff --git a/src/IconGradeOutlined.tsx b/src/IconGradeOutlined.tsx new file mode 100644 index 000000000..5712ddb2f --- /dev/null +++ b/src/IconGradeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradeOutlined as default } diff --git a/src/IconGradeRound.tsx b/src/IconGradeRound.tsx new file mode 100644 index 000000000..4efa77660 --- /dev/null +++ b/src/IconGradeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradeRound as default } diff --git a/src/IconGradeSharp.tsx b/src/IconGradeSharp.tsx new file mode 100644 index 000000000..31b79b602 --- /dev/null +++ b/src/IconGradeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradeSharp as default } diff --git a/src/IconGradeTwoTone.tsx b/src/IconGradeTwoTone.tsx new file mode 100644 index 000000000..7b7d5321c --- /dev/null +++ b/src/IconGradeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGradeTwoTone as default } diff --git a/src/IconGradientOutlined.tsx b/src/IconGradientOutlined.tsx new file mode 100644 index 000000000..c898dd25e --- /dev/null +++ b/src/IconGradientOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradientOutlined as default } diff --git a/src/IconGradientRound.tsx b/src/IconGradientRound.tsx new file mode 100644 index 000000000..e71c7626f --- /dev/null +++ b/src/IconGradientRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradientRound as default } diff --git a/src/IconGradientSharp.tsx b/src/IconGradientSharp.tsx new file mode 100644 index 000000000..98af42702 --- /dev/null +++ b/src/IconGradientSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradientSharp as default } diff --git a/src/IconGradientTwoTone.tsx b/src/IconGradientTwoTone.tsx new file mode 100644 index 000000000..7e726d779 --- /dev/null +++ b/src/IconGradientTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGradientTwoTone as default } diff --git a/src/IconGradingOutlined.tsx b/src/IconGradingOutlined.tsx new file mode 100644 index 000000000..0a5822f89 --- /dev/null +++ b/src/IconGradingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGradingOutlined as default } diff --git a/src/IconGradingRound.tsx b/src/IconGradingRound.tsx new file mode 100644 index 000000000..144c29b5a --- /dev/null +++ b/src/IconGradingRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconGradingRound as default } diff --git a/src/IconGradingSharp.tsx b/src/IconGradingSharp.tsx new file mode 100644 index 000000000..b29187836 --- /dev/null +++ b/src/IconGradingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGradingSharp as default } diff --git a/src/IconGradingTwoTone.tsx b/src/IconGradingTwoTone.tsx new file mode 100644 index 000000000..7b85a8111 --- /dev/null +++ b/src/IconGradingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGradingTwoTone as default } diff --git a/src/IconGrainOutlined.tsx b/src/IconGrainOutlined.tsx new file mode 100644 index 000000000..9e5acb395 --- /dev/null +++ b/src/IconGrainOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrainOutlined as default } diff --git a/src/IconGrainRound.tsx b/src/IconGrainRound.tsx new file mode 100644 index 000000000..bafd2ec1b --- /dev/null +++ b/src/IconGrainRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrainRound as default } diff --git a/src/IconGrainSharp.tsx b/src/IconGrainSharp.tsx new file mode 100644 index 000000000..979c4c3a5 --- /dev/null +++ b/src/IconGrainSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrainSharp as default } diff --git a/src/IconGrainTwoTone.tsx b/src/IconGrainTwoTone.tsx new file mode 100644 index 000000000..5cc0ab974 --- /dev/null +++ b/src/IconGrainTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrainTwoTone as default } diff --git a/src/IconGraphicEqOutlined.tsx b/src/IconGraphicEqOutlined.tsx new file mode 100644 index 000000000..75526cf30 --- /dev/null +++ b/src/IconGraphicEqOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGraphicEqOutlined as default } diff --git a/src/IconGraphicEqRound.tsx b/src/IconGraphicEqRound.tsx new file mode 100644 index 000000000..aded137da --- /dev/null +++ b/src/IconGraphicEqRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGraphicEqRound as default } diff --git a/src/IconGraphicEqSharp.tsx b/src/IconGraphicEqSharp.tsx new file mode 100644 index 000000000..eb18cf675 --- /dev/null +++ b/src/IconGraphicEqSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGraphicEqSharp as default } diff --git a/src/IconGraphicEqTwoTone.tsx b/src/IconGraphicEqTwoTone.tsx new file mode 100644 index 000000000..abfe6f85e --- /dev/null +++ b/src/IconGraphicEqTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGraphicEqTwoTone as default } diff --git a/src/IconGrassOutlined.tsx b/src/IconGrassOutlined.tsx new file mode 100644 index 000000000..2c35bc65d --- /dev/null +++ b/src/IconGrassOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrassOutlined as default } diff --git a/src/IconGrassRound.tsx b/src/IconGrassRound.tsx new file mode 100644 index 000000000..0f252ae31 --- /dev/null +++ b/src/IconGrassRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrassRound as default } diff --git a/src/IconGrassSharp.tsx b/src/IconGrassSharp.tsx new file mode 100644 index 000000000..ed4d94db8 --- /dev/null +++ b/src/IconGrassSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrassSharp as default } diff --git a/src/IconGrassTwoTone.tsx b/src/IconGrassTwoTone.tsx new file mode 100644 index 000000000..f7a67e952 --- /dev/null +++ b/src/IconGrassTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGrassTwoTone as default } diff --git a/src/IconGrid3x3Outlined.tsx b/src/IconGrid3x3Outlined.tsx new file mode 100644 index 000000000..3132d14ae --- /dev/null +++ b/src/IconGrid3x3Outlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGrid3x3Outlined as default } diff --git a/src/IconGrid3x3Round.tsx b/src/IconGrid3x3Round.tsx new file mode 100644 index 000000000..c2a2cd791 --- /dev/null +++ b/src/IconGrid3x3Round.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGrid3x3Round as default } diff --git a/src/IconGrid3x3Sharp.tsx b/src/IconGrid3x3Sharp.tsx new file mode 100644 index 000000000..64810647b --- /dev/null +++ b/src/IconGrid3x3Sharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGrid3x3Sharp as default } diff --git a/src/IconGrid3x3TwoTone.tsx b/src/IconGrid3x3TwoTone.tsx new file mode 100644 index 000000000..18e970c03 --- /dev/null +++ b/src/IconGrid3x3TwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGrid3x3TwoTone as default } diff --git a/src/IconGrid4x4Outlined.tsx b/src/IconGrid4x4Outlined.tsx new file mode 100644 index 000000000..a12553436 --- /dev/null +++ b/src/IconGrid4x4Outlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGrid4x4Outlined as default } diff --git a/src/IconGrid4x4Round.tsx b/src/IconGrid4x4Round.tsx new file mode 100644 index 000000000..b6301d8af --- /dev/null +++ b/src/IconGrid4x4Round.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGrid4x4Round as default } diff --git a/src/IconGrid4x4Sharp.tsx b/src/IconGrid4x4Sharp.tsx new file mode 100644 index 000000000..a0689754b --- /dev/null +++ b/src/IconGrid4x4Sharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGrid4x4Sharp as default } diff --git a/src/IconGrid4x4TwoTone.tsx b/src/IconGrid4x4TwoTone.tsx new file mode 100644 index 000000000..142cf217a --- /dev/null +++ b/src/IconGrid4x4TwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGrid4x4TwoTone as default } diff --git a/src/IconGridGoldenratioOutlined.tsx b/src/IconGridGoldenratioOutlined.tsx new file mode 100644 index 000000000..78864b10b --- /dev/null +++ b/src/IconGridGoldenratioOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGridGoldenratioOutlined as default } diff --git a/src/IconGridGoldenratioRound.tsx b/src/IconGridGoldenratioRound.tsx new file mode 100644 index 000000000..01b2ddbc6 --- /dev/null +++ b/src/IconGridGoldenratioRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGridGoldenratioRound as default } diff --git a/src/IconGridGoldenratioSharp.tsx b/src/IconGridGoldenratioSharp.tsx new file mode 100644 index 000000000..0b6f10cdc --- /dev/null +++ b/src/IconGridGoldenratioSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGridGoldenratioSharp as default } diff --git a/src/IconGridGoldenratioTwoTone.tsx b/src/IconGridGoldenratioTwoTone.tsx new file mode 100644 index 000000000..83b779932 --- /dev/null +++ b/src/IconGridGoldenratioTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconGridGoldenratioTwoTone as default } diff --git a/src/IconGridOffOutlined.tsx b/src/IconGridOffOutlined.tsx new file mode 100644 index 000000000..08fa09fb0 --- /dev/null +++ b/src/IconGridOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOffOutlined as default } diff --git a/src/IconGridOffRound.tsx b/src/IconGridOffRound.tsx new file mode 100644 index 000000000..95ea6ad49 --- /dev/null +++ b/src/IconGridOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOffRound as default } diff --git a/src/IconGridOffSharp.tsx b/src/IconGridOffSharp.tsx new file mode 100644 index 000000000..7abdee6e0 --- /dev/null +++ b/src/IconGridOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOffSharp as default } diff --git a/src/IconGridOffTwoTone.tsx b/src/IconGridOffTwoTone.tsx new file mode 100644 index 000000000..683727d27 --- /dev/null +++ b/src/IconGridOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGridOffTwoTone as default } diff --git a/src/IconGridOnOutlined.tsx b/src/IconGridOnOutlined.tsx new file mode 100644 index 000000000..269ca5e5f --- /dev/null +++ b/src/IconGridOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOnOutlined as default } diff --git a/src/IconGridOnRound.tsx b/src/IconGridOnRound.tsx new file mode 100644 index 000000000..5652657e0 --- /dev/null +++ b/src/IconGridOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOnRound as default } diff --git a/src/IconGridOnSharp.tsx b/src/IconGridOnSharp.tsx new file mode 100644 index 000000000..a4f422191 --- /dev/null +++ b/src/IconGridOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGridOnSharp as default } diff --git a/src/IconGridOnTwoTone.tsx b/src/IconGridOnTwoTone.tsx new file mode 100644 index 000000000..fc4ebdea8 --- /dev/null +++ b/src/IconGridOnTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGridOnTwoTone as default } diff --git a/src/IconGridViewOutlined.tsx b/src/IconGridViewOutlined.tsx new file mode 100644 index 000000000..7374712ec --- /dev/null +++ b/src/IconGridViewOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconGridViewOutlined as default } diff --git a/src/IconGridViewRound.tsx b/src/IconGridViewRound.tsx new file mode 100644 index 000000000..729263993 --- /dev/null +++ b/src/IconGridViewRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGridViewRound as default } diff --git a/src/IconGridViewSharp.tsx b/src/IconGridViewSharp.tsx new file mode 100644 index 000000000..7561bacbb --- /dev/null +++ b/src/IconGridViewSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconGridViewSharp as default } diff --git a/src/IconGridViewTwoTone.tsx b/src/IconGridViewTwoTone.tsx new file mode 100644 index 000000000..c551425ff --- /dev/null +++ b/src/IconGridViewTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconGridViewTwoTone as default } diff --git a/src/IconGroupAddOutlined.tsx b/src/IconGroupAddOutlined.tsx new file mode 100644 index 000000000..7080905ac --- /dev/null +++ b/src/IconGroupAddOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroupAddOutlined as default } diff --git a/src/IconGroupAddRound.tsx b/src/IconGroupAddRound.tsx new file mode 100644 index 000000000..54284d845 --- /dev/null +++ b/src/IconGroupAddRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroupAddRound as default } diff --git a/src/IconGroupAddSharp.tsx b/src/IconGroupAddSharp.tsx new file mode 100644 index 000000000..28936073a --- /dev/null +++ b/src/IconGroupAddSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroupAddSharp as default } diff --git a/src/IconGroupAddTwoTone.tsx b/src/IconGroupAddTwoTone.tsx new file mode 100644 index 000000000..0fa3ab74d --- /dev/null +++ b/src/IconGroupAddTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconGroupAddTwoTone as default } diff --git a/src/IconGroupOffOutlined.tsx b/src/IconGroupOffOutlined.tsx new file mode 100644 index 000000000..2d0b3c316 --- /dev/null +++ b/src/IconGroupOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupOffOutlined as default } diff --git a/src/IconGroupOffRound.tsx b/src/IconGroupOffRound.tsx new file mode 100644 index 000000000..0419e2af8 --- /dev/null +++ b/src/IconGroupOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupOffRound as default } diff --git a/src/IconGroupOffSharp.tsx b/src/IconGroupOffSharp.tsx new file mode 100644 index 000000000..79a4a35fc --- /dev/null +++ b/src/IconGroupOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupOffSharp as default } diff --git a/src/IconGroupOffTwoTone.tsx b/src/IconGroupOffTwoTone.tsx new file mode 100644 index 000000000..468dbc157 --- /dev/null +++ b/src/IconGroupOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGroupOffTwoTone as default } diff --git a/src/IconGroupOutlined.tsx b/src/IconGroupOutlined.tsx new file mode 100644 index 000000000..85d66689e --- /dev/null +++ b/src/IconGroupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupOutlined as default } diff --git a/src/IconGroupRemoveOutlined.tsx b/src/IconGroupRemoveOutlined.tsx new file mode 100644 index 000000000..5292227a7 --- /dev/null +++ b/src/IconGroupRemoveOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupRemoveOutlined as default } diff --git a/src/IconGroupRemoveRound.tsx b/src/IconGroupRemoveRound.tsx new file mode 100644 index 000000000..f0d23db50 --- /dev/null +++ b/src/IconGroupRemoveRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupRemoveRound as default } diff --git a/src/IconGroupRemoveSharp.tsx b/src/IconGroupRemoveSharp.tsx new file mode 100644 index 000000000..19ca2b33a --- /dev/null +++ b/src/IconGroupRemoveSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupRemoveSharp as default } diff --git a/src/IconGroupRemoveTwoTone.tsx b/src/IconGroupRemoveTwoTone.tsx new file mode 100644 index 000000000..b00d6129c --- /dev/null +++ b/src/IconGroupRemoveTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconGroupRemoveTwoTone as default } diff --git a/src/IconGroupRound.tsx b/src/IconGroupRound.tsx new file mode 100644 index 000000000..dcef42701 --- /dev/null +++ b/src/IconGroupRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupRound as default } diff --git a/src/IconGroupSharp.tsx b/src/IconGroupSharp.tsx new file mode 100644 index 000000000..143a398ee --- /dev/null +++ b/src/IconGroupSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupSharp as default } diff --git a/src/IconGroupTwoTone.tsx b/src/IconGroupTwoTone.tsx new file mode 100644 index 000000000..57b259253 --- /dev/null +++ b/src/IconGroupTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconGroupTwoTone as default } diff --git a/src/IconGroupWorkOutlined.tsx b/src/IconGroupWorkOutlined.tsx new file mode 100644 index 000000000..258eb87d7 --- /dev/null +++ b/src/IconGroupWorkOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconGroupWorkOutlined as default } diff --git a/src/IconGroupWorkRound.tsx b/src/IconGroupWorkRound.tsx new file mode 100644 index 000000000..360579440 --- /dev/null +++ b/src/IconGroupWorkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupWorkRound as default } diff --git a/src/IconGroupWorkSharp.tsx b/src/IconGroupWorkSharp.tsx new file mode 100644 index 000000000..d37005553 --- /dev/null +++ b/src/IconGroupWorkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconGroupWorkSharp as default } diff --git a/src/IconGroupWorkTwoTone.tsx b/src/IconGroupWorkTwoTone.tsx new file mode 100644 index 000000000..9323fc993 --- /dev/null +++ b/src/IconGroupWorkTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconGroupWorkTwoTone as default } diff --git a/src/IconGroups2Outlined.tsx b/src/IconGroups2Outlined.tsx new file mode 100644 index 000000000..be6d1a0b3 --- /dev/null +++ b/src/IconGroups2Outlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups2Outlined as default } diff --git a/src/IconGroups2Round.tsx b/src/IconGroups2Round.tsx new file mode 100644 index 000000000..bc2c1b731 --- /dev/null +++ b/src/IconGroups2Round.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconGroups2Round as default } diff --git a/src/IconGroups2Sharp.tsx b/src/IconGroups2Sharp.tsx new file mode 100644 index 000000000..620d853da --- /dev/null +++ b/src/IconGroups2Sharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups2Sharp as default } diff --git a/src/IconGroups2TwoTone.tsx b/src/IconGroups2TwoTone.tsx new file mode 100644 index 000000000..fd996f23a --- /dev/null +++ b/src/IconGroups2TwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconGroups2TwoTone as default } diff --git a/src/IconGroups3Outlined.tsx b/src/IconGroups3Outlined.tsx new file mode 100644 index 000000000..fe3a89989 --- /dev/null +++ b/src/IconGroups3Outlined.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups3Outlined as default } diff --git a/src/IconGroups3Round.tsx b/src/IconGroups3Round.tsx new file mode 100644 index 000000000..2edbf4dc2 --- /dev/null +++ b/src/IconGroups3Round.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconGroups3Round as default } diff --git a/src/IconGroups3Sharp.tsx b/src/IconGroups3Sharp.tsx new file mode 100644 index 000000000..a963b2224 --- /dev/null +++ b/src/IconGroups3Sharp.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconGroups3Sharp as default } diff --git a/src/IconGroups3TwoTone.tsx b/src/IconGroups3TwoTone.tsx new file mode 100644 index 000000000..a4692d3bf --- /dev/null +++ b/src/IconGroups3TwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconGroups3TwoTone as default } diff --git a/src/IconGroupsOutlined.tsx b/src/IconGroupsOutlined.tsx new file mode 100644 index 000000000..d0437b0fa --- /dev/null +++ b/src/IconGroupsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconGroupsOutlined as default } diff --git a/src/IconGroupsRound.tsx b/src/IconGroupsRound.tsx new file mode 100644 index 000000000..ee36a0d46 --- /dev/null +++ b/src/IconGroupsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconGroupsRound as default } diff --git a/src/IconGroupsSharp.tsx b/src/IconGroupsSharp.tsx new file mode 100644 index 000000000..4f7d93dcf --- /dev/null +++ b/src/IconGroupsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconGroupsSharp as default } diff --git a/src/IconGroupsTwoTone.tsx b/src/IconGroupsTwoTone.tsx new file mode 100644 index 000000000..d3060e2e9 --- /dev/null +++ b/src/IconGroupsTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconGroupsTwoTone as default } diff --git a/src/IconHMobiledataOutlined.tsx b/src/IconHMobiledataOutlined.tsx new file mode 100644 index 000000000..0e99ba9a1 --- /dev/null +++ b/src/IconHMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHMobiledataOutlined as default } diff --git a/src/IconHMobiledataRound.tsx b/src/IconHMobiledataRound.tsx new file mode 100644 index 000000000..3abc76a1c --- /dev/null +++ b/src/IconHMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHMobiledataRound as default } diff --git a/src/IconHMobiledataSharp.tsx b/src/IconHMobiledataSharp.tsx new file mode 100644 index 000000000..0b0ac98c8 --- /dev/null +++ b/src/IconHMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHMobiledataSharp as default } diff --git a/src/IconHMobiledataTwoTone.tsx b/src/IconHMobiledataTwoTone.tsx new file mode 100644 index 000000000..8c68d3a3d --- /dev/null +++ b/src/IconHMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHMobiledataTwoTone as default } diff --git a/src/IconHPlusMobiledataOutlined.tsx b/src/IconHPlusMobiledataOutlined.tsx new file mode 100644 index 000000000..6ca056ffa --- /dev/null +++ b/src/IconHPlusMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHPlusMobiledataOutlined as default } diff --git a/src/IconHPlusMobiledataRound.tsx b/src/IconHPlusMobiledataRound.tsx new file mode 100644 index 000000000..84491a46a --- /dev/null +++ b/src/IconHPlusMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHPlusMobiledataRound as default } diff --git a/src/IconHPlusMobiledataSharp.tsx b/src/IconHPlusMobiledataSharp.tsx new file mode 100644 index 000000000..b2b3a0d42 --- /dev/null +++ b/src/IconHPlusMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHPlusMobiledataSharp as default } diff --git a/src/IconHPlusMobiledataTwoTone.tsx b/src/IconHPlusMobiledataTwoTone.tsx new file mode 100644 index 000000000..02fa255ac --- /dev/null +++ b/src/IconHPlusMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHPlusMobiledataTwoTone as default } diff --git a/src/IconHailOutlined.tsx b/src/IconHailOutlined.tsx new file mode 100644 index 000000000..053263b22 --- /dev/null +++ b/src/IconHailOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHailOutlined as default } diff --git a/src/IconHailRound.tsx b/src/IconHailRound.tsx new file mode 100644 index 000000000..587c9516b --- /dev/null +++ b/src/IconHailRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHailRound as default } diff --git a/src/IconHailSharp.tsx b/src/IconHailSharp.tsx new file mode 100644 index 000000000..6875f6fa3 --- /dev/null +++ b/src/IconHailSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHailSharp as default } diff --git a/src/IconHailTwoTone.tsx b/src/IconHailTwoTone.tsx new file mode 100644 index 000000000..448d7a428 --- /dev/null +++ b/src/IconHailTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHailTwoTone as default } diff --git a/src/IconHandshakeOutlined.tsx b/src/IconHandshakeOutlined.tsx new file mode 100644 index 000000000..5f1511ada --- /dev/null +++ b/src/IconHandshakeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHandshakeOutlined as default } diff --git a/src/IconHandshakeRound.tsx b/src/IconHandshakeRound.tsx new file mode 100644 index 000000000..16bbc39fa --- /dev/null +++ b/src/IconHandshakeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHandshakeRound as default } diff --git a/src/IconHandshakeSharp.tsx b/src/IconHandshakeSharp.tsx new file mode 100644 index 000000000..6a39c5b5d --- /dev/null +++ b/src/IconHandshakeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHandshakeSharp as default } diff --git a/src/IconHandshakeTwoTone.tsx b/src/IconHandshakeTwoTone.tsx new file mode 100644 index 000000000..814e373c4 --- /dev/null +++ b/src/IconHandshakeTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHandshakeTwoTone as default } diff --git a/src/IconHandymanOutlined.tsx b/src/IconHandymanOutlined.tsx new file mode 100644 index 000000000..2528bf614 --- /dev/null +++ b/src/IconHandymanOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHandymanOutlined as default } diff --git a/src/IconHandymanRound.tsx b/src/IconHandymanRound.tsx new file mode 100644 index 000000000..507375a18 --- /dev/null +++ b/src/IconHandymanRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHandymanRound as default } diff --git a/src/IconHandymanSharp.tsx b/src/IconHandymanSharp.tsx new file mode 100644 index 000000000..030f477d8 --- /dev/null +++ b/src/IconHandymanSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHandymanSharp as default } diff --git a/src/IconHandymanTwoTone.tsx b/src/IconHandymanTwoTone.tsx new file mode 100644 index 000000000..a89d6a0d3 --- /dev/null +++ b/src/IconHandymanTwoTone.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconHandymanTwoTone as default } diff --git a/src/IconHardwareOutlined.tsx b/src/IconHardwareOutlined.tsx new file mode 100644 index 000000000..7a77c2878 --- /dev/null +++ b/src/IconHardwareOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHardwareOutlined as default } diff --git a/src/IconHardwareRound.tsx b/src/IconHardwareRound.tsx new file mode 100644 index 000000000..91ecaef9d --- /dev/null +++ b/src/IconHardwareRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconHardwareRound as default } diff --git a/src/IconHardwareSharp.tsx b/src/IconHardwareSharp.tsx new file mode 100644 index 000000000..90b7d03a6 --- /dev/null +++ b/src/IconHardwareSharp.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconHardwareSharp as default } diff --git a/src/IconHardwareTwoTone.tsx b/src/IconHardwareTwoTone.tsx new file mode 100644 index 000000000..8431b012c --- /dev/null +++ b/src/IconHardwareTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHardwareTwoTone as default } diff --git a/src/IconHdOutlined.tsx b/src/IconHdOutlined.tsx new file mode 100644 index 000000000..0cd16ba21 --- /dev/null +++ b/src/IconHdOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdOutlined as default } diff --git a/src/IconHdRound.tsx b/src/IconHdRound.tsx new file mode 100644 index 000000000..d5dc2e8f3 --- /dev/null +++ b/src/IconHdRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdRound as default } diff --git a/src/IconHdSharp.tsx b/src/IconHdSharp.tsx new file mode 100644 index 000000000..0d401179c --- /dev/null +++ b/src/IconHdSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdSharp as default } diff --git a/src/IconHdTwoTone.tsx b/src/IconHdTwoTone.tsx new file mode 100644 index 000000000..d3bf9b990 --- /dev/null +++ b/src/IconHdTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHdTwoTone as default } diff --git a/src/IconHdrAutoOutlined.tsx b/src/IconHdrAutoOutlined.tsx new file mode 100644 index 000000000..80e1e8371 --- /dev/null +++ b/src/IconHdrAutoOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHdrAutoOutlined as default } diff --git a/src/IconHdrAutoRound.tsx b/src/IconHdrAutoRound.tsx new file mode 100644 index 000000000..5588f7fc5 --- /dev/null +++ b/src/IconHdrAutoRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHdrAutoRound as default } diff --git a/src/IconHdrAutoSelectOutlined.tsx b/src/IconHdrAutoSelectOutlined.tsx new file mode 100644 index 000000000..a6f7fe4a6 --- /dev/null +++ b/src/IconHdrAutoSelectOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHdrAutoSelectOutlined as default } diff --git a/src/IconHdrAutoSelectRound.tsx b/src/IconHdrAutoSelectRound.tsx new file mode 100644 index 000000000..df7d61723 --- /dev/null +++ b/src/IconHdrAutoSelectRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHdrAutoSelectRound as default } diff --git a/src/IconHdrAutoSelectSharp.tsx b/src/IconHdrAutoSelectSharp.tsx new file mode 100644 index 000000000..220a6b8c4 --- /dev/null +++ b/src/IconHdrAutoSelectSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHdrAutoSelectSharp as default } diff --git a/src/IconHdrAutoSelectTwoTone.tsx b/src/IconHdrAutoSelectTwoTone.tsx new file mode 100644 index 000000000..802b2cd73 --- /dev/null +++ b/src/IconHdrAutoSelectTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconHdrAutoSelectTwoTone as default } diff --git a/src/IconHdrAutoSharp.tsx b/src/IconHdrAutoSharp.tsx new file mode 100644 index 000000000..b50051e93 --- /dev/null +++ b/src/IconHdrAutoSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHdrAutoSharp as default } diff --git a/src/IconHdrAutoTwoTone.tsx b/src/IconHdrAutoTwoTone.tsx new file mode 100644 index 000000000..a6000dd8d --- /dev/null +++ b/src/IconHdrAutoTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHdrAutoTwoTone as default } diff --git a/src/IconHdrEnhancedSelectOutlined.tsx b/src/IconHdrEnhancedSelectOutlined.tsx new file mode 100644 index 000000000..d283cb8e3 --- /dev/null +++ b/src/IconHdrEnhancedSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrEnhancedSelectOutlined as default } diff --git a/src/IconHdrEnhancedSelectRound.tsx b/src/IconHdrEnhancedSelectRound.tsx new file mode 100644 index 000000000..8b4fea2a0 --- /dev/null +++ b/src/IconHdrEnhancedSelectRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconHdrEnhancedSelectRound as default } diff --git a/src/IconHdrEnhancedSelectSharp.tsx b/src/IconHdrEnhancedSelectSharp.tsx new file mode 100644 index 000000000..bf9e2d58b --- /dev/null +++ b/src/IconHdrEnhancedSelectSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconHdrEnhancedSelectSharp as default } diff --git a/src/IconHdrEnhancedSelectTwoTone.tsx b/src/IconHdrEnhancedSelectTwoTone.tsx new file mode 100644 index 000000000..c338941f7 --- /dev/null +++ b/src/IconHdrEnhancedSelectTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHdrEnhancedSelectTwoTone as default } diff --git a/src/IconHdrOffOutlined.tsx b/src/IconHdrOffOutlined.tsx new file mode 100644 index 000000000..b36a0cfe0 --- /dev/null +++ b/src/IconHdrOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOffOutlined as default } diff --git a/src/IconHdrOffRound.tsx b/src/IconHdrOffRound.tsx new file mode 100644 index 000000000..4043fbba3 --- /dev/null +++ b/src/IconHdrOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOffRound as default } diff --git a/src/IconHdrOffSelectOutlined.tsx b/src/IconHdrOffSelectOutlined.tsx new file mode 100644 index 000000000..a6a6038ba --- /dev/null +++ b/src/IconHdrOffSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOffSelectOutlined as default } diff --git a/src/IconHdrOffSelectRound.tsx b/src/IconHdrOffSelectRound.tsx new file mode 100644 index 000000000..b51c59b5d --- /dev/null +++ b/src/IconHdrOffSelectRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOffSelectRound as default } diff --git a/src/IconHdrOffSelectSharp.tsx b/src/IconHdrOffSelectSharp.tsx new file mode 100644 index 000000000..bdf5f5ef9 --- /dev/null +++ b/src/IconHdrOffSelectSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOffSelectSharp as default } diff --git a/src/IconHdrOffSelectTwoTone.tsx b/src/IconHdrOffSelectTwoTone.tsx new file mode 100644 index 000000000..e7c4cee92 --- /dev/null +++ b/src/IconHdrOffSelectTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOffSelectTwoTone as default } diff --git a/src/IconHdrOffSharp.tsx b/src/IconHdrOffSharp.tsx new file mode 100644 index 000000000..fed3512ae --- /dev/null +++ b/src/IconHdrOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOffSharp as default } diff --git a/src/IconHdrOffTwoTone.tsx b/src/IconHdrOffTwoTone.tsx new file mode 100644 index 000000000..9f95538e7 --- /dev/null +++ b/src/IconHdrOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOffTwoTone as default } diff --git a/src/IconHdrOnOutlined.tsx b/src/IconHdrOnOutlined.tsx new file mode 100644 index 000000000..a1ea5824c --- /dev/null +++ b/src/IconHdrOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOnOutlined as default } diff --git a/src/IconHdrOnRound.tsx b/src/IconHdrOnRound.tsx new file mode 100644 index 000000000..b848e0615 --- /dev/null +++ b/src/IconHdrOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOnRound as default } diff --git a/src/IconHdrOnSelectOutlined.tsx b/src/IconHdrOnSelectOutlined.tsx new file mode 100644 index 000000000..18e24e99a --- /dev/null +++ b/src/IconHdrOnSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOnSelectOutlined as default } diff --git a/src/IconHdrOnSelectRound.tsx b/src/IconHdrOnSelectRound.tsx new file mode 100644 index 000000000..2270ce777 --- /dev/null +++ b/src/IconHdrOnSelectRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOnSelectRound as default } diff --git a/src/IconHdrOnSelectSharp.tsx b/src/IconHdrOnSelectSharp.tsx new file mode 100644 index 000000000..838f49b08 --- /dev/null +++ b/src/IconHdrOnSelectSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOnSelectSharp as default } diff --git a/src/IconHdrOnSelectTwoTone.tsx b/src/IconHdrOnSelectTwoTone.tsx new file mode 100644 index 000000000..5348bf2d9 --- /dev/null +++ b/src/IconHdrOnSelectTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrOnSelectTwoTone as default } diff --git a/src/IconHdrOnSharp.tsx b/src/IconHdrOnSharp.tsx new file mode 100644 index 000000000..83c0c7bdd --- /dev/null +++ b/src/IconHdrOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOnSharp as default } diff --git a/src/IconHdrOnTwoTone.tsx b/src/IconHdrOnTwoTone.tsx new file mode 100644 index 000000000..dc51f8189 --- /dev/null +++ b/src/IconHdrOnTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrOnTwoTone as default } diff --git a/src/IconHdrPlusOutlined.tsx b/src/IconHdrPlusOutlined.tsx new file mode 100644 index 000000000..bea33cb0e --- /dev/null +++ b/src/IconHdrPlusOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHdrPlusOutlined as default } diff --git a/src/IconHdrPlusRound.tsx b/src/IconHdrPlusRound.tsx new file mode 100644 index 000000000..1d13602ee --- /dev/null +++ b/src/IconHdrPlusRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHdrPlusRound as default } diff --git a/src/IconHdrPlusSharp.tsx b/src/IconHdrPlusSharp.tsx new file mode 100644 index 000000000..f9470a5ac --- /dev/null +++ b/src/IconHdrPlusSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHdrPlusSharp as default } diff --git a/src/IconHdrPlusTwoTone.tsx b/src/IconHdrPlusTwoTone.tsx new file mode 100644 index 000000000..13fa48974 --- /dev/null +++ b/src/IconHdrPlusTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHdrPlusTwoTone as default } diff --git a/src/IconHdrStrongOutlined.tsx b/src/IconHdrStrongOutlined.tsx new file mode 100644 index 000000000..4053d2962 --- /dev/null +++ b/src/IconHdrStrongOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrStrongOutlined as default } diff --git a/src/IconHdrStrongRound.tsx b/src/IconHdrStrongRound.tsx new file mode 100644 index 000000000..9fb4dc3c2 --- /dev/null +++ b/src/IconHdrStrongRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrStrongRound as default } diff --git a/src/IconHdrStrongSharp.tsx b/src/IconHdrStrongSharp.tsx new file mode 100644 index 000000000..aa6162b27 --- /dev/null +++ b/src/IconHdrStrongSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrStrongSharp as default } diff --git a/src/IconHdrStrongTwoTone.tsx b/src/IconHdrStrongTwoTone.tsx new file mode 100644 index 000000000..1bf98399b --- /dev/null +++ b/src/IconHdrStrongTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHdrStrongTwoTone as default } diff --git a/src/IconHdrWeakOutlined.tsx b/src/IconHdrWeakOutlined.tsx new file mode 100644 index 000000000..86d206dd5 --- /dev/null +++ b/src/IconHdrWeakOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrWeakOutlined as default } diff --git a/src/IconHdrWeakRound.tsx b/src/IconHdrWeakRound.tsx new file mode 100644 index 000000000..b5e0bb02e --- /dev/null +++ b/src/IconHdrWeakRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrWeakRound as default } diff --git a/src/IconHdrWeakSharp.tsx b/src/IconHdrWeakSharp.tsx new file mode 100644 index 000000000..df2e809ea --- /dev/null +++ b/src/IconHdrWeakSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHdrWeakSharp as default } diff --git a/src/IconHdrWeakTwoTone.tsx b/src/IconHdrWeakTwoTone.tsx new file mode 100644 index 000000000..b41a76ba2 --- /dev/null +++ b/src/IconHdrWeakTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHdrWeakTwoTone as default } diff --git a/src/IconHeadphonesBatteryOutlined.tsx b/src/IconHeadphonesBatteryOutlined.tsx new file mode 100644 index 000000000..4b4bfb7c0 --- /dev/null +++ b/src/IconHeadphonesBatteryOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatteryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadphonesBatteryOutlined as default } diff --git a/src/IconHeadphonesBatteryRound.tsx b/src/IconHeadphonesBatteryRound.tsx new file mode 100644 index 000000000..a349f388e --- /dev/null +++ b/src/IconHeadphonesBatteryRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatteryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadphonesBatteryRound as default } diff --git a/src/IconHeadphonesBatterySharp.tsx b/src/IconHeadphonesBatterySharp.tsx new file mode 100644 index 000000000..6c2f42dbd --- /dev/null +++ b/src/IconHeadphonesBatterySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatterySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadphonesBatterySharp as default } diff --git a/src/IconHeadphonesBatteryTwoTone.tsx b/src/IconHeadphonesBatteryTwoTone.tsx new file mode 100644 index 000000000..30a564328 --- /dev/null +++ b/src/IconHeadphonesBatteryTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatteryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconHeadphonesBatteryTwoTone as default } diff --git a/src/IconHeadphonesOutlined.tsx b/src/IconHeadphonesOutlined.tsx new file mode 100644 index 000000000..052334b42 --- /dev/null +++ b/src/IconHeadphonesOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeadphonesOutlined as default } diff --git a/src/IconHeadphonesRound.tsx b/src/IconHeadphonesRound.tsx new file mode 100644 index 000000000..8f59b4ba8 --- /dev/null +++ b/src/IconHeadphonesRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeadphonesRound as default } diff --git a/src/IconHeadphonesSharp.tsx b/src/IconHeadphonesSharp.tsx new file mode 100644 index 000000000..1e9939d86 --- /dev/null +++ b/src/IconHeadphonesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeadphonesSharp as default } diff --git a/src/IconHeadphonesTwoTone.tsx b/src/IconHeadphonesTwoTone.tsx new file mode 100644 index 000000000..6a46a6010 --- /dev/null +++ b/src/IconHeadphonesTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHeadphonesTwoTone as default } diff --git a/src/IconHeadsetMicOutlined.tsx b/src/IconHeadsetMicOutlined.tsx new file mode 100644 index 000000000..2e91a5846 --- /dev/null +++ b/src/IconHeadsetMicOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHeadsetMicOutlined as default } diff --git a/src/IconHeadsetMicRound.tsx b/src/IconHeadsetMicRound.tsx new file mode 100644 index 000000000..6e8aa9418 --- /dev/null +++ b/src/IconHeadsetMicRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetMicRound as default } diff --git a/src/IconHeadsetMicSharp.tsx b/src/IconHeadsetMicSharp.tsx new file mode 100644 index 000000000..e8294dc19 --- /dev/null +++ b/src/IconHeadsetMicSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHeadsetMicSharp as default } diff --git a/src/IconHeadsetMicTwoTone.tsx b/src/IconHeadsetMicTwoTone.tsx new file mode 100644 index 000000000..a53d045fa --- /dev/null +++ b/src/IconHeadsetMicTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHeadsetMicTwoTone as default } diff --git a/src/IconHeadsetOffOutlined.tsx b/src/IconHeadsetOffOutlined.tsx new file mode 100644 index 000000000..88f468ee8 --- /dev/null +++ b/src/IconHeadsetOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadsetOffOutlined as default } diff --git a/src/IconHeadsetOffRound.tsx b/src/IconHeadsetOffRound.tsx new file mode 100644 index 000000000..9d7ccbbbf --- /dev/null +++ b/src/IconHeadsetOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadsetOffRound as default } diff --git a/src/IconHeadsetOffSharp.tsx b/src/IconHeadsetOffSharp.tsx new file mode 100644 index 000000000..dfabd1103 --- /dev/null +++ b/src/IconHeadsetOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeadsetOffSharp as default } diff --git a/src/IconHeadsetOffTwoTone.tsx b/src/IconHeadsetOffTwoTone.tsx new file mode 100644 index 000000000..a223c78c4 --- /dev/null +++ b/src/IconHeadsetOffTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHeadsetOffTwoTone as default } diff --git a/src/IconHeadsetOutlined.tsx b/src/IconHeadsetOutlined.tsx new file mode 100644 index 000000000..566f572cd --- /dev/null +++ b/src/IconHeadsetOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHeadsetOutlined as default } diff --git a/src/IconHeadsetRound.tsx b/src/IconHeadsetRound.tsx new file mode 100644 index 000000000..f17466c4f --- /dev/null +++ b/src/IconHeadsetRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetRound as default } diff --git a/src/IconHeadsetSharp.tsx b/src/IconHeadsetSharp.tsx new file mode 100644 index 000000000..09a6d3ba1 --- /dev/null +++ b/src/IconHeadsetSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHeadsetSharp as default } diff --git a/src/IconHeadsetTwoTone.tsx b/src/IconHeadsetTwoTone.tsx new file mode 100644 index 000000000..2e769bd5b --- /dev/null +++ b/src/IconHeadsetTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHeadsetTwoTone as default } diff --git a/src/IconHealingOutlined.tsx b/src/IconHealingOutlined.tsx new file mode 100644 index 000000000..0d0de0150 --- /dev/null +++ b/src/IconHealingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealingOutlined as default } diff --git a/src/IconHealingRound.tsx b/src/IconHealingRound.tsx new file mode 100644 index 000000000..851457dc2 --- /dev/null +++ b/src/IconHealingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealingRound as default } diff --git a/src/IconHealingSharp.tsx b/src/IconHealingSharp.tsx new file mode 100644 index 000000000..97657692c --- /dev/null +++ b/src/IconHealingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealingSharp as default } diff --git a/src/IconHealingTwoTone.tsx b/src/IconHealingTwoTone.tsx new file mode 100644 index 000000000..d4c10c49e --- /dev/null +++ b/src/IconHealingTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHealingTwoTone as default } diff --git a/src/IconHealthAndSafetyOutlined.tsx b/src/IconHealthAndSafetyOutlined.tsx new file mode 100644 index 000000000..75633de62 --- /dev/null +++ b/src/IconHealthAndSafetyOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealthAndSafetyOutlined as default } diff --git a/src/IconHealthAndSafetyRound.tsx b/src/IconHealthAndSafetyRound.tsx new file mode 100644 index 000000000..38d13ea89 --- /dev/null +++ b/src/IconHealthAndSafetyRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealthAndSafetyRound as default } diff --git a/src/IconHealthAndSafetySharp.tsx b/src/IconHealthAndSafetySharp.tsx new file mode 100644 index 000000000..28f15ec62 --- /dev/null +++ b/src/IconHealthAndSafetySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHealthAndSafetySharp as default } diff --git a/src/IconHealthAndSafetyTwoTone.tsx b/src/IconHealthAndSafetyTwoTone.tsx new file mode 100644 index 000000000..526af960b --- /dev/null +++ b/src/IconHealthAndSafetyTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHealthAndSafetyTwoTone as default } diff --git a/src/IconHearingDisabledOutlined.tsx b/src/IconHearingDisabledOutlined.tsx new file mode 100644 index 000000000..9303e3fbc --- /dev/null +++ b/src/IconHearingDisabledOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHearingDisabledOutlined as default } diff --git a/src/IconHearingDisabledRound.tsx b/src/IconHearingDisabledRound.tsx new file mode 100644 index 000000000..f011babec --- /dev/null +++ b/src/IconHearingDisabledRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHearingDisabledRound as default } diff --git a/src/IconHearingDisabledSharp.tsx b/src/IconHearingDisabledSharp.tsx new file mode 100644 index 000000000..932d36241 --- /dev/null +++ b/src/IconHearingDisabledSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHearingDisabledSharp as default } diff --git a/src/IconHearingDisabledTwoTone.tsx b/src/IconHearingDisabledTwoTone.tsx new file mode 100644 index 000000000..1b3d780cd --- /dev/null +++ b/src/IconHearingDisabledTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHearingDisabledTwoTone as default } diff --git a/src/IconHearingOutlined.tsx b/src/IconHearingOutlined.tsx new file mode 100644 index 000000000..a56df42e1 --- /dev/null +++ b/src/IconHearingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHearingOutlined as default } diff --git a/src/IconHearingRound.tsx b/src/IconHearingRound.tsx new file mode 100644 index 000000000..b2452a1ae --- /dev/null +++ b/src/IconHearingRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingRound as default } diff --git a/src/IconHearingSharp.tsx b/src/IconHearingSharp.tsx new file mode 100644 index 000000000..62bc08696 --- /dev/null +++ b/src/IconHearingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHearingSharp as default } diff --git a/src/IconHearingTwoTone.tsx b/src/IconHearingTwoTone.tsx new file mode 100644 index 000000000..fbc6fd3e9 --- /dev/null +++ b/src/IconHearingTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHearingTwoTone as default } diff --git a/src/IconHeartBrokenOutlined.tsx b/src/IconHeartBrokenOutlined.tsx new file mode 100644 index 000000000..97605c357 --- /dev/null +++ b/src/IconHeartBrokenOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeartBrokenOutlined as default } diff --git a/src/IconHeartBrokenRound.tsx b/src/IconHeartBrokenRound.tsx new file mode 100644 index 000000000..6a0b60a19 --- /dev/null +++ b/src/IconHeartBrokenRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHeartBrokenRound as default } diff --git a/src/IconHeartBrokenSharp.tsx b/src/IconHeartBrokenSharp.tsx new file mode 100644 index 000000000..db0457eba --- /dev/null +++ b/src/IconHeartBrokenSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeartBrokenSharp as default } diff --git a/src/IconHeartBrokenTwoTone.tsx b/src/IconHeartBrokenTwoTone.tsx new file mode 100644 index 000000000..ffe12e38a --- /dev/null +++ b/src/IconHeartBrokenTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHeartBrokenTwoTone as default } diff --git a/src/IconHeatPumpOutlined.tsx b/src/IconHeatPumpOutlined.tsx new file mode 100644 index 000000000..6afce2746 --- /dev/null +++ b/src/IconHeatPumpOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHeatPumpOutlined as default } diff --git a/src/IconHeatPumpRound.tsx b/src/IconHeatPumpRound.tsx new file mode 100644 index 000000000..dab14ca6c --- /dev/null +++ b/src/IconHeatPumpRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHeatPumpRound as default } diff --git a/src/IconHeatPumpSharp.tsx b/src/IconHeatPumpSharp.tsx new file mode 100644 index 000000000..d7b6df647 --- /dev/null +++ b/src/IconHeatPumpSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHeatPumpSharp as default } diff --git a/src/IconHeatPumpTwoTone.tsx b/src/IconHeatPumpTwoTone.tsx new file mode 100644 index 000000000..bdfb7dc92 --- /dev/null +++ b/src/IconHeatPumpTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHeatPumpTwoTone as default } diff --git a/src/IconHeightOutlined.tsx b/src/IconHeightOutlined.tsx new file mode 100644 index 000000000..e4ad7e2ea --- /dev/null +++ b/src/IconHeightOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHeightOutlined as default } diff --git a/src/IconHeightRound.tsx b/src/IconHeightRound.tsx new file mode 100644 index 000000000..cede4dbc4 --- /dev/null +++ b/src/IconHeightRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHeightRound as default } diff --git a/src/IconHeightSharp.tsx b/src/IconHeightSharp.tsx new file mode 100644 index 000000000..10aab2af8 --- /dev/null +++ b/src/IconHeightSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHeightSharp as default } diff --git a/src/IconHeightTwoTone.tsx b/src/IconHeightTwoTone.tsx new file mode 100644 index 000000000..044169a4d --- /dev/null +++ b/src/IconHeightTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHeightTwoTone as default } diff --git a/src/IconHelpCenterOutlined.tsx b/src/IconHelpCenterOutlined.tsx new file mode 100644 index 000000000..ee05cd584 --- /dev/null +++ b/src/IconHelpCenterOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHelpCenterOutlined as default } diff --git a/src/IconHelpCenterRound.tsx b/src/IconHelpCenterRound.tsx new file mode 100644 index 000000000..633337fe8 --- /dev/null +++ b/src/IconHelpCenterRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHelpCenterRound as default } diff --git a/src/IconHelpCenterSharp.tsx b/src/IconHelpCenterSharp.tsx new file mode 100644 index 000000000..9d6dda7a1 --- /dev/null +++ b/src/IconHelpCenterSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHelpCenterSharp as default } diff --git a/src/IconHelpCenterTwoTone.tsx b/src/IconHelpCenterTwoTone.tsx new file mode 100644 index 000000000..bf54e7fb5 --- /dev/null +++ b/src/IconHelpCenterTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconHelpCenterTwoTone as default } diff --git a/src/IconHelpOutlineOutlined.tsx b/src/IconHelpOutlineOutlined.tsx new file mode 100644 index 000000000..bf0a862a0 --- /dev/null +++ b/src/IconHelpOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpOutlineOutlined as default } diff --git a/src/IconHelpOutlineRound.tsx b/src/IconHelpOutlineRound.tsx new file mode 100644 index 000000000..cc508ff51 --- /dev/null +++ b/src/IconHelpOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpOutlineRound as default } diff --git a/src/IconHelpOutlineSharp.tsx b/src/IconHelpOutlineSharp.tsx new file mode 100644 index 000000000..cfd25e433 --- /dev/null +++ b/src/IconHelpOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpOutlineSharp as default } diff --git a/src/IconHelpOutlineTwoTone.tsx b/src/IconHelpOutlineTwoTone.tsx new file mode 100644 index 000000000..4a63e42d3 --- /dev/null +++ b/src/IconHelpOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpOutlineTwoTone as default } diff --git a/src/IconHelpOutlined.tsx b/src/IconHelpOutlined.tsx new file mode 100644 index 000000000..49a0ed3d7 --- /dev/null +++ b/src/IconHelpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpOutlined as default } diff --git a/src/IconHelpRound.tsx b/src/IconHelpRound.tsx new file mode 100644 index 000000000..06ca057f0 --- /dev/null +++ b/src/IconHelpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpRound as default } diff --git a/src/IconHelpSharp.tsx b/src/IconHelpSharp.tsx new file mode 100644 index 000000000..decb9d6ad --- /dev/null +++ b/src/IconHelpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHelpSharp as default } diff --git a/src/IconHelpTwoTone.tsx b/src/IconHelpTwoTone.tsx new file mode 100644 index 000000000..8fdcaad46 --- /dev/null +++ b/src/IconHelpTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHelpTwoTone as default } diff --git a/src/IconHevcOutlined.tsx b/src/IconHevcOutlined.tsx new file mode 100644 index 000000000..9ed3f786d --- /dev/null +++ b/src/IconHevcOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHevcOutlined as default } diff --git a/src/IconHevcRound.tsx b/src/IconHevcRound.tsx new file mode 100644 index 000000000..730ff005f --- /dev/null +++ b/src/IconHevcRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHevcRound as default } diff --git a/src/IconHevcSharp.tsx b/src/IconHevcSharp.tsx new file mode 100644 index 000000000..6b289c63b --- /dev/null +++ b/src/IconHevcSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHevcSharp as default } diff --git a/src/IconHevcTwoTone.tsx b/src/IconHevcTwoTone.tsx new file mode 100644 index 000000000..47f2a9566 --- /dev/null +++ b/src/IconHevcTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHevcTwoTone as default } diff --git a/src/IconHexagonOutlined.tsx b/src/IconHexagonOutlined.tsx new file mode 100644 index 000000000..e6d5ab376 --- /dev/null +++ b/src/IconHexagonOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHexagonOutlined as default } diff --git a/src/IconHexagonRound.tsx b/src/IconHexagonRound.tsx new file mode 100644 index 000000000..4b2917593 --- /dev/null +++ b/src/IconHexagonRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHexagonRound as default } diff --git a/src/IconHexagonSharp.tsx b/src/IconHexagonSharp.tsx new file mode 100644 index 000000000..3f8b42831 --- /dev/null +++ b/src/IconHexagonSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHexagonSharp as default } diff --git a/src/IconHexagonTwoTone.tsx b/src/IconHexagonTwoTone.tsx new file mode 100644 index 000000000..47d16a366 --- /dev/null +++ b/src/IconHexagonTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHexagonTwoTone as default } diff --git a/src/IconHideImageOutlined.tsx b/src/IconHideImageOutlined.tsx new file mode 100644 index 000000000..a689e85fe --- /dev/null +++ b/src/IconHideImageOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHideImageOutlined as default } diff --git a/src/IconHideImageRound.tsx b/src/IconHideImageRound.tsx new file mode 100644 index 000000000..3668b67b0 --- /dev/null +++ b/src/IconHideImageRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHideImageRound as default } diff --git a/src/IconHideImageSharp.tsx b/src/IconHideImageSharp.tsx new file mode 100644 index 000000000..bb4008f0d --- /dev/null +++ b/src/IconHideImageSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHideImageSharp as default } diff --git a/src/IconHideImageTwoTone.tsx b/src/IconHideImageTwoTone.tsx new file mode 100644 index 000000000..25a4492d8 --- /dev/null +++ b/src/IconHideImageTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHideImageTwoTone as default } diff --git a/src/IconHideSourceOutlined.tsx b/src/IconHideSourceOutlined.tsx new file mode 100644 index 000000000..42771f539 --- /dev/null +++ b/src/IconHideSourceOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHideSourceOutlined as default } diff --git a/src/IconHideSourceRound.tsx b/src/IconHideSourceRound.tsx new file mode 100644 index 000000000..1c72105f2 --- /dev/null +++ b/src/IconHideSourceRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHideSourceRound as default } diff --git a/src/IconHideSourceSharp.tsx b/src/IconHideSourceSharp.tsx new file mode 100644 index 000000000..025f7d444 --- /dev/null +++ b/src/IconHideSourceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHideSourceSharp as default } diff --git a/src/IconHideSourceTwoTone.tsx b/src/IconHideSourceTwoTone.tsx new file mode 100644 index 000000000..b90def6d3 --- /dev/null +++ b/src/IconHideSourceTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHideSourceTwoTone as default } diff --git a/src/IconHighQualityOutlined.tsx b/src/IconHighQualityOutlined.tsx new file mode 100644 index 000000000..50a6a4b4a --- /dev/null +++ b/src/IconHighQualityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighQualityOutlined as default } diff --git a/src/IconHighQualityRound.tsx b/src/IconHighQualityRound.tsx new file mode 100644 index 000000000..295cc3f26 --- /dev/null +++ b/src/IconHighQualityRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighQualityRound as default } diff --git a/src/IconHighQualitySharp.tsx b/src/IconHighQualitySharp.tsx new file mode 100644 index 000000000..cf0d6c963 --- /dev/null +++ b/src/IconHighQualitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighQualitySharp as default } diff --git a/src/IconHighQualityTwoTone.tsx b/src/IconHighQualityTwoTone.tsx new file mode 100644 index 000000000..7d6de3c2a --- /dev/null +++ b/src/IconHighQualityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHighQualityTwoTone as default } diff --git a/src/IconHighlightAltOutlined.tsx b/src/IconHighlightAltOutlined.tsx new file mode 100644 index 000000000..9cd7d50e0 --- /dev/null +++ b/src/IconHighlightAltOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHighlightAltOutlined as default } diff --git a/src/IconHighlightAltRound.tsx b/src/IconHighlightAltRound.tsx new file mode 100644 index 000000000..155876333 --- /dev/null +++ b/src/IconHighlightAltRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHighlightAltRound as default } diff --git a/src/IconHighlightAltSharp.tsx b/src/IconHighlightAltSharp.tsx new file mode 100644 index 000000000..3ece52a7a --- /dev/null +++ b/src/IconHighlightAltSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHighlightAltSharp as default } diff --git a/src/IconHighlightAltTwoTone.tsx b/src/IconHighlightAltTwoTone.tsx new file mode 100644 index 000000000..041125646 --- /dev/null +++ b/src/IconHighlightAltTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHighlightAltTwoTone as default } diff --git a/src/IconHighlightOffOutlined.tsx b/src/IconHighlightOffOutlined.tsx new file mode 100644 index 000000000..4895c1569 --- /dev/null +++ b/src/IconHighlightOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighlightOffOutlined as default } diff --git a/src/IconHighlightOffRound.tsx b/src/IconHighlightOffRound.tsx new file mode 100644 index 000000000..6dfcafe96 --- /dev/null +++ b/src/IconHighlightOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighlightOffRound as default } diff --git a/src/IconHighlightOffSharp.tsx b/src/IconHighlightOffSharp.tsx new file mode 100644 index 000000000..0da56255b --- /dev/null +++ b/src/IconHighlightOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighlightOffSharp as default } diff --git a/src/IconHighlightOffTwoTone.tsx b/src/IconHighlightOffTwoTone.tsx new file mode 100644 index 000000000..bf1023791 --- /dev/null +++ b/src/IconHighlightOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHighlightOffTwoTone as default } diff --git a/src/IconHighlightOutlined.tsx b/src/IconHighlightOutlined.tsx new file mode 100644 index 000000000..265b0c74e --- /dev/null +++ b/src/IconHighlightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighlightOutlined as default } diff --git a/src/IconHighlightRound.tsx b/src/IconHighlightRound.tsx new file mode 100644 index 000000000..168afe1f4 --- /dev/null +++ b/src/IconHighlightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHighlightRound as default } diff --git a/src/IconHighlightSharp.tsx b/src/IconHighlightSharp.tsx new file mode 100644 index 000000000..717cdda76 --- /dev/null +++ b/src/IconHighlightSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightSharp as default } diff --git a/src/IconHighlightTwoTone.tsx b/src/IconHighlightTwoTone.tsx new file mode 100644 index 000000000..4220d4df6 --- /dev/null +++ b/src/IconHighlightTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHighlightTwoTone as default } diff --git a/src/IconHikingOutlined.tsx b/src/IconHikingOutlined.tsx new file mode 100644 index 000000000..9e8f6276a --- /dev/null +++ b/src/IconHikingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHikingOutlined as default } diff --git a/src/IconHikingRound.tsx b/src/IconHikingRound.tsx new file mode 100644 index 000000000..b9bf6b739 --- /dev/null +++ b/src/IconHikingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHikingRound as default } diff --git a/src/IconHikingSharp.tsx b/src/IconHikingSharp.tsx new file mode 100644 index 000000000..13bd9aab6 --- /dev/null +++ b/src/IconHikingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHikingSharp as default } diff --git a/src/IconHikingTwoTone.tsx b/src/IconHikingTwoTone.tsx new file mode 100644 index 000000000..971d7e947 --- /dev/null +++ b/src/IconHikingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHikingTwoTone as default } diff --git a/src/IconHistoryEduOutlined.tsx b/src/IconHistoryEduOutlined.tsx new file mode 100644 index 000000000..256be4ce2 --- /dev/null +++ b/src/IconHistoryEduOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHistoryEduOutlined as default } diff --git a/src/IconHistoryEduRound.tsx b/src/IconHistoryEduRound.tsx new file mode 100644 index 000000000..176c5d28e --- /dev/null +++ b/src/IconHistoryEduRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHistoryEduRound as default } diff --git a/src/IconHistoryEduSharp.tsx b/src/IconHistoryEduSharp.tsx new file mode 100644 index 000000000..4cfde4d1f --- /dev/null +++ b/src/IconHistoryEduSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHistoryEduSharp as default } diff --git a/src/IconHistoryEduTwoTone.tsx b/src/IconHistoryEduTwoTone.tsx new file mode 100644 index 000000000..1a88e4cc2 --- /dev/null +++ b/src/IconHistoryEduTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconHistoryEduTwoTone as default } diff --git a/src/IconHistoryOutlined.tsx b/src/IconHistoryOutlined.tsx new file mode 100644 index 000000000..6d175cbd2 --- /dev/null +++ b/src/IconHistoryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHistoryOutlined as default } diff --git a/src/IconHistoryRound.tsx b/src/IconHistoryRound.tsx new file mode 100644 index 000000000..8d26b3c33 --- /dev/null +++ b/src/IconHistoryRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHistoryRound as default } diff --git a/src/IconHistorySharp.tsx b/src/IconHistorySharp.tsx new file mode 100644 index 000000000..5d57032dc --- /dev/null +++ b/src/IconHistorySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHistorySharp as default } diff --git a/src/IconHistoryToggleOffOutlined.tsx b/src/IconHistoryToggleOffOutlined.tsx new file mode 100644 index 000000000..c5cc4a6cb --- /dev/null +++ b/src/IconHistoryToggleOffOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHistoryToggleOffOutlined as default } diff --git a/src/IconHistoryToggleOffRound.tsx b/src/IconHistoryToggleOffRound.tsx new file mode 100644 index 000000000..96b7bb62f --- /dev/null +++ b/src/IconHistoryToggleOffRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHistoryToggleOffRound as default } diff --git a/src/IconHistoryToggleOffSharp.tsx b/src/IconHistoryToggleOffSharp.tsx new file mode 100644 index 000000000..f4d8a1545 --- /dev/null +++ b/src/IconHistoryToggleOffSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHistoryToggleOffSharp as default } diff --git a/src/IconHistoryToggleOffTwoTone.tsx b/src/IconHistoryToggleOffTwoTone.tsx new file mode 100644 index 000000000..e1de64512 --- /dev/null +++ b/src/IconHistoryToggleOffTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHistoryToggleOffTwoTone as default } diff --git a/src/IconHistoryTwoTone.tsx b/src/IconHistoryTwoTone.tsx new file mode 100644 index 000000000..151f0ac3a --- /dev/null +++ b/src/IconHistoryTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHistoryTwoTone as default } diff --git a/src/IconHiveOutlined.tsx b/src/IconHiveOutlined.tsx new file mode 100644 index 000000000..f895504b6 --- /dev/null +++ b/src/IconHiveOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHiveOutlined as default } diff --git a/src/IconHiveRound.tsx b/src/IconHiveRound.tsx new file mode 100644 index 000000000..1002665f6 --- /dev/null +++ b/src/IconHiveRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconHiveRound as default } diff --git a/src/IconHiveSharp.tsx b/src/IconHiveSharp.tsx new file mode 100644 index 000000000..37d15dcab --- /dev/null +++ b/src/IconHiveSharp.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHiveSharp as default } diff --git a/src/IconHiveTwoTone.tsx b/src/IconHiveTwoTone.tsx new file mode 100644 index 000000000..561ebe8e9 --- /dev/null +++ b/src/IconHiveTwoTone.tsx @@ -0,0 +1,51 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconHiveTwoTone as default } diff --git a/src/IconHlsOffOutlined.tsx b/src/IconHlsOffOutlined.tsx new file mode 100644 index 000000000..a352763f1 --- /dev/null +++ b/src/IconHlsOffOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsOffOutlined as default } diff --git a/src/IconHlsOffRound.tsx b/src/IconHlsOffRound.tsx new file mode 100644 index 000000000..adc007d31 --- /dev/null +++ b/src/IconHlsOffRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHlsOffRound as default } diff --git a/src/IconHlsOffSharp.tsx b/src/IconHlsOffSharp.tsx new file mode 100644 index 000000000..fb983fa9e --- /dev/null +++ b/src/IconHlsOffSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsOffSharp as default } diff --git a/src/IconHlsOffTwoTone.tsx b/src/IconHlsOffTwoTone.tsx new file mode 100644 index 000000000..4a5064f90 --- /dev/null +++ b/src/IconHlsOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsOffTwoTone as default } diff --git a/src/IconHlsOutlined.tsx b/src/IconHlsOutlined.tsx new file mode 100644 index 000000000..b10815c8c --- /dev/null +++ b/src/IconHlsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsOutlined as default } diff --git a/src/IconHlsRound.tsx b/src/IconHlsRound.tsx new file mode 100644 index 000000000..f4e53f492 --- /dev/null +++ b/src/IconHlsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHlsRound as default } diff --git a/src/IconHlsSharp.tsx b/src/IconHlsSharp.tsx new file mode 100644 index 000000000..7be861b3b --- /dev/null +++ b/src/IconHlsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsSharp as default } diff --git a/src/IconHlsTwoTone.tsx b/src/IconHlsTwoTone.tsx new file mode 100644 index 000000000..bb94e83fe --- /dev/null +++ b/src/IconHlsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHlsTwoTone as default } diff --git a/src/IconHolidayVillageOutlined.tsx b/src/IconHolidayVillageOutlined.tsx new file mode 100644 index 000000000..f5825ace5 --- /dev/null +++ b/src/IconHolidayVillageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHolidayVillageOutlined as default } diff --git a/src/IconHolidayVillageRound.tsx b/src/IconHolidayVillageRound.tsx new file mode 100644 index 000000000..3fbda1dcd --- /dev/null +++ b/src/IconHolidayVillageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHolidayVillageRound as default } diff --git a/src/IconHolidayVillageSharp.tsx b/src/IconHolidayVillageSharp.tsx new file mode 100644 index 000000000..1b7b7be35 --- /dev/null +++ b/src/IconHolidayVillageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHolidayVillageSharp as default } diff --git a/src/IconHolidayVillageTwoTone.tsx b/src/IconHolidayVillageTwoTone.tsx new file mode 100644 index 000000000..696979d9a --- /dev/null +++ b/src/IconHolidayVillageTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHolidayVillageTwoTone as default } diff --git a/src/IconHomeMaxOutlined.tsx b/src/IconHomeMaxOutlined.tsx new file mode 100644 index 000000000..7d97615d9 --- /dev/null +++ b/src/IconHomeMaxOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMaxOutlined as default } diff --git a/src/IconHomeMaxRound.tsx b/src/IconHomeMaxRound.tsx new file mode 100644 index 000000000..218fcba40 --- /dev/null +++ b/src/IconHomeMaxRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMaxRound as default } diff --git a/src/IconHomeMaxSharp.tsx b/src/IconHomeMaxSharp.tsx new file mode 100644 index 000000000..2fc6e6427 --- /dev/null +++ b/src/IconHomeMaxSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMaxSharp as default } diff --git a/src/IconHomeMaxTwoTone.tsx b/src/IconHomeMaxTwoTone.tsx new file mode 100644 index 000000000..d7b7c7908 --- /dev/null +++ b/src/IconHomeMaxTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHomeMaxTwoTone as default } diff --git a/src/IconHomeMiniOutlined.tsx b/src/IconHomeMiniOutlined.tsx new file mode 100644 index 000000000..a5827d091 --- /dev/null +++ b/src/IconHomeMiniOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMiniOutlined as default } diff --git a/src/IconHomeMiniRound.tsx b/src/IconHomeMiniRound.tsx new file mode 100644 index 000000000..b1c951d9e --- /dev/null +++ b/src/IconHomeMiniRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMiniRound as default } diff --git a/src/IconHomeMiniSharp.tsx b/src/IconHomeMiniSharp.tsx new file mode 100644 index 000000000..75f894a85 --- /dev/null +++ b/src/IconHomeMiniSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHomeMiniSharp as default } diff --git a/src/IconHomeMiniTwoTone.tsx b/src/IconHomeMiniTwoTone.tsx new file mode 100644 index 000000000..8e3dc2c8a --- /dev/null +++ b/src/IconHomeMiniTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHomeMiniTwoTone as default } diff --git a/src/IconHomeOutlined.tsx b/src/IconHomeOutlined.tsx new file mode 100644 index 000000000..2140bd712 --- /dev/null +++ b/src/IconHomeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHomeOutlined as default } diff --git a/src/IconHomeRepairServiceOutlined.tsx b/src/IconHomeRepairServiceOutlined.tsx new file mode 100644 index 000000000..231032a32 --- /dev/null +++ b/src/IconHomeRepairServiceOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconHomeRepairServiceOutlined as default } diff --git a/src/IconHomeRepairServiceRound.tsx b/src/IconHomeRepairServiceRound.tsx new file mode 100644 index 000000000..293c7fc0e --- /dev/null +++ b/src/IconHomeRepairServiceRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconHomeRepairServiceRound as default } diff --git a/src/IconHomeRepairServiceSharp.tsx b/src/IconHomeRepairServiceSharp.tsx new file mode 100644 index 000000000..50acebb8b --- /dev/null +++ b/src/IconHomeRepairServiceSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconHomeRepairServiceSharp as default } diff --git a/src/IconHomeRepairServiceTwoTone.tsx b/src/IconHomeRepairServiceTwoTone.tsx new file mode 100644 index 000000000..6ebe9f21e --- /dev/null +++ b/src/IconHomeRepairServiceTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconHomeRepairServiceTwoTone as default } diff --git a/src/IconHomeRound.tsx b/src/IconHomeRound.tsx new file mode 100644 index 000000000..115afbfa1 --- /dev/null +++ b/src/IconHomeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHomeRound as default } diff --git a/src/IconHomeSharp.tsx b/src/IconHomeSharp.tsx new file mode 100644 index 000000000..af4a9f4f3 --- /dev/null +++ b/src/IconHomeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHomeSharp as default } diff --git a/src/IconHomeTwoTone.tsx b/src/IconHomeTwoTone.tsx new file mode 100644 index 000000000..a6d60cc86 --- /dev/null +++ b/src/IconHomeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHomeTwoTone as default } diff --git a/src/IconHomeWorkOutlined.tsx b/src/IconHomeWorkOutlined.tsx new file mode 100644 index 000000000..d4cdb70c4 --- /dev/null +++ b/src/IconHomeWorkOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconHomeWorkOutlined as default } diff --git a/src/IconHomeWorkRound.tsx b/src/IconHomeWorkRound.tsx new file mode 100644 index 000000000..d62584db8 --- /dev/null +++ b/src/IconHomeWorkRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHomeWorkRound as default } diff --git a/src/IconHomeWorkSharp.tsx b/src/IconHomeWorkSharp.tsx new file mode 100644 index 000000000..f64efca43 --- /dev/null +++ b/src/IconHomeWorkSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHomeWorkSharp as default } diff --git a/src/IconHomeWorkTwoTone.tsx b/src/IconHomeWorkTwoTone.tsx new file mode 100644 index 000000000..a7aaef783 --- /dev/null +++ b/src/IconHomeWorkTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconHomeWorkTwoTone as default } diff --git a/src/IconHorizontalDistributeOutlined.tsx b/src/IconHorizontalDistributeOutlined.tsx new file mode 100644 index 000000000..04480df6a --- /dev/null +++ b/src/IconHorizontalDistributeOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalDistributeOutlined as default } diff --git a/src/IconHorizontalDistributeRound.tsx b/src/IconHorizontalDistributeRound.tsx new file mode 100644 index 000000000..f241b129d --- /dev/null +++ b/src/IconHorizontalDistributeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalDistributeRound as default } diff --git a/src/IconHorizontalDistributeSharp.tsx b/src/IconHorizontalDistributeSharp.tsx new file mode 100644 index 000000000..e5faf2074 --- /dev/null +++ b/src/IconHorizontalDistributeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalDistributeSharp as default } diff --git a/src/IconHorizontalDistributeTwoTone.tsx b/src/IconHorizontalDistributeTwoTone.tsx new file mode 100644 index 000000000..cc3175ff3 --- /dev/null +++ b/src/IconHorizontalDistributeTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalDistributeTwoTone as default } diff --git a/src/IconHorizontalRuleOutlined.tsx b/src/IconHorizontalRuleOutlined.tsx new file mode 100644 index 000000000..2aba7ef29 --- /dev/null +++ b/src/IconHorizontalRuleOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHorizontalRuleOutlined as default } diff --git a/src/IconHorizontalRuleRound.tsx b/src/IconHorizontalRuleRound.tsx new file mode 100644 index 000000000..586fc03cb --- /dev/null +++ b/src/IconHorizontalRuleRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHorizontalRuleRound as default } diff --git a/src/IconHorizontalRuleSharp.tsx b/src/IconHorizontalRuleSharp.tsx new file mode 100644 index 000000000..38389ba91 --- /dev/null +++ b/src/IconHorizontalRuleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHorizontalRuleSharp as default } diff --git a/src/IconHorizontalRuleTwoTone.tsx b/src/IconHorizontalRuleTwoTone.tsx new file mode 100644 index 000000000..2ec9db0a8 --- /dev/null +++ b/src/IconHorizontalRuleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHorizontalRuleTwoTone as default } diff --git a/src/IconHorizontalSplitOutlined.tsx b/src/IconHorizontalSplitOutlined.tsx new file mode 100644 index 000000000..188702d24 --- /dev/null +++ b/src/IconHorizontalSplitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalSplitOutlined as default } diff --git a/src/IconHorizontalSplitRound.tsx b/src/IconHorizontalSplitRound.tsx new file mode 100644 index 000000000..c1a69c8f9 --- /dev/null +++ b/src/IconHorizontalSplitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalSplitRound as default } diff --git a/src/IconHorizontalSplitSharp.tsx b/src/IconHorizontalSplitSharp.tsx new file mode 100644 index 000000000..9a327b62b --- /dev/null +++ b/src/IconHorizontalSplitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHorizontalSplitSharp as default } diff --git a/src/IconHorizontalSplitTwoTone.tsx b/src/IconHorizontalSplitTwoTone.tsx new file mode 100644 index 000000000..a81b65cc9 --- /dev/null +++ b/src/IconHorizontalSplitTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHorizontalSplitTwoTone as default } diff --git a/src/IconHotTubOutlined.tsx b/src/IconHotTubOutlined.tsx new file mode 100644 index 000000000..8ea15380a --- /dev/null +++ b/src/IconHotTubOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHotTubOutlined as default } diff --git a/src/IconHotTubRound.tsx b/src/IconHotTubRound.tsx new file mode 100644 index 000000000..f181b78ca --- /dev/null +++ b/src/IconHotTubRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHotTubRound as default } diff --git a/src/IconHotTubSharp.tsx b/src/IconHotTubSharp.tsx new file mode 100644 index 000000000..2a80a5846 --- /dev/null +++ b/src/IconHotTubSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHotTubSharp as default } diff --git a/src/IconHotTubTwoTone.tsx b/src/IconHotTubTwoTone.tsx new file mode 100644 index 000000000..878f4a060 --- /dev/null +++ b/src/IconHotTubTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHotTubTwoTone as default } diff --git a/src/IconHotelClass.tsx b/src/IconHotelClass.tsx index aaed62b36..6137ee2dd 100644 --- a/src/IconHotelClass.tsx +++ b/src/IconHotelClass.tsx @@ -10,7 +10,7 @@ const IconHotelClass: React.FC = ({ ...props }) => ( > {props.title && {props.title}} - + ) diff --git a/src/IconHotelClassOutlined.tsx b/src/IconHotelClassOutlined.tsx new file mode 100644 index 000000000..411fb1299 --- /dev/null +++ b/src/IconHotelClassOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelClassOutlined as default } diff --git a/src/IconHotelClassRound.tsx b/src/IconHotelClassRound.tsx new file mode 100644 index 000000000..a87d05fc1 --- /dev/null +++ b/src/IconHotelClassRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelClassRound as default } diff --git a/src/IconHotelClassSharp.tsx b/src/IconHotelClassSharp.tsx new file mode 100644 index 000000000..fb8ddf0ab --- /dev/null +++ b/src/IconHotelClassSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelClassSharp as default } diff --git a/src/IconHotelClassTwoTone.tsx b/src/IconHotelClassTwoTone.tsx new file mode 100644 index 000000000..e8a9e5cb0 --- /dev/null +++ b/src/IconHotelClassTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHotelClassTwoTone as default } diff --git a/src/IconHotelOutlined.tsx b/src/IconHotelOutlined.tsx new file mode 100644 index 000000000..cf13ad0a4 --- /dev/null +++ b/src/IconHotelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelOutlined as default } diff --git a/src/IconHotelRound.tsx b/src/IconHotelRound.tsx new file mode 100644 index 000000000..bc52be4dd --- /dev/null +++ b/src/IconHotelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelRound as default } diff --git a/src/IconHotelSharp.tsx b/src/IconHotelSharp.tsx new file mode 100644 index 000000000..002e31541 --- /dev/null +++ b/src/IconHotelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHotelSharp as default } diff --git a/src/IconHotelTwoTone.tsx b/src/IconHotelTwoTone.tsx new file mode 100644 index 000000000..61dca8040 --- /dev/null +++ b/src/IconHotelTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHotelTwoTone as default } diff --git a/src/IconHourglassBottomOutlined.tsx b/src/IconHourglassBottomOutlined.tsx new file mode 100644 index 000000000..b527a5fe7 --- /dev/null +++ b/src/IconHourglassBottomOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHourglassBottomOutlined as default } diff --git a/src/IconHourglassBottomRound.tsx b/src/IconHourglassBottomRound.tsx new file mode 100644 index 000000000..3b51b857c --- /dev/null +++ b/src/IconHourglassBottomRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHourglassBottomRound as default } diff --git a/src/IconHourglassBottomSharp.tsx b/src/IconHourglassBottomSharp.tsx new file mode 100644 index 000000000..f82858d31 --- /dev/null +++ b/src/IconHourglassBottomSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHourglassBottomSharp as default } diff --git a/src/IconHourglassBottomTwoTone.tsx b/src/IconHourglassBottomTwoTone.tsx new file mode 100644 index 000000000..53b308787 --- /dev/null +++ b/src/IconHourglassBottomTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHourglassBottomTwoTone as default } diff --git a/src/IconHourglassDisabledOutlined.tsx b/src/IconHourglassDisabledOutlined.tsx new file mode 100644 index 000000000..642a1a210 --- /dev/null +++ b/src/IconHourglassDisabledOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHourglassDisabledOutlined as default } diff --git a/src/IconHourglassDisabledRound.tsx b/src/IconHourglassDisabledRound.tsx new file mode 100644 index 000000000..ca1d34b4a --- /dev/null +++ b/src/IconHourglassDisabledRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHourglassDisabledRound as default } diff --git a/src/IconHourglassDisabledSharp.tsx b/src/IconHourglassDisabledSharp.tsx new file mode 100644 index 000000000..de898bce3 --- /dev/null +++ b/src/IconHourglassDisabledSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHourglassDisabledSharp as default } diff --git a/src/IconHourglassDisabledTwoTone.tsx b/src/IconHourglassDisabledTwoTone.tsx new file mode 100644 index 000000000..a6a96bd8c --- /dev/null +++ b/src/IconHourglassDisabledTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHourglassDisabledTwoTone as default } diff --git a/src/IconHourglassEmptyOutlined.tsx b/src/IconHourglassEmptyOutlined.tsx new file mode 100644 index 000000000..9294cfcfc --- /dev/null +++ b/src/IconHourglassEmptyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassEmptyOutlined as default } diff --git a/src/IconHourglassEmptyRound.tsx b/src/IconHourglassEmptyRound.tsx new file mode 100644 index 000000000..b643dcf60 --- /dev/null +++ b/src/IconHourglassEmptyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassEmptyRound as default } diff --git a/src/IconHourglassEmptySharp.tsx b/src/IconHourglassEmptySharp.tsx new file mode 100644 index 000000000..b40a0d91e --- /dev/null +++ b/src/IconHourglassEmptySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassEmptySharp as default } diff --git a/src/IconHourglassEmptyTwoTone.tsx b/src/IconHourglassEmptyTwoTone.tsx new file mode 100644 index 000000000..ca119a4a0 --- /dev/null +++ b/src/IconHourglassEmptyTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassEmptyTwoTone as default } diff --git a/src/IconHourglassFullOutlined.tsx b/src/IconHourglassFullOutlined.tsx new file mode 100644 index 000000000..188827659 --- /dev/null +++ b/src/IconHourglassFullOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassFullOutlined as default } diff --git a/src/IconHourglassFullRound.tsx b/src/IconHourglassFullRound.tsx new file mode 100644 index 000000000..d7971e10c --- /dev/null +++ b/src/IconHourglassFullRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassFullRound as default } diff --git a/src/IconHourglassFullSharp.tsx b/src/IconHourglassFullSharp.tsx new file mode 100644 index 000000000..fecf23784 --- /dev/null +++ b/src/IconHourglassFullSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHourglassFullSharp as default } diff --git a/src/IconHourglassFullTwoTone.tsx b/src/IconHourglassFullTwoTone.tsx new file mode 100644 index 000000000..47a9efbc2 --- /dev/null +++ b/src/IconHourglassFullTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHourglassFullTwoTone as default } diff --git a/src/IconHourglassTopOutlined.tsx b/src/IconHourglassTopOutlined.tsx new file mode 100644 index 000000000..50c32cd91 --- /dev/null +++ b/src/IconHourglassTopOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHourglassTopOutlined as default } diff --git a/src/IconHourglassTopRound.tsx b/src/IconHourglassTopRound.tsx new file mode 100644 index 000000000..0d8432ab1 --- /dev/null +++ b/src/IconHourglassTopRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHourglassTopRound as default } diff --git a/src/IconHourglassTopSharp.tsx b/src/IconHourglassTopSharp.tsx new file mode 100644 index 000000000..e6185e426 --- /dev/null +++ b/src/IconHourglassTopSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHourglassTopSharp as default } diff --git a/src/IconHourglassTopTwoTone.tsx b/src/IconHourglassTopTwoTone.tsx new file mode 100644 index 000000000..006e67192 --- /dev/null +++ b/src/IconHourglassTopTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHourglassTopTwoTone as default } diff --git a/src/IconHouseOutlined.tsx b/src/IconHouseOutlined.tsx new file mode 100644 index 000000000..3c9b5938b --- /dev/null +++ b/src/IconHouseOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHouseOutlined as default } diff --git a/src/IconHouseRound.tsx b/src/IconHouseRound.tsx new file mode 100644 index 000000000..dcfa80e3f --- /dev/null +++ b/src/IconHouseRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHouseRound as default } diff --git a/src/IconHouseSharp.tsx b/src/IconHouseSharp.tsx new file mode 100644 index 000000000..5c1ba69b3 --- /dev/null +++ b/src/IconHouseSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHouseSharp as default } diff --git a/src/IconHouseSidingOutlined.tsx b/src/IconHouseSidingOutlined.tsx new file mode 100644 index 000000000..258aac8c3 --- /dev/null +++ b/src/IconHouseSidingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseSidingOutlined as default } diff --git a/src/IconHouseSidingRound.tsx b/src/IconHouseSidingRound.tsx new file mode 100644 index 000000000..fd620c87d --- /dev/null +++ b/src/IconHouseSidingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseSidingRound as default } diff --git a/src/IconHouseSidingSharp.tsx b/src/IconHouseSidingSharp.tsx new file mode 100644 index 000000000..14b9539c9 --- /dev/null +++ b/src/IconHouseSidingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseSidingSharp as default } diff --git a/src/IconHouseSidingTwoTone.tsx b/src/IconHouseSidingTwoTone.tsx new file mode 100644 index 000000000..e58758e84 --- /dev/null +++ b/src/IconHouseSidingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHouseSidingTwoTone as default } diff --git a/src/IconHouseTwoTone.tsx b/src/IconHouseTwoTone.tsx new file mode 100644 index 000000000..ee2ec583a --- /dev/null +++ b/src/IconHouseTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHouseTwoTone as default } diff --git a/src/IconHouseboatOutlined.tsx b/src/IconHouseboatOutlined.tsx new file mode 100644 index 000000000..51d2f4daf --- /dev/null +++ b/src/IconHouseboatOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseboatOutlined as default } diff --git a/src/IconHouseboatRound.tsx b/src/IconHouseboatRound.tsx new file mode 100644 index 000000000..664d7bc47 --- /dev/null +++ b/src/IconHouseboatRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseboatRound as default } diff --git a/src/IconHouseboatSharp.tsx b/src/IconHouseboatSharp.tsx new file mode 100644 index 000000000..40f84017f --- /dev/null +++ b/src/IconHouseboatSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHouseboatSharp as default } diff --git a/src/IconHouseboatTwoTone.tsx b/src/IconHouseboatTwoTone.tsx new file mode 100644 index 000000000..f3a20a5e1 --- /dev/null +++ b/src/IconHouseboatTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHouseboatTwoTone as default } diff --git a/src/IconHowToRegOutlined.tsx b/src/IconHowToRegOutlined.tsx new file mode 100644 index 000000000..437c28660 --- /dev/null +++ b/src/IconHowToRegOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHowToRegOutlined as default } diff --git a/src/IconHowToRegRound.tsx b/src/IconHowToRegRound.tsx new file mode 100644 index 000000000..bc7c46c54 --- /dev/null +++ b/src/IconHowToRegRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHowToRegRound as default } diff --git a/src/IconHowToRegSharp.tsx b/src/IconHowToRegSharp.tsx new file mode 100644 index 000000000..59ca8ba57 --- /dev/null +++ b/src/IconHowToRegSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHowToRegSharp as default } diff --git a/src/IconHowToRegTwoTone.tsx b/src/IconHowToRegTwoTone.tsx new file mode 100644 index 000000000..ad8c5cff5 --- /dev/null +++ b/src/IconHowToRegTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconHowToRegTwoTone as default } diff --git a/src/IconHowToVoteOutlined.tsx b/src/IconHowToVoteOutlined.tsx new file mode 100644 index 000000000..064ca5a5d --- /dev/null +++ b/src/IconHowToVoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHowToVoteOutlined as default } diff --git a/src/IconHowToVoteRound.tsx b/src/IconHowToVoteRound.tsx new file mode 100644 index 000000000..1dc1a7c22 --- /dev/null +++ b/src/IconHowToVoteRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHowToVoteRound as default } diff --git a/src/IconHowToVoteSharp.tsx b/src/IconHowToVoteSharp.tsx new file mode 100644 index 000000000..986e609e2 --- /dev/null +++ b/src/IconHowToVoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHowToVoteSharp as default } diff --git a/src/IconHowToVoteTwoTone.tsx b/src/IconHowToVoteTwoTone.tsx new file mode 100644 index 000000000..88a8359f1 --- /dev/null +++ b/src/IconHowToVoteTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconHowToVoteTwoTone as default } diff --git a/src/IconHtmlOutlined.tsx b/src/IconHtmlOutlined.tsx new file mode 100644 index 000000000..e9657dbbb --- /dev/null +++ b/src/IconHtmlOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHtmlOutlined as default } diff --git a/src/IconHtmlRound.tsx b/src/IconHtmlRound.tsx new file mode 100644 index 000000000..cfbf4455a --- /dev/null +++ b/src/IconHtmlRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconHtmlRound as default } diff --git a/src/IconHtmlSharp.tsx b/src/IconHtmlSharp.tsx new file mode 100644 index 000000000..31ff090fe --- /dev/null +++ b/src/IconHtmlSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHtmlSharp as default } diff --git a/src/IconHtmlTwoTone.tsx b/src/IconHtmlTwoTone.tsx new file mode 100644 index 000000000..7b4015ca0 --- /dev/null +++ b/src/IconHtmlTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconHtmlTwoTone as default } diff --git a/src/IconHttpOutlined.tsx b/src/IconHttpOutlined.tsx new file mode 100644 index 000000000..ab58b2331 --- /dev/null +++ b/src/IconHttpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpOutlined as default } diff --git a/src/IconHttpRound.tsx b/src/IconHttpRound.tsx new file mode 100644 index 000000000..c65de0426 --- /dev/null +++ b/src/IconHttpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpRound as default } diff --git a/src/IconHttpSharp.tsx b/src/IconHttpSharp.tsx new file mode 100644 index 000000000..19a51509a --- /dev/null +++ b/src/IconHttpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpSharp as default } diff --git a/src/IconHttpTwoTone.tsx b/src/IconHttpTwoTone.tsx new file mode 100644 index 000000000..06426893d --- /dev/null +++ b/src/IconHttpTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpTwoTone as default } diff --git a/src/IconHttpsOutlined.tsx b/src/IconHttpsOutlined.tsx new file mode 100644 index 000000000..082d74c7b --- /dev/null +++ b/src/IconHttpsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpsOutlined as default } diff --git a/src/IconHttpsRound.tsx b/src/IconHttpsRound.tsx new file mode 100644 index 000000000..f46ee9673 --- /dev/null +++ b/src/IconHttpsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpsRound as default } diff --git a/src/IconHttpsSharp.tsx b/src/IconHttpsSharp.tsx new file mode 100644 index 000000000..b4102c161 --- /dev/null +++ b/src/IconHttpsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHttpsSharp as default } diff --git a/src/IconHttpsTwoTone.tsx b/src/IconHttpsTwoTone.tsx new file mode 100644 index 000000000..cb15ac9a8 --- /dev/null +++ b/src/IconHttpsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHttpsTwoTone as default } diff --git a/src/IconHubOutlined.tsx b/src/IconHubOutlined.tsx new file mode 100644 index 000000000..5973afb22 --- /dev/null +++ b/src/IconHubOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHubOutlined as default } diff --git a/src/IconHubRound.tsx b/src/IconHubRound.tsx new file mode 100644 index 000000000..00faf72fa --- /dev/null +++ b/src/IconHubRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHubRound as default } diff --git a/src/IconHubSharp.tsx b/src/IconHubSharp.tsx new file mode 100644 index 000000000..53be8fe00 --- /dev/null +++ b/src/IconHubSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconHubSharp as default } diff --git a/src/IconHubTwoTone.tsx b/src/IconHubTwoTone.tsx new file mode 100644 index 000000000..9373ed46f --- /dev/null +++ b/src/IconHubTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconHubTwoTone as default } diff --git a/src/IconHvacOutlined.tsx b/src/IconHvacOutlined.tsx new file mode 100644 index 000000000..ac1c1394c --- /dev/null +++ b/src/IconHvacOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconHvacOutlined as default } diff --git a/src/IconHvacRound.tsx b/src/IconHvacRound.tsx new file mode 100644 index 000000000..ec7725b86 --- /dev/null +++ b/src/IconHvacRound.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconHvacRound as default } diff --git a/src/IconHvacSharp.tsx b/src/IconHvacSharp.tsx new file mode 100644 index 000000000..d51b3eb1f --- /dev/null +++ b/src/IconHvacSharp.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconHvacSharp as default } diff --git a/src/IconHvacTwoTone.tsx b/src/IconHvacTwoTone.tsx new file mode 100644 index 000000000..8a4f5fb20 --- /dev/null +++ b/src/IconHvacTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconHvacTwoTone as default } diff --git a/src/IconIceSkatingOutlined.tsx b/src/IconIceSkatingOutlined.tsx new file mode 100644 index 000000000..603848467 --- /dev/null +++ b/src/IconIceSkatingOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconIceSkatingOutlined as default } diff --git a/src/IconIceSkatingRound.tsx b/src/IconIceSkatingRound.tsx new file mode 100644 index 000000000..060dc834b --- /dev/null +++ b/src/IconIceSkatingRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconIceSkatingRound as default } diff --git a/src/IconIceSkatingSharp.tsx b/src/IconIceSkatingSharp.tsx new file mode 100644 index 000000000..b7d6fd17b --- /dev/null +++ b/src/IconIceSkatingSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconIceSkatingSharp as default } diff --git a/src/IconIceSkatingTwoTone.tsx b/src/IconIceSkatingTwoTone.tsx new file mode 100644 index 000000000..d09f61039 --- /dev/null +++ b/src/IconIceSkatingTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconIceSkatingTwoTone as default } diff --git a/src/IconIcecreamOutlined.tsx b/src/IconIcecreamOutlined.tsx new file mode 100644 index 000000000..16dc2cb2b --- /dev/null +++ b/src/IconIcecreamOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconIcecreamOutlined as default } diff --git a/src/IconIcecreamRound.tsx b/src/IconIcecreamRound.tsx new file mode 100644 index 000000000..256ed765e --- /dev/null +++ b/src/IconIcecreamRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconIcecreamRound as default } diff --git a/src/IconIcecreamSharp.tsx b/src/IconIcecreamSharp.tsx new file mode 100644 index 000000000..035677cf0 --- /dev/null +++ b/src/IconIcecreamSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconIcecreamSharp as default } diff --git a/src/IconIcecreamTwoTone.tsx b/src/IconIcecreamTwoTone.tsx new file mode 100644 index 000000000..dddfab425 --- /dev/null +++ b/src/IconIcecreamTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconIcecreamTwoTone as default } diff --git a/src/IconImageAspectRatioOutlined.tsx b/src/IconImageAspectRatioOutlined.tsx new file mode 100644 index 000000000..ee2a59b61 --- /dev/null +++ b/src/IconImageAspectRatioOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageAspectRatioOutlined as default } diff --git a/src/IconImageAspectRatioRound.tsx b/src/IconImageAspectRatioRound.tsx new file mode 100644 index 000000000..d9083f06d --- /dev/null +++ b/src/IconImageAspectRatioRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageAspectRatioRound as default } diff --git a/src/IconImageAspectRatioSharp.tsx b/src/IconImageAspectRatioSharp.tsx new file mode 100644 index 000000000..ef464b62f --- /dev/null +++ b/src/IconImageAspectRatioSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageAspectRatioSharp as default } diff --git a/src/IconImageAspectRatioTwoTone.tsx b/src/IconImageAspectRatioTwoTone.tsx new file mode 100644 index 000000000..40a38909a --- /dev/null +++ b/src/IconImageAspectRatioTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconImageAspectRatioTwoTone as default } diff --git a/src/IconImageNotSupportedOutlined.tsx b/src/IconImageNotSupportedOutlined.tsx new file mode 100644 index 000000000..1b25b8515 --- /dev/null +++ b/src/IconImageNotSupportedOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageNotSupportedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconImageNotSupportedOutlined as default } diff --git a/src/IconImageNotSupportedRound.tsx b/src/IconImageNotSupportedRound.tsx new file mode 100644 index 000000000..4d1410d88 --- /dev/null +++ b/src/IconImageNotSupportedRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageNotSupportedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconImageNotSupportedRound as default } diff --git a/src/IconImageNotSupportedSharp.tsx b/src/IconImageNotSupportedSharp.tsx new file mode 100644 index 000000000..2c69355fe --- /dev/null +++ b/src/IconImageNotSupportedSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageNotSupportedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconImageNotSupportedSharp as default } diff --git a/src/IconImageNotSupportedTwoTone.tsx b/src/IconImageNotSupportedTwoTone.tsx new file mode 100644 index 000000000..ee5f444fe --- /dev/null +++ b/src/IconImageNotSupportedTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageNotSupportedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconImageNotSupportedTwoTone as default } diff --git a/src/IconImageOutlined.tsx b/src/IconImageOutlined.tsx new file mode 100644 index 000000000..62859303a --- /dev/null +++ b/src/IconImageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageOutlined as default } diff --git a/src/IconImageRound.tsx b/src/IconImageRound.tsx new file mode 100644 index 000000000..4fb73b796 --- /dev/null +++ b/src/IconImageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageRound as default } diff --git a/src/IconImageSearchOutlined.tsx b/src/IconImageSearchOutlined.tsx new file mode 100644 index 000000000..b8589f259 --- /dev/null +++ b/src/IconImageSearchOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageSearchOutlined as default } diff --git a/src/IconImageSearchRound.tsx b/src/IconImageSearchRound.tsx new file mode 100644 index 000000000..ee26a7404 --- /dev/null +++ b/src/IconImageSearchRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageSearchRound as default } diff --git a/src/IconImageSearchSharp.tsx b/src/IconImageSearchSharp.tsx new file mode 100644 index 000000000..df6ba7632 --- /dev/null +++ b/src/IconImageSearchSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageSearchSharp as default } diff --git a/src/IconImageSearchTwoTone.tsx b/src/IconImageSearchTwoTone.tsx new file mode 100644 index 000000000..cdd86b494 --- /dev/null +++ b/src/IconImageSearchTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconImageSearchTwoTone as default } diff --git a/src/IconImageSharp.tsx b/src/IconImageSharp.tsx new file mode 100644 index 000000000..afca4e91f --- /dev/null +++ b/src/IconImageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImageSharp as default } diff --git a/src/IconImageTwoTone.tsx b/src/IconImageTwoTone.tsx new file mode 100644 index 000000000..d2108784c --- /dev/null +++ b/src/IconImageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconImageTwoTone as default } diff --git a/src/IconImagesearchRollerOutlined.tsx b/src/IconImagesearchRollerOutlined.tsx new file mode 100644 index 000000000..937119abd --- /dev/null +++ b/src/IconImagesearchRollerOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconImagesearchRollerOutlined as default } diff --git a/src/IconImagesearchRollerRound.tsx b/src/IconImagesearchRollerRound.tsx new file mode 100644 index 000000000..ea992ef8a --- /dev/null +++ b/src/IconImagesearchRollerRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconImagesearchRollerRound as default } diff --git a/src/IconImagesearchRollerSharp.tsx b/src/IconImagesearchRollerSharp.tsx new file mode 100644 index 000000000..ba5c3e27d --- /dev/null +++ b/src/IconImagesearchRollerSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconImagesearchRollerSharp as default } diff --git a/src/IconImagesearchRollerTwoTone.tsx b/src/IconImagesearchRollerTwoTone.tsx new file mode 100644 index 000000000..d72b3ec5d --- /dev/null +++ b/src/IconImagesearchRollerTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconImagesearchRollerTwoTone as default } diff --git a/src/IconImportContactsOutlined.tsx b/src/IconImportContactsOutlined.tsx new file mode 100644 index 000000000..d319dd2ad --- /dev/null +++ b/src/IconImportContactsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportContactsOutlined as default } diff --git a/src/IconImportContactsRound.tsx b/src/IconImportContactsRound.tsx new file mode 100644 index 000000000..1246e54c7 --- /dev/null +++ b/src/IconImportContactsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportContactsRound as default } diff --git a/src/IconImportContactsSharp.tsx b/src/IconImportContactsSharp.tsx new file mode 100644 index 000000000..08af0236b --- /dev/null +++ b/src/IconImportContactsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportContactsSharp as default } diff --git a/src/IconImportContactsTwoTone.tsx b/src/IconImportContactsTwoTone.tsx new file mode 100644 index 000000000..638646874 --- /dev/null +++ b/src/IconImportContactsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconImportContactsTwoTone as default } diff --git a/src/IconImportExportOutlined.tsx b/src/IconImportExportOutlined.tsx new file mode 100644 index 000000000..db0253ff3 --- /dev/null +++ b/src/IconImportExportOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportExportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportExportOutlined as default } diff --git a/src/IconImportExportRound.tsx b/src/IconImportExportRound.tsx new file mode 100644 index 000000000..c764b96b2 --- /dev/null +++ b/src/IconImportExportRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportExportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportExportRound as default } diff --git a/src/IconImportExportSharp.tsx b/src/IconImportExportSharp.tsx new file mode 100644 index 000000000..72919bab2 --- /dev/null +++ b/src/IconImportExportSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportExportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportExportSharp as default } diff --git a/src/IconImportExportTwoTone.tsx b/src/IconImportExportTwoTone.tsx new file mode 100644 index 000000000..ae4ac5b44 --- /dev/null +++ b/src/IconImportExportTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportExportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportExportTwoTone as default } diff --git a/src/IconImportantDevicesOutlined.tsx b/src/IconImportantDevicesOutlined.tsx new file mode 100644 index 000000000..0bc08f764 --- /dev/null +++ b/src/IconImportantDevicesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportantDevicesOutlined as default } diff --git a/src/IconImportantDevicesRound.tsx b/src/IconImportantDevicesRound.tsx new file mode 100644 index 000000000..512714653 --- /dev/null +++ b/src/IconImportantDevicesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportantDevicesRound as default } diff --git a/src/IconImportantDevicesSharp.tsx b/src/IconImportantDevicesSharp.tsx new file mode 100644 index 000000000..811b64878 --- /dev/null +++ b/src/IconImportantDevicesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconImportantDevicesSharp as default } diff --git a/src/IconImportantDevicesTwoTone.tsx b/src/IconImportantDevicesTwoTone.tsx new file mode 100644 index 000000000..9e25748fb --- /dev/null +++ b/src/IconImportantDevicesTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconImportantDevicesTwoTone as default } diff --git a/src/IconInboxOutlined.tsx b/src/IconInboxOutlined.tsx new file mode 100644 index 000000000..e1861af70 --- /dev/null +++ b/src/IconInboxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInboxOutlined as default } diff --git a/src/IconInboxRound.tsx b/src/IconInboxRound.tsx new file mode 100644 index 000000000..92e831269 --- /dev/null +++ b/src/IconInboxRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInboxRound as default } diff --git a/src/IconInboxSharp.tsx b/src/IconInboxSharp.tsx new file mode 100644 index 000000000..f22c74ba0 --- /dev/null +++ b/src/IconInboxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInboxSharp as default } diff --git a/src/IconInboxTwoTone.tsx b/src/IconInboxTwoTone.tsx new file mode 100644 index 000000000..7172e7afb --- /dev/null +++ b/src/IconInboxTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInboxTwoTone as default } diff --git a/src/IconIncompleteCircleOutlined.tsx b/src/IconIncompleteCircleOutlined.tsx new file mode 100644 index 000000000..7f9e4f67b --- /dev/null +++ b/src/IconIncompleteCircleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIncompleteCircleOutlined as default } diff --git a/src/IconIncompleteCircleRound.tsx b/src/IconIncompleteCircleRound.tsx new file mode 100644 index 000000000..d698ab5b7 --- /dev/null +++ b/src/IconIncompleteCircleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIncompleteCircleRound as default } diff --git a/src/IconIncompleteCircleSharp.tsx b/src/IconIncompleteCircleSharp.tsx new file mode 100644 index 000000000..da0b835ea --- /dev/null +++ b/src/IconIncompleteCircleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIncompleteCircleSharp as default } diff --git a/src/IconIncompleteCircleTwoTone.tsx b/src/IconIncompleteCircleTwoTone.tsx new file mode 100644 index 000000000..0c863800d --- /dev/null +++ b/src/IconIncompleteCircleTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIncompleteCircleTwoTone as default } diff --git a/src/IconIndeterminateCheckBoxOutlined.tsx b/src/IconIndeterminateCheckBoxOutlined.tsx new file mode 100644 index 000000000..4e9b6cb0d --- /dev/null +++ b/src/IconIndeterminateCheckBoxOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconIndeterminateCheckBoxOutlined as default } diff --git a/src/IconIndeterminateCheckBoxRound.tsx b/src/IconIndeterminateCheckBoxRound.tsx new file mode 100644 index 000000000..d36c89c24 --- /dev/null +++ b/src/IconIndeterminateCheckBoxRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIndeterminateCheckBoxRound as default } diff --git a/src/IconIndeterminateCheckBoxSharp.tsx b/src/IconIndeterminateCheckBoxSharp.tsx new file mode 100644 index 000000000..3b89a94c0 --- /dev/null +++ b/src/IconIndeterminateCheckBoxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIndeterminateCheckBoxSharp as default } diff --git a/src/IconIndeterminateCheckBoxTwoTone.tsx b/src/IconIndeterminateCheckBoxTwoTone.tsx new file mode 100644 index 000000000..a297a4c26 --- /dev/null +++ b/src/IconIndeterminateCheckBoxTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconIndeterminateCheckBoxTwoTone as default } diff --git a/src/IconInfoOutlined.tsx b/src/IconInfoOutlined.tsx new file mode 100644 index 000000000..3fd853c8c --- /dev/null +++ b/src/IconInfoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInfoOutlined as default } diff --git a/src/IconInfoRound.tsx b/src/IconInfoRound.tsx new file mode 100644 index 000000000..b5a9b7979 --- /dev/null +++ b/src/IconInfoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInfoRound as default } diff --git a/src/IconInfoSharp.tsx b/src/IconInfoSharp.tsx new file mode 100644 index 000000000..0fd70e256 --- /dev/null +++ b/src/IconInfoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInfoSharp as default } diff --git a/src/IconInfoTwoTone.tsx b/src/IconInfoTwoTone.tsx new file mode 100644 index 000000000..750b243e8 --- /dev/null +++ b/src/IconInfoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInfoTwoTone as default } diff --git a/src/IconInputOutlined.tsx b/src/IconInputOutlined.tsx new file mode 100644 index 000000000..d9ab8806f --- /dev/null +++ b/src/IconInputOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconInputOutlined as default } diff --git a/src/IconInputRound.tsx b/src/IconInputRound.tsx new file mode 100644 index 000000000..19c8090ce --- /dev/null +++ b/src/IconInputRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconInputRound as default } diff --git a/src/IconInputSharp.tsx b/src/IconInputSharp.tsx new file mode 100644 index 000000000..3fc71cc05 --- /dev/null +++ b/src/IconInputSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconInputSharp as default } diff --git a/src/IconInputTwoTone.tsx b/src/IconInputTwoTone.tsx new file mode 100644 index 000000000..aefbf1fe6 --- /dev/null +++ b/src/IconInputTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconInputTwoTone as default } diff --git a/src/IconInsertChartOutlined.tsx b/src/IconInsertChartOutlined.tsx index 345b49219..b2984a438 100644 --- a/src/IconInsertChartOutlined.tsx +++ b/src/IconInsertChartOutlined.tsx @@ -4,8 +4,8 @@ import { IconProps } from './types' const IconInsertChartOutlined: React.FC = ({ ...props }) => ( {props.title && {props.title}} - - + + ) diff --git a/src/IconInsertChartOutlinedOutlined.tsx b/src/IconInsertChartOutlinedOutlined.tsx new file mode 100644 index 000000000..2d296d278 --- /dev/null +++ b/src/IconInsertChartOutlinedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartOutlinedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertChartOutlinedOutlined as default } diff --git a/src/IconInsertChartOutlinedRound.tsx b/src/IconInsertChartOutlinedRound.tsx new file mode 100644 index 000000000..e9a43cd88 --- /dev/null +++ b/src/IconInsertChartOutlinedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartOutlinedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertChartOutlinedRound as default } diff --git a/src/IconInsertChartOutlinedSharp.tsx b/src/IconInsertChartOutlinedSharp.tsx new file mode 100644 index 000000000..5cf7adc25 --- /dev/null +++ b/src/IconInsertChartOutlinedSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartOutlinedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertChartOutlinedSharp as default } diff --git a/src/IconInsertChartOutlinedTwoTone.tsx b/src/IconInsertChartOutlinedTwoTone.tsx new file mode 100644 index 000000000..40f63afe2 --- /dev/null +++ b/src/IconInsertChartOutlinedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartOutlinedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertChartOutlinedTwoTone as default } diff --git a/src/IconInsertChartRound.tsx b/src/IconInsertChartRound.tsx new file mode 100644 index 000000000..87d19a36b --- /dev/null +++ b/src/IconInsertChartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertChartRound as default } diff --git a/src/IconInsertChartSharp.tsx b/src/IconInsertChartSharp.tsx new file mode 100644 index 000000000..635b1bbbe --- /dev/null +++ b/src/IconInsertChartSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertChartSharp as default } diff --git a/src/IconInsertChartTwoTone.tsx b/src/IconInsertChartTwoTone.tsx new file mode 100644 index 000000000..4e6062d38 --- /dev/null +++ b/src/IconInsertChartTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInsertChartTwoTone as default } diff --git a/src/IconInsertCommentOutlined.tsx b/src/IconInsertCommentOutlined.tsx new file mode 100644 index 000000000..89751f176 --- /dev/null +++ b/src/IconInsertCommentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertCommentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertCommentOutlined as default } diff --git a/src/IconInsertCommentRound.tsx b/src/IconInsertCommentRound.tsx new file mode 100644 index 000000000..4116949df --- /dev/null +++ b/src/IconInsertCommentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertCommentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertCommentRound as default } diff --git a/src/IconInsertCommentSharp.tsx b/src/IconInsertCommentSharp.tsx new file mode 100644 index 000000000..f945e864c --- /dev/null +++ b/src/IconInsertCommentSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertCommentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertCommentSharp as default } diff --git a/src/IconInsertCommentTwoTone.tsx b/src/IconInsertCommentTwoTone.tsx new file mode 100644 index 000000000..9215971b0 --- /dev/null +++ b/src/IconInsertCommentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertCommentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInsertCommentTwoTone as default } diff --git a/src/IconInsertDriveFileOutlined.tsx b/src/IconInsertDriveFileOutlined.tsx new file mode 100644 index 000000000..40040179d --- /dev/null +++ b/src/IconInsertDriveFileOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertDriveFileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertDriveFileOutlined as default } diff --git a/src/IconInsertDriveFileRound.tsx b/src/IconInsertDriveFileRound.tsx new file mode 100644 index 000000000..2f144dcf9 --- /dev/null +++ b/src/IconInsertDriveFileRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertDriveFileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertDriveFileRound as default } diff --git a/src/IconInsertDriveFileSharp.tsx b/src/IconInsertDriveFileSharp.tsx new file mode 100644 index 000000000..d71e1bee0 --- /dev/null +++ b/src/IconInsertDriveFileSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertDriveFileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertDriveFileSharp as default } diff --git a/src/IconInsertDriveFileTwoTone.tsx b/src/IconInsertDriveFileTwoTone.tsx new file mode 100644 index 000000000..1d5fae94d --- /dev/null +++ b/src/IconInsertDriveFileTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertDriveFileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInsertDriveFileTwoTone as default } diff --git a/src/IconInsertEmoticonOutlined.tsx b/src/IconInsertEmoticonOutlined.tsx new file mode 100644 index 000000000..ce7e4749d --- /dev/null +++ b/src/IconInsertEmoticonOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertEmoticonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertEmoticonOutlined as default } diff --git a/src/IconInsertEmoticonRound.tsx b/src/IconInsertEmoticonRound.tsx new file mode 100644 index 000000000..b319f7845 --- /dev/null +++ b/src/IconInsertEmoticonRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertEmoticonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertEmoticonRound as default } diff --git a/src/IconInsertEmoticonSharp.tsx b/src/IconInsertEmoticonSharp.tsx new file mode 100644 index 000000000..d193b35c4 --- /dev/null +++ b/src/IconInsertEmoticonSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertEmoticonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertEmoticonSharp as default } diff --git a/src/IconInsertEmoticonTwoTone.tsx b/src/IconInsertEmoticonTwoTone.tsx new file mode 100644 index 000000000..2d7e0de9c --- /dev/null +++ b/src/IconInsertEmoticonTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertEmoticonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInsertEmoticonTwoTone as default } diff --git a/src/IconInsertInvitationOutlined.tsx b/src/IconInsertInvitationOutlined.tsx new file mode 100644 index 000000000..feb9ebf25 --- /dev/null +++ b/src/IconInsertInvitationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertInvitationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertInvitationOutlined as default } diff --git a/src/IconInsertInvitationRound.tsx b/src/IconInsertInvitationRound.tsx new file mode 100644 index 000000000..e8d1a0139 --- /dev/null +++ b/src/IconInsertInvitationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertInvitationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertInvitationRound as default } diff --git a/src/IconInsertInvitationSharp.tsx b/src/IconInsertInvitationSharp.tsx new file mode 100644 index 000000000..799d89861 --- /dev/null +++ b/src/IconInsertInvitationSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertInvitationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertInvitationSharp as default } diff --git a/src/IconInsertInvitationTwoTone.tsx b/src/IconInsertInvitationTwoTone.tsx new file mode 100644 index 000000000..ce2abbf8e --- /dev/null +++ b/src/IconInsertInvitationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertInvitationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInsertInvitationTwoTone as default } diff --git a/src/IconInsertLinkOutlined.tsx b/src/IconInsertLinkOutlined.tsx new file mode 100644 index 000000000..21c0253ea --- /dev/null +++ b/src/IconInsertLinkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertLinkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertLinkOutlined as default } diff --git a/src/IconInsertLinkRound.tsx b/src/IconInsertLinkRound.tsx new file mode 100644 index 000000000..4ca0d6762 --- /dev/null +++ b/src/IconInsertLinkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertLinkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertLinkRound as default } diff --git a/src/IconInsertLinkSharp.tsx b/src/IconInsertLinkSharp.tsx new file mode 100644 index 000000000..ecc961fec --- /dev/null +++ b/src/IconInsertLinkSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertLinkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertLinkSharp as default } diff --git a/src/IconInsertLinkTwoTone.tsx b/src/IconInsertLinkTwoTone.tsx new file mode 100644 index 000000000..72de28811 --- /dev/null +++ b/src/IconInsertLinkTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertLinkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertLinkTwoTone as default } diff --git a/src/IconInsertPageBreakOutlined.tsx b/src/IconInsertPageBreakOutlined.tsx new file mode 100644 index 000000000..caec08924 --- /dev/null +++ b/src/IconInsertPageBreakOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconInsertPageBreakOutlined as default } diff --git a/src/IconInsertPageBreakRound.tsx b/src/IconInsertPageBreakRound.tsx new file mode 100644 index 000000000..49b14ce60 --- /dev/null +++ b/src/IconInsertPageBreakRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconInsertPageBreakRound as default } diff --git a/src/IconInsertPageBreakSharp.tsx b/src/IconInsertPageBreakSharp.tsx new file mode 100644 index 000000000..d27d04e54 --- /dev/null +++ b/src/IconInsertPageBreakSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconInsertPageBreakSharp as default } diff --git a/src/IconInsertPageBreakTwoTone.tsx b/src/IconInsertPageBreakTwoTone.tsx new file mode 100644 index 000000000..955d1abcf --- /dev/null +++ b/src/IconInsertPageBreakTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconInsertPageBreakTwoTone as default } diff --git a/src/IconInsertPhotoOutlined.tsx b/src/IconInsertPhotoOutlined.tsx new file mode 100644 index 000000000..2c703b473 --- /dev/null +++ b/src/IconInsertPhotoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPhotoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertPhotoOutlined as default } diff --git a/src/IconInsertPhotoRound.tsx b/src/IconInsertPhotoRound.tsx new file mode 100644 index 000000000..9b6f762b5 --- /dev/null +++ b/src/IconInsertPhotoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPhotoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInsertPhotoRound as default } diff --git a/src/IconInsertPhotoSharp.tsx b/src/IconInsertPhotoSharp.tsx new file mode 100644 index 000000000..645ac9a5e --- /dev/null +++ b/src/IconInsertPhotoSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPhotoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertPhotoSharp as default } diff --git a/src/IconInsertPhotoTwoTone.tsx b/src/IconInsertPhotoTwoTone.tsx new file mode 100644 index 000000000..5d64de626 --- /dev/null +++ b/src/IconInsertPhotoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPhotoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInsertPhotoTwoTone as default } diff --git a/src/IconInsightsOutlined.tsx b/src/IconInsightsOutlined.tsx new file mode 100644 index 000000000..a8779a9c7 --- /dev/null +++ b/src/IconInsightsOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsightsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconInsightsOutlined as default } diff --git a/src/IconInsightsRound.tsx b/src/IconInsightsRound.tsx new file mode 100644 index 000000000..5c2adb9e3 --- /dev/null +++ b/src/IconInsightsRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsightsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconInsightsRound as default } diff --git a/src/IconInsightsSharp.tsx b/src/IconInsightsSharp.tsx new file mode 100644 index 000000000..fba347a3c --- /dev/null +++ b/src/IconInsightsSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsightsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconInsightsSharp as default } diff --git a/src/IconInsightsTwoTone.tsx b/src/IconInsightsTwoTone.tsx new file mode 100644 index 000000000..b5c8f6f5c --- /dev/null +++ b/src/IconInsightsTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsightsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconInsightsTwoTone as default } diff --git a/src/IconInstallDesktopOutlined.tsx b/src/IconInstallDesktopOutlined.tsx new file mode 100644 index 000000000..dd982daa7 --- /dev/null +++ b/src/IconInstallDesktopOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallDesktopOutlined as default } diff --git a/src/IconInstallDesktopRound.tsx b/src/IconInstallDesktopRound.tsx new file mode 100644 index 000000000..cc55b0b51 --- /dev/null +++ b/src/IconInstallDesktopRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconInstallDesktopRound as default } diff --git a/src/IconInstallDesktopSharp.tsx b/src/IconInstallDesktopSharp.tsx new file mode 100644 index 000000000..ec9f76b22 --- /dev/null +++ b/src/IconInstallDesktopSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallDesktopSharp as default } diff --git a/src/IconInstallDesktopTwoTone.tsx b/src/IconInstallDesktopTwoTone.tsx new file mode 100644 index 000000000..d6971f1dc --- /dev/null +++ b/src/IconInstallDesktopTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconInstallDesktopTwoTone as default } diff --git a/src/IconInstallMobileOutlined.tsx b/src/IconInstallMobileOutlined.tsx new file mode 100644 index 000000000..b929d597f --- /dev/null +++ b/src/IconInstallMobileOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallMobileOutlined as default } diff --git a/src/IconInstallMobileRound.tsx b/src/IconInstallMobileRound.tsx new file mode 100644 index 000000000..9487711b0 --- /dev/null +++ b/src/IconInstallMobileRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconInstallMobileRound as default } diff --git a/src/IconInstallMobileSharp.tsx b/src/IconInstallMobileSharp.tsx new file mode 100644 index 000000000..ce32b9291 --- /dev/null +++ b/src/IconInstallMobileSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInstallMobileSharp as default } diff --git a/src/IconInstallMobileTwoTone.tsx b/src/IconInstallMobileTwoTone.tsx new file mode 100644 index 000000000..bed3e4563 --- /dev/null +++ b/src/IconInstallMobileTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconInstallMobileTwoTone as default } diff --git a/src/IconIntegrationInstructionsOutlined.tsx b/src/IconIntegrationInstructionsOutlined.tsx new file mode 100644 index 000000000..0ff4f04c4 --- /dev/null +++ b/src/IconIntegrationInstructionsOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconIntegrationInstructionsOutlined as default } diff --git a/src/IconIntegrationInstructionsRound.tsx b/src/IconIntegrationInstructionsRound.tsx new file mode 100644 index 000000000..0e4f71d96 --- /dev/null +++ b/src/IconIntegrationInstructionsRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconIntegrationInstructionsRound as default } diff --git a/src/IconIntegrationInstructionsSharp.tsx b/src/IconIntegrationInstructionsSharp.tsx new file mode 100644 index 000000000..ba371f90d --- /dev/null +++ b/src/IconIntegrationInstructionsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconIntegrationInstructionsSharp as default } diff --git a/src/IconIntegrationInstructionsTwoTone.tsx b/src/IconIntegrationInstructionsTwoTone.tsx new file mode 100644 index 000000000..a6c2be966 --- /dev/null +++ b/src/IconIntegrationInstructionsTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconIntegrationInstructionsTwoTone as default } diff --git a/src/IconInterestsOutlined.tsx b/src/IconInterestsOutlined.tsx new file mode 100644 index 000000000..44e4a51ab --- /dev/null +++ b/src/IconInterestsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterestsOutlined as default } diff --git a/src/IconInterestsRound.tsx b/src/IconInterestsRound.tsx new file mode 100644 index 000000000..c91f5654f --- /dev/null +++ b/src/IconInterestsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterestsRound as default } diff --git a/src/IconInterestsSharp.tsx b/src/IconInterestsSharp.tsx new file mode 100644 index 000000000..8e94fc4ee --- /dev/null +++ b/src/IconInterestsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterestsSharp as default } diff --git a/src/IconInterestsTwoTone.tsx b/src/IconInterestsTwoTone.tsx new file mode 100644 index 000000000..65ce347d9 --- /dev/null +++ b/src/IconInterestsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInterestsTwoTone as default } diff --git a/src/IconInterpreterModeOutlined.tsx b/src/IconInterpreterModeOutlined.tsx new file mode 100644 index 000000000..d9d2cc792 --- /dev/null +++ b/src/IconInterpreterModeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterpreterModeOutlined as default } diff --git a/src/IconInterpreterModeRound.tsx b/src/IconInterpreterModeRound.tsx new file mode 100644 index 000000000..0b3c05166 --- /dev/null +++ b/src/IconInterpreterModeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterpreterModeRound as default } diff --git a/src/IconInterpreterModeSharp.tsx b/src/IconInterpreterModeSharp.tsx new file mode 100644 index 000000000..1e51b35b6 --- /dev/null +++ b/src/IconInterpreterModeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInterpreterModeSharp as default } diff --git a/src/IconInterpreterModeTwoTone.tsx b/src/IconInterpreterModeTwoTone.tsx new file mode 100644 index 000000000..4965fe7bd --- /dev/null +++ b/src/IconInterpreterModeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInterpreterModeTwoTone as default } diff --git a/src/IconInventory2Outlined.tsx b/src/IconInventory2Outlined.tsx new file mode 100644 index 000000000..79de3e0eb --- /dev/null +++ b/src/IconInventory2Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInventory2Outlined as default } diff --git a/src/IconInventory2Round.tsx b/src/IconInventory2Round.tsx new file mode 100644 index 000000000..fcfc158bc --- /dev/null +++ b/src/IconInventory2Round.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInventory2Round as default } diff --git a/src/IconInventory2Sharp.tsx b/src/IconInventory2Sharp.tsx new file mode 100644 index 000000000..608c17df9 --- /dev/null +++ b/src/IconInventory2Sharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInventory2Sharp as default } diff --git a/src/IconInventory2TwoTone.tsx b/src/IconInventory2TwoTone.tsx new file mode 100644 index 000000000..5b34000b8 --- /dev/null +++ b/src/IconInventory2TwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconInventory2TwoTone as default } diff --git a/src/IconInventoryOutlined.tsx b/src/IconInventoryOutlined.tsx new file mode 100644 index 000000000..0a08231e9 --- /dev/null +++ b/src/IconInventoryOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInventoryOutlined as default } diff --git a/src/IconInventoryRound.tsx b/src/IconInventoryRound.tsx new file mode 100644 index 000000000..11758727e --- /dev/null +++ b/src/IconInventoryRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInventoryRound as default } diff --git a/src/IconInventorySharp.tsx b/src/IconInventorySharp.tsx new file mode 100644 index 000000000..b9d0d5641 --- /dev/null +++ b/src/IconInventorySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInventorySharp as default } diff --git a/src/IconInventoryTwoTone.tsx b/src/IconInventoryTwoTone.tsx new file mode 100644 index 000000000..6fca1ff13 --- /dev/null +++ b/src/IconInventoryTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconInventoryTwoTone as default } diff --git a/src/IconInvertColorsOffOutlined.tsx b/src/IconInvertColorsOffOutlined.tsx new file mode 100644 index 000000000..754bd7d8b --- /dev/null +++ b/src/IconInvertColorsOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInvertColorsOffOutlined as default } diff --git a/src/IconInvertColorsOffRound.tsx b/src/IconInvertColorsOffRound.tsx new file mode 100644 index 000000000..79f10a4af --- /dev/null +++ b/src/IconInvertColorsOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInvertColorsOffRound as default } diff --git a/src/IconInvertColorsOffSharp.tsx b/src/IconInvertColorsOffSharp.tsx new file mode 100644 index 000000000..a4348601a --- /dev/null +++ b/src/IconInvertColorsOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconInvertColorsOffSharp as default } diff --git a/src/IconInvertColorsOffTwoTone.tsx b/src/IconInvertColorsOffTwoTone.tsx new file mode 100644 index 000000000..3e0dbde19 --- /dev/null +++ b/src/IconInvertColorsOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconInvertColorsOffTwoTone as default } diff --git a/src/IconInvertColorsOutlined.tsx b/src/IconInvertColorsOutlined.tsx new file mode 100644 index 000000000..b787ba76c --- /dev/null +++ b/src/IconInvertColorsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInvertColorsOutlined as default } diff --git a/src/IconInvertColorsRound.tsx b/src/IconInvertColorsRound.tsx new file mode 100644 index 000000000..e9b008564 --- /dev/null +++ b/src/IconInvertColorsRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInvertColorsRound as default } diff --git a/src/IconInvertColorsSharp.tsx b/src/IconInvertColorsSharp.tsx new file mode 100644 index 000000000..d280dfb0a --- /dev/null +++ b/src/IconInvertColorsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconInvertColorsSharp as default } diff --git a/src/IconInvertColorsTwoTone.tsx b/src/IconInvertColorsTwoTone.tsx new file mode 100644 index 000000000..ef5cdb3ba --- /dev/null +++ b/src/IconInvertColorsTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconInvertColorsTwoTone as default } diff --git a/src/IconIosShareOutlined.tsx b/src/IconIosShareOutlined.tsx new file mode 100644 index 000000000..b978c1574 --- /dev/null +++ b/src/IconIosShareOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconIosShareOutlined as default } diff --git a/src/IconIosShareRound.tsx b/src/IconIosShareRound.tsx new file mode 100644 index 000000000..288574579 --- /dev/null +++ b/src/IconIosShareRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconIosShareRound as default } diff --git a/src/IconIosShareSharp.tsx b/src/IconIosShareSharp.tsx new file mode 100644 index 000000000..8061dc58c --- /dev/null +++ b/src/IconIosShareSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconIosShareSharp as default } diff --git a/src/IconIosShareTwoTone.tsx b/src/IconIosShareTwoTone.tsx new file mode 100644 index 000000000..9a0cde412 --- /dev/null +++ b/src/IconIosShareTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconIosShareTwoTone as default } diff --git a/src/IconIronOutlined.tsx b/src/IconIronOutlined.tsx new file mode 100644 index 000000000..2e4f87c1c --- /dev/null +++ b/src/IconIronOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIronOutlined as default } diff --git a/src/IconIronRound.tsx b/src/IconIronRound.tsx new file mode 100644 index 000000000..48b52b868 --- /dev/null +++ b/src/IconIronRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIronRound as default } diff --git a/src/IconIronSharp.tsx b/src/IconIronSharp.tsx new file mode 100644 index 000000000..0985e779f --- /dev/null +++ b/src/IconIronSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIronSharp as default } diff --git a/src/IconIronTwoTone.tsx b/src/IconIronTwoTone.tsx new file mode 100644 index 000000000..4fb61bcff --- /dev/null +++ b/src/IconIronTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconIronTwoTone as default } diff --git a/src/IconIsoOutlined.tsx b/src/IconIsoOutlined.tsx new file mode 100644 index 000000000..a0bd3f734 --- /dev/null +++ b/src/IconIsoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIsoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIsoOutlined as default } diff --git a/src/IconIsoRound.tsx b/src/IconIsoRound.tsx new file mode 100644 index 000000000..457fcc819 --- /dev/null +++ b/src/IconIsoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIsoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIsoRound as default } diff --git a/src/IconIsoSharp.tsx b/src/IconIsoSharp.tsx new file mode 100644 index 000000000..7d5d5a6d0 --- /dev/null +++ b/src/IconIsoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIsoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconIsoSharp as default } diff --git a/src/IconIsoTwoTone.tsx b/src/IconIsoTwoTone.tsx new file mode 100644 index 000000000..c8ed66717 --- /dev/null +++ b/src/IconIsoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIsoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconIsoTwoTone as default } diff --git a/src/IconJavascriptOutlined.tsx b/src/IconJavascriptOutlined.tsx new file mode 100644 index 000000000..e75beed2a --- /dev/null +++ b/src/IconJavascriptOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconJavascriptOutlined as default } diff --git a/src/IconJavascriptRound.tsx b/src/IconJavascriptRound.tsx new file mode 100644 index 000000000..582308b16 --- /dev/null +++ b/src/IconJavascriptRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconJavascriptRound as default } diff --git a/src/IconJavascriptSharp.tsx b/src/IconJavascriptSharp.tsx new file mode 100644 index 000000000..b72f5baaf --- /dev/null +++ b/src/IconJavascriptSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconJavascriptSharp as default } diff --git a/src/IconJavascriptTwoTone.tsx b/src/IconJavascriptTwoTone.tsx new file mode 100644 index 000000000..6ede6d988 --- /dev/null +++ b/src/IconJavascriptTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconJavascriptTwoTone as default } diff --git a/src/IconJoinFullOutlined.tsx b/src/IconJoinFullOutlined.tsx new file mode 100644 index 000000000..6c599631d --- /dev/null +++ b/src/IconJoinFullOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinFullOutlined as default } diff --git a/src/IconJoinFullRound.tsx b/src/IconJoinFullRound.tsx new file mode 100644 index 000000000..c14686461 --- /dev/null +++ b/src/IconJoinFullRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconJoinFullRound as default } diff --git a/src/IconJoinFullSharp.tsx b/src/IconJoinFullSharp.tsx new file mode 100644 index 000000000..968433e04 --- /dev/null +++ b/src/IconJoinFullSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinFullSharp as default } diff --git a/src/IconJoinFullTwoTone.tsx b/src/IconJoinFullTwoTone.tsx new file mode 100644 index 000000000..94f6709f7 --- /dev/null +++ b/src/IconJoinFullTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinFullTwoTone as default } diff --git a/src/IconJoinInnerOutlined.tsx b/src/IconJoinInnerOutlined.tsx new file mode 100644 index 000000000..df2005345 --- /dev/null +++ b/src/IconJoinInnerOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinInnerOutlined as default } diff --git a/src/IconJoinInnerRound.tsx b/src/IconJoinInnerRound.tsx new file mode 100644 index 000000000..5a2df2f49 --- /dev/null +++ b/src/IconJoinInnerRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconJoinInnerRound as default } diff --git a/src/IconJoinInnerSharp.tsx b/src/IconJoinInnerSharp.tsx new file mode 100644 index 000000000..6d026bf50 --- /dev/null +++ b/src/IconJoinInnerSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinInnerSharp as default } diff --git a/src/IconJoinInnerTwoTone.tsx b/src/IconJoinInnerTwoTone.tsx new file mode 100644 index 000000000..bb7d3a4b6 --- /dev/null +++ b/src/IconJoinInnerTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconJoinInnerTwoTone as default } diff --git a/src/IconJoinLeftOutlined.tsx b/src/IconJoinLeftOutlined.tsx new file mode 100644 index 000000000..5409ca5da --- /dev/null +++ b/src/IconJoinLeftOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinLeftOutlined as default } diff --git a/src/IconJoinLeftRound.tsx b/src/IconJoinLeftRound.tsx new file mode 100644 index 000000000..becd27576 --- /dev/null +++ b/src/IconJoinLeftRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconJoinLeftRound as default } diff --git a/src/IconJoinLeftSharp.tsx b/src/IconJoinLeftSharp.tsx new file mode 100644 index 000000000..f6139ea26 --- /dev/null +++ b/src/IconJoinLeftSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinLeftSharp as default } diff --git a/src/IconJoinLeftTwoTone.tsx b/src/IconJoinLeftTwoTone.tsx new file mode 100644 index 000000000..a1826a559 --- /dev/null +++ b/src/IconJoinLeftTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinLeftTwoTone as default } diff --git a/src/IconJoinRightOutlined.tsx b/src/IconJoinRightOutlined.tsx new file mode 100644 index 000000000..0f3ac5e88 --- /dev/null +++ b/src/IconJoinRightOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinRightOutlined as default } diff --git a/src/IconJoinRightRound.tsx b/src/IconJoinRightRound.tsx new file mode 100644 index 000000000..a91aa5ca7 --- /dev/null +++ b/src/IconJoinRightRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconJoinRightRound as default } diff --git a/src/IconJoinRightSharp.tsx b/src/IconJoinRightSharp.tsx new file mode 100644 index 000000000..c754a50a9 --- /dev/null +++ b/src/IconJoinRightSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinRightSharp as default } diff --git a/src/IconJoinRightTwoTone.tsx b/src/IconJoinRightTwoTone.tsx new file mode 100644 index 000000000..3808b9070 --- /dev/null +++ b/src/IconJoinRightTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconJoinRightTwoTone as default } diff --git a/src/IconKayakingOutlined.tsx b/src/IconKayakingOutlined.tsx new file mode 100644 index 000000000..7f4f45c91 --- /dev/null +++ b/src/IconKayakingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKayakingOutlined as default } diff --git a/src/IconKayakingRound.tsx b/src/IconKayakingRound.tsx new file mode 100644 index 000000000..60ca75535 --- /dev/null +++ b/src/IconKayakingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKayakingRound as default } diff --git a/src/IconKayakingSharp.tsx b/src/IconKayakingSharp.tsx new file mode 100644 index 000000000..167c95620 --- /dev/null +++ b/src/IconKayakingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKayakingSharp as default } diff --git a/src/IconKayakingTwoTone.tsx b/src/IconKayakingTwoTone.tsx new file mode 100644 index 000000000..2fc570925 --- /dev/null +++ b/src/IconKayakingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKayakingTwoTone as default } diff --git a/src/IconKebabDiningOutlined.tsx b/src/IconKebabDiningOutlined.tsx new file mode 100644 index 000000000..1924d3dfd --- /dev/null +++ b/src/IconKebabDiningOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKebabDiningOutlined as default } diff --git a/src/IconKebabDiningRound.tsx b/src/IconKebabDiningRound.tsx new file mode 100644 index 000000000..f5853da10 --- /dev/null +++ b/src/IconKebabDiningRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKebabDiningRound as default } diff --git a/src/IconKebabDiningSharp.tsx b/src/IconKebabDiningSharp.tsx new file mode 100644 index 000000000..970ba7a3a --- /dev/null +++ b/src/IconKebabDiningSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKebabDiningSharp as default } diff --git a/src/IconKebabDiningTwoTone.tsx b/src/IconKebabDiningTwoTone.tsx new file mode 100644 index 000000000..75e35c9ee --- /dev/null +++ b/src/IconKebabDiningTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconKebabDiningTwoTone as default } diff --git a/src/IconKeyOffOutlined.tsx b/src/IconKeyOffOutlined.tsx new file mode 100644 index 000000000..578b81958 --- /dev/null +++ b/src/IconKeyOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyOffOutlined as default } diff --git a/src/IconKeyOffRound.tsx b/src/IconKeyOffRound.tsx new file mode 100644 index 000000000..f615e0391 --- /dev/null +++ b/src/IconKeyOffRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconKeyOffRound as default } diff --git a/src/IconKeyOffSharp.tsx b/src/IconKeyOffSharp.tsx new file mode 100644 index 000000000..e69e7ccfe --- /dev/null +++ b/src/IconKeyOffSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyOffSharp as default } diff --git a/src/IconKeyOffTwoTone.tsx b/src/IconKeyOffTwoTone.tsx new file mode 100644 index 000000000..113615807 --- /dev/null +++ b/src/IconKeyOffTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconKeyOffTwoTone as default } diff --git a/src/IconKeyOutlined.tsx b/src/IconKeyOutlined.tsx new file mode 100644 index 000000000..25a39d8f9 --- /dev/null +++ b/src/IconKeyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyOutlined as default } diff --git a/src/IconKeyRound.tsx b/src/IconKeyRound.tsx new file mode 100644 index 000000000..2305abd81 --- /dev/null +++ b/src/IconKeyRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconKeyRound as default } diff --git a/src/IconKeySharp.tsx b/src/IconKeySharp.tsx new file mode 100644 index 000000000..778efdc38 --- /dev/null +++ b/src/IconKeySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeySharp as default } diff --git a/src/IconKeyTwoTone.tsx b/src/IconKeyTwoTone.tsx new file mode 100644 index 000000000..10329ad85 --- /dev/null +++ b/src/IconKeyTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyTwoTone as default } diff --git a/src/IconKeyboardAltOutlined.tsx b/src/IconKeyboardAltOutlined.tsx new file mode 100644 index 000000000..33e6b1800 --- /dev/null +++ b/src/IconKeyboardAltOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardAltOutlined as default } diff --git a/src/IconKeyboardAltRound.tsx b/src/IconKeyboardAltRound.tsx new file mode 100644 index 000000000..3a75e57bd --- /dev/null +++ b/src/IconKeyboardAltRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardAltRound as default } diff --git a/src/IconKeyboardAltSharp.tsx b/src/IconKeyboardAltSharp.tsx new file mode 100644 index 000000000..48afbb49f --- /dev/null +++ b/src/IconKeyboardAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardAltSharp as default } diff --git a/src/IconKeyboardAltTwoTone.tsx b/src/IconKeyboardAltTwoTone.tsx new file mode 100644 index 000000000..61dce0765 --- /dev/null +++ b/src/IconKeyboardAltTwoTone.tsx @@ -0,0 +1,37 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconKeyboardAltTwoTone as default } diff --git a/src/IconKeyboardArrowDownOutlined.tsx b/src/IconKeyboardArrowDownOutlined.tsx new file mode 100644 index 000000000..8a9d7106c --- /dev/null +++ b/src/IconKeyboardArrowDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowDownOutlined as default } diff --git a/src/IconKeyboardArrowDownRound.tsx b/src/IconKeyboardArrowDownRound.tsx new file mode 100644 index 000000000..ddf606583 --- /dev/null +++ b/src/IconKeyboardArrowDownRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowDownRound as default } diff --git a/src/IconKeyboardArrowDownSharp.tsx b/src/IconKeyboardArrowDownSharp.tsx new file mode 100644 index 000000000..df30a72c6 --- /dev/null +++ b/src/IconKeyboardArrowDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowDownSharp as default } diff --git a/src/IconKeyboardArrowDownTwoTone.tsx b/src/IconKeyboardArrowDownTwoTone.tsx new file mode 100644 index 000000000..fa15a3492 --- /dev/null +++ b/src/IconKeyboardArrowDownTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowDownTwoTone as default } diff --git a/src/IconKeyboardArrowLeftOutlined.tsx b/src/IconKeyboardArrowLeftOutlined.tsx new file mode 100644 index 000000000..ebff8247d --- /dev/null +++ b/src/IconKeyboardArrowLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowLeftOutlined as default } diff --git a/src/IconKeyboardArrowLeftRound.tsx b/src/IconKeyboardArrowLeftRound.tsx new file mode 100644 index 000000000..7ed7b5306 --- /dev/null +++ b/src/IconKeyboardArrowLeftRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowLeftRound as default } diff --git a/src/IconKeyboardArrowLeftSharp.tsx b/src/IconKeyboardArrowLeftSharp.tsx new file mode 100644 index 000000000..7b77532cf --- /dev/null +++ b/src/IconKeyboardArrowLeftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowLeftSharp as default } diff --git a/src/IconKeyboardArrowLeftTwoTone.tsx b/src/IconKeyboardArrowLeftTwoTone.tsx new file mode 100644 index 000000000..714a7bc07 --- /dev/null +++ b/src/IconKeyboardArrowLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowLeftTwoTone as default } diff --git a/src/IconKeyboardArrowRightOutlined.tsx b/src/IconKeyboardArrowRightOutlined.tsx new file mode 100644 index 000000000..4245a41cc --- /dev/null +++ b/src/IconKeyboardArrowRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowRightOutlined as default } diff --git a/src/IconKeyboardArrowRightRound.tsx b/src/IconKeyboardArrowRightRound.tsx new file mode 100644 index 000000000..923042250 --- /dev/null +++ b/src/IconKeyboardArrowRightRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowRightRound as default } diff --git a/src/IconKeyboardArrowRightSharp.tsx b/src/IconKeyboardArrowRightSharp.tsx new file mode 100644 index 000000000..5895fba95 --- /dev/null +++ b/src/IconKeyboardArrowRightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowRightSharp as default } diff --git a/src/IconKeyboardArrowRightTwoTone.tsx b/src/IconKeyboardArrowRightTwoTone.tsx new file mode 100644 index 000000000..fd51d5916 --- /dev/null +++ b/src/IconKeyboardArrowRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowRightTwoTone as default } diff --git a/src/IconKeyboardArrowUpOutlined.tsx b/src/IconKeyboardArrowUpOutlined.tsx new file mode 100644 index 000000000..51c15d2f6 --- /dev/null +++ b/src/IconKeyboardArrowUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowUpOutlined as default } diff --git a/src/IconKeyboardArrowUpRound.tsx b/src/IconKeyboardArrowUpRound.tsx new file mode 100644 index 000000000..390b83dc2 --- /dev/null +++ b/src/IconKeyboardArrowUpRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowUpRound as default } diff --git a/src/IconKeyboardArrowUpSharp.tsx b/src/IconKeyboardArrowUpSharp.tsx new file mode 100644 index 000000000..79987dae6 --- /dev/null +++ b/src/IconKeyboardArrowUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowUpSharp as default } diff --git a/src/IconKeyboardArrowUpTwoTone.tsx b/src/IconKeyboardArrowUpTwoTone.tsx new file mode 100644 index 000000000..e6d295f83 --- /dev/null +++ b/src/IconKeyboardArrowUpTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardArrowUpTwoTone as default } diff --git a/src/IconKeyboardBackspaceOutlined.tsx b/src/IconKeyboardBackspaceOutlined.tsx new file mode 100644 index 000000000..68a2db52f --- /dev/null +++ b/src/IconKeyboardBackspaceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardBackspaceOutlined as default } diff --git a/src/IconKeyboardBackspaceRound.tsx b/src/IconKeyboardBackspaceRound.tsx new file mode 100644 index 000000000..863118971 --- /dev/null +++ b/src/IconKeyboardBackspaceRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardBackspaceRound as default } diff --git a/src/IconKeyboardBackspaceSharp.tsx b/src/IconKeyboardBackspaceSharp.tsx new file mode 100644 index 000000000..d8a219a9b --- /dev/null +++ b/src/IconKeyboardBackspaceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardBackspaceSharp as default } diff --git a/src/IconKeyboardBackspaceTwoTone.tsx b/src/IconKeyboardBackspaceTwoTone.tsx new file mode 100644 index 000000000..b43b32e63 --- /dev/null +++ b/src/IconKeyboardBackspaceTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardBackspaceTwoTone as default } diff --git a/src/IconKeyboardCapslockOutlined.tsx b/src/IconKeyboardCapslockOutlined.tsx new file mode 100644 index 000000000..fc831eee6 --- /dev/null +++ b/src/IconKeyboardCapslockOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardCapslockOutlined as default } diff --git a/src/IconKeyboardCapslockRound.tsx b/src/IconKeyboardCapslockRound.tsx new file mode 100644 index 000000000..ccc1f2baa --- /dev/null +++ b/src/IconKeyboardCapslockRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockRound as default } diff --git a/src/IconKeyboardCapslockSharp.tsx b/src/IconKeyboardCapslockSharp.tsx new file mode 100644 index 000000000..5688aa709 --- /dev/null +++ b/src/IconKeyboardCapslockSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardCapslockSharp as default } diff --git a/src/IconKeyboardCapslockTwoTone.tsx b/src/IconKeyboardCapslockTwoTone.tsx new file mode 100644 index 000000000..c07752de6 --- /dev/null +++ b/src/IconKeyboardCapslockTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardCapslockTwoTone as default } diff --git a/src/IconKeyboardCommandKeyOutlined.tsx b/src/IconKeyboardCommandKeyOutlined.tsx new file mode 100644 index 000000000..983b6777a --- /dev/null +++ b/src/IconKeyboardCommandKeyOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardCommandKeyOutlined as default } diff --git a/src/IconKeyboardCommandKeyRound.tsx b/src/IconKeyboardCommandKeyRound.tsx new file mode 100644 index 000000000..15afde9ec --- /dev/null +++ b/src/IconKeyboardCommandKeyRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardCommandKeyRound as default } diff --git a/src/IconKeyboardCommandKeySharp.tsx b/src/IconKeyboardCommandKeySharp.tsx new file mode 100644 index 000000000..3a6d800d8 --- /dev/null +++ b/src/IconKeyboardCommandKeySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardCommandKeySharp as default } diff --git a/src/IconKeyboardCommandKeyTwoTone.tsx b/src/IconKeyboardCommandKeyTwoTone.tsx new file mode 100644 index 000000000..a74ed192a --- /dev/null +++ b/src/IconKeyboardCommandKeyTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconKeyboardCommandKeyTwoTone as default } diff --git a/src/IconKeyboardControlKeyOutlined.tsx b/src/IconKeyboardControlKeyOutlined.tsx new file mode 100644 index 000000000..d67a4914a --- /dev/null +++ b/src/IconKeyboardControlKeyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyboardControlKeyOutlined as default } diff --git a/src/IconKeyboardControlKeyRound.tsx b/src/IconKeyboardControlKeyRound.tsx new file mode 100644 index 000000000..a8e1272d5 --- /dev/null +++ b/src/IconKeyboardControlKeyRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconKeyboardControlKeyRound as default } diff --git a/src/IconKeyboardControlKeySharp.tsx b/src/IconKeyboardControlKeySharp.tsx new file mode 100644 index 000000000..b63976a8f --- /dev/null +++ b/src/IconKeyboardControlKeySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyboardControlKeySharp as default } diff --git a/src/IconKeyboardControlKeyTwoTone.tsx b/src/IconKeyboardControlKeyTwoTone.tsx new file mode 100644 index 000000000..394db472c --- /dev/null +++ b/src/IconKeyboardControlKeyTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKeyboardControlKeyTwoTone as default } diff --git a/src/IconKeyboardDoubleArrowDownOutlined.tsx b/src/IconKeyboardDoubleArrowDownOutlined.tsx new file mode 100644 index 000000000..7ab137b0d --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowDownOutlined as default } diff --git a/src/IconKeyboardDoubleArrowDownRound.tsx b/src/IconKeyboardDoubleArrowDownRound.tsx new file mode 100644 index 000000000..3347e5740 --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowDownRound as default } diff --git a/src/IconKeyboardDoubleArrowDownSharp.tsx b/src/IconKeyboardDoubleArrowDownSharp.tsx new file mode 100644 index 000000000..67531ccf5 --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowDownSharp as default } diff --git a/src/IconKeyboardDoubleArrowDownTwoTone.tsx b/src/IconKeyboardDoubleArrowDownTwoTone.tsx new file mode 100644 index 000000000..798375829 --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowDownTwoTone as default } diff --git a/src/IconKeyboardDoubleArrowLeftOutlined.tsx b/src/IconKeyboardDoubleArrowLeftOutlined.tsx new file mode 100644 index 000000000..c2e12f647 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowLeftOutlined as default } diff --git a/src/IconKeyboardDoubleArrowLeftRound.tsx b/src/IconKeyboardDoubleArrowLeftRound.tsx new file mode 100644 index 000000000..1f5e9b4a2 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowLeftRound as default } diff --git a/src/IconKeyboardDoubleArrowLeftSharp.tsx b/src/IconKeyboardDoubleArrowLeftSharp.tsx new file mode 100644 index 000000000..7e056a960 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowLeftSharp as default } diff --git a/src/IconKeyboardDoubleArrowLeftTwoTone.tsx b/src/IconKeyboardDoubleArrowLeftTwoTone.tsx new file mode 100644 index 000000000..230f139a2 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowLeftTwoTone as default } diff --git a/src/IconKeyboardDoubleArrowRightOutlined.tsx b/src/IconKeyboardDoubleArrowRightOutlined.tsx new file mode 100644 index 000000000..f48c3cb68 --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowRightOutlined as default } diff --git a/src/IconKeyboardDoubleArrowRightRound.tsx b/src/IconKeyboardDoubleArrowRightRound.tsx new file mode 100644 index 000000000..0c99f01fb --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowRightRound as default } diff --git a/src/IconKeyboardDoubleArrowRightSharp.tsx b/src/IconKeyboardDoubleArrowRightSharp.tsx new file mode 100644 index 000000000..5841a68cc --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowRightSharp as default } diff --git a/src/IconKeyboardDoubleArrowRightTwoTone.tsx b/src/IconKeyboardDoubleArrowRightTwoTone.tsx new file mode 100644 index 000000000..cfc551d48 --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowRightTwoTone as default } diff --git a/src/IconKeyboardDoubleArrowUpOutlined.tsx b/src/IconKeyboardDoubleArrowUpOutlined.tsx new file mode 100644 index 000000000..f0686d2e8 --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowUpOutlined as default } diff --git a/src/IconKeyboardDoubleArrowUpRound.tsx b/src/IconKeyboardDoubleArrowUpRound.tsx new file mode 100644 index 000000000..d29e88d9c --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowUpRound as default } diff --git a/src/IconKeyboardDoubleArrowUpSharp.tsx b/src/IconKeyboardDoubleArrowUpSharp.tsx new file mode 100644 index 000000000..83206a4c5 --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowUpSharp as default } diff --git a/src/IconKeyboardDoubleArrowUpTwoTone.tsx b/src/IconKeyboardDoubleArrowUpTwoTone.tsx new file mode 100644 index 000000000..12481cc44 --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardDoubleArrowUpTwoTone as default } diff --git a/src/IconKeyboardHide.tsx b/src/IconKeyboardHide.tsx index 1ee4bc195..f4a61a705 100644 --- a/src/IconKeyboardHide.tsx +++ b/src/IconKeyboardHide.tsx @@ -5,7 +5,7 @@ const IconKeyboardHide: React.FC = ({ ...props }) => ( {props.title && {props.title}} - + ) diff --git a/src/IconKeyboardHideOutlined.tsx b/src/IconKeyboardHideOutlined.tsx new file mode 100644 index 000000000..add317016 --- /dev/null +++ b/src/IconKeyboardHideOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardHideOutlined as default } diff --git a/src/IconKeyboardHideRound.tsx b/src/IconKeyboardHideRound.tsx new file mode 100644 index 000000000..fc3f15096 --- /dev/null +++ b/src/IconKeyboardHideRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardHideRound as default } diff --git a/src/IconKeyboardHideSharp.tsx b/src/IconKeyboardHideSharp.tsx new file mode 100644 index 000000000..0a221f2c4 --- /dev/null +++ b/src/IconKeyboardHideSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardHideSharp as default } diff --git a/src/IconKeyboardHideTwoTone.tsx b/src/IconKeyboardHideTwoTone.tsx new file mode 100644 index 000000000..5e9e5f34d --- /dev/null +++ b/src/IconKeyboardHideTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconKeyboardHideTwoTone as default } diff --git a/src/IconKeyboardOptionKeyOutlined.tsx b/src/IconKeyboardOptionKeyOutlined.tsx new file mode 100644 index 000000000..3fb09d887 --- /dev/null +++ b/src/IconKeyboardOptionKeyOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardOptionKeyOutlined as default } diff --git a/src/IconKeyboardOptionKeyRound.tsx b/src/IconKeyboardOptionKeyRound.tsx new file mode 100644 index 000000000..63ecdefc9 --- /dev/null +++ b/src/IconKeyboardOptionKeyRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKeyboardOptionKeyRound as default } diff --git a/src/IconKeyboardOptionKeySharp.tsx b/src/IconKeyboardOptionKeySharp.tsx new file mode 100644 index 000000000..5e0a91a86 --- /dev/null +++ b/src/IconKeyboardOptionKeySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardOptionKeySharp as default } diff --git a/src/IconKeyboardOptionKeyTwoTone.tsx b/src/IconKeyboardOptionKeyTwoTone.tsx new file mode 100644 index 000000000..45b16a37b --- /dev/null +++ b/src/IconKeyboardOptionKeyTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKeyboardOptionKeyTwoTone as default } diff --git a/src/IconKeyboardOutlined.tsx b/src/IconKeyboardOutlined.tsx new file mode 100644 index 000000000..6cd88d03f --- /dev/null +++ b/src/IconKeyboardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardOutlined as default } diff --git a/src/IconKeyboardReturnOutlined.tsx b/src/IconKeyboardReturnOutlined.tsx new file mode 100644 index 000000000..c739b73a2 --- /dev/null +++ b/src/IconKeyboardReturnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardReturnOutlined as default } diff --git a/src/IconKeyboardReturnRound.tsx b/src/IconKeyboardReturnRound.tsx new file mode 100644 index 000000000..6975acfd0 --- /dev/null +++ b/src/IconKeyboardReturnRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardReturnRound as default } diff --git a/src/IconKeyboardReturnSharp.tsx b/src/IconKeyboardReturnSharp.tsx new file mode 100644 index 000000000..b5cbd475b --- /dev/null +++ b/src/IconKeyboardReturnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardReturnSharp as default } diff --git a/src/IconKeyboardReturnTwoTone.tsx b/src/IconKeyboardReturnTwoTone.tsx new file mode 100644 index 000000000..ceb1bd375 --- /dev/null +++ b/src/IconKeyboardReturnTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardReturnTwoTone as default } diff --git a/src/IconKeyboardRound.tsx b/src/IconKeyboardRound.tsx new file mode 100644 index 000000000..b8e5b8158 --- /dev/null +++ b/src/IconKeyboardRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardRound as default } diff --git a/src/IconKeyboardSharp.tsx b/src/IconKeyboardSharp.tsx new file mode 100644 index 000000000..5e6bdca08 --- /dev/null +++ b/src/IconKeyboardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardSharp as default } diff --git a/src/IconKeyboardTabOutlined.tsx b/src/IconKeyboardTabOutlined.tsx new file mode 100644 index 000000000..49b8aba4c --- /dev/null +++ b/src/IconKeyboardTabOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardTabOutlined as default } diff --git a/src/IconKeyboardTabRound.tsx b/src/IconKeyboardTabRound.tsx new file mode 100644 index 000000000..a1e360f80 --- /dev/null +++ b/src/IconKeyboardTabRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabRound as default } diff --git a/src/IconKeyboardTabSharp.tsx b/src/IconKeyboardTabSharp.tsx new file mode 100644 index 000000000..1898a0cc5 --- /dev/null +++ b/src/IconKeyboardTabSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardTabSharp as default } diff --git a/src/IconKeyboardTabTwoTone.tsx b/src/IconKeyboardTabTwoTone.tsx new file mode 100644 index 000000000..09182bbc2 --- /dev/null +++ b/src/IconKeyboardTabTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardTabTwoTone as default } diff --git a/src/IconKeyboardTwoTone.tsx b/src/IconKeyboardTwoTone.tsx new file mode 100644 index 000000000..653310f3f --- /dev/null +++ b/src/IconKeyboardTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconKeyboardTwoTone as default } diff --git a/src/IconKeyboardVoiceOutlined.tsx b/src/IconKeyboardVoiceOutlined.tsx new file mode 100644 index 000000000..f40da66e7 --- /dev/null +++ b/src/IconKeyboardVoiceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardVoiceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardVoiceOutlined as default } diff --git a/src/IconKeyboardVoiceRound.tsx b/src/IconKeyboardVoiceRound.tsx new file mode 100644 index 000000000..7a01deff8 --- /dev/null +++ b/src/IconKeyboardVoiceRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardVoiceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardVoiceRound as default } diff --git a/src/IconKeyboardVoiceSharp.tsx b/src/IconKeyboardVoiceSharp.tsx new file mode 100644 index 000000000..12ca9bc02 --- /dev/null +++ b/src/IconKeyboardVoiceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardVoiceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKeyboardVoiceSharp as default } diff --git a/src/IconKeyboardVoiceTwoTone.tsx b/src/IconKeyboardVoiceTwoTone.tsx new file mode 100644 index 000000000..e06d8b93c --- /dev/null +++ b/src/IconKeyboardVoiceTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardVoiceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconKeyboardVoiceTwoTone as default } diff --git a/src/IconKingBedOutlined.tsx b/src/IconKingBedOutlined.tsx new file mode 100644 index 000000000..67f21b542 --- /dev/null +++ b/src/IconKingBedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconKingBedOutlined as default } diff --git a/src/IconKingBedRound.tsx b/src/IconKingBedRound.tsx new file mode 100644 index 000000000..4481e5bcf --- /dev/null +++ b/src/IconKingBedRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconKingBedRound as default } diff --git a/src/IconKingBedSharp.tsx b/src/IconKingBedSharp.tsx new file mode 100644 index 000000000..3e82ed2f9 --- /dev/null +++ b/src/IconKingBedSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconKingBedSharp as default } diff --git a/src/IconKingBedTwoTone.tsx b/src/IconKingBedTwoTone.tsx new file mode 100644 index 000000000..78d180d56 --- /dev/null +++ b/src/IconKingBedTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconKingBedTwoTone as default } diff --git a/src/IconKitchen.tsx b/src/IconKitchen.tsx index d1181c030..3171a87d7 100644 --- a/src/IconKitchen.tsx +++ b/src/IconKitchen.tsx @@ -2,10 +2,21 @@ import React from 'react' import { IconProps } from './types' const IconKitchen: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + ) diff --git a/src/IconKitchenOutlined.tsx b/src/IconKitchenOutlined.tsx new file mode 100644 index 000000000..4ba82b7c6 --- /dev/null +++ b/src/IconKitchenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKitchenOutlined as default } diff --git a/src/IconKitchenRound.tsx b/src/IconKitchenRound.tsx new file mode 100644 index 000000000..c7dbfa7e9 --- /dev/null +++ b/src/IconKitchenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKitchenRound as default } diff --git a/src/IconKitchenSharp.tsx b/src/IconKitchenSharp.tsx new file mode 100644 index 000000000..603c77420 --- /dev/null +++ b/src/IconKitchenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconKitchenSharp as default } diff --git a/src/IconKitchenTwoTone.tsx b/src/IconKitchenTwoTone.tsx new file mode 100644 index 000000000..700639050 --- /dev/null +++ b/src/IconKitchenTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconKitchenTwoTone as default } diff --git a/src/IconKitesurfingOutlined.tsx b/src/IconKitesurfingOutlined.tsx new file mode 100644 index 000000000..1e89da999 --- /dev/null +++ b/src/IconKitesurfingOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconKitesurfingOutlined as default } diff --git a/src/IconKitesurfingRound.tsx b/src/IconKitesurfingRound.tsx new file mode 100644 index 000000000..264a68d75 --- /dev/null +++ b/src/IconKitesurfingRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconKitesurfingRound as default } diff --git a/src/IconKitesurfingSharp.tsx b/src/IconKitesurfingSharp.tsx new file mode 100644 index 000000000..a2b99b8f0 --- /dev/null +++ b/src/IconKitesurfingSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconKitesurfingSharp as default } diff --git a/src/IconKitesurfingTwoTone.tsx b/src/IconKitesurfingTwoTone.tsx new file mode 100644 index 000000000..6ce31cec5 --- /dev/null +++ b/src/IconKitesurfingTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconKitesurfingTwoTone as default } diff --git a/src/IconLabelImportantOutlined.tsx b/src/IconLabelImportantOutlined.tsx new file mode 100644 index 000000000..9ed1f9d8e --- /dev/null +++ b/src/IconLabelImportantOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelImportantOutlined as default } diff --git a/src/IconLabelImportantRound.tsx b/src/IconLabelImportantRound.tsx new file mode 100644 index 000000000..d7ba93104 --- /dev/null +++ b/src/IconLabelImportantRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelImportantRound as default } diff --git a/src/IconLabelImportantSharp.tsx b/src/IconLabelImportantSharp.tsx new file mode 100644 index 000000000..02bcb2d09 --- /dev/null +++ b/src/IconLabelImportantSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelImportantSharp as default } diff --git a/src/IconLabelImportantTwoTone.tsx b/src/IconLabelImportantTwoTone.tsx new file mode 100644 index 000000000..bf2bb9f15 --- /dev/null +++ b/src/IconLabelImportantTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLabelImportantTwoTone as default } diff --git a/src/IconLabelOffOutlined.tsx b/src/IconLabelOffOutlined.tsx new file mode 100644 index 000000000..3aa29bc63 --- /dev/null +++ b/src/IconLabelOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelOffOutlined as default } diff --git a/src/IconLabelOffRound.tsx b/src/IconLabelOffRound.tsx new file mode 100644 index 000000000..66050ff82 --- /dev/null +++ b/src/IconLabelOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelOffRound as default } diff --git a/src/IconLabelOffSharp.tsx b/src/IconLabelOffSharp.tsx new file mode 100644 index 000000000..8c986342e --- /dev/null +++ b/src/IconLabelOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelOffSharp as default } diff --git a/src/IconLabelOffTwoTone.tsx b/src/IconLabelOffTwoTone.tsx new file mode 100644 index 000000000..4459365e8 --- /dev/null +++ b/src/IconLabelOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLabelOffTwoTone as default } diff --git a/src/IconLabelOutlined.tsx b/src/IconLabelOutlined.tsx new file mode 100644 index 000000000..52e822ab3 --- /dev/null +++ b/src/IconLabelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelOutlined as default } diff --git a/src/IconLabelRound.tsx b/src/IconLabelRound.tsx new file mode 100644 index 000000000..533511b47 --- /dev/null +++ b/src/IconLabelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelRound as default } diff --git a/src/IconLabelSharp.tsx b/src/IconLabelSharp.tsx new file mode 100644 index 000000000..cf46ebd74 --- /dev/null +++ b/src/IconLabelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLabelSharp as default } diff --git a/src/IconLabelTwoTone.tsx b/src/IconLabelTwoTone.tsx new file mode 100644 index 000000000..d1c63d8c1 --- /dev/null +++ b/src/IconLabelTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLabelTwoTone as default } diff --git a/src/IconLanOutlined.tsx b/src/IconLanOutlined.tsx new file mode 100644 index 000000000..ccb703884 --- /dev/null +++ b/src/IconLanOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLanOutlined as default } diff --git a/src/IconLanRound.tsx b/src/IconLanRound.tsx new file mode 100644 index 000000000..04f37212f --- /dev/null +++ b/src/IconLanRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLanRound as default } diff --git a/src/IconLanSharp.tsx b/src/IconLanSharp.tsx new file mode 100644 index 000000000..785651ec7 --- /dev/null +++ b/src/IconLanSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLanSharp as default } diff --git a/src/IconLanTwoTone.tsx b/src/IconLanTwoTone.tsx new file mode 100644 index 000000000..053a83f50 --- /dev/null +++ b/src/IconLanTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLanTwoTone as default } diff --git a/src/IconLandscapeOutlined.tsx b/src/IconLandscapeOutlined.tsx new file mode 100644 index 000000000..9087e2dd6 --- /dev/null +++ b/src/IconLandscapeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLandscapeOutlined as default } diff --git a/src/IconLandscapeRound.tsx b/src/IconLandscapeRound.tsx new file mode 100644 index 000000000..8f606061b --- /dev/null +++ b/src/IconLandscapeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLandscapeRound as default } diff --git a/src/IconLandscapeSharp.tsx b/src/IconLandscapeSharp.tsx new file mode 100644 index 000000000..a7b2ff4b3 --- /dev/null +++ b/src/IconLandscapeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLandscapeSharp as default } diff --git a/src/IconLandscapeTwoTone.tsx b/src/IconLandscapeTwoTone.tsx new file mode 100644 index 000000000..bd448f9b2 --- /dev/null +++ b/src/IconLandscapeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLandscapeTwoTone as default } diff --git a/src/IconLandslideOutlined.tsx b/src/IconLandslideOutlined.tsx new file mode 100644 index 000000000..8a92acdd8 --- /dev/null +++ b/src/IconLandslideOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLandslideOutlined as default } diff --git a/src/IconLandslideRound.tsx b/src/IconLandslideRound.tsx new file mode 100644 index 000000000..b2d13fe8b --- /dev/null +++ b/src/IconLandslideRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconLandslideRound as default } diff --git a/src/IconLandslideSharp.tsx b/src/IconLandslideSharp.tsx new file mode 100644 index 000000000..9e57808af --- /dev/null +++ b/src/IconLandslideSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLandslideSharp as default } diff --git a/src/IconLandslideTwoTone.tsx b/src/IconLandslideTwoTone.tsx new file mode 100644 index 000000000..b413c160e --- /dev/null +++ b/src/IconLandslideTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconLandslideTwoTone as default } diff --git a/src/IconLanguageOutlined.tsx b/src/IconLanguageOutlined.tsx new file mode 100644 index 000000000..b4875d562 --- /dev/null +++ b/src/IconLanguageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLanguageOutlined as default } diff --git a/src/IconLanguageRound.tsx b/src/IconLanguageRound.tsx new file mode 100644 index 000000000..d2331105c --- /dev/null +++ b/src/IconLanguageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLanguageRound as default } diff --git a/src/IconLanguageSharp.tsx b/src/IconLanguageSharp.tsx new file mode 100644 index 000000000..b75d423be --- /dev/null +++ b/src/IconLanguageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLanguageSharp as default } diff --git a/src/IconLanguageTwoTone.tsx b/src/IconLanguageTwoTone.tsx new file mode 100644 index 000000000..846ed1876 --- /dev/null +++ b/src/IconLanguageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLanguageTwoTone as default } diff --git a/src/IconLaptopChromebookOutlined.tsx b/src/IconLaptopChromebookOutlined.tsx new file mode 100644 index 000000000..3af153a43 --- /dev/null +++ b/src/IconLaptopChromebookOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopChromebookOutlined as default } diff --git a/src/IconLaptopChromebookRound.tsx b/src/IconLaptopChromebookRound.tsx new file mode 100644 index 000000000..8b28b1bbf --- /dev/null +++ b/src/IconLaptopChromebookRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopChromebookRound as default } diff --git a/src/IconLaptopChromebookSharp.tsx b/src/IconLaptopChromebookSharp.tsx new file mode 100644 index 000000000..28f95daa9 --- /dev/null +++ b/src/IconLaptopChromebookSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopChromebookSharp as default } diff --git a/src/IconLaptopChromebookTwoTone.tsx b/src/IconLaptopChromebookTwoTone.tsx new file mode 100644 index 000000000..0be93597a --- /dev/null +++ b/src/IconLaptopChromebookTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLaptopChromebookTwoTone as default } diff --git a/src/IconLaptopMacOutlined.tsx b/src/IconLaptopMacOutlined.tsx new file mode 100644 index 000000000..2095af0d2 --- /dev/null +++ b/src/IconLaptopMacOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopMacOutlined as default } diff --git a/src/IconLaptopMacRound.tsx b/src/IconLaptopMacRound.tsx new file mode 100644 index 000000000..020467246 --- /dev/null +++ b/src/IconLaptopMacRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopMacRound as default } diff --git a/src/IconLaptopMacSharp.tsx b/src/IconLaptopMacSharp.tsx new file mode 100644 index 000000000..6000cded2 --- /dev/null +++ b/src/IconLaptopMacSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopMacSharp as default } diff --git a/src/IconLaptopMacTwoTone.tsx b/src/IconLaptopMacTwoTone.tsx new file mode 100644 index 000000000..8968914b0 --- /dev/null +++ b/src/IconLaptopMacTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLaptopMacTwoTone as default } diff --git a/src/IconLaptopOutlined.tsx b/src/IconLaptopOutlined.tsx new file mode 100644 index 000000000..b222b34ce --- /dev/null +++ b/src/IconLaptopOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLaptopOutlined as default } diff --git a/src/IconLaptopRound.tsx b/src/IconLaptopRound.tsx new file mode 100644 index 000000000..97899003c --- /dev/null +++ b/src/IconLaptopRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopRound as default } diff --git a/src/IconLaptopSharp.tsx b/src/IconLaptopSharp.tsx new file mode 100644 index 000000000..f241612df --- /dev/null +++ b/src/IconLaptopSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLaptopSharp as default } diff --git a/src/IconLaptopTwoTone.tsx b/src/IconLaptopTwoTone.tsx new file mode 100644 index 000000000..b60872cbb --- /dev/null +++ b/src/IconLaptopTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLaptopTwoTone as default } diff --git a/src/IconLaptopWindowsOutlined.tsx b/src/IconLaptopWindowsOutlined.tsx new file mode 100644 index 000000000..f1e5cba16 --- /dev/null +++ b/src/IconLaptopWindowsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopWindowsOutlined as default } diff --git a/src/IconLaptopWindowsRound.tsx b/src/IconLaptopWindowsRound.tsx new file mode 100644 index 000000000..f4a3c95ed --- /dev/null +++ b/src/IconLaptopWindowsRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopWindowsRound as default } diff --git a/src/IconLaptopWindowsSharp.tsx b/src/IconLaptopWindowsSharp.tsx new file mode 100644 index 000000000..f3adccc78 --- /dev/null +++ b/src/IconLaptopWindowsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaptopWindowsSharp as default } diff --git a/src/IconLaptopWindowsTwoTone.tsx b/src/IconLaptopWindowsTwoTone.tsx new file mode 100644 index 000000000..ab4a74588 --- /dev/null +++ b/src/IconLaptopWindowsTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLaptopWindowsTwoTone as default } diff --git a/src/IconLastPageOutlined.tsx b/src/IconLastPageOutlined.tsx new file mode 100644 index 000000000..cadbccb89 --- /dev/null +++ b/src/IconLastPageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLastPageOutlined as default } diff --git a/src/IconLastPageRound.tsx b/src/IconLastPageRound.tsx new file mode 100644 index 000000000..53424cb58 --- /dev/null +++ b/src/IconLastPageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLastPageRound as default } diff --git a/src/IconLastPageSharp.tsx b/src/IconLastPageSharp.tsx new file mode 100644 index 000000000..774715e2e --- /dev/null +++ b/src/IconLastPageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLastPageSharp as default } diff --git a/src/IconLastPageTwoTone.tsx b/src/IconLastPageTwoTone.tsx new file mode 100644 index 000000000..5a4ae4a0d --- /dev/null +++ b/src/IconLastPageTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLastPageTwoTone as default } diff --git a/src/IconLaunchOutlined.tsx b/src/IconLaunchOutlined.tsx new file mode 100644 index 000000000..fa7630730 --- /dev/null +++ b/src/IconLaunchOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaunchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaunchOutlined as default } diff --git a/src/IconLaunchRound.tsx b/src/IconLaunchRound.tsx new file mode 100644 index 000000000..3cba56574 --- /dev/null +++ b/src/IconLaunchRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaunchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaunchRound as default } diff --git a/src/IconLaunchSharp.tsx b/src/IconLaunchSharp.tsx new file mode 100644 index 000000000..aa2ce5b58 --- /dev/null +++ b/src/IconLaunchSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaunchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaunchSharp as default } diff --git a/src/IconLaunchTwoTone.tsx b/src/IconLaunchTwoTone.tsx new file mode 100644 index 000000000..d6edd94ce --- /dev/null +++ b/src/IconLaunchTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaunchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLaunchTwoTone as default } diff --git a/src/IconLayersClearOutlined.tsx b/src/IconLayersClearOutlined.tsx new file mode 100644 index 000000000..1d18ab9cb --- /dev/null +++ b/src/IconLayersClearOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersClearOutlined as default } diff --git a/src/IconLayersClearRound.tsx b/src/IconLayersClearRound.tsx new file mode 100644 index 000000000..a007e4792 --- /dev/null +++ b/src/IconLayersClearRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersClearRound as default } diff --git a/src/IconLayersClearSharp.tsx b/src/IconLayersClearSharp.tsx new file mode 100644 index 000000000..04a1b6bc4 --- /dev/null +++ b/src/IconLayersClearSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersClearSharp as default } diff --git a/src/IconLayersClearTwoTone.tsx b/src/IconLayersClearTwoTone.tsx new file mode 100644 index 000000000..8187f448b --- /dev/null +++ b/src/IconLayersClearTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLayersClearTwoTone as default } diff --git a/src/IconLayersOutlined.tsx b/src/IconLayersOutlined.tsx new file mode 100644 index 000000000..06f54139e --- /dev/null +++ b/src/IconLayersOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersOutlined as default } diff --git a/src/IconLayersRound.tsx b/src/IconLayersRound.tsx new file mode 100644 index 000000000..483ad41c1 --- /dev/null +++ b/src/IconLayersRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersRound as default } diff --git a/src/IconLayersSharp.tsx b/src/IconLayersSharp.tsx new file mode 100644 index 000000000..29c0af4ff --- /dev/null +++ b/src/IconLayersSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLayersSharp as default } diff --git a/src/IconLayersTwoTone.tsx b/src/IconLayersTwoTone.tsx new file mode 100644 index 000000000..ac3eedad6 --- /dev/null +++ b/src/IconLayersTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLayersTwoTone as default } diff --git a/src/IconLeaderboardOutlined.tsx b/src/IconLeaderboardOutlined.tsx new file mode 100644 index 000000000..81916d479 --- /dev/null +++ b/src/IconLeaderboardOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLeaderboardOutlined as default } diff --git a/src/IconLeaderboardRound.tsx b/src/IconLeaderboardRound.tsx new file mode 100644 index 000000000..60e9bdf63 --- /dev/null +++ b/src/IconLeaderboardRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLeaderboardRound as default } diff --git a/src/IconLeaderboardSharp.tsx b/src/IconLeaderboardSharp.tsx new file mode 100644 index 000000000..5a1063343 --- /dev/null +++ b/src/IconLeaderboardSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLeaderboardSharp as default } diff --git a/src/IconLeaderboardTwoTone.tsx b/src/IconLeaderboardTwoTone.tsx new file mode 100644 index 000000000..c79d4dc2a --- /dev/null +++ b/src/IconLeaderboardTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLeaderboardTwoTone as default } diff --git a/src/IconLeakAddOutlined.tsx b/src/IconLeakAddOutlined.tsx new file mode 100644 index 000000000..c36ba4d19 --- /dev/null +++ b/src/IconLeakAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakAddOutlined as default } diff --git a/src/IconLeakAddRound.tsx b/src/IconLeakAddRound.tsx new file mode 100644 index 000000000..6db5bceff --- /dev/null +++ b/src/IconLeakAddRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakAddRound as default } diff --git a/src/IconLeakAddSharp.tsx b/src/IconLeakAddSharp.tsx new file mode 100644 index 000000000..37090b085 --- /dev/null +++ b/src/IconLeakAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakAddSharp as default } diff --git a/src/IconLeakAddTwoTone.tsx b/src/IconLeakAddTwoTone.tsx new file mode 100644 index 000000000..b29576fbc --- /dev/null +++ b/src/IconLeakAddTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakAddTwoTone as default } diff --git a/src/IconLeakRemoveOutlined.tsx b/src/IconLeakRemoveOutlined.tsx new file mode 100644 index 000000000..e995ce780 --- /dev/null +++ b/src/IconLeakRemoveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakRemoveOutlined as default } diff --git a/src/IconLeakRemoveRound.tsx b/src/IconLeakRemoveRound.tsx new file mode 100644 index 000000000..1b5bc17a4 --- /dev/null +++ b/src/IconLeakRemoveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakRemoveRound as default } diff --git a/src/IconLeakRemoveSharp.tsx b/src/IconLeakRemoveSharp.tsx new file mode 100644 index 000000000..048342573 --- /dev/null +++ b/src/IconLeakRemoveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakRemoveSharp as default } diff --git a/src/IconLeakRemoveTwoTone.tsx b/src/IconLeakRemoveTwoTone.tsx new file mode 100644 index 000000000..4c275761f --- /dev/null +++ b/src/IconLeakRemoveTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLeakRemoveTwoTone as default } diff --git a/src/IconLegendToggleOutlined.tsx b/src/IconLegendToggleOutlined.tsx new file mode 100644 index 000000000..58cfc12ba --- /dev/null +++ b/src/IconLegendToggleOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLegendToggleOutlined as default } diff --git a/src/IconLegendToggleRound.tsx b/src/IconLegendToggleRound.tsx new file mode 100644 index 000000000..907cefd13 --- /dev/null +++ b/src/IconLegendToggleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLegendToggleRound as default } diff --git a/src/IconLegendToggleSharp.tsx b/src/IconLegendToggleSharp.tsx new file mode 100644 index 000000000..2e0e7e522 --- /dev/null +++ b/src/IconLegendToggleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLegendToggleSharp as default } diff --git a/src/IconLegendToggleTwoTone.tsx b/src/IconLegendToggleTwoTone.tsx new file mode 100644 index 000000000..79df1d2fd --- /dev/null +++ b/src/IconLegendToggleTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLegendToggleTwoTone as default } diff --git a/src/IconLensBlurOutlined.tsx b/src/IconLensBlurOutlined.tsx new file mode 100644 index 000000000..a1d00181a --- /dev/null +++ b/src/IconLensBlurOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLensBlurOutlined as default } diff --git a/src/IconLensBlurRound.tsx b/src/IconLensBlurRound.tsx new file mode 100644 index 000000000..ce88285f2 --- /dev/null +++ b/src/IconLensBlurRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLensBlurRound as default } diff --git a/src/IconLensBlurSharp.tsx b/src/IconLensBlurSharp.tsx new file mode 100644 index 000000000..85b64e314 --- /dev/null +++ b/src/IconLensBlurSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLensBlurSharp as default } diff --git a/src/IconLensBlurTwoTone.tsx b/src/IconLensBlurTwoTone.tsx new file mode 100644 index 000000000..dd52e5198 --- /dev/null +++ b/src/IconLensBlurTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLensBlurTwoTone as default } diff --git a/src/IconLensOutlined.tsx b/src/IconLensOutlined.tsx new file mode 100644 index 000000000..8287e669e --- /dev/null +++ b/src/IconLensOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLensOutlined as default } diff --git a/src/IconLensRound.tsx b/src/IconLensRound.tsx new file mode 100644 index 000000000..d91d90dd1 --- /dev/null +++ b/src/IconLensRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLensRound as default } diff --git a/src/IconLensSharp.tsx b/src/IconLensSharp.tsx new file mode 100644 index 000000000..24582caec --- /dev/null +++ b/src/IconLensSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLensSharp as default } diff --git a/src/IconLensTwoTone.tsx b/src/IconLensTwoTone.tsx new file mode 100644 index 000000000..363f5dbe2 --- /dev/null +++ b/src/IconLensTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLensTwoTone as default } diff --git a/src/IconLibraryAddCheckOutlined.tsx b/src/IconLibraryAddCheckOutlined.tsx new file mode 100644 index 000000000..9bc853459 --- /dev/null +++ b/src/IconLibraryAddCheckOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLibraryAddCheckOutlined as default } diff --git a/src/IconLibraryAddCheckRound.tsx b/src/IconLibraryAddCheckRound.tsx new file mode 100644 index 000000000..eea08a878 --- /dev/null +++ b/src/IconLibraryAddCheckRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryAddCheckRound as default } diff --git a/src/IconLibraryAddCheckSharp.tsx b/src/IconLibraryAddCheckSharp.tsx new file mode 100644 index 000000000..6d4373c43 --- /dev/null +++ b/src/IconLibraryAddCheckSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLibraryAddCheckSharp as default } diff --git a/src/IconLibraryAddCheckTwoTone.tsx b/src/IconLibraryAddCheckTwoTone.tsx new file mode 100644 index 000000000..a4bd6ed0b --- /dev/null +++ b/src/IconLibraryAddCheckTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLibraryAddCheckTwoTone as default } diff --git a/src/IconLibraryAddOutlined.tsx b/src/IconLibraryAddOutlined.tsx new file mode 100644 index 000000000..8b5a0e826 --- /dev/null +++ b/src/IconLibraryAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryAddOutlined as default } diff --git a/src/IconLibraryAddRound.tsx b/src/IconLibraryAddRound.tsx new file mode 100644 index 000000000..10266570c --- /dev/null +++ b/src/IconLibraryAddRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddRound as default } diff --git a/src/IconLibraryAddSharp.tsx b/src/IconLibraryAddSharp.tsx new file mode 100644 index 000000000..81ea908ff --- /dev/null +++ b/src/IconLibraryAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryAddSharp as default } diff --git a/src/IconLibraryAddTwoTone.tsx b/src/IconLibraryAddTwoTone.tsx new file mode 100644 index 000000000..b5f40965a --- /dev/null +++ b/src/IconLibraryAddTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLibraryAddTwoTone as default } diff --git a/src/IconLibraryBooksOutlined.tsx b/src/IconLibraryBooksOutlined.tsx new file mode 100644 index 000000000..ba4aed54d --- /dev/null +++ b/src/IconLibraryBooksOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryBooksOutlined as default } diff --git a/src/IconLibraryBooksRound.tsx b/src/IconLibraryBooksRound.tsx new file mode 100644 index 000000000..0013c6e45 --- /dev/null +++ b/src/IconLibraryBooksRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryBooksRound as default } diff --git a/src/IconLibraryBooksSharp.tsx b/src/IconLibraryBooksSharp.tsx new file mode 100644 index 000000000..1338bb6f6 --- /dev/null +++ b/src/IconLibraryBooksSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryBooksSharp as default } diff --git a/src/IconLibraryBooksTwoTone.tsx b/src/IconLibraryBooksTwoTone.tsx new file mode 100644 index 000000000..0a95dbd96 --- /dev/null +++ b/src/IconLibraryBooksTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLibraryBooksTwoTone as default } diff --git a/src/IconLibraryMusicOutlined.tsx b/src/IconLibraryMusicOutlined.tsx new file mode 100644 index 000000000..974914839 --- /dev/null +++ b/src/IconLibraryMusicOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryMusicOutlined as default } diff --git a/src/IconLibraryMusicRound.tsx b/src/IconLibraryMusicRound.tsx new file mode 100644 index 000000000..d7c40d5c5 --- /dev/null +++ b/src/IconLibraryMusicRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryMusicRound as default } diff --git a/src/IconLibraryMusicSharp.tsx b/src/IconLibraryMusicSharp.tsx new file mode 100644 index 000000000..de9017788 --- /dev/null +++ b/src/IconLibraryMusicSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLibraryMusicSharp as default } diff --git a/src/IconLibraryMusicTwoTone.tsx b/src/IconLibraryMusicTwoTone.tsx new file mode 100644 index 000000000..95360cebb --- /dev/null +++ b/src/IconLibraryMusicTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLibraryMusicTwoTone as default } diff --git a/src/IconLightModeOutlined.tsx b/src/IconLightModeOutlined.tsx new file mode 100644 index 000000000..a726986e3 --- /dev/null +++ b/src/IconLightModeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLightModeOutlined as default } diff --git a/src/IconLightModeRound.tsx b/src/IconLightModeRound.tsx new file mode 100644 index 000000000..bbc432d10 --- /dev/null +++ b/src/IconLightModeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLightModeRound as default } diff --git a/src/IconLightModeSharp.tsx b/src/IconLightModeSharp.tsx new file mode 100644 index 000000000..433722652 --- /dev/null +++ b/src/IconLightModeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLightModeSharp as default } diff --git a/src/IconLightModeTwoTone.tsx b/src/IconLightModeTwoTone.tsx new file mode 100644 index 000000000..d712a5315 --- /dev/null +++ b/src/IconLightModeTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLightModeTwoTone as default } diff --git a/src/IconLightOutlined.tsx b/src/IconLightOutlined.tsx new file mode 100644 index 000000000..df6a89d7d --- /dev/null +++ b/src/IconLightOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLightOutlined as default } diff --git a/src/IconLightRound.tsx b/src/IconLightRound.tsx new file mode 100644 index 000000000..31974a48d --- /dev/null +++ b/src/IconLightRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLightRound as default } diff --git a/src/IconLightSharp.tsx b/src/IconLightSharp.tsx new file mode 100644 index 000000000..86bccde0e --- /dev/null +++ b/src/IconLightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLightSharp as default } diff --git a/src/IconLightTwoTone.tsx b/src/IconLightTwoTone.tsx new file mode 100644 index 000000000..3d160a9ea --- /dev/null +++ b/src/IconLightTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLightTwoTone as default } diff --git a/src/IconLightbulbCircleOutlined.tsx b/src/IconLightbulbCircleOutlined.tsx new file mode 100644 index 000000000..31ed2d558 --- /dev/null +++ b/src/IconLightbulbCircleOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconLightbulbCircleOutlined as default } diff --git a/src/IconLightbulbCircleRound.tsx b/src/IconLightbulbCircleRound.tsx new file mode 100644 index 000000000..49ee58c20 --- /dev/null +++ b/src/IconLightbulbCircleRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLightbulbCircleRound as default } diff --git a/src/IconLightbulbCircleSharp.tsx b/src/IconLightbulbCircleSharp.tsx new file mode 100644 index 000000000..316a31233 --- /dev/null +++ b/src/IconLightbulbCircleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLightbulbCircleSharp as default } diff --git a/src/IconLightbulbCircleTwoTone.tsx b/src/IconLightbulbCircleTwoTone.tsx new file mode 100644 index 000000000..af4897395 --- /dev/null +++ b/src/IconLightbulbCircleTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLightbulbCircleTwoTone as default } diff --git a/src/IconLightbulbOutlined.tsx b/src/IconLightbulbOutlined.tsx new file mode 100644 index 000000000..53cb2822b --- /dev/null +++ b/src/IconLightbulbOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLightbulbOutlined as default } diff --git a/src/IconLightbulbRound.tsx b/src/IconLightbulbRound.tsx new file mode 100644 index 000000000..9f18b5e96 --- /dev/null +++ b/src/IconLightbulbRound.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconLightbulbRound as default } diff --git a/src/IconLightbulbSharp.tsx b/src/IconLightbulbSharp.tsx new file mode 100644 index 000000000..63783464c --- /dev/null +++ b/src/IconLightbulbSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconLightbulbSharp as default } diff --git a/src/IconLightbulbTwoTone.tsx b/src/IconLightbulbTwoTone.tsx new file mode 100644 index 000000000..7ec215494 --- /dev/null +++ b/src/IconLightbulbTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconLightbulbTwoTone as default } diff --git a/src/IconLineAxisOutlined.tsx b/src/IconLineAxisOutlined.tsx new file mode 100644 index 000000000..9345c1cc4 --- /dev/null +++ b/src/IconLineAxisOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLineAxisOutlined as default } diff --git a/src/IconLineAxisRound.tsx b/src/IconLineAxisRound.tsx new file mode 100644 index 000000000..60e824a99 --- /dev/null +++ b/src/IconLineAxisRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLineAxisRound as default } diff --git a/src/IconLineAxisSharp.tsx b/src/IconLineAxisSharp.tsx new file mode 100644 index 000000000..ef452b00f --- /dev/null +++ b/src/IconLineAxisSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLineAxisSharp as default } diff --git a/src/IconLineAxisTwoTone.tsx b/src/IconLineAxisTwoTone.tsx new file mode 100644 index 000000000..5473ce468 --- /dev/null +++ b/src/IconLineAxisTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLineAxisTwoTone as default } diff --git a/src/IconLineStyleOutlined.tsx b/src/IconLineStyleOutlined.tsx new file mode 100644 index 000000000..29ff44629 --- /dev/null +++ b/src/IconLineStyleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineStyleOutlined as default } diff --git a/src/IconLineStyleRound.tsx b/src/IconLineStyleRound.tsx new file mode 100644 index 000000000..db2e871b5 --- /dev/null +++ b/src/IconLineStyleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineStyleRound as default } diff --git a/src/IconLineStyleSharp.tsx b/src/IconLineStyleSharp.tsx new file mode 100644 index 000000000..694834ef9 --- /dev/null +++ b/src/IconLineStyleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineStyleSharp as default } diff --git a/src/IconLineStyleTwoTone.tsx b/src/IconLineStyleTwoTone.tsx new file mode 100644 index 000000000..ea3767f82 --- /dev/null +++ b/src/IconLineStyleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineStyleTwoTone as default } diff --git a/src/IconLineWeightOutlined.tsx b/src/IconLineWeightOutlined.tsx new file mode 100644 index 000000000..e16ddb175 --- /dev/null +++ b/src/IconLineWeightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineWeightOutlined as default } diff --git a/src/IconLineWeightRound.tsx b/src/IconLineWeightRound.tsx new file mode 100644 index 000000000..1d495105f --- /dev/null +++ b/src/IconLineWeightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineWeightRound as default } diff --git a/src/IconLineWeightSharp.tsx b/src/IconLineWeightSharp.tsx new file mode 100644 index 000000000..0756b1821 --- /dev/null +++ b/src/IconLineWeightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineWeightSharp as default } diff --git a/src/IconLineWeightTwoTone.tsx b/src/IconLineWeightTwoTone.tsx new file mode 100644 index 000000000..fc51a53c5 --- /dev/null +++ b/src/IconLineWeightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLineWeightTwoTone as default } diff --git a/src/IconLinearScaleOutlined.tsx b/src/IconLinearScaleOutlined.tsx new file mode 100644 index 000000000..d597386ff --- /dev/null +++ b/src/IconLinearScaleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinearScaleOutlined as default } diff --git a/src/IconLinearScaleRound.tsx b/src/IconLinearScaleRound.tsx new file mode 100644 index 000000000..e3950349e --- /dev/null +++ b/src/IconLinearScaleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinearScaleRound as default } diff --git a/src/IconLinearScaleSharp.tsx b/src/IconLinearScaleSharp.tsx new file mode 100644 index 000000000..065ab90a9 --- /dev/null +++ b/src/IconLinearScaleSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinearScaleSharp as default } diff --git a/src/IconLinearScaleTwoTone.tsx b/src/IconLinearScaleTwoTone.tsx new file mode 100644 index 000000000..19f30330e --- /dev/null +++ b/src/IconLinearScaleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinearScaleTwoTone as default } diff --git a/src/IconLinkOffOutlined.tsx b/src/IconLinkOffOutlined.tsx new file mode 100644 index 000000000..537c2ff66 --- /dev/null +++ b/src/IconLinkOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkOffOutlined as default } diff --git a/src/IconLinkOffRound.tsx b/src/IconLinkOffRound.tsx new file mode 100644 index 000000000..6ec5f9c12 --- /dev/null +++ b/src/IconLinkOffRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLinkOffRound as default } diff --git a/src/IconLinkOffSharp.tsx b/src/IconLinkOffSharp.tsx new file mode 100644 index 000000000..a97de87fb --- /dev/null +++ b/src/IconLinkOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkOffSharp as default } diff --git a/src/IconLinkOffTwoTone.tsx b/src/IconLinkOffTwoTone.tsx new file mode 100644 index 000000000..f73814bcd --- /dev/null +++ b/src/IconLinkOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkOffTwoTone as default } diff --git a/src/IconLinkOutlined.tsx b/src/IconLinkOutlined.tsx new file mode 100644 index 000000000..c3dbfbe63 --- /dev/null +++ b/src/IconLinkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkOutlined as default } diff --git a/src/IconLinkRound.tsx b/src/IconLinkRound.tsx new file mode 100644 index 000000000..f1d968e0c --- /dev/null +++ b/src/IconLinkRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLinkRound as default } diff --git a/src/IconLinkSharp.tsx b/src/IconLinkSharp.tsx new file mode 100644 index 000000000..82e41a317 --- /dev/null +++ b/src/IconLinkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkSharp as default } diff --git a/src/IconLinkTwoTone.tsx b/src/IconLinkTwoTone.tsx new file mode 100644 index 000000000..cf7694c27 --- /dev/null +++ b/src/IconLinkTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkTwoTone as default } diff --git a/src/IconLinkedCameraOutlined.tsx b/src/IconLinkedCameraOutlined.tsx new file mode 100644 index 000000000..4f1cb3304 --- /dev/null +++ b/src/IconLinkedCameraOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLinkedCameraOutlined as default } diff --git a/src/IconLinkedCameraRound.tsx b/src/IconLinkedCameraRound.tsx new file mode 100644 index 000000000..e20784d41 --- /dev/null +++ b/src/IconLinkedCameraRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconLinkedCameraRound as default } diff --git a/src/IconLinkedCameraSharp.tsx b/src/IconLinkedCameraSharp.tsx new file mode 100644 index 000000000..a15341d3b --- /dev/null +++ b/src/IconLinkedCameraSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLinkedCameraSharp as default } diff --git a/src/IconLinkedCameraTwoTone.tsx b/src/IconLinkedCameraTwoTone.tsx new file mode 100644 index 000000000..85cc43f6a --- /dev/null +++ b/src/IconLinkedCameraTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLinkedCameraTwoTone as default } diff --git a/src/IconLiquorOutlined.tsx b/src/IconLiquorOutlined.tsx new file mode 100644 index 000000000..633a08944 --- /dev/null +++ b/src/IconLiquorOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLiquorOutlined as default } diff --git a/src/IconLiquorRound.tsx b/src/IconLiquorRound.tsx new file mode 100644 index 000000000..a80d3d2a3 --- /dev/null +++ b/src/IconLiquorRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconLiquorRound as default } diff --git a/src/IconLiquorSharp.tsx b/src/IconLiquorSharp.tsx new file mode 100644 index 000000000..26223d966 --- /dev/null +++ b/src/IconLiquorSharp.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconLiquorSharp as default } diff --git a/src/IconLiquorTwoTone.tsx b/src/IconLiquorTwoTone.tsx new file mode 100644 index 000000000..371e9787c --- /dev/null +++ b/src/IconLiquorTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLiquorTwoTone as default } diff --git a/src/IconListAltOutlined.tsx b/src/IconListAltOutlined.tsx new file mode 100644 index 000000000..10c795b10 --- /dev/null +++ b/src/IconListAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconListAltOutlined as default } diff --git a/src/IconListAltRound.tsx b/src/IconListAltRound.tsx new file mode 100644 index 000000000..8774a640e --- /dev/null +++ b/src/IconListAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconListAltRound as default } diff --git a/src/IconListAltSharp.tsx b/src/IconListAltSharp.tsx new file mode 100644 index 000000000..62b6ff74e --- /dev/null +++ b/src/IconListAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconListAltSharp as default } diff --git a/src/IconListAltTwoTone.tsx b/src/IconListAltTwoTone.tsx new file mode 100644 index 000000000..00dfd165c --- /dev/null +++ b/src/IconListAltTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconListAltTwoTone as default } diff --git a/src/IconListOutlined.tsx b/src/IconListOutlined.tsx new file mode 100644 index 000000000..3849692b8 --- /dev/null +++ b/src/IconListOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconListOutlined as default } diff --git a/src/IconListRound.tsx b/src/IconListRound.tsx new file mode 100644 index 000000000..5883c69df --- /dev/null +++ b/src/IconListRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconListRound as default } diff --git a/src/IconListSharp.tsx b/src/IconListSharp.tsx new file mode 100644 index 000000000..0d91902b3 --- /dev/null +++ b/src/IconListSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconListSharp as default } diff --git a/src/IconListTwoTone.tsx b/src/IconListTwoTone.tsx new file mode 100644 index 000000000..beba19f32 --- /dev/null +++ b/src/IconListTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconListTwoTone as default } diff --git a/src/IconLiveHelpOutlined.tsx b/src/IconLiveHelpOutlined.tsx new file mode 100644 index 000000000..419b7a502 --- /dev/null +++ b/src/IconLiveHelpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveHelpOutlined as default } diff --git a/src/IconLiveHelpRound.tsx b/src/IconLiveHelpRound.tsx new file mode 100644 index 000000000..818af4658 --- /dev/null +++ b/src/IconLiveHelpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveHelpRound as default } diff --git a/src/IconLiveHelpSharp.tsx b/src/IconLiveHelpSharp.tsx new file mode 100644 index 000000000..4b092c044 --- /dev/null +++ b/src/IconLiveHelpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveHelpSharp as default } diff --git a/src/IconLiveHelpTwoTone.tsx b/src/IconLiveHelpTwoTone.tsx new file mode 100644 index 000000000..9f1b19a79 --- /dev/null +++ b/src/IconLiveHelpTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLiveHelpTwoTone as default } diff --git a/src/IconLiveTvOutlined.tsx b/src/IconLiveTvOutlined.tsx new file mode 100644 index 000000000..732dfbd55 --- /dev/null +++ b/src/IconLiveTvOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveTvOutlined as default } diff --git a/src/IconLiveTvRound.tsx b/src/IconLiveTvRound.tsx new file mode 100644 index 000000000..fd2dc3df6 --- /dev/null +++ b/src/IconLiveTvRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveTvRound as default } diff --git a/src/IconLiveTvSharp.tsx b/src/IconLiveTvSharp.tsx new file mode 100644 index 000000000..ffdd46081 --- /dev/null +++ b/src/IconLiveTvSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLiveTvSharp as default } diff --git a/src/IconLiveTvTwoTone.tsx b/src/IconLiveTvTwoTone.tsx new file mode 100644 index 000000000..dcf71e373 --- /dev/null +++ b/src/IconLiveTvTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLiveTvTwoTone as default } diff --git a/src/IconLivingOutlined.tsx b/src/IconLivingOutlined.tsx new file mode 100644 index 000000000..9a707bd37 --- /dev/null +++ b/src/IconLivingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLivingOutlined as default } diff --git a/src/IconLivingRound.tsx b/src/IconLivingRound.tsx new file mode 100644 index 000000000..0d7761bdc --- /dev/null +++ b/src/IconLivingRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLivingRound as default } diff --git a/src/IconLivingSharp.tsx b/src/IconLivingSharp.tsx new file mode 100644 index 000000000..076ed18fe --- /dev/null +++ b/src/IconLivingSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLivingSharp as default } diff --git a/src/IconLivingTwoTone.tsx b/src/IconLivingTwoTone.tsx new file mode 100644 index 000000000..a2f827bc9 --- /dev/null +++ b/src/IconLivingTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLivingTwoTone as default } diff --git a/src/IconLocalActivityOutlined.tsx b/src/IconLocalActivityOutlined.tsx new file mode 100644 index 000000000..f105424a7 --- /dev/null +++ b/src/IconLocalActivityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalActivityOutlined as default } diff --git a/src/IconLocalActivityRound.tsx b/src/IconLocalActivityRound.tsx new file mode 100644 index 000000000..69a45271a --- /dev/null +++ b/src/IconLocalActivityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalActivityRound as default } diff --git a/src/IconLocalActivitySharp.tsx b/src/IconLocalActivitySharp.tsx new file mode 100644 index 000000000..fcb343e96 --- /dev/null +++ b/src/IconLocalActivitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalActivitySharp as default } diff --git a/src/IconLocalActivityTwoTone.tsx b/src/IconLocalActivityTwoTone.tsx new file mode 100644 index 000000000..4bdb3e3d7 --- /dev/null +++ b/src/IconLocalActivityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalActivityTwoTone as default } diff --git a/src/IconLocalAirportOutlined.tsx b/src/IconLocalAirportOutlined.tsx new file mode 100644 index 000000000..84acba494 --- /dev/null +++ b/src/IconLocalAirportOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAirportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalAirportOutlined as default } diff --git a/src/IconLocalAirportRound.tsx b/src/IconLocalAirportRound.tsx new file mode 100644 index 000000000..346e47776 --- /dev/null +++ b/src/IconLocalAirportRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAirportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalAirportRound as default } diff --git a/src/IconLocalAirportSharp.tsx b/src/IconLocalAirportSharp.tsx new file mode 100644 index 000000000..7239c1b47 --- /dev/null +++ b/src/IconLocalAirportSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAirportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalAirportSharp as default } diff --git a/src/IconLocalAirportTwoTone.tsx b/src/IconLocalAirportTwoTone.tsx new file mode 100644 index 000000000..89152e9ea --- /dev/null +++ b/src/IconLocalAirportTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAirportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalAirportTwoTone as default } diff --git a/src/IconLocalAtmOutlined.tsx b/src/IconLocalAtmOutlined.tsx new file mode 100644 index 000000000..387e085c3 --- /dev/null +++ b/src/IconLocalAtmOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalAtmOutlined as default } diff --git a/src/IconLocalAtmRound.tsx b/src/IconLocalAtmRound.tsx new file mode 100644 index 000000000..451a38817 --- /dev/null +++ b/src/IconLocalAtmRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalAtmRound as default } diff --git a/src/IconLocalAtmSharp.tsx b/src/IconLocalAtmSharp.tsx new file mode 100644 index 000000000..ee949bdf7 --- /dev/null +++ b/src/IconLocalAtmSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalAtmSharp as default } diff --git a/src/IconLocalAtmTwoTone.tsx b/src/IconLocalAtmTwoTone.tsx new file mode 100644 index 000000000..ec5780569 --- /dev/null +++ b/src/IconLocalAtmTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalAtmTwoTone as default } diff --git a/src/IconLocalBarOutlined.tsx b/src/IconLocalBarOutlined.tsx new file mode 100644 index 000000000..0c54d36e7 --- /dev/null +++ b/src/IconLocalBarOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalBarOutlined as default } diff --git a/src/IconLocalBarRound.tsx b/src/IconLocalBarRound.tsx new file mode 100644 index 000000000..4d4610df3 --- /dev/null +++ b/src/IconLocalBarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalBarRound as default } diff --git a/src/IconLocalBarSharp.tsx b/src/IconLocalBarSharp.tsx new file mode 100644 index 000000000..b4dd19172 --- /dev/null +++ b/src/IconLocalBarSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalBarSharp as default } diff --git a/src/IconLocalBarTwoTone.tsx b/src/IconLocalBarTwoTone.tsx new file mode 100644 index 000000000..603ecf855 --- /dev/null +++ b/src/IconLocalBarTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalBarTwoTone as default } diff --git a/src/IconLocalCafeOutlined.tsx b/src/IconLocalCafeOutlined.tsx new file mode 100644 index 000000000..c9705856a --- /dev/null +++ b/src/IconLocalCafeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalCafeOutlined as default } diff --git a/src/IconLocalCafeRound.tsx b/src/IconLocalCafeRound.tsx new file mode 100644 index 000000000..d00ca5138 --- /dev/null +++ b/src/IconLocalCafeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalCafeRound as default } diff --git a/src/IconLocalCafeSharp.tsx b/src/IconLocalCafeSharp.tsx new file mode 100644 index 000000000..af78834a3 --- /dev/null +++ b/src/IconLocalCafeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalCafeSharp as default } diff --git a/src/IconLocalCafeTwoTone.tsx b/src/IconLocalCafeTwoTone.tsx new file mode 100644 index 000000000..635b6e864 --- /dev/null +++ b/src/IconLocalCafeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalCafeTwoTone as default } diff --git a/src/IconLocalCarWashOutlined.tsx b/src/IconLocalCarWashOutlined.tsx new file mode 100644 index 000000000..ff54aa3d3 --- /dev/null +++ b/src/IconLocalCarWashOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalCarWashOutlined as default } diff --git a/src/IconLocalCarWashRound.tsx b/src/IconLocalCarWashRound.tsx new file mode 100644 index 000000000..49de3c4fe --- /dev/null +++ b/src/IconLocalCarWashRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalCarWashRound as default } diff --git a/src/IconLocalCarWashSharp.tsx b/src/IconLocalCarWashSharp.tsx new file mode 100644 index 000000000..b7373f8d0 --- /dev/null +++ b/src/IconLocalCarWashSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalCarWashSharp as default } diff --git a/src/IconLocalCarWashTwoTone.tsx b/src/IconLocalCarWashTwoTone.tsx new file mode 100644 index 000000000..d351527ef --- /dev/null +++ b/src/IconLocalCarWashTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLocalCarWashTwoTone as default } diff --git a/src/IconLocalConvenienceStoreOutlined.tsx b/src/IconLocalConvenienceStoreOutlined.tsx new file mode 100644 index 000000000..5a8efb182 --- /dev/null +++ b/src/IconLocalConvenienceStoreOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalConvenienceStoreOutlined as default } diff --git a/src/IconLocalConvenienceStoreRound.tsx b/src/IconLocalConvenienceStoreRound.tsx new file mode 100644 index 000000000..fe76d4074 --- /dev/null +++ b/src/IconLocalConvenienceStoreRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLocalConvenienceStoreRound as default } diff --git a/src/IconLocalConvenienceStoreSharp.tsx b/src/IconLocalConvenienceStoreSharp.tsx new file mode 100644 index 000000000..7d09e95f0 --- /dev/null +++ b/src/IconLocalConvenienceStoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalConvenienceStoreSharp as default } diff --git a/src/IconLocalConvenienceStoreTwoTone.tsx b/src/IconLocalConvenienceStoreTwoTone.tsx new file mode 100644 index 000000000..f84123fb5 --- /dev/null +++ b/src/IconLocalConvenienceStoreTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalConvenienceStoreTwoTone as default } diff --git a/src/IconLocalDiningOutlined.tsx b/src/IconLocalDiningOutlined.tsx new file mode 100644 index 000000000..fb9cec9f8 --- /dev/null +++ b/src/IconLocalDiningOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDiningOutlined as default } diff --git a/src/IconLocalDiningRound.tsx b/src/IconLocalDiningRound.tsx new file mode 100644 index 000000000..37996f00e --- /dev/null +++ b/src/IconLocalDiningRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDiningRound as default } diff --git a/src/IconLocalDiningSharp.tsx b/src/IconLocalDiningSharp.tsx new file mode 100644 index 000000000..66362fabd --- /dev/null +++ b/src/IconLocalDiningSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDiningSharp as default } diff --git a/src/IconLocalDiningTwoTone.tsx b/src/IconLocalDiningTwoTone.tsx new file mode 100644 index 000000000..d3f1685b8 --- /dev/null +++ b/src/IconLocalDiningTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDiningTwoTone as default } diff --git a/src/IconLocalDrinkOutlined.tsx b/src/IconLocalDrinkOutlined.tsx new file mode 100644 index 000000000..bdee5fedb --- /dev/null +++ b/src/IconLocalDrinkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDrinkOutlined as default } diff --git a/src/IconLocalDrinkRound.tsx b/src/IconLocalDrinkRound.tsx new file mode 100644 index 000000000..6f2c29938 --- /dev/null +++ b/src/IconLocalDrinkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDrinkRound as default } diff --git a/src/IconLocalDrinkSharp.tsx b/src/IconLocalDrinkSharp.tsx new file mode 100644 index 000000000..ef3e5c093 --- /dev/null +++ b/src/IconLocalDrinkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalDrinkSharp as default } diff --git a/src/IconLocalDrinkTwoTone.tsx b/src/IconLocalDrinkTwoTone.tsx new file mode 100644 index 000000000..f7798571f --- /dev/null +++ b/src/IconLocalDrinkTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalDrinkTwoTone as default } diff --git a/src/IconLocalFireDepartmentOutlined.tsx b/src/IconLocalFireDepartmentOutlined.tsx new file mode 100644 index 000000000..78ff1cbe8 --- /dev/null +++ b/src/IconLocalFireDepartmentOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLocalFireDepartmentOutlined as default } diff --git a/src/IconLocalFireDepartmentRound.tsx b/src/IconLocalFireDepartmentRound.tsx new file mode 100644 index 000000000..01dd1481c --- /dev/null +++ b/src/IconLocalFireDepartmentRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconLocalFireDepartmentRound as default } diff --git a/src/IconLocalFireDepartmentSharp.tsx b/src/IconLocalFireDepartmentSharp.tsx new file mode 100644 index 000000000..6c5825ab8 --- /dev/null +++ b/src/IconLocalFireDepartmentSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconLocalFireDepartmentSharp as default } diff --git a/src/IconLocalFireDepartmentTwoTone.tsx b/src/IconLocalFireDepartmentTwoTone.tsx new file mode 100644 index 000000000..7f2cbfa3d --- /dev/null +++ b/src/IconLocalFireDepartmentTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLocalFireDepartmentTwoTone as default } diff --git a/src/IconLocalFloristOutlined.tsx b/src/IconLocalFloristOutlined.tsx new file mode 100644 index 000000000..7dd5a5005 --- /dev/null +++ b/src/IconLocalFloristOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalFloristOutlined as default } diff --git a/src/IconLocalFloristRound.tsx b/src/IconLocalFloristRound.tsx new file mode 100644 index 000000000..b83c03d9b --- /dev/null +++ b/src/IconLocalFloristRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalFloristRound as default } diff --git a/src/IconLocalFloristSharp.tsx b/src/IconLocalFloristSharp.tsx new file mode 100644 index 000000000..4dc450073 --- /dev/null +++ b/src/IconLocalFloristSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalFloristSharp as default } diff --git a/src/IconLocalFloristTwoTone.tsx b/src/IconLocalFloristTwoTone.tsx new file mode 100644 index 000000000..26f3e1c53 --- /dev/null +++ b/src/IconLocalFloristTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalFloristTwoTone as default } diff --git a/src/IconLocalGasStationOutlined.tsx b/src/IconLocalGasStationOutlined.tsx new file mode 100644 index 000000000..6f4897571 --- /dev/null +++ b/src/IconLocalGasStationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGasStationOutlined as default } diff --git a/src/IconLocalGasStationRound.tsx b/src/IconLocalGasStationRound.tsx new file mode 100644 index 000000000..e118582cd --- /dev/null +++ b/src/IconLocalGasStationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGasStationRound as default } diff --git a/src/IconLocalGasStationSharp.tsx b/src/IconLocalGasStationSharp.tsx new file mode 100644 index 000000000..3194e2d87 --- /dev/null +++ b/src/IconLocalGasStationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGasStationSharp as default } diff --git a/src/IconLocalGasStationTwoTone.tsx b/src/IconLocalGasStationTwoTone.tsx new file mode 100644 index 000000000..8e6d8cfa3 --- /dev/null +++ b/src/IconLocalGasStationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalGasStationTwoTone as default } diff --git a/src/IconLocalGroceryStoreOutlined.tsx b/src/IconLocalGroceryStoreOutlined.tsx new file mode 100644 index 000000000..b3fd2f42d --- /dev/null +++ b/src/IconLocalGroceryStoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGroceryStoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGroceryStoreOutlined as default } diff --git a/src/IconLocalGroceryStoreRound.tsx b/src/IconLocalGroceryStoreRound.tsx new file mode 100644 index 000000000..a3ba7688a --- /dev/null +++ b/src/IconLocalGroceryStoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGroceryStoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGroceryStoreRound as default } diff --git a/src/IconLocalGroceryStoreSharp.tsx b/src/IconLocalGroceryStoreSharp.tsx new file mode 100644 index 000000000..945cb692d --- /dev/null +++ b/src/IconLocalGroceryStoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGroceryStoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalGroceryStoreSharp as default } diff --git a/src/IconLocalGroceryStoreTwoTone.tsx b/src/IconLocalGroceryStoreTwoTone.tsx new file mode 100644 index 000000000..df8db989c --- /dev/null +++ b/src/IconLocalGroceryStoreTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGroceryStoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalGroceryStoreTwoTone as default } diff --git a/src/IconLocalHospitalOutlined.tsx b/src/IconLocalHospitalOutlined.tsx new file mode 100644 index 000000000..0b6d5dbfd --- /dev/null +++ b/src/IconLocalHospitalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHospitalOutlined as default } diff --git a/src/IconLocalHospitalRound.tsx b/src/IconLocalHospitalRound.tsx new file mode 100644 index 000000000..d94533b65 --- /dev/null +++ b/src/IconLocalHospitalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHospitalRound as default } diff --git a/src/IconLocalHospitalSharp.tsx b/src/IconLocalHospitalSharp.tsx new file mode 100644 index 000000000..155675631 --- /dev/null +++ b/src/IconLocalHospitalSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHospitalSharp as default } diff --git a/src/IconLocalHospitalTwoTone.tsx b/src/IconLocalHospitalTwoTone.tsx new file mode 100644 index 000000000..40955b271 --- /dev/null +++ b/src/IconLocalHospitalTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalHospitalTwoTone as default } diff --git a/src/IconLocalHotelOutlined.tsx b/src/IconLocalHotelOutlined.tsx new file mode 100644 index 000000000..ad9906a14 --- /dev/null +++ b/src/IconLocalHotelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHotelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHotelOutlined as default } diff --git a/src/IconLocalHotelRound.tsx b/src/IconLocalHotelRound.tsx new file mode 100644 index 000000000..b7ef3494b --- /dev/null +++ b/src/IconLocalHotelRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHotelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHotelRound as default } diff --git a/src/IconLocalHotelSharp.tsx b/src/IconLocalHotelSharp.tsx new file mode 100644 index 000000000..3c7070236 --- /dev/null +++ b/src/IconLocalHotelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHotelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalHotelSharp as default } diff --git a/src/IconLocalHotelTwoTone.tsx b/src/IconLocalHotelTwoTone.tsx new file mode 100644 index 000000000..4204b991a --- /dev/null +++ b/src/IconLocalHotelTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHotelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalHotelTwoTone as default } diff --git a/src/IconLocalLaundryServiceOutlined.tsx b/src/IconLocalLaundryServiceOutlined.tsx new file mode 100644 index 000000000..653b84335 --- /dev/null +++ b/src/IconLocalLaundryServiceOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLocalLaundryServiceOutlined as default } diff --git a/src/IconLocalLaundryServiceRound.tsx b/src/IconLocalLaundryServiceRound.tsx new file mode 100644 index 000000000..e631ed057 --- /dev/null +++ b/src/IconLocalLaundryServiceRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLocalLaundryServiceRound as default } diff --git a/src/IconLocalLaundryServiceSharp.tsx b/src/IconLocalLaundryServiceSharp.tsx new file mode 100644 index 000000000..a5ca5593b --- /dev/null +++ b/src/IconLocalLaundryServiceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalLaundryServiceSharp as default } diff --git a/src/IconLocalLaundryServiceTwoTone.tsx b/src/IconLocalLaundryServiceTwoTone.tsx new file mode 100644 index 000000000..b2086dc28 --- /dev/null +++ b/src/IconLocalLaundryServiceTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLocalLaundryServiceTwoTone as default } diff --git a/src/IconLocalLibraryOutlined.tsx b/src/IconLocalLibraryOutlined.tsx new file mode 100644 index 000000000..802ae46fe --- /dev/null +++ b/src/IconLocalLibraryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibraryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalLibraryOutlined as default } diff --git a/src/IconLocalLibraryRound.tsx b/src/IconLocalLibraryRound.tsx new file mode 100644 index 000000000..100be1918 --- /dev/null +++ b/src/IconLocalLibraryRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibraryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalLibraryRound as default } diff --git a/src/IconLocalLibrarySharp.tsx b/src/IconLocalLibrarySharp.tsx new file mode 100644 index 000000000..50e68d085 --- /dev/null +++ b/src/IconLocalLibrarySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibrarySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalLibrarySharp as default } diff --git a/src/IconLocalLibraryTwoTone.tsx b/src/IconLocalLibraryTwoTone.tsx new file mode 100644 index 000000000..4d0bbbe9e --- /dev/null +++ b/src/IconLocalLibraryTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibraryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalLibraryTwoTone as default } diff --git a/src/IconLocalMallOutlined.tsx b/src/IconLocalMallOutlined.tsx new file mode 100644 index 000000000..d7825a033 --- /dev/null +++ b/src/IconLocalMallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMallOutlined as default } diff --git a/src/IconLocalMallRound.tsx b/src/IconLocalMallRound.tsx new file mode 100644 index 000000000..d6847a66d --- /dev/null +++ b/src/IconLocalMallRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMallRound as default } diff --git a/src/IconLocalMallSharp.tsx b/src/IconLocalMallSharp.tsx new file mode 100644 index 000000000..4098bbe0e --- /dev/null +++ b/src/IconLocalMallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMallSharp as default } diff --git a/src/IconLocalMallTwoTone.tsx b/src/IconLocalMallTwoTone.tsx new file mode 100644 index 000000000..8d7a1af6b --- /dev/null +++ b/src/IconLocalMallTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalMallTwoTone as default } diff --git a/src/IconLocalMoviesOutlined.tsx b/src/IconLocalMoviesOutlined.tsx new file mode 100644 index 000000000..ab17cab71 --- /dev/null +++ b/src/IconLocalMoviesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMoviesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMoviesOutlined as default } diff --git a/src/IconLocalMoviesRound.tsx b/src/IconLocalMoviesRound.tsx new file mode 100644 index 000000000..e3be3dece --- /dev/null +++ b/src/IconLocalMoviesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMoviesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMoviesRound as default } diff --git a/src/IconLocalMoviesSharp.tsx b/src/IconLocalMoviesSharp.tsx new file mode 100644 index 000000000..ee816039a --- /dev/null +++ b/src/IconLocalMoviesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMoviesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalMoviesSharp as default } diff --git a/src/IconLocalMoviesTwoTone.tsx b/src/IconLocalMoviesTwoTone.tsx new file mode 100644 index 000000000..4f74eb222 --- /dev/null +++ b/src/IconLocalMoviesTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMoviesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalMoviesTwoTone as default } diff --git a/src/IconLocalOfferOutlined.tsx b/src/IconLocalOfferOutlined.tsx new file mode 100644 index 000000000..4bea1190f --- /dev/null +++ b/src/IconLocalOfferOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalOfferOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalOfferOutlined as default } diff --git a/src/IconLocalOfferRound.tsx b/src/IconLocalOfferRound.tsx new file mode 100644 index 000000000..062f5cb11 --- /dev/null +++ b/src/IconLocalOfferRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalOfferRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalOfferRound as default } diff --git a/src/IconLocalOfferSharp.tsx b/src/IconLocalOfferSharp.tsx new file mode 100644 index 000000000..e48b51cd0 --- /dev/null +++ b/src/IconLocalOfferSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalOfferSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalOfferSharp as default } diff --git a/src/IconLocalOfferTwoTone.tsx b/src/IconLocalOfferTwoTone.tsx new file mode 100644 index 000000000..d79cf4b45 --- /dev/null +++ b/src/IconLocalOfferTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalOfferTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalOfferTwoTone as default } diff --git a/src/IconLocalParkingOutlined.tsx b/src/IconLocalParkingOutlined.tsx new file mode 100644 index 000000000..a6296e8b2 --- /dev/null +++ b/src/IconLocalParkingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalParkingOutlined as default } diff --git a/src/IconLocalParkingRound.tsx b/src/IconLocalParkingRound.tsx new file mode 100644 index 000000000..e97c696fd --- /dev/null +++ b/src/IconLocalParkingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalParkingRound as default } diff --git a/src/IconLocalParkingSharp.tsx b/src/IconLocalParkingSharp.tsx new file mode 100644 index 000000000..0a01b9455 --- /dev/null +++ b/src/IconLocalParkingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalParkingSharp as default } diff --git a/src/IconLocalParkingTwoTone.tsx b/src/IconLocalParkingTwoTone.tsx new file mode 100644 index 000000000..943d5fcda --- /dev/null +++ b/src/IconLocalParkingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalParkingTwoTone as default } diff --git a/src/IconLocalPharmacyOutlined.tsx b/src/IconLocalPharmacyOutlined.tsx new file mode 100644 index 000000000..13e6bd33f --- /dev/null +++ b/src/IconLocalPharmacyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPharmacyOutlined as default } diff --git a/src/IconLocalPharmacyRound.tsx b/src/IconLocalPharmacyRound.tsx new file mode 100644 index 000000000..f92620615 --- /dev/null +++ b/src/IconLocalPharmacyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPharmacyRound as default } diff --git a/src/IconLocalPharmacySharp.tsx b/src/IconLocalPharmacySharp.tsx new file mode 100644 index 000000000..c5cafc75a --- /dev/null +++ b/src/IconLocalPharmacySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPharmacySharp as default } diff --git a/src/IconLocalPharmacyTwoTone.tsx b/src/IconLocalPharmacyTwoTone.tsx new file mode 100644 index 000000000..cd200e700 --- /dev/null +++ b/src/IconLocalPharmacyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPharmacyTwoTone as default } diff --git a/src/IconLocalPhoneOutlined.tsx b/src/IconLocalPhoneOutlined.tsx new file mode 100644 index 000000000..ef576d871 --- /dev/null +++ b/src/IconLocalPhoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPhoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPhoneOutlined as default } diff --git a/src/IconLocalPhoneRound.tsx b/src/IconLocalPhoneRound.tsx new file mode 100644 index 000000000..4606909b0 --- /dev/null +++ b/src/IconLocalPhoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPhoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPhoneRound as default } diff --git a/src/IconLocalPhoneSharp.tsx b/src/IconLocalPhoneSharp.tsx new file mode 100644 index 000000000..f7f96c66f --- /dev/null +++ b/src/IconLocalPhoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPhoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPhoneSharp as default } diff --git a/src/IconLocalPhoneTwoTone.tsx b/src/IconLocalPhoneTwoTone.tsx new file mode 100644 index 000000000..bce36dabe --- /dev/null +++ b/src/IconLocalPhoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPhoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPhoneTwoTone as default } diff --git a/src/IconLocalPizzaOutlined.tsx b/src/IconLocalPizzaOutlined.tsx new file mode 100644 index 000000000..f0d6ea739 --- /dev/null +++ b/src/IconLocalPizzaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPizzaOutlined as default } diff --git a/src/IconLocalPizzaRound.tsx b/src/IconLocalPizzaRound.tsx new file mode 100644 index 000000000..a78473102 --- /dev/null +++ b/src/IconLocalPizzaRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPizzaRound as default } diff --git a/src/IconLocalPizzaSharp.tsx b/src/IconLocalPizzaSharp.tsx new file mode 100644 index 000000000..d86b0077b --- /dev/null +++ b/src/IconLocalPizzaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPizzaSharp as default } diff --git a/src/IconLocalPizzaTwoTone.tsx b/src/IconLocalPizzaTwoTone.tsx new file mode 100644 index 000000000..4ac0fd676 --- /dev/null +++ b/src/IconLocalPizzaTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPizzaTwoTone as default } diff --git a/src/IconLocalPlayOutlined.tsx b/src/IconLocalPlayOutlined.tsx new file mode 100644 index 000000000..7d840bb9f --- /dev/null +++ b/src/IconLocalPlayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPlayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPlayOutlined as default } diff --git a/src/IconLocalPlayRound.tsx b/src/IconLocalPlayRound.tsx new file mode 100644 index 000000000..7e8dd6d0e --- /dev/null +++ b/src/IconLocalPlayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPlayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPlayRound as default } diff --git a/src/IconLocalPlaySharp.tsx b/src/IconLocalPlaySharp.tsx new file mode 100644 index 000000000..99cbf3074 --- /dev/null +++ b/src/IconLocalPlaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPlaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPlaySharp as default } diff --git a/src/IconLocalPlayTwoTone.tsx b/src/IconLocalPlayTwoTone.tsx new file mode 100644 index 000000000..e6873fd26 --- /dev/null +++ b/src/IconLocalPlayTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPlayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPlayTwoTone as default } diff --git a/src/IconLocalPoliceOutlined.tsx b/src/IconLocalPoliceOutlined.tsx new file mode 100644 index 000000000..5d4fe38c4 --- /dev/null +++ b/src/IconLocalPoliceOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPoliceOutlined as default } diff --git a/src/IconLocalPoliceRound.tsx b/src/IconLocalPoliceRound.tsx new file mode 100644 index 000000000..e77d631d6 --- /dev/null +++ b/src/IconLocalPoliceRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPoliceRound as default } diff --git a/src/IconLocalPoliceSharp.tsx b/src/IconLocalPoliceSharp.tsx new file mode 100644 index 000000000..6bba58275 --- /dev/null +++ b/src/IconLocalPoliceSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPoliceSharp as default } diff --git a/src/IconLocalPoliceTwoTone.tsx b/src/IconLocalPoliceTwoTone.tsx new file mode 100644 index 000000000..277394abd --- /dev/null +++ b/src/IconLocalPoliceTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPoliceTwoTone as default } diff --git a/src/IconLocalPostOfficeOutlined.tsx b/src/IconLocalPostOfficeOutlined.tsx new file mode 100644 index 000000000..240b13f7a --- /dev/null +++ b/src/IconLocalPostOfficeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPostOfficeOutlined as default } diff --git a/src/IconLocalPostOfficeRound.tsx b/src/IconLocalPostOfficeRound.tsx new file mode 100644 index 000000000..1ea6e8198 --- /dev/null +++ b/src/IconLocalPostOfficeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPostOfficeRound as default } diff --git a/src/IconLocalPostOfficeSharp.tsx b/src/IconLocalPostOfficeSharp.tsx new file mode 100644 index 000000000..ff23d4026 --- /dev/null +++ b/src/IconLocalPostOfficeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPostOfficeSharp as default } diff --git a/src/IconLocalPostOfficeTwoTone.tsx b/src/IconLocalPostOfficeTwoTone.tsx new file mode 100644 index 000000000..93c6bff34 --- /dev/null +++ b/src/IconLocalPostOfficeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPostOfficeTwoTone as default } diff --git a/src/IconLocalPrintshopOutlined.tsx b/src/IconLocalPrintshopOutlined.tsx new file mode 100644 index 000000000..79470aa51 --- /dev/null +++ b/src/IconLocalPrintshopOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPrintshopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalPrintshopOutlined as default } diff --git a/src/IconLocalPrintshopRound.tsx b/src/IconLocalPrintshopRound.tsx new file mode 100644 index 000000000..6eebe71d5 --- /dev/null +++ b/src/IconLocalPrintshopRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPrintshopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLocalPrintshopRound as default } diff --git a/src/IconLocalPrintshopSharp.tsx b/src/IconLocalPrintshopSharp.tsx new file mode 100644 index 000000000..29c54c74e --- /dev/null +++ b/src/IconLocalPrintshopSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPrintshopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalPrintshopSharp as default } diff --git a/src/IconLocalPrintshopTwoTone.tsx b/src/IconLocalPrintshopTwoTone.tsx new file mode 100644 index 000000000..c46765f94 --- /dev/null +++ b/src/IconLocalPrintshopTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPrintshopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalPrintshopTwoTone as default } diff --git a/src/IconLocalSeeOutlined.tsx b/src/IconLocalSeeOutlined.tsx new file mode 100644 index 000000000..126d75b18 --- /dev/null +++ b/src/IconLocalSeeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalSeeOutlined as default } diff --git a/src/IconLocalSeeRound.tsx b/src/IconLocalSeeRound.tsx new file mode 100644 index 000000000..b4832780c --- /dev/null +++ b/src/IconLocalSeeRound.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconLocalSeeRound as default } diff --git a/src/IconLocalSeeSharp.tsx b/src/IconLocalSeeSharp.tsx new file mode 100644 index 000000000..77005a99f --- /dev/null +++ b/src/IconLocalSeeSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalSeeSharp as default } diff --git a/src/IconLocalSeeTwoTone.tsx b/src/IconLocalSeeTwoTone.tsx new file mode 100644 index 000000000..7abe6a532 --- /dev/null +++ b/src/IconLocalSeeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalSeeTwoTone as default } diff --git a/src/IconLocalShippingOutlined.tsx b/src/IconLocalShippingOutlined.tsx new file mode 100644 index 000000000..d203d0fcb --- /dev/null +++ b/src/IconLocalShippingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalShippingOutlined as default } diff --git a/src/IconLocalShippingRound.tsx b/src/IconLocalShippingRound.tsx new file mode 100644 index 000000000..206b1b09a --- /dev/null +++ b/src/IconLocalShippingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalShippingRound as default } diff --git a/src/IconLocalShippingSharp.tsx b/src/IconLocalShippingSharp.tsx new file mode 100644 index 000000000..e292a97b9 --- /dev/null +++ b/src/IconLocalShippingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalShippingSharp as default } diff --git a/src/IconLocalShippingTwoTone.tsx b/src/IconLocalShippingTwoTone.tsx new file mode 100644 index 000000000..9d71200ce --- /dev/null +++ b/src/IconLocalShippingTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocalShippingTwoTone as default } diff --git a/src/IconLocalTaxiOutlined.tsx b/src/IconLocalTaxiOutlined.tsx new file mode 100644 index 000000000..ec0ae9b19 --- /dev/null +++ b/src/IconLocalTaxiOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocalTaxiOutlined as default } diff --git a/src/IconLocalTaxiRound.tsx b/src/IconLocalTaxiRound.tsx new file mode 100644 index 000000000..e68824bd5 --- /dev/null +++ b/src/IconLocalTaxiRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalTaxiRound as default } diff --git a/src/IconLocalTaxiSharp.tsx b/src/IconLocalTaxiSharp.tsx new file mode 100644 index 000000000..ed9ece450 --- /dev/null +++ b/src/IconLocalTaxiSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocalTaxiSharp as default } diff --git a/src/IconLocalTaxiTwoTone.tsx b/src/IconLocalTaxiTwoTone.tsx new file mode 100644 index 000000000..51c66f88a --- /dev/null +++ b/src/IconLocalTaxiTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLocalTaxiTwoTone as default } diff --git a/src/IconLocationCityOutlined.tsx b/src/IconLocationCityOutlined.tsx new file mode 100644 index 000000000..78576a257 --- /dev/null +++ b/src/IconLocationCityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationCityOutlined as default } diff --git a/src/IconLocationCityRound.tsx b/src/IconLocationCityRound.tsx new file mode 100644 index 000000000..12b3022bd --- /dev/null +++ b/src/IconLocationCityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationCityRound as default } diff --git a/src/IconLocationCitySharp.tsx b/src/IconLocationCitySharp.tsx new file mode 100644 index 000000000..3f4927bba --- /dev/null +++ b/src/IconLocationCitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationCitySharp as default } diff --git a/src/IconLocationCityTwoTone.tsx b/src/IconLocationCityTwoTone.tsx new file mode 100644 index 000000000..4a5fa7bdb --- /dev/null +++ b/src/IconLocationCityTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationCityTwoTone as default } diff --git a/src/IconLocationDisabledOutlined.tsx b/src/IconLocationDisabledOutlined.tsx new file mode 100644 index 000000000..c699bfbbf --- /dev/null +++ b/src/IconLocationDisabledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationDisabledOutlined as default } diff --git a/src/IconLocationDisabledRound.tsx b/src/IconLocationDisabledRound.tsx new file mode 100644 index 000000000..753571b16 --- /dev/null +++ b/src/IconLocationDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationDisabledRound as default } diff --git a/src/IconLocationDisabledSharp.tsx b/src/IconLocationDisabledSharp.tsx new file mode 100644 index 000000000..a488bfea3 --- /dev/null +++ b/src/IconLocationDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationDisabledSharp as default } diff --git a/src/IconLocationDisabledTwoTone.tsx b/src/IconLocationDisabledTwoTone.tsx new file mode 100644 index 000000000..b39de489b --- /dev/null +++ b/src/IconLocationDisabledTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationDisabledTwoTone as default } diff --git a/src/IconLocationOffOutlined.tsx b/src/IconLocationOffOutlined.tsx new file mode 100644 index 000000000..80cb189cf --- /dev/null +++ b/src/IconLocationOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationOffOutlined as default } diff --git a/src/IconLocationOffRound.tsx b/src/IconLocationOffRound.tsx new file mode 100644 index 000000000..c4d2f7010 --- /dev/null +++ b/src/IconLocationOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationOffRound as default } diff --git a/src/IconLocationOffSharp.tsx b/src/IconLocationOffSharp.tsx new file mode 100644 index 000000000..aa8fa88fd --- /dev/null +++ b/src/IconLocationOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationOffSharp as default } diff --git a/src/IconLocationOffTwoTone.tsx b/src/IconLocationOffTwoTone.tsx new file mode 100644 index 000000000..fb96b84e4 --- /dev/null +++ b/src/IconLocationOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationOffTwoTone as default } diff --git a/src/IconLocationOnOutlined.tsx b/src/IconLocationOnOutlined.tsx new file mode 100644 index 000000000..2326a1826 --- /dev/null +++ b/src/IconLocationOnOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLocationOnOutlined as default } diff --git a/src/IconLocationOnRound.tsx b/src/IconLocationOnRound.tsx new file mode 100644 index 000000000..61c21ae8b --- /dev/null +++ b/src/IconLocationOnRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLocationOnRound as default } diff --git a/src/IconLocationOnSharp.tsx b/src/IconLocationOnSharp.tsx new file mode 100644 index 000000000..bd81bf78a --- /dev/null +++ b/src/IconLocationOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationOnSharp as default } diff --git a/src/IconLocationOnTwoTone.tsx b/src/IconLocationOnTwoTone.tsx new file mode 100644 index 000000000..e77fd2f25 --- /dev/null +++ b/src/IconLocationOnTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLocationOnTwoTone as default } diff --git a/src/IconLocationSearchingOutlined.tsx b/src/IconLocationSearchingOutlined.tsx new file mode 100644 index 000000000..e6c644538 --- /dev/null +++ b/src/IconLocationSearchingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationSearchingOutlined as default } diff --git a/src/IconLocationSearchingRound.tsx b/src/IconLocationSearchingRound.tsx new file mode 100644 index 000000000..bff613198 --- /dev/null +++ b/src/IconLocationSearchingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationSearchingRound as default } diff --git a/src/IconLocationSearchingSharp.tsx b/src/IconLocationSearchingSharp.tsx new file mode 100644 index 000000000..460b9afe8 --- /dev/null +++ b/src/IconLocationSearchingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationSearchingSharp as default } diff --git a/src/IconLocationSearchingTwoTone.tsx b/src/IconLocationSearchingTwoTone.tsx new file mode 100644 index 000000000..232f68aec --- /dev/null +++ b/src/IconLocationSearchingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLocationSearchingTwoTone as default } diff --git a/src/IconLockClockOutlined.tsx b/src/IconLockClockOutlined.tsx new file mode 100644 index 000000000..cccabcd93 --- /dev/null +++ b/src/IconLockClockOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLockClockOutlined as default } diff --git a/src/IconLockClockRound.tsx b/src/IconLockClockRound.tsx new file mode 100644 index 000000000..cfabc8cc0 --- /dev/null +++ b/src/IconLockClockRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLockClockRound as default } diff --git a/src/IconLockClockSharp.tsx b/src/IconLockClockSharp.tsx new file mode 100644 index 000000000..b44147f56 --- /dev/null +++ b/src/IconLockClockSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLockClockSharp as default } diff --git a/src/IconLockClockTwoTone.tsx b/src/IconLockClockTwoTone.tsx new file mode 100644 index 000000000..f5ae18a6d --- /dev/null +++ b/src/IconLockClockTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLockClockTwoTone as default } diff --git a/src/IconLockOpenOutlined.tsx b/src/IconLockOpenOutlined.tsx new file mode 100644 index 000000000..093958205 --- /dev/null +++ b/src/IconLockOpenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockOpenOutlined as default } diff --git a/src/IconLockOpenRound.tsx b/src/IconLockOpenRound.tsx new file mode 100644 index 000000000..c0102af94 --- /dev/null +++ b/src/IconLockOpenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockOpenRound as default } diff --git a/src/IconLockOpenSharp.tsx b/src/IconLockOpenSharp.tsx new file mode 100644 index 000000000..a18f52e3a --- /dev/null +++ b/src/IconLockOpenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockOpenSharp as default } diff --git a/src/IconLockOpenTwoTone.tsx b/src/IconLockOpenTwoTone.tsx new file mode 100644 index 000000000..4d6473e38 --- /dev/null +++ b/src/IconLockOpenTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLockOpenTwoTone as default } diff --git a/src/IconLockOutlined.tsx b/src/IconLockOutlined.tsx new file mode 100644 index 000000000..054ab3f7c --- /dev/null +++ b/src/IconLockOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLockOutlined as default } diff --git a/src/IconLockPersonOutlined.tsx b/src/IconLockPersonOutlined.tsx new file mode 100644 index 000000000..49239f213 --- /dev/null +++ b/src/IconLockPersonOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLockPersonOutlined as default } diff --git a/src/IconLockPersonRound.tsx b/src/IconLockPersonRound.tsx new file mode 100644 index 000000000..b89c701a6 --- /dev/null +++ b/src/IconLockPersonRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLockPersonRound as default } diff --git a/src/IconLockPersonSharp.tsx b/src/IconLockPersonSharp.tsx new file mode 100644 index 000000000..2d94f404c --- /dev/null +++ b/src/IconLockPersonSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLockPersonSharp as default } diff --git a/src/IconLockPersonTwoTone.tsx b/src/IconLockPersonTwoTone.tsx new file mode 100644 index 000000000..2b7ac6ea4 --- /dev/null +++ b/src/IconLockPersonTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLockPersonTwoTone as default } diff --git a/src/IconLockResetOutlined.tsx b/src/IconLockResetOutlined.tsx new file mode 100644 index 000000000..363798f8b --- /dev/null +++ b/src/IconLockResetOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockResetOutlined as default } diff --git a/src/IconLockResetRound.tsx b/src/IconLockResetRound.tsx new file mode 100644 index 000000000..ac861d028 --- /dev/null +++ b/src/IconLockResetRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockResetRound as default } diff --git a/src/IconLockResetSharp.tsx b/src/IconLockResetSharp.tsx new file mode 100644 index 000000000..a27e2f42f --- /dev/null +++ b/src/IconLockResetSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockResetSharp as default } diff --git a/src/IconLockResetTwoTone.tsx b/src/IconLockResetTwoTone.tsx new file mode 100644 index 000000000..324bc3cc9 --- /dev/null +++ b/src/IconLockResetTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLockResetTwoTone as default } diff --git a/src/IconLockRound.tsx b/src/IconLockRound.tsx new file mode 100644 index 000000000..f805c3386 --- /dev/null +++ b/src/IconLockRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLockRound as default } diff --git a/src/IconLockSharp.tsx b/src/IconLockSharp.tsx new file mode 100644 index 000000000..67d36c55c --- /dev/null +++ b/src/IconLockSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLockSharp as default } diff --git a/src/IconLockTwoTone.tsx b/src/IconLockTwoTone.tsx new file mode 100644 index 000000000..5e217f032 --- /dev/null +++ b/src/IconLockTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLockTwoTone as default } diff --git a/src/IconLoginOutlined.tsx b/src/IconLoginOutlined.tsx new file mode 100644 index 000000000..78a83eb3a --- /dev/null +++ b/src/IconLoginOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLoginOutlined as default } diff --git a/src/IconLoginRound.tsx b/src/IconLoginRound.tsx new file mode 100644 index 000000000..737af811f --- /dev/null +++ b/src/IconLoginRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLoginRound as default } diff --git a/src/IconLoginSharp.tsx b/src/IconLoginSharp.tsx new file mode 100644 index 000000000..52e455eeb --- /dev/null +++ b/src/IconLoginSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLoginSharp as default } diff --git a/src/IconLoginTwoTone.tsx b/src/IconLoginTwoTone.tsx new file mode 100644 index 000000000..f09ce03b8 --- /dev/null +++ b/src/IconLoginTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLoginTwoTone as default } diff --git a/src/IconLogoDevOutlined.tsx b/src/IconLogoDevOutlined.tsx new file mode 100644 index 000000000..b47124c60 --- /dev/null +++ b/src/IconLogoDevOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoDevOutlined as default } diff --git a/src/IconLogoDevRound.tsx b/src/IconLogoDevRound.tsx new file mode 100644 index 000000000..4130b00b9 --- /dev/null +++ b/src/IconLogoDevRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLogoDevRound as default } diff --git a/src/IconLogoDevSharp.tsx b/src/IconLogoDevSharp.tsx new file mode 100644 index 000000000..2ef422d28 --- /dev/null +++ b/src/IconLogoDevSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoDevSharp as default } diff --git a/src/IconLogoDevTwoTone.tsx b/src/IconLogoDevTwoTone.tsx new file mode 100644 index 000000000..eb1676208 --- /dev/null +++ b/src/IconLogoDevTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoDevTwoTone as default } diff --git a/src/IconLogoutOutlined.tsx b/src/IconLogoutOutlined.tsx new file mode 100644 index 000000000..d4f0961ae --- /dev/null +++ b/src/IconLogoutOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLogoutOutlined as default } diff --git a/src/IconLogoutRound.tsx b/src/IconLogoutRound.tsx new file mode 100644 index 000000000..3e559cdb9 --- /dev/null +++ b/src/IconLogoutRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoutRound as default } diff --git a/src/IconLogoutSharp.tsx b/src/IconLogoutSharp.tsx new file mode 100644 index 000000000..cd1c1e0cc --- /dev/null +++ b/src/IconLogoutSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLogoutSharp as default } diff --git a/src/IconLogoutTwoTone.tsx b/src/IconLogoutTwoTone.tsx new file mode 100644 index 000000000..a551bb155 --- /dev/null +++ b/src/IconLogoutTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconLogoutTwoTone as default } diff --git a/src/IconLooks3Outlined.tsx b/src/IconLooks3Outlined.tsx new file mode 100644 index 000000000..82228d481 --- /dev/null +++ b/src/IconLooks3Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks3Outlined as default } diff --git a/src/IconLooks3Round.tsx b/src/IconLooks3Round.tsx new file mode 100644 index 000000000..771886b12 --- /dev/null +++ b/src/IconLooks3Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks3Round as default } diff --git a/src/IconLooks3Sharp.tsx b/src/IconLooks3Sharp.tsx new file mode 100644 index 000000000..b06d23d7f --- /dev/null +++ b/src/IconLooks3Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks3Sharp as default } diff --git a/src/IconLooks3TwoTone.tsx b/src/IconLooks3TwoTone.tsx new file mode 100644 index 000000000..513a03b3c --- /dev/null +++ b/src/IconLooks3TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooks3TwoTone as default } diff --git a/src/IconLooks4Outlined.tsx b/src/IconLooks4Outlined.tsx new file mode 100644 index 000000000..006c8207a --- /dev/null +++ b/src/IconLooks4Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks4Outlined as default } diff --git a/src/IconLooks4Round.tsx b/src/IconLooks4Round.tsx new file mode 100644 index 000000000..842f6ab1a --- /dev/null +++ b/src/IconLooks4Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks4Round as default } diff --git a/src/IconLooks4Sharp.tsx b/src/IconLooks4Sharp.tsx new file mode 100644 index 000000000..6aad25dd6 --- /dev/null +++ b/src/IconLooks4Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks4Sharp as default } diff --git a/src/IconLooks4TwoTone.tsx b/src/IconLooks4TwoTone.tsx new file mode 100644 index 000000000..0e26efc38 --- /dev/null +++ b/src/IconLooks4TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooks4TwoTone as default } diff --git a/src/IconLooks5Outlined.tsx b/src/IconLooks5Outlined.tsx new file mode 100644 index 000000000..ddb8bbe96 --- /dev/null +++ b/src/IconLooks5Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks5Outlined as default } diff --git a/src/IconLooks5Round.tsx b/src/IconLooks5Round.tsx new file mode 100644 index 000000000..0b771e3bc --- /dev/null +++ b/src/IconLooks5Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks5Round as default } diff --git a/src/IconLooks5Sharp.tsx b/src/IconLooks5Sharp.tsx new file mode 100644 index 000000000..709e5cb44 --- /dev/null +++ b/src/IconLooks5Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks5Sharp as default } diff --git a/src/IconLooks5TwoTone.tsx b/src/IconLooks5TwoTone.tsx new file mode 100644 index 000000000..19f79be5c --- /dev/null +++ b/src/IconLooks5TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooks5TwoTone as default } diff --git a/src/IconLooks6Outlined.tsx b/src/IconLooks6Outlined.tsx new file mode 100644 index 000000000..378e88ef9 --- /dev/null +++ b/src/IconLooks6Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks6Outlined as default } diff --git a/src/IconLooks6Round.tsx b/src/IconLooks6Round.tsx new file mode 100644 index 000000000..75c9b27b5 --- /dev/null +++ b/src/IconLooks6Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks6Round as default } diff --git a/src/IconLooks6Sharp.tsx b/src/IconLooks6Sharp.tsx new file mode 100644 index 000000000..f594de212 --- /dev/null +++ b/src/IconLooks6Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooks6Sharp as default } diff --git a/src/IconLooks6TwoTone.tsx b/src/IconLooks6TwoTone.tsx new file mode 100644 index 000000000..2c4adc252 --- /dev/null +++ b/src/IconLooks6TwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooks6TwoTone as default } diff --git a/src/IconLooksOneOutlined.tsx b/src/IconLooksOneOutlined.tsx new file mode 100644 index 000000000..69bc8c6e2 --- /dev/null +++ b/src/IconLooksOneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksOneOutlined as default } diff --git a/src/IconLooksOneRound.tsx b/src/IconLooksOneRound.tsx new file mode 100644 index 000000000..7fa5564da --- /dev/null +++ b/src/IconLooksOneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksOneRound as default } diff --git a/src/IconLooksOneSharp.tsx b/src/IconLooksOneSharp.tsx new file mode 100644 index 000000000..ba2a6a5e5 --- /dev/null +++ b/src/IconLooksOneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksOneSharp as default } diff --git a/src/IconLooksOneTwoTone.tsx b/src/IconLooksOneTwoTone.tsx new file mode 100644 index 000000000..22be31cff --- /dev/null +++ b/src/IconLooksOneTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooksOneTwoTone as default } diff --git a/src/IconLooksOutlined.tsx b/src/IconLooksOutlined.tsx new file mode 100644 index 000000000..1af3a4903 --- /dev/null +++ b/src/IconLooksOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksOutlined as default } diff --git a/src/IconLooksRound.tsx b/src/IconLooksRound.tsx new file mode 100644 index 000000000..185551ba3 --- /dev/null +++ b/src/IconLooksRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksRound as default } diff --git a/src/IconLooksSharp.tsx b/src/IconLooksSharp.tsx new file mode 100644 index 000000000..034c822c0 --- /dev/null +++ b/src/IconLooksSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksSharp as default } diff --git a/src/IconLooksTwoOutlined.tsx b/src/IconLooksTwoOutlined.tsx new file mode 100644 index 000000000..6100f7041 --- /dev/null +++ b/src/IconLooksTwoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksTwoOutlined as default } diff --git a/src/IconLooksTwoRound.tsx b/src/IconLooksTwoRound.tsx new file mode 100644 index 000000000..87296ea78 --- /dev/null +++ b/src/IconLooksTwoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksTwoRound as default } diff --git a/src/IconLooksTwoSharp.tsx b/src/IconLooksTwoSharp.tsx new file mode 100644 index 000000000..067269013 --- /dev/null +++ b/src/IconLooksTwoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksTwoSharp as default } diff --git a/src/IconLooksTwoTone.tsx b/src/IconLooksTwoTone.tsx new file mode 100644 index 000000000..4fb5c7a46 --- /dev/null +++ b/src/IconLooksTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLooksTwoTone as default } diff --git a/src/IconLooksTwoTwoTone.tsx b/src/IconLooksTwoTwoTone.tsx new file mode 100644 index 000000000..c45b4e5ad --- /dev/null +++ b/src/IconLooksTwoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLooksTwoTwoTone as default } diff --git a/src/IconLoopOutlined.tsx b/src/IconLoopOutlined.tsx new file mode 100644 index 000000000..63cf6a3f0 --- /dev/null +++ b/src/IconLoopOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoopOutlined as default } diff --git a/src/IconLoopRound.tsx b/src/IconLoopRound.tsx new file mode 100644 index 000000000..23a05e12c --- /dev/null +++ b/src/IconLoopRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoopRound as default } diff --git a/src/IconLoopSharp.tsx b/src/IconLoopSharp.tsx new file mode 100644 index 000000000..c4e66bb75 --- /dev/null +++ b/src/IconLoopSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoopSharp as default } diff --git a/src/IconLoopTwoTone.tsx b/src/IconLoopTwoTone.tsx new file mode 100644 index 000000000..37689b8c3 --- /dev/null +++ b/src/IconLoopTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoopTwoTone as default } diff --git a/src/IconLoupeOutlined.tsx b/src/IconLoupeOutlined.tsx new file mode 100644 index 000000000..1dfb76f89 --- /dev/null +++ b/src/IconLoupeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoupeOutlined as default } diff --git a/src/IconLoupeRound.tsx b/src/IconLoupeRound.tsx new file mode 100644 index 000000000..4e7446751 --- /dev/null +++ b/src/IconLoupeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoupeRound as default } diff --git a/src/IconLoupeSharp.tsx b/src/IconLoupeSharp.tsx new file mode 100644 index 000000000..a75f5407b --- /dev/null +++ b/src/IconLoupeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoupeSharp as default } diff --git a/src/IconLoupeTwoTone.tsx b/src/IconLoupeTwoTone.tsx new file mode 100644 index 000000000..48f180b66 --- /dev/null +++ b/src/IconLoupeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconLoupeTwoTone as default } diff --git a/src/IconLowPriorityOutlined.tsx b/src/IconLowPriorityOutlined.tsx new file mode 100644 index 000000000..08907efca --- /dev/null +++ b/src/IconLowPriorityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPriorityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLowPriorityOutlined as default } diff --git a/src/IconLowPriorityRound.tsx b/src/IconLowPriorityRound.tsx new file mode 100644 index 000000000..b2eb50599 --- /dev/null +++ b/src/IconLowPriorityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPriorityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLowPriorityRound as default } diff --git a/src/IconLowPrioritySharp.tsx b/src/IconLowPrioritySharp.tsx new file mode 100644 index 000000000..ecbebd1c2 --- /dev/null +++ b/src/IconLowPrioritySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPrioritySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLowPrioritySharp as default } diff --git a/src/IconLowPriorityTwoTone.tsx b/src/IconLowPriorityTwoTone.tsx new file mode 100644 index 000000000..6310cc64e --- /dev/null +++ b/src/IconLowPriorityTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPriorityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLowPriorityTwoTone as default } diff --git a/src/IconLoyaltyOutlined.tsx b/src/IconLoyaltyOutlined.tsx new file mode 100644 index 000000000..b1801d13d --- /dev/null +++ b/src/IconLoyaltyOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLoyaltyOutlined as default } diff --git a/src/IconLoyaltyRound.tsx b/src/IconLoyaltyRound.tsx new file mode 100644 index 000000000..4ac82ffb8 --- /dev/null +++ b/src/IconLoyaltyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoyaltyRound as default } diff --git a/src/IconLoyaltySharp.tsx b/src/IconLoyaltySharp.tsx new file mode 100644 index 000000000..f44326760 --- /dev/null +++ b/src/IconLoyaltySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconLoyaltySharp as default } diff --git a/src/IconLoyaltyTwoTone.tsx b/src/IconLoyaltyTwoTone.tsx new file mode 100644 index 000000000..008267b82 --- /dev/null +++ b/src/IconLoyaltyTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconLoyaltyTwoTone as default } diff --git a/src/IconLteMobiledataOutlined.tsx b/src/IconLteMobiledataOutlined.tsx new file mode 100644 index 000000000..8c24eaf3b --- /dev/null +++ b/src/IconLteMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLteMobiledataOutlined as default } diff --git a/src/IconLteMobiledataRound.tsx b/src/IconLteMobiledataRound.tsx new file mode 100644 index 000000000..3707953ed --- /dev/null +++ b/src/IconLteMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLteMobiledataRound as default } diff --git a/src/IconLteMobiledataSharp.tsx b/src/IconLteMobiledataSharp.tsx new file mode 100644 index 000000000..75fbdd2fa --- /dev/null +++ b/src/IconLteMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLteMobiledataSharp as default } diff --git a/src/IconLteMobiledataTwoTone.tsx b/src/IconLteMobiledataTwoTone.tsx new file mode 100644 index 000000000..158df68bf --- /dev/null +++ b/src/IconLteMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLteMobiledataTwoTone as default } diff --git a/src/IconLtePlusMobiledataOutlined.tsx b/src/IconLtePlusMobiledataOutlined.tsx new file mode 100644 index 000000000..553b5a8b5 --- /dev/null +++ b/src/IconLtePlusMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLtePlusMobiledataOutlined as default } diff --git a/src/IconLtePlusMobiledataRound.tsx b/src/IconLtePlusMobiledataRound.tsx new file mode 100644 index 000000000..72b36af30 --- /dev/null +++ b/src/IconLtePlusMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLtePlusMobiledataRound as default } diff --git a/src/IconLtePlusMobiledataSharp.tsx b/src/IconLtePlusMobiledataSharp.tsx new file mode 100644 index 000000000..c5e4b8c90 --- /dev/null +++ b/src/IconLtePlusMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLtePlusMobiledataSharp as default } diff --git a/src/IconLtePlusMobiledataTwoTone.tsx b/src/IconLtePlusMobiledataTwoTone.tsx new file mode 100644 index 000000000..1deff8a13 --- /dev/null +++ b/src/IconLtePlusMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconLtePlusMobiledataTwoTone as default } diff --git a/src/IconLuggageOutlined.tsx b/src/IconLuggageOutlined.tsx new file mode 100644 index 000000000..eb009c6e8 --- /dev/null +++ b/src/IconLuggageOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLuggageOutlined as default } diff --git a/src/IconLuggageRound.tsx b/src/IconLuggageRound.tsx new file mode 100644 index 000000000..5471c9744 --- /dev/null +++ b/src/IconLuggageRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLuggageRound as default } diff --git a/src/IconLuggageSharp.tsx b/src/IconLuggageSharp.tsx new file mode 100644 index 000000000..1529d4d2b --- /dev/null +++ b/src/IconLuggageSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconLuggageSharp as default } diff --git a/src/IconLuggageTwoTone.tsx b/src/IconLuggageTwoTone.tsx new file mode 100644 index 000000000..0cb42e6e4 --- /dev/null +++ b/src/IconLuggageTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconLuggageTwoTone as default } diff --git a/src/IconLunchDiningOutlined.tsx b/src/IconLunchDiningOutlined.tsx new file mode 100644 index 000000000..5fa770c17 --- /dev/null +++ b/src/IconLunchDiningOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLunchDiningOutlined as default } diff --git a/src/IconLunchDiningRound.tsx b/src/IconLunchDiningRound.tsx new file mode 100644 index 000000000..3aef17b4f --- /dev/null +++ b/src/IconLunchDiningRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLunchDiningRound as default } diff --git a/src/IconLunchDiningSharp.tsx b/src/IconLunchDiningSharp.tsx new file mode 100644 index 000000000..509a31ff3 --- /dev/null +++ b/src/IconLunchDiningSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLunchDiningSharp as default } diff --git a/src/IconLunchDiningTwoTone.tsx b/src/IconLunchDiningTwoTone.tsx new file mode 100644 index 000000000..8de3ba118 --- /dev/null +++ b/src/IconLunchDiningTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLunchDiningTwoTone as default } diff --git a/src/IconLyricsOutlined.tsx b/src/IconLyricsOutlined.tsx new file mode 100644 index 000000000..8add0ed82 --- /dev/null +++ b/src/IconLyricsOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconLyricsOutlined as default } diff --git a/src/IconLyricsRound.tsx b/src/IconLyricsRound.tsx new file mode 100644 index 000000000..82d69d08e --- /dev/null +++ b/src/IconLyricsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconLyricsRound as default } diff --git a/src/IconLyricsSharp.tsx b/src/IconLyricsSharp.tsx new file mode 100644 index 000000000..2ca41fac8 --- /dev/null +++ b/src/IconLyricsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconLyricsSharp as default } diff --git a/src/IconLyricsTwoTone.tsx b/src/IconLyricsTwoTone.tsx new file mode 100644 index 000000000..dfbd73849 --- /dev/null +++ b/src/IconLyricsTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconLyricsTwoTone as default } diff --git a/src/IconMacroOffOutlined.tsx b/src/IconMacroOffOutlined.tsx new file mode 100644 index 000000000..ebf50d0b2 --- /dev/null +++ b/src/IconMacroOffOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMacroOffOutlined as default } diff --git a/src/IconMacroOffRound.tsx b/src/IconMacroOffRound.tsx new file mode 100644 index 000000000..bfe06f490 --- /dev/null +++ b/src/IconMacroOffRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMacroOffRound as default } diff --git a/src/IconMacroOffSharp.tsx b/src/IconMacroOffSharp.tsx new file mode 100644 index 000000000..5e79a4f01 --- /dev/null +++ b/src/IconMacroOffSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMacroOffSharp as default } diff --git a/src/IconMacroOffTwoTone.tsx b/src/IconMacroOffTwoTone.tsx new file mode 100644 index 000000000..a811c20bd --- /dev/null +++ b/src/IconMacroOffTwoTone.tsx @@ -0,0 +1,56 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconMacroOffTwoTone as default } diff --git a/src/IconMailLockOutlined.tsx b/src/IconMailLockOutlined.tsx new file mode 100644 index 000000000..d15c0ef13 --- /dev/null +++ b/src/IconMailLockOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMailLockOutlined as default } diff --git a/src/IconMailLockRound.tsx b/src/IconMailLockRound.tsx new file mode 100644 index 000000000..0a3f27c13 --- /dev/null +++ b/src/IconMailLockRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconMailLockRound as default } diff --git a/src/IconMailLockSharp.tsx b/src/IconMailLockSharp.tsx new file mode 100644 index 000000000..1111254fa --- /dev/null +++ b/src/IconMailLockSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconMailLockSharp as default } diff --git a/src/IconMailLockTwoTone.tsx b/src/IconMailLockTwoTone.tsx new file mode 100644 index 000000000..f5d9e5fff --- /dev/null +++ b/src/IconMailLockTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMailLockTwoTone as default } diff --git a/src/IconMailOutlineOutlined.tsx b/src/IconMailOutlineOutlined.tsx new file mode 100644 index 000000000..37b4135bf --- /dev/null +++ b/src/IconMailOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailOutlineOutlined as default } diff --git a/src/IconMailOutlineRound.tsx b/src/IconMailOutlineRound.tsx new file mode 100644 index 000000000..d55a24b5e --- /dev/null +++ b/src/IconMailOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailOutlineRound as default } diff --git a/src/IconMailOutlineSharp.tsx b/src/IconMailOutlineSharp.tsx new file mode 100644 index 000000000..904429f75 --- /dev/null +++ b/src/IconMailOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailOutlineSharp as default } diff --git a/src/IconMailOutlineTwoTone.tsx b/src/IconMailOutlineTwoTone.tsx new file mode 100644 index 000000000..4e66c3e54 --- /dev/null +++ b/src/IconMailOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailOutlineTwoTone as default } diff --git a/src/IconMailOutlined.tsx b/src/IconMailOutlined.tsx new file mode 100644 index 000000000..395603319 --- /dev/null +++ b/src/IconMailOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailOutlined as default } diff --git a/src/IconMailRound.tsx b/src/IconMailRound.tsx new file mode 100644 index 000000000..7f35d607b --- /dev/null +++ b/src/IconMailRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailRound as default } diff --git a/src/IconMailSharp.tsx b/src/IconMailSharp.tsx new file mode 100644 index 000000000..087968289 --- /dev/null +++ b/src/IconMailSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMailSharp as default } diff --git a/src/IconMailTwoTone.tsx b/src/IconMailTwoTone.tsx new file mode 100644 index 000000000..58bd5847b --- /dev/null +++ b/src/IconMailTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMailTwoTone as default } diff --git a/src/IconMaleOutlined.tsx b/src/IconMaleOutlined.tsx new file mode 100644 index 000000000..2ba11659c --- /dev/null +++ b/src/IconMaleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaleOutlined as default } diff --git a/src/IconMaleRound.tsx b/src/IconMaleRound.tsx new file mode 100644 index 000000000..ce06e61bb --- /dev/null +++ b/src/IconMaleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaleRound as default } diff --git a/src/IconMaleSharp.tsx b/src/IconMaleSharp.tsx new file mode 100644 index 000000000..6c335167e --- /dev/null +++ b/src/IconMaleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaleSharp as default } diff --git a/src/IconMaleTwoTone.tsx b/src/IconMaleTwoTone.tsx new file mode 100644 index 000000000..df6603da8 --- /dev/null +++ b/src/IconMaleTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaleTwoTone as default } diff --git a/src/IconMan2Outlined.tsx b/src/IconMan2Outlined.tsx new file mode 100644 index 000000000..081183130 --- /dev/null +++ b/src/IconMan2Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan2Outlined as default } diff --git a/src/IconMan2Round.tsx b/src/IconMan2Round.tsx new file mode 100644 index 000000000..e904f02ac --- /dev/null +++ b/src/IconMan2Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMan2Round as default } diff --git a/src/IconMan2Sharp.tsx b/src/IconMan2Sharp.tsx new file mode 100644 index 000000000..4d96d949f --- /dev/null +++ b/src/IconMan2Sharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan2Sharp as default } diff --git a/src/IconMan2TwoTone.tsx b/src/IconMan2TwoTone.tsx new file mode 100644 index 000000000..e93ae3d12 --- /dev/null +++ b/src/IconMan2TwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan2TwoTone as default } diff --git a/src/IconMan3Outlined.tsx b/src/IconMan3Outlined.tsx new file mode 100644 index 000000000..44fdd1c65 --- /dev/null +++ b/src/IconMan3Outlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan3Outlined as default } diff --git a/src/IconMan3Round.tsx b/src/IconMan3Round.tsx new file mode 100644 index 000000000..3588254b2 --- /dev/null +++ b/src/IconMan3Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMan3Round as default } diff --git a/src/IconMan3Sharp.tsx b/src/IconMan3Sharp.tsx new file mode 100644 index 000000000..caf9cc695 --- /dev/null +++ b/src/IconMan3Sharp.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan3Sharp as default } diff --git a/src/IconMan3TwoTone.tsx b/src/IconMan3TwoTone.tsx new file mode 100644 index 000000000..fa0b57f6f --- /dev/null +++ b/src/IconMan3TwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan3TwoTone as default } diff --git a/src/IconMan4Outlined.tsx b/src/IconMan4Outlined.tsx new file mode 100644 index 000000000..7e36b49fe --- /dev/null +++ b/src/IconMan4Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan4Outlined as default } diff --git a/src/IconMan4Round.tsx b/src/IconMan4Round.tsx new file mode 100644 index 000000000..2144e1c05 --- /dev/null +++ b/src/IconMan4Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMan4Round as default } diff --git a/src/IconMan4Sharp.tsx b/src/IconMan4Sharp.tsx new file mode 100644 index 000000000..53f01112d --- /dev/null +++ b/src/IconMan4Sharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan4Sharp as default } diff --git a/src/IconMan4TwoTone.tsx b/src/IconMan4TwoTone.tsx new file mode 100644 index 000000000..d203129f3 --- /dev/null +++ b/src/IconMan4TwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMan4TwoTone as default } diff --git a/src/IconManOutlined.tsx b/src/IconManOutlined.tsx new file mode 100644 index 000000000..aac2f3613 --- /dev/null +++ b/src/IconManOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconManOutlined as default } diff --git a/src/IconManRound.tsx b/src/IconManRound.tsx new file mode 100644 index 000000000..9045e7de7 --- /dev/null +++ b/src/IconManRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconManRound as default } diff --git a/src/IconManSharp.tsx b/src/IconManSharp.tsx new file mode 100644 index 000000000..3dbf8b10c --- /dev/null +++ b/src/IconManSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconManSharp as default } diff --git a/src/IconManTwoTone.tsx b/src/IconManTwoTone.tsx new file mode 100644 index 000000000..e7b8f5709 --- /dev/null +++ b/src/IconManTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconManTwoTone as default } diff --git a/src/IconManageAccountsOutlined.tsx b/src/IconManageAccountsOutlined.tsx new file mode 100644 index 000000000..207450565 --- /dev/null +++ b/src/IconManageAccountsOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconManageAccountsOutlined as default } diff --git a/src/IconManageAccountsRound.tsx b/src/IconManageAccountsRound.tsx new file mode 100644 index 000000000..b63932170 --- /dev/null +++ b/src/IconManageAccountsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconManageAccountsRound as default } diff --git a/src/IconManageAccountsSharp.tsx b/src/IconManageAccountsSharp.tsx new file mode 100644 index 000000000..673d7c793 --- /dev/null +++ b/src/IconManageAccountsSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconManageAccountsSharp as default } diff --git a/src/IconManageAccountsTwoTone.tsx b/src/IconManageAccountsTwoTone.tsx new file mode 100644 index 000000000..6970806fb --- /dev/null +++ b/src/IconManageAccountsTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconManageAccountsTwoTone as default } diff --git a/src/IconManageHistoryOutlined.tsx b/src/IconManageHistoryOutlined.tsx new file mode 100644 index 000000000..f3e6c3a52 --- /dev/null +++ b/src/IconManageHistoryOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageHistoryOutlined as default } diff --git a/src/IconManageHistoryRound.tsx b/src/IconManageHistoryRound.tsx new file mode 100644 index 000000000..e3c19ae59 --- /dev/null +++ b/src/IconManageHistoryRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconManageHistoryRound as default } diff --git a/src/IconManageHistorySharp.tsx b/src/IconManageHistorySharp.tsx new file mode 100644 index 000000000..fd985d0d6 --- /dev/null +++ b/src/IconManageHistorySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageHistorySharp as default } diff --git a/src/IconManageHistoryTwoTone.tsx b/src/IconManageHistoryTwoTone.tsx new file mode 100644 index 000000000..eeb108641 --- /dev/null +++ b/src/IconManageHistoryTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageHistoryTwoTone as default } diff --git a/src/IconManageSearchOutlined.tsx b/src/IconManageSearchOutlined.tsx new file mode 100644 index 000000000..59d2be22d --- /dev/null +++ b/src/IconManageSearchOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageSearchOutlined as default } diff --git a/src/IconManageSearchRound.tsx b/src/IconManageSearchRound.tsx new file mode 100644 index 000000000..1afdcad5e --- /dev/null +++ b/src/IconManageSearchRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageSearchRound as default } diff --git a/src/IconManageSearchSharp.tsx b/src/IconManageSearchSharp.tsx new file mode 100644 index 000000000..1a9af2df7 --- /dev/null +++ b/src/IconManageSearchSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconManageSearchSharp as default } diff --git a/src/IconManageSearchTwoTone.tsx b/src/IconManageSearchTwoTone.tsx new file mode 100644 index 000000000..1d5785d1a --- /dev/null +++ b/src/IconManageSearchTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconManageSearchTwoTone as default } diff --git a/src/IconMapOutlined.tsx b/src/IconMapOutlined.tsx new file mode 100644 index 000000000..ce97c715d --- /dev/null +++ b/src/IconMapOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMapOutlined as default } diff --git a/src/IconMapRound.tsx b/src/IconMapRound.tsx new file mode 100644 index 000000000..01adf20dc --- /dev/null +++ b/src/IconMapRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMapRound as default } diff --git a/src/IconMapSharp.tsx b/src/IconMapSharp.tsx new file mode 100644 index 000000000..8b6256bd2 --- /dev/null +++ b/src/IconMapSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMapSharp as default } diff --git a/src/IconMapTwoTone.tsx b/src/IconMapTwoTone.tsx new file mode 100644 index 000000000..988ad6e11 --- /dev/null +++ b/src/IconMapTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMapTwoTone as default } diff --git a/src/IconMapsHomeWorkOutlined.tsx b/src/IconMapsHomeWorkOutlined.tsx new file mode 100644 index 000000000..3232b1154 --- /dev/null +++ b/src/IconMapsHomeWorkOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsHomeWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMapsHomeWorkOutlined as default } diff --git a/src/IconMapsHomeWorkRound.tsx b/src/IconMapsHomeWorkRound.tsx new file mode 100644 index 000000000..8ba9cf802 --- /dev/null +++ b/src/IconMapsHomeWorkRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsHomeWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMapsHomeWorkRound as default } diff --git a/src/IconMapsHomeWorkSharp.tsx b/src/IconMapsHomeWorkSharp.tsx new file mode 100644 index 000000000..ca81af610 --- /dev/null +++ b/src/IconMapsHomeWorkSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsHomeWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMapsHomeWorkSharp as default } diff --git a/src/IconMapsHomeWorkTwoTone.tsx b/src/IconMapsHomeWorkTwoTone.tsx new file mode 100644 index 000000000..ab563e401 --- /dev/null +++ b/src/IconMapsHomeWorkTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsHomeWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconMapsHomeWorkTwoTone as default } diff --git a/src/IconMapsUgcOutlined.tsx b/src/IconMapsUgcOutlined.tsx new file mode 100644 index 000000000..93a5cf18c --- /dev/null +++ b/src/IconMapsUgcOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMapsUgcOutlined as default } diff --git a/src/IconMapsUgcRound.tsx b/src/IconMapsUgcRound.tsx new file mode 100644 index 000000000..9e251223e --- /dev/null +++ b/src/IconMapsUgcRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMapsUgcRound as default } diff --git a/src/IconMapsUgcSharp.tsx b/src/IconMapsUgcSharp.tsx new file mode 100644 index 000000000..406c85c48 --- /dev/null +++ b/src/IconMapsUgcSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMapsUgcSharp as default } diff --git a/src/IconMapsUgcTwoTone.tsx b/src/IconMapsUgcTwoTone.tsx new file mode 100644 index 000000000..21770ac90 --- /dev/null +++ b/src/IconMapsUgcTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMapsUgcTwoTone as default } diff --git a/src/IconMarginOutlined.tsx b/src/IconMarginOutlined.tsx new file mode 100644 index 000000000..d66ce91e9 --- /dev/null +++ b/src/IconMarginOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMarginOutlined as default } diff --git a/src/IconMarginRound.tsx b/src/IconMarginRound.tsx new file mode 100644 index 000000000..da461c71e --- /dev/null +++ b/src/IconMarginRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMarginRound as default } diff --git a/src/IconMarginSharp.tsx b/src/IconMarginSharp.tsx new file mode 100644 index 000000000..3505425db --- /dev/null +++ b/src/IconMarginSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMarginSharp as default } diff --git a/src/IconMarginTwoTone.tsx b/src/IconMarginTwoTone.tsx new file mode 100644 index 000000000..cd71fe34c --- /dev/null +++ b/src/IconMarginTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconMarginTwoTone as default } diff --git a/src/IconMarkAsUnreadOutlined.tsx b/src/IconMarkAsUnreadOutlined.tsx new file mode 100644 index 000000000..0685643b7 --- /dev/null +++ b/src/IconMarkAsUnreadOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMarkAsUnreadOutlined as default } diff --git a/src/IconMarkAsUnreadRound.tsx b/src/IconMarkAsUnreadRound.tsx new file mode 100644 index 000000000..7ff30e17b --- /dev/null +++ b/src/IconMarkAsUnreadRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMarkAsUnreadRound as default } diff --git a/src/IconMarkAsUnreadSharp.tsx b/src/IconMarkAsUnreadSharp.tsx new file mode 100644 index 000000000..76d99c1bc --- /dev/null +++ b/src/IconMarkAsUnreadSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMarkAsUnreadSharp as default } diff --git a/src/IconMarkAsUnreadTwoTone.tsx b/src/IconMarkAsUnreadTwoTone.tsx new file mode 100644 index 000000000..7f6f60041 --- /dev/null +++ b/src/IconMarkAsUnreadTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMarkAsUnreadTwoTone as default } diff --git a/src/IconMarkChatReadOutlined.tsx b/src/IconMarkChatReadOutlined.tsx new file mode 100644 index 000000000..d61315e49 --- /dev/null +++ b/src/IconMarkChatReadOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatReadOutlined as default } diff --git a/src/IconMarkChatReadRound.tsx b/src/IconMarkChatReadRound.tsx new file mode 100644 index 000000000..930a578f0 --- /dev/null +++ b/src/IconMarkChatReadRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatReadRound as default } diff --git a/src/IconMarkChatReadSharp.tsx b/src/IconMarkChatReadSharp.tsx new file mode 100644 index 000000000..2cbd4364e --- /dev/null +++ b/src/IconMarkChatReadSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatReadSharp as default } diff --git a/src/IconMarkChatReadTwoTone.tsx b/src/IconMarkChatReadTwoTone.tsx new file mode 100644 index 000000000..c3feb4b49 --- /dev/null +++ b/src/IconMarkChatReadTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMarkChatReadTwoTone as default } diff --git a/src/IconMarkChatUnreadOutlined.tsx b/src/IconMarkChatUnreadOutlined.tsx new file mode 100644 index 000000000..1dc4879be --- /dev/null +++ b/src/IconMarkChatUnreadOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatUnreadOutlined as default } diff --git a/src/IconMarkChatUnreadRound.tsx b/src/IconMarkChatUnreadRound.tsx new file mode 100644 index 000000000..e2962ab3b --- /dev/null +++ b/src/IconMarkChatUnreadRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatUnreadRound as default } diff --git a/src/IconMarkChatUnreadSharp.tsx b/src/IconMarkChatUnreadSharp.tsx new file mode 100644 index 000000000..a535afd13 --- /dev/null +++ b/src/IconMarkChatUnreadSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkChatUnreadSharp as default } diff --git a/src/IconMarkChatUnreadTwoTone.tsx b/src/IconMarkChatUnreadTwoTone.tsx new file mode 100644 index 000000000..f8fd641dd --- /dev/null +++ b/src/IconMarkChatUnreadTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMarkChatUnreadTwoTone as default } diff --git a/src/IconMarkEmailReadOutlined.tsx b/src/IconMarkEmailReadOutlined.tsx new file mode 100644 index 000000000..5af5dbaef --- /dev/null +++ b/src/IconMarkEmailReadOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkEmailReadOutlined as default } diff --git a/src/IconMarkEmailReadRound.tsx b/src/IconMarkEmailReadRound.tsx new file mode 100644 index 000000000..e0ed0de28 --- /dev/null +++ b/src/IconMarkEmailReadRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMarkEmailReadRound as default } diff --git a/src/IconMarkEmailReadSharp.tsx b/src/IconMarkEmailReadSharp.tsx new file mode 100644 index 000000000..1cb998c7b --- /dev/null +++ b/src/IconMarkEmailReadSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkEmailReadSharp as default } diff --git a/src/IconMarkEmailReadTwoTone.tsx b/src/IconMarkEmailReadTwoTone.tsx new file mode 100644 index 000000000..f2bb66c13 --- /dev/null +++ b/src/IconMarkEmailReadTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMarkEmailReadTwoTone as default } diff --git a/src/IconMarkEmailUnreadOutlined.tsx b/src/IconMarkEmailUnreadOutlined.tsx new file mode 100644 index 000000000..7b87c0ad4 --- /dev/null +++ b/src/IconMarkEmailUnreadOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkEmailUnreadOutlined as default } diff --git a/src/IconMarkEmailUnreadRound.tsx b/src/IconMarkEmailUnreadRound.tsx new file mode 100644 index 000000000..ac39ec0df --- /dev/null +++ b/src/IconMarkEmailUnreadRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkEmailUnreadRound as default } diff --git a/src/IconMarkEmailUnreadSharp.tsx b/src/IconMarkEmailUnreadSharp.tsx new file mode 100644 index 000000000..62ddd9a78 --- /dev/null +++ b/src/IconMarkEmailUnreadSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMarkEmailUnreadSharp as default } diff --git a/src/IconMarkEmailUnreadTwoTone.tsx b/src/IconMarkEmailUnreadTwoTone.tsx new file mode 100644 index 000000000..d862b88c4 --- /dev/null +++ b/src/IconMarkEmailUnreadTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMarkEmailUnreadTwoTone as default } diff --git a/src/IconMarkUnreadChatAltOutlined.tsx b/src/IconMarkUnreadChatAltOutlined.tsx new file mode 100644 index 000000000..52337d806 --- /dev/null +++ b/src/IconMarkUnreadChatAltOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMarkUnreadChatAltOutlined as default } diff --git a/src/IconMarkUnreadChatAltRound.tsx b/src/IconMarkUnreadChatAltRound.tsx new file mode 100644 index 000000000..477834bfa --- /dev/null +++ b/src/IconMarkUnreadChatAltRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMarkUnreadChatAltRound as default } diff --git a/src/IconMarkUnreadChatAltSharp.tsx b/src/IconMarkUnreadChatAltSharp.tsx new file mode 100644 index 000000000..f3a3aed08 --- /dev/null +++ b/src/IconMarkUnreadChatAltSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMarkUnreadChatAltSharp as default } diff --git a/src/IconMarkUnreadChatAltTwoTone.tsx b/src/IconMarkUnreadChatAltTwoTone.tsx new file mode 100644 index 000000000..e477fcd2e --- /dev/null +++ b/src/IconMarkUnreadChatAltTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconMarkUnreadChatAltTwoTone as default } diff --git a/src/IconMarkunreadMailboxOutlined.tsx b/src/IconMarkunreadMailboxOutlined.tsx new file mode 100644 index 000000000..f3950c714 --- /dev/null +++ b/src/IconMarkunreadMailboxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadMailboxOutlined as default } diff --git a/src/IconMarkunreadMailboxRound.tsx b/src/IconMarkunreadMailboxRound.tsx new file mode 100644 index 000000000..a044a3796 --- /dev/null +++ b/src/IconMarkunreadMailboxRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadMailboxRound as default } diff --git a/src/IconMarkunreadMailboxSharp.tsx b/src/IconMarkunreadMailboxSharp.tsx new file mode 100644 index 000000000..bae60bcbe --- /dev/null +++ b/src/IconMarkunreadMailboxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadMailboxSharp as default } diff --git a/src/IconMarkunreadMailboxTwoTone.tsx b/src/IconMarkunreadMailboxTwoTone.tsx new file mode 100644 index 000000000..f1f83e0d3 --- /dev/null +++ b/src/IconMarkunreadMailboxTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMarkunreadMailboxTwoTone as default } diff --git a/src/IconMarkunreadOutlined.tsx b/src/IconMarkunreadOutlined.tsx new file mode 100644 index 000000000..cf9f2948e --- /dev/null +++ b/src/IconMarkunreadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadOutlined as default } diff --git a/src/IconMarkunreadRound.tsx b/src/IconMarkunreadRound.tsx new file mode 100644 index 000000000..b4e251b4f --- /dev/null +++ b/src/IconMarkunreadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadRound as default } diff --git a/src/IconMarkunreadSharp.tsx b/src/IconMarkunreadSharp.tsx new file mode 100644 index 000000000..21a5aa573 --- /dev/null +++ b/src/IconMarkunreadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMarkunreadSharp as default } diff --git a/src/IconMarkunreadTwoTone.tsx b/src/IconMarkunreadTwoTone.tsx new file mode 100644 index 000000000..d97f6456c --- /dev/null +++ b/src/IconMarkunreadTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMarkunreadTwoTone as default } diff --git a/src/IconMasksOutlined.tsx b/src/IconMasksOutlined.tsx new file mode 100644 index 000000000..03802cd92 --- /dev/null +++ b/src/IconMasksOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMasksOutlined as default } diff --git a/src/IconMasksRound.tsx b/src/IconMasksRound.tsx new file mode 100644 index 000000000..3a471ba26 --- /dev/null +++ b/src/IconMasksRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMasksRound as default } diff --git a/src/IconMasksSharp.tsx b/src/IconMasksSharp.tsx new file mode 100644 index 000000000..aa5879af8 --- /dev/null +++ b/src/IconMasksSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMasksSharp as default } diff --git a/src/IconMasksTwoTone.tsx b/src/IconMasksTwoTone.tsx new file mode 100644 index 000000000..3f0d87392 --- /dev/null +++ b/src/IconMasksTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMasksTwoTone as default } diff --git a/src/IconMaximizeOutlined.tsx b/src/IconMaximizeOutlined.tsx new file mode 100644 index 000000000..7d7b3af54 --- /dev/null +++ b/src/IconMaximizeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaximizeOutlined as default } diff --git a/src/IconMaximizeRound.tsx b/src/IconMaximizeRound.tsx new file mode 100644 index 000000000..150fc09d0 --- /dev/null +++ b/src/IconMaximizeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaximizeRound as default } diff --git a/src/IconMaximizeSharp.tsx b/src/IconMaximizeSharp.tsx new file mode 100644 index 000000000..d906086fe --- /dev/null +++ b/src/IconMaximizeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaximizeSharp as default } diff --git a/src/IconMaximizeTwoTone.tsx b/src/IconMaximizeTwoTone.tsx new file mode 100644 index 000000000..ce02a1646 --- /dev/null +++ b/src/IconMaximizeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMaximizeTwoTone as default } diff --git a/src/IconMediaBluetoothOffOutlined.tsx b/src/IconMediaBluetoothOffOutlined.tsx new file mode 100644 index 000000000..a188426a9 --- /dev/null +++ b/src/IconMediaBluetoothOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOffOutlined as default } diff --git a/src/IconMediaBluetoothOffRound.tsx b/src/IconMediaBluetoothOffRound.tsx new file mode 100644 index 000000000..f52529ca9 --- /dev/null +++ b/src/IconMediaBluetoothOffRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOffRound as default } diff --git a/src/IconMediaBluetoothOffSharp.tsx b/src/IconMediaBluetoothOffSharp.tsx new file mode 100644 index 000000000..9c211593f --- /dev/null +++ b/src/IconMediaBluetoothOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOffSharp as default } diff --git a/src/IconMediaBluetoothOffTwoTone.tsx b/src/IconMediaBluetoothOffTwoTone.tsx new file mode 100644 index 000000000..79d46087c --- /dev/null +++ b/src/IconMediaBluetoothOffTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOffTwoTone as default } diff --git a/src/IconMediaBluetoothOnOutlined.tsx b/src/IconMediaBluetoothOnOutlined.tsx new file mode 100644 index 000000000..01d33fe22 --- /dev/null +++ b/src/IconMediaBluetoothOnOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOnOutlined as default } diff --git a/src/IconMediaBluetoothOnRound.tsx b/src/IconMediaBluetoothOnRound.tsx new file mode 100644 index 000000000..624496177 --- /dev/null +++ b/src/IconMediaBluetoothOnRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOnRound as default } diff --git a/src/IconMediaBluetoothOnSharp.tsx b/src/IconMediaBluetoothOnSharp.tsx new file mode 100644 index 000000000..74889b745 --- /dev/null +++ b/src/IconMediaBluetoothOnSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOnSharp as default } diff --git a/src/IconMediaBluetoothOnTwoTone.tsx b/src/IconMediaBluetoothOnTwoTone.tsx new file mode 100644 index 000000000..c5a3ee6fc --- /dev/null +++ b/src/IconMediaBluetoothOnTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMediaBluetoothOnTwoTone as default } diff --git a/src/IconMediationOutlined.tsx b/src/IconMediationOutlined.tsx new file mode 100644 index 000000000..f560111b6 --- /dev/null +++ b/src/IconMediationOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMediationOutlined as default } diff --git a/src/IconMediationRound.tsx b/src/IconMediationRound.tsx new file mode 100644 index 000000000..1f779b019 --- /dev/null +++ b/src/IconMediationRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMediationRound as default } diff --git a/src/IconMediationSharp.tsx b/src/IconMediationSharp.tsx new file mode 100644 index 000000000..965c82182 --- /dev/null +++ b/src/IconMediationSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMediationSharp as default } diff --git a/src/IconMediationTwoTone.tsx b/src/IconMediationTwoTone.tsx new file mode 100644 index 000000000..f440dc526 --- /dev/null +++ b/src/IconMediationTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMediationTwoTone as default } diff --git a/src/IconMedicalInformationOutlined.tsx b/src/IconMedicalInformationOutlined.tsx new file mode 100644 index 000000000..0b24c3be9 --- /dev/null +++ b/src/IconMedicalInformationOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMedicalInformationOutlined as default } diff --git a/src/IconMedicalInformationRound.tsx b/src/IconMedicalInformationRound.tsx new file mode 100644 index 000000000..8add7104c --- /dev/null +++ b/src/IconMedicalInformationRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMedicalInformationRound as default } diff --git a/src/IconMedicalInformationSharp.tsx b/src/IconMedicalInformationSharp.tsx new file mode 100644 index 000000000..43950bc37 --- /dev/null +++ b/src/IconMedicalInformationSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMedicalInformationSharp as default } diff --git a/src/IconMedicalInformationTwoTone.tsx b/src/IconMedicalInformationTwoTone.tsx new file mode 100644 index 000000000..d66ae8337 --- /dev/null +++ b/src/IconMedicalInformationTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMedicalInformationTwoTone as default } diff --git a/src/IconMedicalServicesOutlined.tsx b/src/IconMedicalServicesOutlined.tsx new file mode 100644 index 000000000..7703467b5 --- /dev/null +++ b/src/IconMedicalServicesOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMedicalServicesOutlined as default } diff --git a/src/IconMedicalServicesRound.tsx b/src/IconMedicalServicesRound.tsx new file mode 100644 index 000000000..7e97f9233 --- /dev/null +++ b/src/IconMedicalServicesRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMedicalServicesRound as default } diff --git a/src/IconMedicalServicesSharp.tsx b/src/IconMedicalServicesSharp.tsx new file mode 100644 index 000000000..09d445197 --- /dev/null +++ b/src/IconMedicalServicesSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMedicalServicesSharp as default } diff --git a/src/IconMedicalServicesTwoTone.tsx b/src/IconMedicalServicesTwoTone.tsx new file mode 100644 index 000000000..0fb255a5c --- /dev/null +++ b/src/IconMedicalServicesTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMedicalServicesTwoTone as default } diff --git a/src/IconMedicationLiquidOutlined.tsx b/src/IconMedicationLiquidOutlined.tsx new file mode 100644 index 000000000..186a26ad8 --- /dev/null +++ b/src/IconMedicationLiquidOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMedicationLiquidOutlined as default } diff --git a/src/IconMedicationLiquidRound.tsx b/src/IconMedicationLiquidRound.tsx new file mode 100644 index 000000000..5b276e1b5 --- /dev/null +++ b/src/IconMedicationLiquidRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMedicationLiquidRound as default } diff --git a/src/IconMedicationLiquidSharp.tsx b/src/IconMedicationLiquidSharp.tsx new file mode 100644 index 000000000..445f0bc78 --- /dev/null +++ b/src/IconMedicationLiquidSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMedicationLiquidSharp as default } diff --git a/src/IconMedicationLiquidTwoTone.tsx b/src/IconMedicationLiquidTwoTone.tsx new file mode 100644 index 000000000..913fdec86 --- /dev/null +++ b/src/IconMedicationLiquidTwoTone.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconMedicationLiquidTwoTone as default } diff --git a/src/IconMedicationOutlined.tsx b/src/IconMedicationOutlined.tsx new file mode 100644 index 000000000..b60dbe1cb --- /dev/null +++ b/src/IconMedicationOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMedicationOutlined as default } diff --git a/src/IconMedicationRound.tsx b/src/IconMedicationRound.tsx new file mode 100644 index 000000000..782bfa3b6 --- /dev/null +++ b/src/IconMedicationRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMedicationRound as default } diff --git a/src/IconMedicationSharp.tsx b/src/IconMedicationSharp.tsx new file mode 100644 index 000000000..e857eb3da --- /dev/null +++ b/src/IconMedicationSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMedicationSharp as default } diff --git a/src/IconMedicationTwoTone.tsx b/src/IconMedicationTwoTone.tsx new file mode 100644 index 000000000..0147ef224 --- /dev/null +++ b/src/IconMedicationTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMedicationTwoTone as default } diff --git a/src/IconMeetingRoomOutlined.tsx b/src/IconMeetingRoomOutlined.tsx new file mode 100644 index 000000000..dd1fc327d --- /dev/null +++ b/src/IconMeetingRoomOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMeetingRoomOutlined as default } diff --git a/src/IconMeetingRoomRound.tsx b/src/IconMeetingRoomRound.tsx new file mode 100644 index 000000000..13def591f --- /dev/null +++ b/src/IconMeetingRoomRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMeetingRoomRound as default } diff --git a/src/IconMeetingRoomSharp.tsx b/src/IconMeetingRoomSharp.tsx new file mode 100644 index 000000000..37ca01f4d --- /dev/null +++ b/src/IconMeetingRoomSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMeetingRoomSharp as default } diff --git a/src/IconMeetingRoomTwoTone.tsx b/src/IconMeetingRoomTwoTone.tsx new file mode 100644 index 000000000..8a3a7cf0d --- /dev/null +++ b/src/IconMeetingRoomTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMeetingRoomTwoTone as default } diff --git a/src/IconMemoryOutlined.tsx b/src/IconMemoryOutlined.tsx new file mode 100644 index 000000000..d9bf9865c --- /dev/null +++ b/src/IconMemoryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMemoryOutlined as default } diff --git a/src/IconMemoryRound.tsx b/src/IconMemoryRound.tsx new file mode 100644 index 000000000..f4a048b98 --- /dev/null +++ b/src/IconMemoryRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryRound as default } diff --git a/src/IconMemorySharp.tsx b/src/IconMemorySharp.tsx new file mode 100644 index 000000000..a51adfb4a --- /dev/null +++ b/src/IconMemorySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMemorySharp as default } diff --git a/src/IconMemoryTwoTone.tsx b/src/IconMemoryTwoTone.tsx new file mode 100644 index 000000000..505a3abec --- /dev/null +++ b/src/IconMemoryTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMemoryTwoTone as default } diff --git a/src/IconMenuBookOutlined.tsx b/src/IconMenuBookOutlined.tsx new file mode 100644 index 000000000..4d9ebf08f --- /dev/null +++ b/src/IconMenuBookOutlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconMenuBookOutlined as default } diff --git a/src/IconMenuBookRound.tsx b/src/IconMenuBookRound.tsx new file mode 100644 index 000000000..959512c63 --- /dev/null +++ b/src/IconMenuBookRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMenuBookRound as default } diff --git a/src/IconMenuBookSharp.tsx b/src/IconMenuBookSharp.tsx new file mode 100644 index 000000000..524e30a6c --- /dev/null +++ b/src/IconMenuBookSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMenuBookSharp as default } diff --git a/src/IconMenuBookTwoTone.tsx b/src/IconMenuBookTwoTone.tsx new file mode 100644 index 000000000..ed8b7a842 --- /dev/null +++ b/src/IconMenuBookTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconMenuBookTwoTone as default } diff --git a/src/IconMenuOpenOutlined.tsx b/src/IconMenuOpenOutlined.tsx new file mode 100644 index 000000000..9b152d0d2 --- /dev/null +++ b/src/IconMenuOpenOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuOpenOutlined as default } diff --git a/src/IconMenuOpenRound.tsx b/src/IconMenuOpenRound.tsx new file mode 100644 index 000000000..2ec967d48 --- /dev/null +++ b/src/IconMenuOpenRound.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMenuOpenRound as default } diff --git a/src/IconMenuOpenSharp.tsx b/src/IconMenuOpenSharp.tsx new file mode 100644 index 000000000..f80c51738 --- /dev/null +++ b/src/IconMenuOpenSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuOpenSharp as default } diff --git a/src/IconMenuOpenTwoTone.tsx b/src/IconMenuOpenTwoTone.tsx new file mode 100644 index 000000000..044d509e6 --- /dev/null +++ b/src/IconMenuOpenTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuOpenTwoTone as default } diff --git a/src/IconMenuOutlined.tsx b/src/IconMenuOutlined.tsx new file mode 100644 index 000000000..022879745 --- /dev/null +++ b/src/IconMenuOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuOutlined as default } diff --git a/src/IconMenuRound.tsx b/src/IconMenuRound.tsx new file mode 100644 index 000000000..11a12b6e1 --- /dev/null +++ b/src/IconMenuRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuRound as default } diff --git a/src/IconMenuSharp.tsx b/src/IconMenuSharp.tsx new file mode 100644 index 000000000..15eb51b99 --- /dev/null +++ b/src/IconMenuSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuSharp as default } diff --git a/src/IconMenuTwoTone.tsx b/src/IconMenuTwoTone.tsx new file mode 100644 index 000000000..5c3c61cce --- /dev/null +++ b/src/IconMenuTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMenuTwoTone as default } diff --git a/src/IconMergeOutlined.tsx b/src/IconMergeOutlined.tsx new file mode 100644 index 000000000..5f21dc98b --- /dev/null +++ b/src/IconMergeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMergeOutlined as default } diff --git a/src/IconMergeRound.tsx b/src/IconMergeRound.tsx new file mode 100644 index 000000000..60951a438 --- /dev/null +++ b/src/IconMergeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMergeRound as default } diff --git a/src/IconMergeSharp.tsx b/src/IconMergeSharp.tsx new file mode 100644 index 000000000..ec8b3c721 --- /dev/null +++ b/src/IconMergeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMergeSharp as default } diff --git a/src/IconMergeTwoTone.tsx b/src/IconMergeTwoTone.tsx new file mode 100644 index 000000000..2343bc4d4 --- /dev/null +++ b/src/IconMergeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMergeTwoTone as default } diff --git a/src/IconMergeTypeOutlined.tsx b/src/IconMergeTypeOutlined.tsx new file mode 100644 index 000000000..2799e6e45 --- /dev/null +++ b/src/IconMergeTypeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMergeTypeOutlined as default } diff --git a/src/IconMergeTypeRound.tsx b/src/IconMergeTypeRound.tsx new file mode 100644 index 000000000..709adac5d --- /dev/null +++ b/src/IconMergeTypeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMergeTypeRound as default } diff --git a/src/IconMergeTypeSharp.tsx b/src/IconMergeTypeSharp.tsx new file mode 100644 index 000000000..9e4ef90aa --- /dev/null +++ b/src/IconMergeTypeSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeTypeSharp as default } diff --git a/src/IconMergeTypeTwoTone.tsx b/src/IconMergeTypeTwoTone.tsx new file mode 100644 index 000000000..24117408c --- /dev/null +++ b/src/IconMergeTypeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMergeTypeTwoTone as default } diff --git a/src/IconMessageOutlined.tsx b/src/IconMessageOutlined.tsx new file mode 100644 index 000000000..dabf2465e --- /dev/null +++ b/src/IconMessageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMessageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMessageOutlined as default } diff --git a/src/IconMessageRound.tsx b/src/IconMessageRound.tsx new file mode 100644 index 000000000..39c4eb8f9 --- /dev/null +++ b/src/IconMessageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMessageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMessageRound as default } diff --git a/src/IconMessageSharp.tsx b/src/IconMessageSharp.tsx new file mode 100644 index 000000000..fbed39eac --- /dev/null +++ b/src/IconMessageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMessageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMessageSharp as default } diff --git a/src/IconMessageTwoTone.tsx b/src/IconMessageTwoTone.tsx new file mode 100644 index 000000000..a415224a5 --- /dev/null +++ b/src/IconMessageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMessageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMessageTwoTone as default } diff --git a/src/IconMicExternalOffOutlined.tsx b/src/IconMicExternalOffOutlined.tsx new file mode 100644 index 000000000..76f67744d --- /dev/null +++ b/src/IconMicExternalOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMicExternalOffOutlined as default } diff --git a/src/IconMicExternalOffRound.tsx b/src/IconMicExternalOffRound.tsx new file mode 100644 index 000000000..41d285d26 --- /dev/null +++ b/src/IconMicExternalOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMicExternalOffRound as default } diff --git a/src/IconMicExternalOffSharp.tsx b/src/IconMicExternalOffSharp.tsx new file mode 100644 index 000000000..278c0342e --- /dev/null +++ b/src/IconMicExternalOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMicExternalOffSharp as default } diff --git a/src/IconMicExternalOffTwoTone.tsx b/src/IconMicExternalOffTwoTone.tsx new file mode 100644 index 000000000..a9521fea3 --- /dev/null +++ b/src/IconMicExternalOffTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMicExternalOffTwoTone as default } diff --git a/src/IconMicExternalOnOutlined.tsx b/src/IconMicExternalOnOutlined.tsx new file mode 100644 index 000000000..a8df190fc --- /dev/null +++ b/src/IconMicExternalOnOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMicExternalOnOutlined as default } diff --git a/src/IconMicExternalOnRound.tsx b/src/IconMicExternalOnRound.tsx new file mode 100644 index 000000000..105dbae88 --- /dev/null +++ b/src/IconMicExternalOnRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMicExternalOnRound as default } diff --git a/src/IconMicExternalOnSharp.tsx b/src/IconMicExternalOnSharp.tsx new file mode 100644 index 000000000..f4be902a7 --- /dev/null +++ b/src/IconMicExternalOnSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMicExternalOnSharp as default } diff --git a/src/IconMicExternalOnTwoTone.tsx b/src/IconMicExternalOnTwoTone.tsx new file mode 100644 index 000000000..6b67754ed --- /dev/null +++ b/src/IconMicExternalOnTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMicExternalOnTwoTone as default } diff --git a/src/IconMicNoneOutlined.tsx b/src/IconMicNoneOutlined.tsx new file mode 100644 index 000000000..4f752c394 --- /dev/null +++ b/src/IconMicNoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicNoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicNoneOutlined as default } diff --git a/src/IconMicNoneRound.tsx b/src/IconMicNoneRound.tsx new file mode 100644 index 000000000..c9dc36cd4 --- /dev/null +++ b/src/IconMicNoneRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicNoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicNoneRound as default } diff --git a/src/IconMicNoneSharp.tsx b/src/IconMicNoneSharp.tsx new file mode 100644 index 000000000..adaf2f6a1 --- /dev/null +++ b/src/IconMicNoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicNoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicNoneSharp as default } diff --git a/src/IconMicNoneTwoTone.tsx b/src/IconMicNoneTwoTone.tsx new file mode 100644 index 000000000..c1018888f --- /dev/null +++ b/src/IconMicNoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicNoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMicNoneTwoTone as default } diff --git a/src/IconMicOffOutlined.tsx b/src/IconMicOffOutlined.tsx new file mode 100644 index 000000000..3555e50e2 --- /dev/null +++ b/src/IconMicOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicOffOutlined as default } diff --git a/src/IconMicOffRound.tsx b/src/IconMicOffRound.tsx new file mode 100644 index 000000000..d78438eff --- /dev/null +++ b/src/IconMicOffRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicOffRound as default } diff --git a/src/IconMicOffSharp.tsx b/src/IconMicOffSharp.tsx new file mode 100644 index 000000000..87c137d8d --- /dev/null +++ b/src/IconMicOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicOffSharp as default } diff --git a/src/IconMicOffTwoTone.tsx b/src/IconMicOffTwoTone.tsx new file mode 100644 index 000000000..1abee597c --- /dev/null +++ b/src/IconMicOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMicOffTwoTone as default } diff --git a/src/IconMicOutlined.tsx b/src/IconMicOutlined.tsx new file mode 100644 index 000000000..8d06269ab --- /dev/null +++ b/src/IconMicOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMicOutlined as default } diff --git a/src/IconMicRound.tsx b/src/IconMicRound.tsx new file mode 100644 index 000000000..9adc6379f --- /dev/null +++ b/src/IconMicRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicRound as default } diff --git a/src/IconMicSharp.tsx b/src/IconMicSharp.tsx new file mode 100644 index 000000000..d5f09a213 --- /dev/null +++ b/src/IconMicSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMicSharp as default } diff --git a/src/IconMicTwoTone.tsx b/src/IconMicTwoTone.tsx new file mode 100644 index 000000000..65c2d5beb --- /dev/null +++ b/src/IconMicTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconMicTwoTone as default } diff --git a/src/IconMicrowaveOutlined.tsx b/src/IconMicrowaveOutlined.tsx new file mode 100644 index 000000000..d83292ee9 --- /dev/null +++ b/src/IconMicrowaveOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicrowaveOutlined as default } diff --git a/src/IconMicrowaveRound.tsx b/src/IconMicrowaveRound.tsx new file mode 100644 index 000000000..1b1ba664c --- /dev/null +++ b/src/IconMicrowaveRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicrowaveRound as default } diff --git a/src/IconMicrowaveSharp.tsx b/src/IconMicrowaveSharp.tsx new file mode 100644 index 000000000..f875fbf09 --- /dev/null +++ b/src/IconMicrowaveSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMicrowaveSharp as default } diff --git a/src/IconMicrowaveTwoTone.tsx b/src/IconMicrowaveTwoTone.tsx new file mode 100644 index 000000000..d4f607018 --- /dev/null +++ b/src/IconMicrowaveTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMicrowaveTwoTone as default } diff --git a/src/IconMilitaryTechOutlined.tsx b/src/IconMilitaryTechOutlined.tsx new file mode 100644 index 000000000..84a47b87b --- /dev/null +++ b/src/IconMilitaryTechOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMilitaryTechOutlined as default } diff --git a/src/IconMilitaryTechRound.tsx b/src/IconMilitaryTechRound.tsx new file mode 100644 index 000000000..31a38de00 --- /dev/null +++ b/src/IconMilitaryTechRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMilitaryTechRound as default } diff --git a/src/IconMilitaryTechSharp.tsx b/src/IconMilitaryTechSharp.tsx new file mode 100644 index 000000000..63d5d57d8 --- /dev/null +++ b/src/IconMilitaryTechSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMilitaryTechSharp as default } diff --git a/src/IconMilitaryTechTwoTone.tsx b/src/IconMilitaryTechTwoTone.tsx new file mode 100644 index 000000000..e939dffce --- /dev/null +++ b/src/IconMilitaryTechTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMilitaryTechTwoTone as default } diff --git a/src/IconMinimizeOutlined.tsx b/src/IconMinimizeOutlined.tsx new file mode 100644 index 000000000..3b15f07ec --- /dev/null +++ b/src/IconMinimizeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMinimizeOutlined as default } diff --git a/src/IconMinimizeRound.tsx b/src/IconMinimizeRound.tsx new file mode 100644 index 000000000..ae16c404e --- /dev/null +++ b/src/IconMinimizeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMinimizeRound as default } diff --git a/src/IconMinimizeSharp.tsx b/src/IconMinimizeSharp.tsx new file mode 100644 index 000000000..ee64d0656 --- /dev/null +++ b/src/IconMinimizeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMinimizeSharp as default } diff --git a/src/IconMinimizeTwoTone.tsx b/src/IconMinimizeTwoTone.tsx new file mode 100644 index 000000000..a5d287433 --- /dev/null +++ b/src/IconMinimizeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMinimizeTwoTone as default } diff --git a/src/IconMinorCrashOutlined.tsx b/src/IconMinorCrashOutlined.tsx new file mode 100644 index 000000000..48fac324d --- /dev/null +++ b/src/IconMinorCrashOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMinorCrashOutlined as default } diff --git a/src/IconMinorCrashRound.tsx b/src/IconMinorCrashRound.tsx new file mode 100644 index 000000000..a1215ac95 --- /dev/null +++ b/src/IconMinorCrashRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMinorCrashRound as default } diff --git a/src/IconMinorCrashSharp.tsx b/src/IconMinorCrashSharp.tsx new file mode 100644 index 000000000..e9e3530f8 --- /dev/null +++ b/src/IconMinorCrashSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMinorCrashSharp as default } diff --git a/src/IconMinorCrashTwoTone.tsx b/src/IconMinorCrashTwoTone.tsx new file mode 100644 index 000000000..d28dcd084 --- /dev/null +++ b/src/IconMinorCrashTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMinorCrashTwoTone as default } diff --git a/src/IconMiscellaneousServicesOutlined.tsx b/src/IconMiscellaneousServicesOutlined.tsx new file mode 100644 index 000000000..a3831d5f0 --- /dev/null +++ b/src/IconMiscellaneousServicesOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMiscellaneousServicesOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMiscellaneousServicesOutlined as default } diff --git a/src/IconMiscellaneousServicesRound.tsx b/src/IconMiscellaneousServicesRound.tsx new file mode 100644 index 000000000..96735e2f0 --- /dev/null +++ b/src/IconMiscellaneousServicesRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMiscellaneousServicesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMiscellaneousServicesRound as default } diff --git a/src/IconMiscellaneousServicesSharp.tsx b/src/IconMiscellaneousServicesSharp.tsx new file mode 100644 index 000000000..9f4e4929a --- /dev/null +++ b/src/IconMiscellaneousServicesSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMiscellaneousServicesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMiscellaneousServicesSharp as default } diff --git a/src/IconMiscellaneousServicesTwoTone.tsx b/src/IconMiscellaneousServicesTwoTone.tsx new file mode 100644 index 000000000..e1c9d1b0a --- /dev/null +++ b/src/IconMiscellaneousServicesTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMiscellaneousServicesTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMiscellaneousServicesTwoTone as default } diff --git a/src/IconMissedVideoCallOutlined.tsx b/src/IconMissedVideoCallOutlined.tsx new file mode 100644 index 000000000..0db9eafa4 --- /dev/null +++ b/src/IconMissedVideoCallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMissedVideoCallOutlined as default } diff --git a/src/IconMissedVideoCallRound.tsx b/src/IconMissedVideoCallRound.tsx new file mode 100644 index 000000000..dea92c2c5 --- /dev/null +++ b/src/IconMissedVideoCallRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMissedVideoCallRound as default } diff --git a/src/IconMissedVideoCallSharp.tsx b/src/IconMissedVideoCallSharp.tsx new file mode 100644 index 000000000..618e2b859 --- /dev/null +++ b/src/IconMissedVideoCallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMissedVideoCallSharp as default } diff --git a/src/IconMissedVideoCallTwoTone.tsx b/src/IconMissedVideoCallTwoTone.tsx new file mode 100644 index 000000000..5c38b836e --- /dev/null +++ b/src/IconMissedVideoCallTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMissedVideoCallTwoTone as default } diff --git a/src/IconMmsOutlined.tsx b/src/IconMmsOutlined.tsx new file mode 100644 index 000000000..b66d7c4c8 --- /dev/null +++ b/src/IconMmsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMmsOutlined as default } diff --git a/src/IconMmsRound.tsx b/src/IconMmsRound.tsx new file mode 100644 index 000000000..d2a745586 --- /dev/null +++ b/src/IconMmsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMmsRound as default } diff --git a/src/IconMmsSharp.tsx b/src/IconMmsSharp.tsx new file mode 100644 index 000000000..77bedde1f --- /dev/null +++ b/src/IconMmsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMmsSharp as default } diff --git a/src/IconMmsTwoTone.tsx b/src/IconMmsTwoTone.tsx new file mode 100644 index 000000000..a2c54eaf9 --- /dev/null +++ b/src/IconMmsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMmsTwoTone as default } diff --git a/src/IconMobileFriendlyOutlined.tsx b/src/IconMobileFriendlyOutlined.tsx new file mode 100644 index 000000000..10b5d285c --- /dev/null +++ b/src/IconMobileFriendlyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileFriendlyOutlined as default } diff --git a/src/IconMobileFriendlyRound.tsx b/src/IconMobileFriendlyRound.tsx new file mode 100644 index 000000000..dc8ca3c9f --- /dev/null +++ b/src/IconMobileFriendlyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileFriendlyRound as default } diff --git a/src/IconMobileFriendlySharp.tsx b/src/IconMobileFriendlySharp.tsx new file mode 100644 index 000000000..7fd5c9849 --- /dev/null +++ b/src/IconMobileFriendlySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileFriendlySharp as default } diff --git a/src/IconMobileFriendlyTwoTone.tsx b/src/IconMobileFriendlyTwoTone.tsx new file mode 100644 index 000000000..b14558ca8 --- /dev/null +++ b/src/IconMobileFriendlyTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileFriendlyTwoTone as default } diff --git a/src/IconMobileOffOutlined.tsx b/src/IconMobileOffOutlined.tsx new file mode 100644 index 000000000..941aafe5e --- /dev/null +++ b/src/IconMobileOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileOffOutlined as default } diff --git a/src/IconMobileOffRound.tsx b/src/IconMobileOffRound.tsx new file mode 100644 index 000000000..cb9e3e18d --- /dev/null +++ b/src/IconMobileOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileOffRound as default } diff --git a/src/IconMobileOffSharp.tsx b/src/IconMobileOffSharp.tsx new file mode 100644 index 000000000..73f4469cd --- /dev/null +++ b/src/IconMobileOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileOffSharp as default } diff --git a/src/IconMobileOffTwoTone.tsx b/src/IconMobileOffTwoTone.tsx new file mode 100644 index 000000000..d75c3dde9 --- /dev/null +++ b/src/IconMobileOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileOffTwoTone as default } diff --git a/src/IconMobileScreenShareOutlined.tsx b/src/IconMobileScreenShareOutlined.tsx new file mode 100644 index 000000000..ea5f97bf2 --- /dev/null +++ b/src/IconMobileScreenShareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileScreenShareOutlined as default } diff --git a/src/IconMobileScreenShareRound.tsx b/src/IconMobileScreenShareRound.tsx new file mode 100644 index 000000000..e6f800a56 --- /dev/null +++ b/src/IconMobileScreenShareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileScreenShareRound as default } diff --git a/src/IconMobileScreenShareSharp.tsx b/src/IconMobileScreenShareSharp.tsx new file mode 100644 index 000000000..1fca7964c --- /dev/null +++ b/src/IconMobileScreenShareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMobileScreenShareSharp as default } diff --git a/src/IconMobileScreenShareTwoTone.tsx b/src/IconMobileScreenShareTwoTone.tsx new file mode 100644 index 000000000..2a3b20de2 --- /dev/null +++ b/src/IconMobileScreenShareTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMobileScreenShareTwoTone as default } diff --git a/src/IconMobiledataOffOutlined.tsx b/src/IconMobiledataOffOutlined.tsx new file mode 100644 index 000000000..23a942862 --- /dev/null +++ b/src/IconMobiledataOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMobiledataOffOutlined as default } diff --git a/src/IconMobiledataOffRound.tsx b/src/IconMobiledataOffRound.tsx new file mode 100644 index 000000000..596cf4599 --- /dev/null +++ b/src/IconMobiledataOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMobiledataOffRound as default } diff --git a/src/IconMobiledataOffSharp.tsx b/src/IconMobiledataOffSharp.tsx new file mode 100644 index 000000000..dd62787b4 --- /dev/null +++ b/src/IconMobiledataOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMobiledataOffSharp as default } diff --git a/src/IconMobiledataOffTwoTone.tsx b/src/IconMobiledataOffTwoTone.tsx new file mode 100644 index 000000000..b6e667919 --- /dev/null +++ b/src/IconMobiledataOffTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMobiledataOffTwoTone as default } diff --git a/src/IconModeCommentOutlined.tsx b/src/IconModeCommentOutlined.tsx new file mode 100644 index 000000000..388b788a1 --- /dev/null +++ b/src/IconModeCommentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeCommentOutlined as default } diff --git a/src/IconModeCommentRound.tsx b/src/IconModeCommentRound.tsx new file mode 100644 index 000000000..2885a41d4 --- /dev/null +++ b/src/IconModeCommentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeCommentRound as default } diff --git a/src/IconModeCommentSharp.tsx b/src/IconModeCommentSharp.tsx new file mode 100644 index 000000000..106916eea --- /dev/null +++ b/src/IconModeCommentSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCommentSharp as default } diff --git a/src/IconModeCommentTwoTone.tsx b/src/IconModeCommentTwoTone.tsx new file mode 100644 index 000000000..e88952660 --- /dev/null +++ b/src/IconModeCommentTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconModeCommentTwoTone as default } diff --git a/src/IconModeEditOutlineOutlined.tsx b/src/IconModeEditOutlineOutlined.tsx new file mode 100644 index 000000000..be911e0eb --- /dev/null +++ b/src/IconModeEditOutlineOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeEditOutlineOutlined as default } diff --git a/src/IconModeEditOutlineRound.tsx b/src/IconModeEditOutlineRound.tsx new file mode 100644 index 000000000..3d29da143 --- /dev/null +++ b/src/IconModeEditOutlineRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeEditOutlineRound as default } diff --git a/src/IconModeEditOutlineSharp.tsx b/src/IconModeEditOutlineSharp.tsx new file mode 100644 index 000000000..5d5079cea --- /dev/null +++ b/src/IconModeEditOutlineSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeEditOutlineSharp as default } diff --git a/src/IconModeEditOutlineTwoTone.tsx b/src/IconModeEditOutlineTwoTone.tsx new file mode 100644 index 000000000..6717c128e --- /dev/null +++ b/src/IconModeEditOutlineTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconModeEditOutlineTwoTone as default } diff --git a/src/IconModeEditOutlined.tsx b/src/IconModeEditOutlined.tsx new file mode 100644 index 000000000..532eab770 --- /dev/null +++ b/src/IconModeEditOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeEditOutlined as default } diff --git a/src/IconModeEditRound.tsx b/src/IconModeEditRound.tsx new file mode 100644 index 000000000..a05d81cd0 --- /dev/null +++ b/src/IconModeEditRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeEditRound as default } diff --git a/src/IconModeEditSharp.tsx b/src/IconModeEditSharp.tsx new file mode 100644 index 000000000..162ffa322 --- /dev/null +++ b/src/IconModeEditSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeEditSharp as default } diff --git a/src/IconModeEditTwoTone.tsx b/src/IconModeEditTwoTone.tsx new file mode 100644 index 000000000..a2b1d0383 --- /dev/null +++ b/src/IconModeEditTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeEditTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconModeEditTwoTone as default } diff --git a/src/IconModeFanOffOutlined.tsx b/src/IconModeFanOffOutlined.tsx new file mode 100644 index 000000000..0cb972f4a --- /dev/null +++ b/src/IconModeFanOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconModeFanOffOutlined as default } diff --git a/src/IconModeFanOffRound.tsx b/src/IconModeFanOffRound.tsx new file mode 100644 index 000000000..332b9af47 --- /dev/null +++ b/src/IconModeFanOffRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconModeFanOffRound as default } diff --git a/src/IconModeFanOffSharp.tsx b/src/IconModeFanOffSharp.tsx new file mode 100644 index 000000000..7b9d1b315 --- /dev/null +++ b/src/IconModeFanOffSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconModeFanOffSharp as default } diff --git a/src/IconModeFanOffTwoTone.tsx b/src/IconModeFanOffTwoTone.tsx new file mode 100644 index 000000000..c38a126ea --- /dev/null +++ b/src/IconModeFanOffTwoTone.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconModeFanOffTwoTone as default } diff --git a/src/IconModeNightOutlined.tsx b/src/IconModeNightOutlined.tsx new file mode 100644 index 000000000..9a2d21744 --- /dev/null +++ b/src/IconModeNightOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeNightOutlined as default } diff --git a/src/IconModeNightRound.tsx b/src/IconModeNightRound.tsx new file mode 100644 index 000000000..769b50ee9 --- /dev/null +++ b/src/IconModeNightRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconModeNightRound as default } diff --git a/src/IconModeNightSharp.tsx b/src/IconModeNightSharp.tsx new file mode 100644 index 000000000..23d6f4172 --- /dev/null +++ b/src/IconModeNightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconModeNightSharp as default } diff --git a/src/IconModeNightTwoTone.tsx b/src/IconModeNightTwoTone.tsx new file mode 100644 index 000000000..598d40fae --- /dev/null +++ b/src/IconModeNightTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconModeNightTwoTone as default } diff --git a/src/IconModeOfTravelOutlined.tsx b/src/IconModeOfTravelOutlined.tsx new file mode 100644 index 000000000..f7400d9c1 --- /dev/null +++ b/src/IconModeOfTravelOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOfTravelOutlined as default } diff --git a/src/IconModeOfTravelRound.tsx b/src/IconModeOfTravelRound.tsx new file mode 100644 index 000000000..b2f5638ce --- /dev/null +++ b/src/IconModeOfTravelRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOfTravelRound as default } diff --git a/src/IconModeOfTravelSharp.tsx b/src/IconModeOfTravelSharp.tsx new file mode 100644 index 000000000..04bed05c8 --- /dev/null +++ b/src/IconModeOfTravelSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOfTravelSharp as default } diff --git a/src/IconModeOfTravelTwoTone.tsx b/src/IconModeOfTravelTwoTone.tsx new file mode 100644 index 000000000..180a0a44b --- /dev/null +++ b/src/IconModeOfTravelTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOfTravelTwoTone as default } diff --git a/src/IconModeOutlined.tsx b/src/IconModeOutlined.tsx new file mode 100644 index 000000000..bebdc55dd --- /dev/null +++ b/src/IconModeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeOutlined as default } diff --git a/src/IconModeRound.tsx b/src/IconModeRound.tsx new file mode 100644 index 000000000..47b357a84 --- /dev/null +++ b/src/IconModeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconModeRound as default } diff --git a/src/IconModeSharp.tsx b/src/IconModeSharp.tsx new file mode 100644 index 000000000..1aa569258 --- /dev/null +++ b/src/IconModeSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeSharp as default } diff --git a/src/IconModeStandbyOutlined.tsx b/src/IconModeStandbyOutlined.tsx new file mode 100644 index 000000000..7b8e9947e --- /dev/null +++ b/src/IconModeStandbyOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeStandbyOutlined as default } diff --git a/src/IconModeStandbyRound.tsx b/src/IconModeStandbyRound.tsx new file mode 100644 index 000000000..79670ad38 --- /dev/null +++ b/src/IconModeStandbyRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeStandbyRound as default } diff --git a/src/IconModeStandbySharp.tsx b/src/IconModeStandbySharp.tsx new file mode 100644 index 000000000..a1b16621f --- /dev/null +++ b/src/IconModeStandbySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeStandbySharp as default } diff --git a/src/IconModeStandbyTwoTone.tsx b/src/IconModeStandbyTwoTone.tsx new file mode 100644 index 000000000..f7bd2a701 --- /dev/null +++ b/src/IconModeStandbyTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconModeStandbyTwoTone as default } diff --git a/src/IconModeTwoTone.tsx b/src/IconModeTwoTone.tsx new file mode 100644 index 000000000..d42d258e4 --- /dev/null +++ b/src/IconModeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconModeTwoTone as default } diff --git a/src/IconModelTrainingOutlined.tsx b/src/IconModelTrainingOutlined.tsx new file mode 100644 index 000000000..f1573ce63 --- /dev/null +++ b/src/IconModelTrainingOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconModelTrainingOutlined as default } diff --git a/src/IconModelTrainingRound.tsx b/src/IconModelTrainingRound.tsx new file mode 100644 index 000000000..e659a5873 --- /dev/null +++ b/src/IconModelTrainingRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconModelTrainingRound as default } diff --git a/src/IconModelTrainingSharp.tsx b/src/IconModelTrainingSharp.tsx new file mode 100644 index 000000000..ade61c1d0 --- /dev/null +++ b/src/IconModelTrainingSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconModelTrainingSharp as default } diff --git a/src/IconModelTrainingTwoTone.tsx b/src/IconModelTrainingTwoTone.tsx new file mode 100644 index 000000000..c4b168535 --- /dev/null +++ b/src/IconModelTrainingTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconModelTrainingTwoTone as default } diff --git a/src/IconMonetizationOnOutlined.tsx b/src/IconMonetizationOnOutlined.tsx new file mode 100644 index 000000000..7fc5524fb --- /dev/null +++ b/src/IconMonetizationOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonetizationOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMonetizationOnOutlined as default } diff --git a/src/IconMonetizationOnRound.tsx b/src/IconMonetizationOnRound.tsx new file mode 100644 index 000000000..05c694043 --- /dev/null +++ b/src/IconMonetizationOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonetizationOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMonetizationOnRound as default } diff --git a/src/IconMonetizationOnSharp.tsx b/src/IconMonetizationOnSharp.tsx new file mode 100644 index 000000000..ba0d30dda --- /dev/null +++ b/src/IconMonetizationOnSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonetizationOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonetizationOnSharp as default } diff --git a/src/IconMonetizationOnTwoTone.tsx b/src/IconMonetizationOnTwoTone.tsx new file mode 100644 index 000000000..9fc0effe1 --- /dev/null +++ b/src/IconMonetizationOnTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonetizationOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMonetizationOnTwoTone as default } diff --git a/src/IconMoneyOffCsredOutlined.tsx b/src/IconMoneyOffCsredOutlined.tsx new file mode 100644 index 000000000..13d4618de --- /dev/null +++ b/src/IconMoneyOffCsredOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffCsredOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffCsredOutlined as default } diff --git a/src/IconMoneyOffCsredRound.tsx b/src/IconMoneyOffCsredRound.tsx new file mode 100644 index 000000000..28390362b --- /dev/null +++ b/src/IconMoneyOffCsredRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffCsredRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffCsredRound as default } diff --git a/src/IconMoneyOffCsredSharp.tsx b/src/IconMoneyOffCsredSharp.tsx new file mode 100644 index 000000000..86c5fbf53 --- /dev/null +++ b/src/IconMoneyOffCsredSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffCsredSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOffCsredSharp as default } diff --git a/src/IconMoneyOffCsredTwoTone.tsx b/src/IconMoneyOffCsredTwoTone.tsx new file mode 100644 index 000000000..bd219f19d --- /dev/null +++ b/src/IconMoneyOffCsredTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffCsredTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffCsredTwoTone as default } diff --git a/src/IconMoneyOffOutlined.tsx b/src/IconMoneyOffOutlined.tsx new file mode 100644 index 000000000..040625ba0 --- /dev/null +++ b/src/IconMoneyOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffOutlined as default } diff --git a/src/IconMoneyOffRound.tsx b/src/IconMoneyOffRound.tsx new file mode 100644 index 000000000..817d1fac7 --- /dev/null +++ b/src/IconMoneyOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffRound as default } diff --git a/src/IconMoneyOffSharp.tsx b/src/IconMoneyOffSharp.tsx new file mode 100644 index 000000000..a40a4f50b --- /dev/null +++ b/src/IconMoneyOffSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOffSharp as default } diff --git a/src/IconMoneyOffTwoTone.tsx b/src/IconMoneyOffTwoTone.tsx new file mode 100644 index 000000000..44fa8ed6d --- /dev/null +++ b/src/IconMoneyOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOffTwoTone as default } diff --git a/src/IconMoneyOutlined.tsx b/src/IconMoneyOutlined.tsx new file mode 100644 index 000000000..135f1b757 --- /dev/null +++ b/src/IconMoneyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyOutlined as default } diff --git a/src/IconMoneyRound.tsx b/src/IconMoneyRound.tsx new file mode 100644 index 000000000..c26064ff0 --- /dev/null +++ b/src/IconMoneyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneyRound as default } diff --git a/src/IconMoneySharp.tsx b/src/IconMoneySharp.tsx new file mode 100644 index 000000000..773c2dcbc --- /dev/null +++ b/src/IconMoneySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoneySharp as default } diff --git a/src/IconMoneyTwoTone.tsx b/src/IconMoneyTwoTone.tsx new file mode 100644 index 000000000..f7700da86 --- /dev/null +++ b/src/IconMoneyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMoneyTwoTone as default } diff --git a/src/IconMonitorHeartOutlined.tsx b/src/IconMonitorHeartOutlined.tsx new file mode 100644 index 000000000..d5f92a11c --- /dev/null +++ b/src/IconMonitorHeartOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMonitorHeartOutlined as default } diff --git a/src/IconMonitorHeartRound.tsx b/src/IconMonitorHeartRound.tsx new file mode 100644 index 000000000..cdcda9509 --- /dev/null +++ b/src/IconMonitorHeartRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMonitorHeartRound as default } diff --git a/src/IconMonitorHeartSharp.tsx b/src/IconMonitorHeartSharp.tsx new file mode 100644 index 000000000..525cd7a6a --- /dev/null +++ b/src/IconMonitorHeartSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMonitorHeartSharp as default } diff --git a/src/IconMonitorHeartTwoTone.tsx b/src/IconMonitorHeartTwoTone.tsx new file mode 100644 index 000000000..baab5b5d2 --- /dev/null +++ b/src/IconMonitorHeartTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMonitorHeartTwoTone as default } diff --git a/src/IconMonitorOutlined.tsx b/src/IconMonitorOutlined.tsx new file mode 100644 index 000000000..92758aac1 --- /dev/null +++ b/src/IconMonitorOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMonitorOutlined as default } diff --git a/src/IconMonitorRound.tsx b/src/IconMonitorRound.tsx new file mode 100644 index 000000000..0e8e84427 --- /dev/null +++ b/src/IconMonitorRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMonitorRound as default } diff --git a/src/IconMonitorSharp.tsx b/src/IconMonitorSharp.tsx new file mode 100644 index 000000000..0874bf77e --- /dev/null +++ b/src/IconMonitorSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMonitorSharp as default } diff --git a/src/IconMonitorTwoTone.tsx b/src/IconMonitorTwoTone.tsx new file mode 100644 index 000000000..21f3bc3f9 --- /dev/null +++ b/src/IconMonitorTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMonitorTwoTone as default } diff --git a/src/IconMonitorWeightOutlined.tsx b/src/IconMonitorWeightOutlined.tsx new file mode 100644 index 000000000..40636f0ff --- /dev/null +++ b/src/IconMonitorWeightOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMonitorWeightOutlined as default } diff --git a/src/IconMonitorWeightRound.tsx b/src/IconMonitorWeightRound.tsx new file mode 100644 index 000000000..e2f62e37a --- /dev/null +++ b/src/IconMonitorWeightRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMonitorWeightRound as default } diff --git a/src/IconMonitorWeightSharp.tsx b/src/IconMonitorWeightSharp.tsx new file mode 100644 index 000000000..89a02c9a4 --- /dev/null +++ b/src/IconMonitorWeightSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMonitorWeightSharp as default } diff --git a/src/IconMonitorWeightTwoTone.tsx b/src/IconMonitorWeightTwoTone.tsx new file mode 100644 index 000000000..4db3b407d --- /dev/null +++ b/src/IconMonitorWeightTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconMonitorWeightTwoTone as default } diff --git a/src/IconMonochromePhotosOutlined.tsx b/src/IconMonochromePhotosOutlined.tsx new file mode 100644 index 000000000..e0e521ec8 --- /dev/null +++ b/src/IconMonochromePhotosOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMonochromePhotosOutlined as default } diff --git a/src/IconMonochromePhotosRound.tsx b/src/IconMonochromePhotosRound.tsx new file mode 100644 index 000000000..83926a076 --- /dev/null +++ b/src/IconMonochromePhotosRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMonochromePhotosRound as default } diff --git a/src/IconMonochromePhotosSharp.tsx b/src/IconMonochromePhotosSharp.tsx new file mode 100644 index 000000000..b30ac3c84 --- /dev/null +++ b/src/IconMonochromePhotosSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMonochromePhotosSharp as default } diff --git a/src/IconMonochromePhotosTwoTone.tsx b/src/IconMonochromePhotosTwoTone.tsx new file mode 100644 index 000000000..a8bd57be6 --- /dev/null +++ b/src/IconMonochromePhotosTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMonochromePhotosTwoTone as default } diff --git a/src/IconMoodBadOutlined.tsx b/src/IconMoodBadOutlined.tsx new file mode 100644 index 000000000..586046d03 --- /dev/null +++ b/src/IconMoodBadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodBadOutlined as default } diff --git a/src/IconMoodBadRound.tsx b/src/IconMoodBadRound.tsx new file mode 100644 index 000000000..cae00d840 --- /dev/null +++ b/src/IconMoodBadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodBadRound as default } diff --git a/src/IconMoodBadSharp.tsx b/src/IconMoodBadSharp.tsx new file mode 100644 index 000000000..fdb806b17 --- /dev/null +++ b/src/IconMoodBadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodBadSharp as default } diff --git a/src/IconMoodBadTwoTone.tsx b/src/IconMoodBadTwoTone.tsx new file mode 100644 index 000000000..bac51acb4 --- /dev/null +++ b/src/IconMoodBadTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMoodBadTwoTone as default } diff --git a/src/IconMoodOutlined.tsx b/src/IconMoodOutlined.tsx new file mode 100644 index 000000000..edb9d6681 --- /dev/null +++ b/src/IconMoodOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodOutlined as default } diff --git a/src/IconMoodRound.tsx b/src/IconMoodRound.tsx new file mode 100644 index 000000000..cb0ba8e77 --- /dev/null +++ b/src/IconMoodRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodRound as default } diff --git a/src/IconMoodSharp.tsx b/src/IconMoodSharp.tsx new file mode 100644 index 000000000..4bff81298 --- /dev/null +++ b/src/IconMoodSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoodSharp as default } diff --git a/src/IconMoodTwoTone.tsx b/src/IconMoodTwoTone.tsx new file mode 100644 index 000000000..1ba4d0b8f --- /dev/null +++ b/src/IconMoodTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMoodTwoTone as default } diff --git a/src/IconMopedOutlined.tsx b/src/IconMopedOutlined.tsx new file mode 100644 index 000000000..52b5c0ad7 --- /dev/null +++ b/src/IconMopedOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMopedOutlined as default } diff --git a/src/IconMopedRound.tsx b/src/IconMopedRound.tsx new file mode 100644 index 000000000..fa0e12c82 --- /dev/null +++ b/src/IconMopedRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMopedRound as default } diff --git a/src/IconMopedSharp.tsx b/src/IconMopedSharp.tsx new file mode 100644 index 000000000..fc6790d9c --- /dev/null +++ b/src/IconMopedSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMopedSharp as default } diff --git a/src/IconMopedTwoTone.tsx b/src/IconMopedTwoTone.tsx new file mode 100644 index 000000000..7a380875f --- /dev/null +++ b/src/IconMopedTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMopedTwoTone as default } diff --git a/src/IconMoreHorizOutlined.tsx b/src/IconMoreHorizOutlined.tsx new file mode 100644 index 000000000..e584d173c --- /dev/null +++ b/src/IconMoreHorizOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreHorizOutlined as default } diff --git a/src/IconMoreHorizRound.tsx b/src/IconMoreHorizRound.tsx new file mode 100644 index 000000000..e963e916c --- /dev/null +++ b/src/IconMoreHorizRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreHorizRound as default } diff --git a/src/IconMoreHorizSharp.tsx b/src/IconMoreHorizSharp.tsx new file mode 100644 index 000000000..9a1efd8ad --- /dev/null +++ b/src/IconMoreHorizSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreHorizSharp as default } diff --git a/src/IconMoreHorizTwoTone.tsx b/src/IconMoreHorizTwoTone.tsx new file mode 100644 index 000000000..bffbc17c9 --- /dev/null +++ b/src/IconMoreHorizTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreHorizTwoTone as default } diff --git a/src/IconMoreOutlined.tsx b/src/IconMoreOutlined.tsx new file mode 100644 index 000000000..c88ff8171 --- /dev/null +++ b/src/IconMoreOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconMoreOutlined as default } diff --git a/src/IconMoreRound.tsx b/src/IconMoreRound.tsx new file mode 100644 index 000000000..d9de4a51c --- /dev/null +++ b/src/IconMoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreRound as default } diff --git a/src/IconMoreSharp.tsx b/src/IconMoreSharp.tsx new file mode 100644 index 000000000..c62069e7d --- /dev/null +++ b/src/IconMoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreSharp as default } diff --git a/src/IconMoreTimeOutlined.tsx b/src/IconMoreTimeOutlined.tsx new file mode 100644 index 000000000..62654a7f3 --- /dev/null +++ b/src/IconMoreTimeOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoreTimeOutlined as default } diff --git a/src/IconMoreTimeRound.tsx b/src/IconMoreTimeRound.tsx new file mode 100644 index 000000000..cb85d6f69 --- /dev/null +++ b/src/IconMoreTimeRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMoreTimeRound as default } diff --git a/src/IconMoreTimeSharp.tsx b/src/IconMoreTimeSharp.tsx new file mode 100644 index 000000000..f6cfd8d49 --- /dev/null +++ b/src/IconMoreTimeSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoreTimeSharp as default } diff --git a/src/IconMoreTimeTwoTone.tsx b/src/IconMoreTimeTwoTone.tsx new file mode 100644 index 000000000..7161521c7 --- /dev/null +++ b/src/IconMoreTimeTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoreTimeTwoTone as default } diff --git a/src/IconMoreTwoTone.tsx b/src/IconMoreTwoTone.tsx new file mode 100644 index 000000000..acf47b9f6 --- /dev/null +++ b/src/IconMoreTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMoreTwoTone as default } diff --git a/src/IconMoreVertOutlined.tsx b/src/IconMoreVertOutlined.tsx new file mode 100644 index 000000000..a24ebee7b --- /dev/null +++ b/src/IconMoreVertOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreVertOutlined as default } diff --git a/src/IconMoreVertRound.tsx b/src/IconMoreVertRound.tsx new file mode 100644 index 000000000..36b7054e7 --- /dev/null +++ b/src/IconMoreVertRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreVertRound as default } diff --git a/src/IconMoreVertSharp.tsx b/src/IconMoreVertSharp.tsx new file mode 100644 index 000000000..b66c23ba6 --- /dev/null +++ b/src/IconMoreVertSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreVertSharp as default } diff --git a/src/IconMoreVertTwoTone.tsx b/src/IconMoreVertTwoTone.tsx new file mode 100644 index 000000000..f64210341 --- /dev/null +++ b/src/IconMoreVertTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoreVertTwoTone as default } diff --git a/src/IconMosqueOutlined.tsx b/src/IconMosqueOutlined.tsx new file mode 100644 index 000000000..b2272ea1c --- /dev/null +++ b/src/IconMosqueOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMosqueOutlined as default } diff --git a/src/IconMosqueRound.tsx b/src/IconMosqueRound.tsx new file mode 100644 index 000000000..1b671e05f --- /dev/null +++ b/src/IconMosqueRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMosqueRound as default } diff --git a/src/IconMosqueSharp.tsx b/src/IconMosqueSharp.tsx new file mode 100644 index 000000000..0da89f830 --- /dev/null +++ b/src/IconMosqueSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMosqueSharp as default } diff --git a/src/IconMosqueTwoTone.tsx b/src/IconMosqueTwoTone.tsx new file mode 100644 index 000000000..cb7f572c0 --- /dev/null +++ b/src/IconMosqueTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMosqueTwoTone as default } diff --git a/src/IconMotionPhotosAutoOutlined.tsx b/src/IconMotionPhotosAutoOutlined.tsx new file mode 100644 index 000000000..52c03c560 --- /dev/null +++ b/src/IconMotionPhotosAutoOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosAutoOutlined as default } diff --git a/src/IconMotionPhotosAutoRound.tsx b/src/IconMotionPhotosAutoRound.tsx new file mode 100644 index 000000000..5cc675d49 --- /dev/null +++ b/src/IconMotionPhotosAutoRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosAutoRound as default } diff --git a/src/IconMotionPhotosAutoSharp.tsx b/src/IconMotionPhotosAutoSharp.tsx new file mode 100644 index 000000000..ca2cc8d64 --- /dev/null +++ b/src/IconMotionPhotosAutoSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosAutoSharp as default } diff --git a/src/IconMotionPhotosAutoTwoTone.tsx b/src/IconMotionPhotosAutoTwoTone.tsx new file mode 100644 index 000000000..9da3c6e74 --- /dev/null +++ b/src/IconMotionPhotosAutoTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosAutoTwoTone as default } diff --git a/src/IconMotionPhotosOffOutlined.tsx b/src/IconMotionPhotosOffOutlined.tsx new file mode 100644 index 000000000..9fa26b0e7 --- /dev/null +++ b/src/IconMotionPhotosOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMotionPhotosOffOutlined as default } diff --git a/src/IconMotionPhotosOffRound.tsx b/src/IconMotionPhotosOffRound.tsx new file mode 100644 index 000000000..cdc33bb0e --- /dev/null +++ b/src/IconMotionPhotosOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMotionPhotosOffRound as default } diff --git a/src/IconMotionPhotosOffSharp.tsx b/src/IconMotionPhotosOffSharp.tsx new file mode 100644 index 000000000..babb0a56b --- /dev/null +++ b/src/IconMotionPhotosOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMotionPhotosOffSharp as default } diff --git a/src/IconMotionPhotosOffTwoTone.tsx b/src/IconMotionPhotosOffTwoTone.tsx new file mode 100644 index 000000000..63ad19a93 --- /dev/null +++ b/src/IconMotionPhotosOffTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMotionPhotosOffTwoTone as default } diff --git a/src/IconMotionPhotosOnOutlined.tsx b/src/IconMotionPhotosOnOutlined.tsx new file mode 100644 index 000000000..efc7a0394 --- /dev/null +++ b/src/IconMotionPhotosOnOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosOnOutlined as default } diff --git a/src/IconMotionPhotosOnRound.tsx b/src/IconMotionPhotosOnRound.tsx new file mode 100644 index 000000000..894ffe1b8 --- /dev/null +++ b/src/IconMotionPhotosOnRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosOnRound as default } diff --git a/src/IconMotionPhotosOnSharp.tsx b/src/IconMotionPhotosOnSharp.tsx new file mode 100644 index 000000000..8f4bd3d77 --- /dev/null +++ b/src/IconMotionPhotosOnSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosOnSharp as default } diff --git a/src/IconMotionPhotosOnTwoTone.tsx b/src/IconMotionPhotosOnTwoTone.tsx new file mode 100644 index 000000000..e193849f6 --- /dev/null +++ b/src/IconMotionPhotosOnTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosOnTwoTone as default } diff --git a/src/IconMotionPhotosPauseOutlined.tsx b/src/IconMotionPhotosPauseOutlined.tsx new file mode 100644 index 000000000..f8af6c7e4 --- /dev/null +++ b/src/IconMotionPhotosPauseOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPauseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosPauseOutlined as default } diff --git a/src/IconMotionPhotosPauseRound.tsx b/src/IconMotionPhotosPauseRound.tsx new file mode 100644 index 000000000..9cd664739 --- /dev/null +++ b/src/IconMotionPhotosPauseRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPauseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosPauseRound as default } diff --git a/src/IconMotionPhotosPauseSharp.tsx b/src/IconMotionPhotosPauseSharp.tsx new file mode 100644 index 000000000..0028c39c3 --- /dev/null +++ b/src/IconMotionPhotosPauseSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPauseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosPauseSharp as default } diff --git a/src/IconMotionPhotosPauseTwoTone.tsx b/src/IconMotionPhotosPauseTwoTone.tsx new file mode 100644 index 000000000..a99e4fbfa --- /dev/null +++ b/src/IconMotionPhotosPauseTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPauseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosPauseTwoTone as default } diff --git a/src/IconMotionPhotosPausedOutlined.tsx b/src/IconMotionPhotosPausedOutlined.tsx new file mode 100644 index 000000000..1dac8c34b --- /dev/null +++ b/src/IconMotionPhotosPausedOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMotionPhotosPausedOutlined as default } diff --git a/src/IconMotionPhotosPausedRound.tsx b/src/IconMotionPhotosPausedRound.tsx new file mode 100644 index 000000000..ba3325c63 --- /dev/null +++ b/src/IconMotionPhotosPausedRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMotionPhotosPausedRound as default } diff --git a/src/IconMotionPhotosPausedSharp.tsx b/src/IconMotionPhotosPausedSharp.tsx new file mode 100644 index 000000000..49c361c74 --- /dev/null +++ b/src/IconMotionPhotosPausedSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMotionPhotosPausedSharp as default } diff --git a/src/IconMotionPhotosPausedTwoTone.tsx b/src/IconMotionPhotosPausedTwoTone.tsx new file mode 100644 index 000000000..b73c9c962 --- /dev/null +++ b/src/IconMotionPhotosPausedTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMotionPhotosPausedTwoTone as default } diff --git a/src/IconMouseOutlined.tsx b/src/IconMouseOutlined.tsx new file mode 100644 index 000000000..e77b6c79b --- /dev/null +++ b/src/IconMouseOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMouseOutlined as default } diff --git a/src/IconMouseRound.tsx b/src/IconMouseRound.tsx new file mode 100644 index 000000000..a088ce413 --- /dev/null +++ b/src/IconMouseRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseRound as default } diff --git a/src/IconMouseSharp.tsx b/src/IconMouseSharp.tsx new file mode 100644 index 000000000..84fb3ec45 --- /dev/null +++ b/src/IconMouseSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMouseSharp as default } diff --git a/src/IconMouseTwoTone.tsx b/src/IconMouseTwoTone.tsx new file mode 100644 index 000000000..885fbc27b --- /dev/null +++ b/src/IconMouseTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMouseTwoTone as default } diff --git a/src/IconMoveDownOutlined.tsx b/src/IconMoveDownOutlined.tsx new file mode 100644 index 000000000..6a343ecfd --- /dev/null +++ b/src/IconMoveDownOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveDownOutlined as default } diff --git a/src/IconMoveDownRound.tsx b/src/IconMoveDownRound.tsx new file mode 100644 index 000000000..7400d9042 --- /dev/null +++ b/src/IconMoveDownRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMoveDownRound as default } diff --git a/src/IconMoveDownSharp.tsx b/src/IconMoveDownSharp.tsx new file mode 100644 index 000000000..83434650d --- /dev/null +++ b/src/IconMoveDownSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveDownSharp as default } diff --git a/src/IconMoveDownTwoTone.tsx b/src/IconMoveDownTwoTone.tsx new file mode 100644 index 000000000..550f5abb1 --- /dev/null +++ b/src/IconMoveDownTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMoveDownTwoTone as default } diff --git a/src/IconMoveToInboxOutlined.tsx b/src/IconMoveToInboxOutlined.tsx new file mode 100644 index 000000000..2b5fd7a85 --- /dev/null +++ b/src/IconMoveToInboxOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoveToInboxOutlined as default } diff --git a/src/IconMoveToInboxRound.tsx b/src/IconMoveToInboxRound.tsx new file mode 100644 index 000000000..4e20dcb4e --- /dev/null +++ b/src/IconMoveToInboxRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMoveToInboxRound as default } diff --git a/src/IconMoveToInboxSharp.tsx b/src/IconMoveToInboxSharp.tsx new file mode 100644 index 000000000..d9c650cb4 --- /dev/null +++ b/src/IconMoveToInboxSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMoveToInboxSharp as default } diff --git a/src/IconMoveToInboxTwoTone.tsx b/src/IconMoveToInboxTwoTone.tsx new file mode 100644 index 000000000..52696d002 --- /dev/null +++ b/src/IconMoveToInboxTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMoveToInboxTwoTone as default } diff --git a/src/IconMoveUpOutlined.tsx b/src/IconMoveUpOutlined.tsx new file mode 100644 index 000000000..246a5b1f1 --- /dev/null +++ b/src/IconMoveUpOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveUpOutlined as default } diff --git a/src/IconMoveUpRound.tsx b/src/IconMoveUpRound.tsx new file mode 100644 index 000000000..bba6b704c --- /dev/null +++ b/src/IconMoveUpRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMoveUpRound as default } diff --git a/src/IconMoveUpSharp.tsx b/src/IconMoveUpSharp.tsx new file mode 100644 index 000000000..2cd0b8af3 --- /dev/null +++ b/src/IconMoveUpSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMoveUpSharp as default } diff --git a/src/IconMoveUpTwoTone.tsx b/src/IconMoveUpTwoTone.tsx new file mode 100644 index 000000000..4e99c0d43 --- /dev/null +++ b/src/IconMoveUpTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconMoveUpTwoTone as default } diff --git a/src/IconMovieCreationOutlined.tsx b/src/IconMovieCreationOutlined.tsx new file mode 100644 index 000000000..961dd285d --- /dev/null +++ b/src/IconMovieCreationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieCreationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieCreationOutlined as default } diff --git a/src/IconMovieCreationRound.tsx b/src/IconMovieCreationRound.tsx new file mode 100644 index 000000000..68ba8761c --- /dev/null +++ b/src/IconMovieCreationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieCreationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieCreationRound as default } diff --git a/src/IconMovieCreationSharp.tsx b/src/IconMovieCreationSharp.tsx new file mode 100644 index 000000000..f1c8bef5a --- /dev/null +++ b/src/IconMovieCreationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieCreationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieCreationSharp as default } diff --git a/src/IconMovieCreationTwoTone.tsx b/src/IconMovieCreationTwoTone.tsx new file mode 100644 index 000000000..8f97a8f68 --- /dev/null +++ b/src/IconMovieCreationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieCreationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMovieCreationTwoTone as default } diff --git a/src/IconMovieFilterOutlined.tsx b/src/IconMovieFilterOutlined.tsx new file mode 100644 index 000000000..3a64fc328 --- /dev/null +++ b/src/IconMovieFilterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieFilterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieFilterOutlined as default } diff --git a/src/IconMovieFilterRound.tsx b/src/IconMovieFilterRound.tsx new file mode 100644 index 000000000..20fb317d5 --- /dev/null +++ b/src/IconMovieFilterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieFilterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieFilterRound as default } diff --git a/src/IconMovieFilterSharp.tsx b/src/IconMovieFilterSharp.tsx new file mode 100644 index 000000000..45c9f6b7a --- /dev/null +++ b/src/IconMovieFilterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieFilterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieFilterSharp as default } diff --git a/src/IconMovieFilterTwoTone.tsx b/src/IconMovieFilterTwoTone.tsx new file mode 100644 index 000000000..56efebea6 --- /dev/null +++ b/src/IconMovieFilterTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieFilterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMovieFilterTwoTone as default } diff --git a/src/IconMovieOutlined.tsx b/src/IconMovieOutlined.tsx new file mode 100644 index 000000000..6b42ad456 --- /dev/null +++ b/src/IconMovieOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieOutlined as default } diff --git a/src/IconMovieRound.tsx b/src/IconMovieRound.tsx new file mode 100644 index 000000000..f14145b61 --- /dev/null +++ b/src/IconMovieRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieRound as default } diff --git a/src/IconMovieSharp.tsx b/src/IconMovieSharp.tsx new file mode 100644 index 000000000..55f1368f0 --- /dev/null +++ b/src/IconMovieSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovieSharp as default } diff --git a/src/IconMovieTwoTone.tsx b/src/IconMovieTwoTone.tsx new file mode 100644 index 000000000..1cfac45f4 --- /dev/null +++ b/src/IconMovieTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMovieTwoTone as default } diff --git a/src/IconMovingOutlined.tsx b/src/IconMovingOutlined.tsx new file mode 100644 index 000000000..bd5fcdcbc --- /dev/null +++ b/src/IconMovingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovingOutlined as default } diff --git a/src/IconMovingRound.tsx b/src/IconMovingRound.tsx new file mode 100644 index 000000000..8d56ee605 --- /dev/null +++ b/src/IconMovingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovingRound as default } diff --git a/src/IconMovingSharp.tsx b/src/IconMovingSharp.tsx new file mode 100644 index 000000000..74020b841 --- /dev/null +++ b/src/IconMovingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovingSharp as default } diff --git a/src/IconMovingTwoTone.tsx b/src/IconMovingTwoTone.tsx new file mode 100644 index 000000000..5f23164c1 --- /dev/null +++ b/src/IconMovingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMovingTwoTone as default } diff --git a/src/IconMpOutlined.tsx b/src/IconMpOutlined.tsx new file mode 100644 index 000000000..c8b377e4a --- /dev/null +++ b/src/IconMpOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMpOutlined as default } diff --git a/src/IconMpRound.tsx b/src/IconMpRound.tsx new file mode 100644 index 000000000..042a00e2b --- /dev/null +++ b/src/IconMpRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMpRound as default } diff --git a/src/IconMpSharp.tsx b/src/IconMpSharp.tsx new file mode 100644 index 000000000..6acda9a23 --- /dev/null +++ b/src/IconMpSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconMpSharp as default } diff --git a/src/IconMpTwoTone.tsx b/src/IconMpTwoTone.tsx new file mode 100644 index 000000000..60af955da --- /dev/null +++ b/src/IconMpTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconMpTwoTone as default } diff --git a/src/IconMultilineChartOutlined.tsx b/src/IconMultilineChartOutlined.tsx new file mode 100644 index 000000000..5d4028939 --- /dev/null +++ b/src/IconMultilineChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMultilineChartOutlined as default } diff --git a/src/IconMultilineChartRound.tsx b/src/IconMultilineChartRound.tsx new file mode 100644 index 000000000..011c286c7 --- /dev/null +++ b/src/IconMultilineChartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMultilineChartRound as default } diff --git a/src/IconMultilineChartSharp.tsx b/src/IconMultilineChartSharp.tsx new file mode 100644 index 000000000..6ac7b15f7 --- /dev/null +++ b/src/IconMultilineChartSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultilineChartSharp as default } diff --git a/src/IconMultilineChartTwoTone.tsx b/src/IconMultilineChartTwoTone.tsx new file mode 100644 index 000000000..61b2efc6c --- /dev/null +++ b/src/IconMultilineChartTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMultilineChartTwoTone as default } diff --git a/src/IconMultipleStopOutlined.tsx b/src/IconMultipleStopOutlined.tsx new file mode 100644 index 000000000..d4bd0b8e7 --- /dev/null +++ b/src/IconMultipleStopOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMultipleStopOutlined as default } diff --git a/src/IconMultipleStopRound.tsx b/src/IconMultipleStopRound.tsx new file mode 100644 index 000000000..6d69bfe3f --- /dev/null +++ b/src/IconMultipleStopRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMultipleStopRound as default } diff --git a/src/IconMultipleStopSharp.tsx b/src/IconMultipleStopSharp.tsx new file mode 100644 index 000000000..6528ef34b --- /dev/null +++ b/src/IconMultipleStopSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMultipleStopSharp as default } diff --git a/src/IconMultipleStopTwoTone.tsx b/src/IconMultipleStopTwoTone.tsx new file mode 100644 index 000000000..842073a2a --- /dev/null +++ b/src/IconMultipleStopTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMultipleStopTwoTone as default } diff --git a/src/IconMuseumOutlined.tsx b/src/IconMuseumOutlined.tsx new file mode 100644 index 000000000..016735c99 --- /dev/null +++ b/src/IconMuseumOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconMuseumOutlined as default } diff --git a/src/IconMuseumRound.tsx b/src/IconMuseumRound.tsx new file mode 100644 index 000000000..7c6525d57 --- /dev/null +++ b/src/IconMuseumRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMuseumRound as default } diff --git a/src/IconMuseumSharp.tsx b/src/IconMuseumSharp.tsx new file mode 100644 index 000000000..0e4435700 --- /dev/null +++ b/src/IconMuseumSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconMuseumSharp as default } diff --git a/src/IconMuseumTwoTone.tsx b/src/IconMuseumTwoTone.tsx new file mode 100644 index 000000000..108a328e4 --- /dev/null +++ b/src/IconMuseumTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconMuseumTwoTone as default } diff --git a/src/IconMusicNoteOutlined.tsx b/src/IconMusicNoteOutlined.tsx new file mode 100644 index 000000000..463a4603b --- /dev/null +++ b/src/IconMusicNoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicNoteOutlined as default } diff --git a/src/IconMusicNoteRound.tsx b/src/IconMusicNoteRound.tsx new file mode 100644 index 000000000..32341a346 --- /dev/null +++ b/src/IconMusicNoteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicNoteRound as default } diff --git a/src/IconMusicNoteSharp.tsx b/src/IconMusicNoteSharp.tsx new file mode 100644 index 000000000..47a10b49b --- /dev/null +++ b/src/IconMusicNoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicNoteSharp as default } diff --git a/src/IconMusicNoteTwoTone.tsx b/src/IconMusicNoteTwoTone.tsx new file mode 100644 index 000000000..90565a50c --- /dev/null +++ b/src/IconMusicNoteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMusicNoteTwoTone as default } diff --git a/src/IconMusicOffOutlined.tsx b/src/IconMusicOffOutlined.tsx new file mode 100644 index 000000000..7498af1bb --- /dev/null +++ b/src/IconMusicOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicOffOutlined as default } diff --git a/src/IconMusicOffRound.tsx b/src/IconMusicOffRound.tsx new file mode 100644 index 000000000..237714835 --- /dev/null +++ b/src/IconMusicOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicOffRound as default } diff --git a/src/IconMusicOffSharp.tsx b/src/IconMusicOffSharp.tsx new file mode 100644 index 000000000..5b3a97cf6 --- /dev/null +++ b/src/IconMusicOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicOffSharp as default } diff --git a/src/IconMusicOffTwoTone.tsx b/src/IconMusicOffTwoTone.tsx new file mode 100644 index 000000000..6c1560f8f --- /dev/null +++ b/src/IconMusicOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMusicOffTwoTone as default } diff --git a/src/IconMusicVideoOutlined.tsx b/src/IconMusicVideoOutlined.tsx new file mode 100644 index 000000000..368a46649 --- /dev/null +++ b/src/IconMusicVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicVideoOutlined as default } diff --git a/src/IconMusicVideoRound.tsx b/src/IconMusicVideoRound.tsx new file mode 100644 index 000000000..196b18009 --- /dev/null +++ b/src/IconMusicVideoRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconMusicVideoRound as default } diff --git a/src/IconMusicVideoSharp.tsx b/src/IconMusicVideoSharp.tsx new file mode 100644 index 000000000..eb5c85033 --- /dev/null +++ b/src/IconMusicVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMusicVideoSharp as default } diff --git a/src/IconMusicVideoTwoTone.tsx b/src/IconMusicVideoTwoTone.tsx new file mode 100644 index 000000000..80a361bf1 --- /dev/null +++ b/src/IconMusicVideoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconMusicVideoTwoTone as default } diff --git a/src/IconMyLocationOutlined.tsx b/src/IconMyLocationOutlined.tsx new file mode 100644 index 000000000..c4283be57 --- /dev/null +++ b/src/IconMyLocationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMyLocationOutlined as default } diff --git a/src/IconMyLocationRound.tsx b/src/IconMyLocationRound.tsx new file mode 100644 index 000000000..615aa664c --- /dev/null +++ b/src/IconMyLocationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMyLocationRound as default } diff --git a/src/IconMyLocationSharp.tsx b/src/IconMyLocationSharp.tsx new file mode 100644 index 000000000..5fd7f311f --- /dev/null +++ b/src/IconMyLocationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconMyLocationSharp as default } diff --git a/src/IconMyLocationTwoTone.tsx b/src/IconMyLocationTwoTone.tsx new file mode 100644 index 000000000..6577325f6 --- /dev/null +++ b/src/IconMyLocationTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconMyLocationTwoTone as default } diff --git a/src/IconNatOutlined.tsx b/src/IconNatOutlined.tsx new file mode 100644 index 000000000..83904a90b --- /dev/null +++ b/src/IconNatOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNatOutlined as default } diff --git a/src/IconNatRound.tsx b/src/IconNatRound.tsx new file mode 100644 index 000000000..43677fdb3 --- /dev/null +++ b/src/IconNatRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNatRound as default } diff --git a/src/IconNatSharp.tsx b/src/IconNatSharp.tsx new file mode 100644 index 000000000..9d3f91f60 --- /dev/null +++ b/src/IconNatSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNatSharp as default } diff --git a/src/IconNatTwoTone.tsx b/src/IconNatTwoTone.tsx new file mode 100644 index 000000000..8f638189a --- /dev/null +++ b/src/IconNatTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNatTwoTone as default } diff --git a/src/IconNatureOutlined.tsx b/src/IconNatureOutlined.tsx new file mode 100644 index 000000000..b50c89a78 --- /dev/null +++ b/src/IconNatureOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNatureOutlined as default } diff --git a/src/IconNaturePeopleOutlined.tsx b/src/IconNaturePeopleOutlined.tsx new file mode 100644 index 000000000..0f7a68c11 --- /dev/null +++ b/src/IconNaturePeopleOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNaturePeopleOutlined as default } diff --git a/src/IconNaturePeopleRound.tsx b/src/IconNaturePeopleRound.tsx new file mode 100644 index 000000000..aafee0a55 --- /dev/null +++ b/src/IconNaturePeopleRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNaturePeopleRound as default } diff --git a/src/IconNaturePeopleSharp.tsx b/src/IconNaturePeopleSharp.tsx new file mode 100644 index 000000000..3cfaf35af --- /dev/null +++ b/src/IconNaturePeopleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNaturePeopleSharp as default } diff --git a/src/IconNaturePeopleTwoTone.tsx b/src/IconNaturePeopleTwoTone.tsx new file mode 100644 index 000000000..fff68f562 --- /dev/null +++ b/src/IconNaturePeopleTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNaturePeopleTwoTone as default } diff --git a/src/IconNatureRound.tsx b/src/IconNatureRound.tsx new file mode 100644 index 000000000..cd0bea0ae --- /dev/null +++ b/src/IconNatureRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNatureRound as default } diff --git a/src/IconNatureSharp.tsx b/src/IconNatureSharp.tsx new file mode 100644 index 000000000..f62ee6992 --- /dev/null +++ b/src/IconNatureSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNatureSharp as default } diff --git a/src/IconNatureTwoTone.tsx b/src/IconNatureTwoTone.tsx new file mode 100644 index 000000000..61d50a7b6 --- /dev/null +++ b/src/IconNatureTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNatureTwoTone as default } diff --git a/src/IconNavigateBeforeOutlined.tsx b/src/IconNavigateBeforeOutlined.tsx new file mode 100644 index 000000000..fc0e72e0e --- /dev/null +++ b/src/IconNavigateBeforeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateBeforeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateBeforeOutlined as default } diff --git a/src/IconNavigateBeforeRound.tsx b/src/IconNavigateBeforeRound.tsx new file mode 100644 index 000000000..bd878b3c1 --- /dev/null +++ b/src/IconNavigateBeforeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateBeforeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateBeforeRound as default } diff --git a/src/IconNavigateBeforeSharp.tsx b/src/IconNavigateBeforeSharp.tsx new file mode 100644 index 000000000..c5d9b3b5a --- /dev/null +++ b/src/IconNavigateBeforeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateBeforeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateBeforeSharp as default } diff --git a/src/IconNavigateBeforeTwoTone.tsx b/src/IconNavigateBeforeTwoTone.tsx new file mode 100644 index 000000000..2207c5ae8 --- /dev/null +++ b/src/IconNavigateBeforeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateBeforeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateBeforeTwoTone as default } diff --git a/src/IconNavigateNextOutlined.tsx b/src/IconNavigateNextOutlined.tsx new file mode 100644 index 000000000..4ef1026ce --- /dev/null +++ b/src/IconNavigateNextOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateNextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateNextOutlined as default } diff --git a/src/IconNavigateNextRound.tsx b/src/IconNavigateNextRound.tsx new file mode 100644 index 000000000..eb5772b78 --- /dev/null +++ b/src/IconNavigateNextRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateNextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateNextRound as default } diff --git a/src/IconNavigateNextSharp.tsx b/src/IconNavigateNextSharp.tsx new file mode 100644 index 000000000..ffb86a31c --- /dev/null +++ b/src/IconNavigateNextSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateNextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateNextSharp as default } diff --git a/src/IconNavigateNextTwoTone.tsx b/src/IconNavigateNextTwoTone.tsx new file mode 100644 index 000000000..eaf082d0d --- /dev/null +++ b/src/IconNavigateNextTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigateNextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigateNextTwoTone as default } diff --git a/src/IconNavigationOutlined.tsx b/src/IconNavigationOutlined.tsx new file mode 100644 index 000000000..f71fca25b --- /dev/null +++ b/src/IconNavigationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigationOutlined as default } diff --git a/src/IconNavigationRound.tsx b/src/IconNavigationRound.tsx new file mode 100644 index 000000000..cdf0ba808 --- /dev/null +++ b/src/IconNavigationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigationRound as default } diff --git a/src/IconNavigationSharp.tsx b/src/IconNavigationSharp.tsx new file mode 100644 index 000000000..aca2a833a --- /dev/null +++ b/src/IconNavigationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNavigationSharp as default } diff --git a/src/IconNavigationTwoTone.tsx b/src/IconNavigationTwoTone.tsx new file mode 100644 index 000000000..ba7068776 --- /dev/null +++ b/src/IconNavigationTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNavigationTwoTone as default } diff --git a/src/IconNearMeDisabledOutlined.tsx b/src/IconNearMeDisabledOutlined.tsx new file mode 100644 index 000000000..831194cff --- /dev/null +++ b/src/IconNearMeDisabledOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeDisabledOutlined as default } diff --git a/src/IconNearMeDisabledRound.tsx b/src/IconNearMeDisabledRound.tsx new file mode 100644 index 000000000..63d100f77 --- /dev/null +++ b/src/IconNearMeDisabledRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeDisabledRound as default } diff --git a/src/IconNearMeDisabledSharp.tsx b/src/IconNearMeDisabledSharp.tsx new file mode 100644 index 000000000..42c9ca585 --- /dev/null +++ b/src/IconNearMeDisabledSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeDisabledSharp as default } diff --git a/src/IconNearMeDisabledTwoTone.tsx b/src/IconNearMeDisabledTwoTone.tsx new file mode 100644 index 000000000..c8e742301 --- /dev/null +++ b/src/IconNearMeDisabledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNearMeDisabledTwoTone as default } diff --git a/src/IconNearMeOutlined.tsx b/src/IconNearMeOutlined.tsx new file mode 100644 index 000000000..c6192d42c --- /dev/null +++ b/src/IconNearMeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeOutlined as default } diff --git a/src/IconNearMeRound.tsx b/src/IconNearMeRound.tsx new file mode 100644 index 000000000..e6a470a5f --- /dev/null +++ b/src/IconNearMeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeRound as default } diff --git a/src/IconNearMeSharp.tsx b/src/IconNearMeSharp.tsx new file mode 100644 index 000000000..b90fe3995 --- /dev/null +++ b/src/IconNearMeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNearMeSharp as default } diff --git a/src/IconNearMeTwoTone.tsx b/src/IconNearMeTwoTone.tsx new file mode 100644 index 000000000..3d1cef0c3 --- /dev/null +++ b/src/IconNearMeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNearMeTwoTone as default } diff --git a/src/IconNearbyErrorOutlined.tsx b/src/IconNearbyErrorOutlined.tsx new file mode 100644 index 000000000..4134d43ef --- /dev/null +++ b/src/IconNearbyErrorOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyErrorOutlined as default } diff --git a/src/IconNearbyErrorRound.tsx b/src/IconNearbyErrorRound.tsx new file mode 100644 index 000000000..8e5f4942a --- /dev/null +++ b/src/IconNearbyErrorRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNearbyErrorRound as default } diff --git a/src/IconNearbyErrorSharp.tsx b/src/IconNearbyErrorSharp.tsx new file mode 100644 index 000000000..6e5c07207 --- /dev/null +++ b/src/IconNearbyErrorSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyErrorSharp as default } diff --git a/src/IconNearbyErrorTwoTone.tsx b/src/IconNearbyErrorTwoTone.tsx new file mode 100644 index 000000000..54986e22a --- /dev/null +++ b/src/IconNearbyErrorTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyErrorTwoTone as default } diff --git a/src/IconNearbyOffOutlined.tsx b/src/IconNearbyOffOutlined.tsx new file mode 100644 index 000000000..bfac6962b --- /dev/null +++ b/src/IconNearbyOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyOffOutlined as default } diff --git a/src/IconNearbyOffRound.tsx b/src/IconNearbyOffRound.tsx new file mode 100644 index 000000000..62a72c59f --- /dev/null +++ b/src/IconNearbyOffRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyOffRound as default } diff --git a/src/IconNearbyOffSharp.tsx b/src/IconNearbyOffSharp.tsx new file mode 100644 index 000000000..26aeaf3f4 --- /dev/null +++ b/src/IconNearbyOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyOffSharp as default } diff --git a/src/IconNearbyOffTwoTone.tsx b/src/IconNearbyOffTwoTone.tsx new file mode 100644 index 000000000..edf69b3a3 --- /dev/null +++ b/src/IconNearbyOffTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNearbyOffTwoTone as default } diff --git a/src/IconNestCamWiredStandOutlined.tsx b/src/IconNestCamWiredStandOutlined.tsx new file mode 100644 index 000000000..eb9ad20ff --- /dev/null +++ b/src/IconNestCamWiredStandOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNestCamWiredStandOutlined as default } diff --git a/src/IconNestCamWiredStandRound.tsx b/src/IconNestCamWiredStandRound.tsx new file mode 100644 index 000000000..7c4cdcf2c --- /dev/null +++ b/src/IconNestCamWiredStandRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNestCamWiredStandRound as default } diff --git a/src/IconNestCamWiredStandSharp.tsx b/src/IconNestCamWiredStandSharp.tsx new file mode 100644 index 000000000..a0d0be9ce --- /dev/null +++ b/src/IconNestCamWiredStandSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNestCamWiredStandSharp as default } diff --git a/src/IconNestCamWiredStandTwoTone.tsx b/src/IconNestCamWiredStandTwoTone.tsx new file mode 100644 index 000000000..0678f2f8a --- /dev/null +++ b/src/IconNestCamWiredStandTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNestCamWiredStandTwoTone as default } diff --git a/src/IconNetworkCellOutlined.tsx b/src/IconNetworkCellOutlined.tsx new file mode 100644 index 000000000..263f964ee --- /dev/null +++ b/src/IconNetworkCellOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkCellOutlined as default } diff --git a/src/IconNetworkCellRound.tsx b/src/IconNetworkCellRound.tsx new file mode 100644 index 000000000..22e038860 --- /dev/null +++ b/src/IconNetworkCellRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkCellRound as default } diff --git a/src/IconNetworkCellSharp.tsx b/src/IconNetworkCellSharp.tsx new file mode 100644 index 000000000..5532edee5 --- /dev/null +++ b/src/IconNetworkCellSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkCellSharp as default } diff --git a/src/IconNetworkCellTwoTone.tsx b/src/IconNetworkCellTwoTone.tsx new file mode 100644 index 000000000..80e589436 --- /dev/null +++ b/src/IconNetworkCellTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkCellTwoTone as default } diff --git a/src/IconNetworkCheckOutlined.tsx b/src/IconNetworkCheckOutlined.tsx new file mode 100644 index 000000000..d9b8a3985 --- /dev/null +++ b/src/IconNetworkCheckOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkCheckOutlined as default } diff --git a/src/IconNetworkCheckRound.tsx b/src/IconNetworkCheckRound.tsx new file mode 100644 index 000000000..be696422f --- /dev/null +++ b/src/IconNetworkCheckRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkCheckRound as default } diff --git a/src/IconNetworkCheckSharp.tsx b/src/IconNetworkCheckSharp.tsx new file mode 100644 index 000000000..8b1e9e00a --- /dev/null +++ b/src/IconNetworkCheckSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkCheckSharp as default } diff --git a/src/IconNetworkCheckTwoTone.tsx b/src/IconNetworkCheckTwoTone.tsx new file mode 100644 index 000000000..30ce72bed --- /dev/null +++ b/src/IconNetworkCheckTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkCheckTwoTone as default } diff --git a/src/IconNetworkLockedOutlined.tsx b/src/IconNetworkLockedOutlined.tsx new file mode 100644 index 000000000..fa90c5be9 --- /dev/null +++ b/src/IconNetworkLockedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkLockedOutlined as default } diff --git a/src/IconNetworkLockedRound.tsx b/src/IconNetworkLockedRound.tsx new file mode 100644 index 000000000..08698ce4a --- /dev/null +++ b/src/IconNetworkLockedRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkLockedRound as default } diff --git a/src/IconNetworkLockedSharp.tsx b/src/IconNetworkLockedSharp.tsx new file mode 100644 index 000000000..c05e1698e --- /dev/null +++ b/src/IconNetworkLockedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkLockedSharp as default } diff --git a/src/IconNetworkLockedTwoTone.tsx b/src/IconNetworkLockedTwoTone.tsx new file mode 100644 index 000000000..77f6813f1 --- /dev/null +++ b/src/IconNetworkLockedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNetworkLockedTwoTone as default } diff --git a/src/IconNetworkPingOutlined.tsx b/src/IconNetworkPingOutlined.tsx new file mode 100644 index 000000000..caa742f7c --- /dev/null +++ b/src/IconNetworkPingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkPingOutlined as default } diff --git a/src/IconNetworkPingRound.tsx b/src/IconNetworkPingRound.tsx new file mode 100644 index 000000000..70416d5ec --- /dev/null +++ b/src/IconNetworkPingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkPingRound as default } diff --git a/src/IconNetworkPingSharp.tsx b/src/IconNetworkPingSharp.tsx new file mode 100644 index 000000000..0883afad2 --- /dev/null +++ b/src/IconNetworkPingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkPingSharp as default } diff --git a/src/IconNetworkPingTwoTone.tsx b/src/IconNetworkPingTwoTone.tsx new file mode 100644 index 000000000..70973102f --- /dev/null +++ b/src/IconNetworkPingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkPingTwoTone as default } diff --git a/src/IconNetworkWifi1BarOutlined.tsx b/src/IconNetworkWifi1BarOutlined.tsx new file mode 100644 index 000000000..1cdd0dfc5 --- /dev/null +++ b/src/IconNetworkWifi1BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi1BarOutlined as default } diff --git a/src/IconNetworkWifi1BarRound.tsx b/src/IconNetworkWifi1BarRound.tsx new file mode 100644 index 000000000..e1f70b6ad --- /dev/null +++ b/src/IconNetworkWifi1BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi1BarRound as default } diff --git a/src/IconNetworkWifi1BarSharp.tsx b/src/IconNetworkWifi1BarSharp.tsx new file mode 100644 index 000000000..ad968f8d3 --- /dev/null +++ b/src/IconNetworkWifi1BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi1BarSharp as default } diff --git a/src/IconNetworkWifi1BarTwoTone.tsx b/src/IconNetworkWifi1BarTwoTone.tsx new file mode 100644 index 000000000..d37c77157 --- /dev/null +++ b/src/IconNetworkWifi1BarTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi1BarTwoTone as default } diff --git a/src/IconNetworkWifi2BarOutlined.tsx b/src/IconNetworkWifi2BarOutlined.tsx new file mode 100644 index 000000000..0569450d7 --- /dev/null +++ b/src/IconNetworkWifi2BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi2BarOutlined as default } diff --git a/src/IconNetworkWifi2BarRound.tsx b/src/IconNetworkWifi2BarRound.tsx new file mode 100644 index 000000000..1ad980bd8 --- /dev/null +++ b/src/IconNetworkWifi2BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi2BarRound as default } diff --git a/src/IconNetworkWifi2BarSharp.tsx b/src/IconNetworkWifi2BarSharp.tsx new file mode 100644 index 000000000..e7371d973 --- /dev/null +++ b/src/IconNetworkWifi2BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi2BarSharp as default } diff --git a/src/IconNetworkWifi2BarTwoTone.tsx b/src/IconNetworkWifi2BarTwoTone.tsx new file mode 100644 index 000000000..a1c344ffc --- /dev/null +++ b/src/IconNetworkWifi2BarTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi2BarTwoTone as default } diff --git a/src/IconNetworkWifi3BarOutlined.tsx b/src/IconNetworkWifi3BarOutlined.tsx new file mode 100644 index 000000000..dc25b71e4 --- /dev/null +++ b/src/IconNetworkWifi3BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi3BarOutlined as default } diff --git a/src/IconNetworkWifi3BarRound.tsx b/src/IconNetworkWifi3BarRound.tsx new file mode 100644 index 000000000..afcb91644 --- /dev/null +++ b/src/IconNetworkWifi3BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi3BarRound as default } diff --git a/src/IconNetworkWifi3BarSharp.tsx b/src/IconNetworkWifi3BarSharp.tsx new file mode 100644 index 000000000..57a065f36 --- /dev/null +++ b/src/IconNetworkWifi3BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifi3BarSharp as default } diff --git a/src/IconNetworkWifi3BarTwoTone.tsx b/src/IconNetworkWifi3BarTwoTone.tsx new file mode 100644 index 000000000..bba4b4215 --- /dev/null +++ b/src/IconNetworkWifi3BarTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNetworkWifi3BarTwoTone as default } diff --git a/src/IconNetworkWifiOutlined.tsx b/src/IconNetworkWifiOutlined.tsx new file mode 100644 index 000000000..4cbae88e4 --- /dev/null +++ b/src/IconNetworkWifiOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifiOutlined as default } diff --git a/src/IconNetworkWifiRound.tsx b/src/IconNetworkWifiRound.tsx new file mode 100644 index 000000000..6fe6103f8 --- /dev/null +++ b/src/IconNetworkWifiRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifiRound as default } diff --git a/src/IconNetworkWifiSharp.tsx b/src/IconNetworkWifiSharp.tsx new file mode 100644 index 000000000..a7bbbbd68 --- /dev/null +++ b/src/IconNetworkWifiSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifiSharp as default } diff --git a/src/IconNetworkWifiTwoTone.tsx b/src/IconNetworkWifiTwoTone.tsx new file mode 100644 index 000000000..5acf861af --- /dev/null +++ b/src/IconNetworkWifiTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNetworkWifiTwoTone as default } diff --git a/src/IconNewLabelOutlined.tsx b/src/IconNewLabelOutlined.tsx new file mode 100644 index 000000000..3ca4f951d --- /dev/null +++ b/src/IconNewLabelOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNewLabelOutlined as default } diff --git a/src/IconNewLabelRound.tsx b/src/IconNewLabelRound.tsx new file mode 100644 index 000000000..5804d4e88 --- /dev/null +++ b/src/IconNewLabelRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNewLabelRound as default } diff --git a/src/IconNewLabelSharp.tsx b/src/IconNewLabelSharp.tsx new file mode 100644 index 000000000..668ab27cc --- /dev/null +++ b/src/IconNewLabelSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNewLabelSharp as default } diff --git a/src/IconNewLabelTwoTone.tsx b/src/IconNewLabelTwoTone.tsx new file mode 100644 index 000000000..87656c76e --- /dev/null +++ b/src/IconNewLabelTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNewLabelTwoTone as default } diff --git a/src/IconNewReleasesOutlined.tsx b/src/IconNewReleasesOutlined.tsx new file mode 100644 index 000000000..3e4eedd0e --- /dev/null +++ b/src/IconNewReleasesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNewReleasesOutlined as default } diff --git a/src/IconNewReleasesRound.tsx b/src/IconNewReleasesRound.tsx new file mode 100644 index 000000000..d916f5be2 --- /dev/null +++ b/src/IconNewReleasesRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewReleasesRound as default } diff --git a/src/IconNewReleasesSharp.tsx b/src/IconNewReleasesSharp.tsx new file mode 100644 index 000000000..a459836c1 --- /dev/null +++ b/src/IconNewReleasesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNewReleasesSharp as default } diff --git a/src/IconNewReleasesTwoTone.tsx b/src/IconNewReleasesTwoTone.tsx new file mode 100644 index 000000000..e6e2d5e9f --- /dev/null +++ b/src/IconNewReleasesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNewReleasesTwoTone as default } diff --git a/src/IconNewspaperOutlined.tsx b/src/IconNewspaperOutlined.tsx new file mode 100644 index 000000000..8ddf1c561 --- /dev/null +++ b/src/IconNewspaperOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNewspaperOutlined as default } diff --git a/src/IconNewspaperRound.tsx b/src/IconNewspaperRound.tsx new file mode 100644 index 000000000..07af26886 --- /dev/null +++ b/src/IconNewspaperRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNewspaperRound as default } diff --git a/src/IconNewspaperSharp.tsx b/src/IconNewspaperSharp.tsx new file mode 100644 index 000000000..b5f86df8a --- /dev/null +++ b/src/IconNewspaperSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNewspaperSharp as default } diff --git a/src/IconNewspaperTwoTone.tsx b/src/IconNewspaperTwoTone.tsx new file mode 100644 index 000000000..7730ac21d --- /dev/null +++ b/src/IconNewspaperTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNewspaperTwoTone as default } diff --git a/src/IconNextPlanOutlined.tsx b/src/IconNextPlanOutlined.tsx new file mode 100644 index 000000000..57647684e --- /dev/null +++ b/src/IconNextPlanOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNextPlanOutlined as default } diff --git a/src/IconNextPlanRound.tsx b/src/IconNextPlanRound.tsx new file mode 100644 index 000000000..428c5c2a2 --- /dev/null +++ b/src/IconNextPlanRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNextPlanRound as default } diff --git a/src/IconNextPlanSharp.tsx b/src/IconNextPlanSharp.tsx new file mode 100644 index 000000000..039f07a6b --- /dev/null +++ b/src/IconNextPlanSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNextPlanSharp as default } diff --git a/src/IconNextPlanTwoTone.tsx b/src/IconNextPlanTwoTone.tsx new file mode 100644 index 000000000..9ab862a0b --- /dev/null +++ b/src/IconNextPlanTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNextPlanTwoTone as default } diff --git a/src/IconNextWeekOutlined.tsx b/src/IconNextWeekOutlined.tsx new file mode 100644 index 000000000..9c364423e --- /dev/null +++ b/src/IconNextWeekOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNextWeekOutlined as default } diff --git a/src/IconNextWeekRound.tsx b/src/IconNextWeekRound.tsx new file mode 100644 index 000000000..d8d3d6899 --- /dev/null +++ b/src/IconNextWeekRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNextWeekRound as default } diff --git a/src/IconNextWeekSharp.tsx b/src/IconNextWeekSharp.tsx new file mode 100644 index 000000000..8c098c0d5 --- /dev/null +++ b/src/IconNextWeekSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNextWeekSharp as default } diff --git a/src/IconNextWeekTwoTone.tsx b/src/IconNextWeekTwoTone.tsx new file mode 100644 index 000000000..b19116bd1 --- /dev/null +++ b/src/IconNextWeekTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNextWeekTwoTone as default } diff --git a/src/IconNfcOutlined.tsx b/src/IconNfcOutlined.tsx new file mode 100644 index 000000000..cc30574a2 --- /dev/null +++ b/src/IconNfcOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNfcOutlined as default } diff --git a/src/IconNfcRound.tsx b/src/IconNfcRound.tsx new file mode 100644 index 000000000..b01e3b062 --- /dev/null +++ b/src/IconNfcRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNfcRound as default } diff --git a/src/IconNfcSharp.tsx b/src/IconNfcSharp.tsx new file mode 100644 index 000000000..dcd2c62ab --- /dev/null +++ b/src/IconNfcSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNfcSharp as default } diff --git a/src/IconNfcTwoTone.tsx b/src/IconNfcTwoTone.tsx new file mode 100644 index 000000000..d36d96e1d --- /dev/null +++ b/src/IconNfcTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNfcTwoTone as default } diff --git a/src/IconNightShelterOutlined.tsx b/src/IconNightShelterOutlined.tsx new file mode 100644 index 000000000..a586e36fd --- /dev/null +++ b/src/IconNightShelterOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNightShelterOutlined as default } diff --git a/src/IconNightShelterRound.tsx b/src/IconNightShelterRound.tsx new file mode 100644 index 000000000..65c97112b --- /dev/null +++ b/src/IconNightShelterRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNightShelterRound as default } diff --git a/src/IconNightShelterSharp.tsx b/src/IconNightShelterSharp.tsx new file mode 100644 index 000000000..9e94cd15f --- /dev/null +++ b/src/IconNightShelterSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNightShelterSharp as default } diff --git a/src/IconNightShelterTwoTone.tsx b/src/IconNightShelterTwoTone.tsx new file mode 100644 index 000000000..070377eda --- /dev/null +++ b/src/IconNightShelterTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNightShelterTwoTone as default } diff --git a/src/IconNightlifeOutlined.tsx b/src/IconNightlifeOutlined.tsx new file mode 100644 index 000000000..6b914e07a --- /dev/null +++ b/src/IconNightlifeOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlifeOutlined as default } diff --git a/src/IconNightlifeRound.tsx b/src/IconNightlifeRound.tsx new file mode 100644 index 000000000..a260f328f --- /dev/null +++ b/src/IconNightlifeRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlifeRound as default } diff --git a/src/IconNightlifeSharp.tsx b/src/IconNightlifeSharp.tsx new file mode 100644 index 000000000..3a8433f47 --- /dev/null +++ b/src/IconNightlifeSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlifeSharp as default } diff --git a/src/IconNightlifeTwoTone.tsx b/src/IconNightlifeTwoTone.tsx new file mode 100644 index 000000000..0590129d8 --- /dev/null +++ b/src/IconNightlifeTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlifeTwoTone as default } diff --git a/src/IconNightlightOutlined.tsx b/src/IconNightlightOutlined.tsx new file mode 100644 index 000000000..74b0919ed --- /dev/null +++ b/src/IconNightlightOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlightOutlined as default } diff --git a/src/IconNightlightRound.tsx b/src/IconNightlightRound.tsx index 79e0b06d1..ec2462b62 100644 --- a/src/IconNightlightRound.tsx +++ b/src/IconNightlightRound.tsx @@ -2,10 +2,23 @@ import React from 'react' import { IconProps } from './types' const IconNightlightRound: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + + + + + ) diff --git a/src/IconNightlightRoundOutlined.tsx b/src/IconNightlightRoundOutlined.tsx new file mode 100644 index 000000000..06e67be51 --- /dev/null +++ b/src/IconNightlightRoundOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightRoundOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNightlightRoundOutlined as default } diff --git a/src/IconNightlightRoundRound.tsx b/src/IconNightlightRoundRound.tsx new file mode 100644 index 000000000..2b2291e75 --- /dev/null +++ b/src/IconNightlightRoundRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightRoundRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNightlightRoundRound as default } diff --git a/src/IconNightlightRoundSharp.tsx b/src/IconNightlightRoundSharp.tsx new file mode 100644 index 000000000..dcd7dc37f --- /dev/null +++ b/src/IconNightlightRoundSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightRoundSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconNightlightRoundSharp as default } diff --git a/src/IconNightlightRoundTwoTone.tsx b/src/IconNightlightRoundTwoTone.tsx new file mode 100644 index 000000000..81f9573ff --- /dev/null +++ b/src/IconNightlightRoundTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightRoundTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlightRoundTwoTone as default } diff --git a/src/IconNightlightSharp.tsx b/src/IconNightlightSharp.tsx new file mode 100644 index 000000000..31e13a634 --- /dev/null +++ b/src/IconNightlightSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightlightSharp as default } diff --git a/src/IconNightlightTwoTone.tsx b/src/IconNightlightTwoTone.tsx new file mode 100644 index 000000000..19463aa36 --- /dev/null +++ b/src/IconNightlightTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconNightlightTwoTone as default } diff --git a/src/IconNightsStay.tsx b/src/IconNightsStay.tsx index 78078167b..50b28edcf 100644 --- a/src/IconNightsStay.tsx +++ b/src/IconNightsStay.tsx @@ -15,9 +15,9 @@ const IconNightsStay: React.FC = ({ ...props }) => ( - + - + diff --git a/src/IconNightsStayOutlined.tsx b/src/IconNightsStayOutlined.tsx new file mode 100644 index 000000000..b25580c9d --- /dev/null +++ b/src/IconNightsStayOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNightsStayOutlined as default } diff --git a/src/IconNightsStayRound.tsx b/src/IconNightsStayRound.tsx new file mode 100644 index 000000000..608c9d663 --- /dev/null +++ b/src/IconNightsStayRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconNightsStayRound as default } diff --git a/src/IconNightsStaySharp.tsx b/src/IconNightsStaySharp.tsx new file mode 100644 index 000000000..a7a7ea8fa --- /dev/null +++ b/src/IconNightsStaySharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNightsStaySharp as default } diff --git a/src/IconNightsStayTwoTone.tsx b/src/IconNightsStayTwoTone.tsx new file mode 100644 index 000000000..71fc8b575 --- /dev/null +++ b/src/IconNightsStayTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNightsStayTwoTone as default } diff --git a/src/IconNoAccountsOutlined.tsx b/src/IconNoAccountsOutlined.tsx new file mode 100644 index 000000000..0afbc166c --- /dev/null +++ b/src/IconNoAccountsOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNoAccountsOutlined as default } diff --git a/src/IconNoAccountsRound.tsx b/src/IconNoAccountsRound.tsx new file mode 100644 index 000000000..bcf6bb503 --- /dev/null +++ b/src/IconNoAccountsRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNoAccountsRound as default } diff --git a/src/IconNoAccountsSharp.tsx b/src/IconNoAccountsSharp.tsx new file mode 100644 index 000000000..d111e0307 --- /dev/null +++ b/src/IconNoAccountsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconNoAccountsSharp as default } diff --git a/src/IconNoAccountsTwoTone.tsx b/src/IconNoAccountsTwoTone.tsx new file mode 100644 index 000000000..f1a14ffd6 --- /dev/null +++ b/src/IconNoAccountsTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNoAccountsTwoTone as default } diff --git a/src/IconNoAdultContentOutlined.tsx b/src/IconNoAdultContentOutlined.tsx new file mode 100644 index 000000000..a5ff107e5 --- /dev/null +++ b/src/IconNoAdultContentOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoAdultContentOutlined as default } diff --git a/src/IconNoAdultContentRound.tsx b/src/IconNoAdultContentRound.tsx new file mode 100644 index 000000000..b83523ca5 --- /dev/null +++ b/src/IconNoAdultContentRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconNoAdultContentRound as default } diff --git a/src/IconNoAdultContentSharp.tsx b/src/IconNoAdultContentSharp.tsx new file mode 100644 index 000000000..cf46dcd5a --- /dev/null +++ b/src/IconNoAdultContentSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoAdultContentSharp as default } diff --git a/src/IconNoAdultContentTwoTone.tsx b/src/IconNoAdultContentTwoTone.tsx new file mode 100644 index 000000000..33736a49d --- /dev/null +++ b/src/IconNoAdultContentTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoAdultContentTwoTone as default } diff --git a/src/IconNoBackpackOutlined.tsx b/src/IconNoBackpackOutlined.tsx new file mode 100644 index 000000000..d2ffec9e6 --- /dev/null +++ b/src/IconNoBackpackOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoBackpackOutlined as default } diff --git a/src/IconNoBackpackRound.tsx b/src/IconNoBackpackRound.tsx new file mode 100644 index 000000000..e8c39b6eb --- /dev/null +++ b/src/IconNoBackpackRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoBackpackRound as default } diff --git a/src/IconNoBackpackSharp.tsx b/src/IconNoBackpackSharp.tsx new file mode 100644 index 000000000..48cb1c6d6 --- /dev/null +++ b/src/IconNoBackpackSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoBackpackSharp as default } diff --git a/src/IconNoBackpackTwoTone.tsx b/src/IconNoBackpackTwoTone.tsx new file mode 100644 index 000000000..39bc9b0be --- /dev/null +++ b/src/IconNoBackpackTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoBackpackTwoTone as default } diff --git a/src/IconNoCellOutlined.tsx b/src/IconNoCellOutlined.tsx new file mode 100644 index 000000000..6d6e99c9b --- /dev/null +++ b/src/IconNoCellOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCellOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoCellOutlined as default } diff --git a/src/IconNoCellRound.tsx b/src/IconNoCellRound.tsx new file mode 100644 index 000000000..de8f96170 --- /dev/null +++ b/src/IconNoCellRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCellRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoCellRound as default } diff --git a/src/IconNoCellSharp.tsx b/src/IconNoCellSharp.tsx new file mode 100644 index 000000000..b807216ff --- /dev/null +++ b/src/IconNoCellSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCellSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoCellSharp as default } diff --git a/src/IconNoCellTwoTone.tsx b/src/IconNoCellTwoTone.tsx new file mode 100644 index 000000000..86256539a --- /dev/null +++ b/src/IconNoCellTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCellTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoCellTwoTone as default } diff --git a/src/IconNoCrashOutlined.tsx b/src/IconNoCrashOutlined.tsx new file mode 100644 index 000000000..54f1037cf --- /dev/null +++ b/src/IconNoCrashOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoCrashOutlined as default } diff --git a/src/IconNoCrashRound.tsx b/src/IconNoCrashRound.tsx new file mode 100644 index 000000000..72e748310 --- /dev/null +++ b/src/IconNoCrashRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNoCrashRound as default } diff --git a/src/IconNoCrashSharp.tsx b/src/IconNoCrashSharp.tsx new file mode 100644 index 000000000..bf4d7c4b3 --- /dev/null +++ b/src/IconNoCrashSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoCrashSharp as default } diff --git a/src/IconNoCrashTwoTone.tsx b/src/IconNoCrashTwoTone.tsx new file mode 100644 index 000000000..37a9208fa --- /dev/null +++ b/src/IconNoCrashTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNoCrashTwoTone as default } diff --git a/src/IconNoDrinksOutlined.tsx b/src/IconNoDrinksOutlined.tsx new file mode 100644 index 000000000..5e9dd1c0c --- /dev/null +++ b/src/IconNoDrinksOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoDrinksOutlined as default } diff --git a/src/IconNoDrinksRound.tsx b/src/IconNoDrinksRound.tsx new file mode 100644 index 000000000..6574c599f --- /dev/null +++ b/src/IconNoDrinksRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoDrinksRound as default } diff --git a/src/IconNoDrinksSharp.tsx b/src/IconNoDrinksSharp.tsx new file mode 100644 index 000000000..a7989c386 --- /dev/null +++ b/src/IconNoDrinksSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoDrinksSharp as default } diff --git a/src/IconNoDrinksTwoTone.tsx b/src/IconNoDrinksTwoTone.tsx new file mode 100644 index 000000000..3ddc7cea0 --- /dev/null +++ b/src/IconNoDrinksTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoDrinksTwoTone as default } diff --git a/src/IconNoEncryptionGmailerrorredOutlined.tsx b/src/IconNoEncryptionGmailerrorredOutlined.tsx new file mode 100644 index 000000000..9e4206bc8 --- /dev/null +++ b/src/IconNoEncryptionGmailerrorredOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionGmailerrorredOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionGmailerrorredOutlined as default } diff --git a/src/IconNoEncryptionGmailerrorredRound.tsx b/src/IconNoEncryptionGmailerrorredRound.tsx new file mode 100644 index 000000000..1f65fd156 --- /dev/null +++ b/src/IconNoEncryptionGmailerrorredRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionGmailerrorredRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionGmailerrorredRound as default } diff --git a/src/IconNoEncryptionGmailerrorredSharp.tsx b/src/IconNoEncryptionGmailerrorredSharp.tsx new file mode 100644 index 000000000..3c2b74391 --- /dev/null +++ b/src/IconNoEncryptionGmailerrorredSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionGmailerrorredSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionGmailerrorredSharp as default } diff --git a/src/IconNoEncryptionGmailerrorredTwoTone.tsx b/src/IconNoEncryptionGmailerrorredTwoTone.tsx new file mode 100644 index 000000000..a7cfc8a01 --- /dev/null +++ b/src/IconNoEncryptionGmailerrorredTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionGmailerrorredTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoEncryptionGmailerrorredTwoTone as default } diff --git a/src/IconNoEncryptionOutlined.tsx b/src/IconNoEncryptionOutlined.tsx new file mode 100644 index 000000000..7588fa586 --- /dev/null +++ b/src/IconNoEncryptionOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionOutlined as default } diff --git a/src/IconNoEncryptionRound.tsx b/src/IconNoEncryptionRound.tsx new file mode 100644 index 000000000..9d23559d3 --- /dev/null +++ b/src/IconNoEncryptionRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionRound as default } diff --git a/src/IconNoEncryptionSharp.tsx b/src/IconNoEncryptionSharp.tsx new file mode 100644 index 000000000..d137accab --- /dev/null +++ b/src/IconNoEncryptionSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoEncryptionSharp as default } diff --git a/src/IconNoEncryptionTwoTone.tsx b/src/IconNoEncryptionTwoTone.tsx new file mode 100644 index 000000000..fe9427afe --- /dev/null +++ b/src/IconNoEncryptionTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoEncryptionTwoTone as default } diff --git a/src/IconNoFlashOutlined.tsx b/src/IconNoFlashOutlined.tsx new file mode 100644 index 000000000..7b4c93a81 --- /dev/null +++ b/src/IconNoFlashOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFlashOutlined as default } diff --git a/src/IconNoFlashRound.tsx b/src/IconNoFlashRound.tsx new file mode 100644 index 000000000..8e0c4c15a --- /dev/null +++ b/src/IconNoFlashRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFlashRound as default } diff --git a/src/IconNoFlashSharp.tsx b/src/IconNoFlashSharp.tsx new file mode 100644 index 000000000..89312f3b9 --- /dev/null +++ b/src/IconNoFlashSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFlashSharp as default } diff --git a/src/IconNoFlashTwoTone.tsx b/src/IconNoFlashTwoTone.tsx new file mode 100644 index 000000000..6c1e9b4dc --- /dev/null +++ b/src/IconNoFlashTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoFlashTwoTone as default } diff --git a/src/IconNoFoodOutlined.tsx b/src/IconNoFoodOutlined.tsx new file mode 100644 index 000000000..02b242b98 --- /dev/null +++ b/src/IconNoFoodOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFoodOutlined as default } diff --git a/src/IconNoFoodRound.tsx b/src/IconNoFoodRound.tsx new file mode 100644 index 000000000..ed8c7c050 --- /dev/null +++ b/src/IconNoFoodRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFoodRound as default } diff --git a/src/IconNoFoodSharp.tsx b/src/IconNoFoodSharp.tsx new file mode 100644 index 000000000..585823ea9 --- /dev/null +++ b/src/IconNoFoodSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoFoodSharp as default } diff --git a/src/IconNoFoodTwoTone.tsx b/src/IconNoFoodTwoTone.tsx new file mode 100644 index 000000000..0d7bb7e00 --- /dev/null +++ b/src/IconNoFoodTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoFoodTwoTone as default } diff --git a/src/IconNoLuggageOutlined.tsx b/src/IconNoLuggageOutlined.tsx new file mode 100644 index 000000000..653d4c84d --- /dev/null +++ b/src/IconNoLuggageOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoLuggageOutlined as default } diff --git a/src/IconNoLuggageRound.tsx b/src/IconNoLuggageRound.tsx new file mode 100644 index 000000000..5e0cbd7e0 --- /dev/null +++ b/src/IconNoLuggageRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoLuggageRound as default } diff --git a/src/IconNoLuggageSharp.tsx b/src/IconNoLuggageSharp.tsx new file mode 100644 index 000000000..e4bb2b668 --- /dev/null +++ b/src/IconNoLuggageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoLuggageSharp as default } diff --git a/src/IconNoLuggageTwoTone.tsx b/src/IconNoLuggageTwoTone.tsx new file mode 100644 index 000000000..b3d469d29 --- /dev/null +++ b/src/IconNoLuggageTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoLuggageTwoTone as default } diff --git a/src/IconNoMealsOutlined.tsx b/src/IconNoMealsOutlined.tsx new file mode 100644 index 000000000..be9523879 --- /dev/null +++ b/src/IconNoMealsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMealsOutlined as default } diff --git a/src/IconNoMealsRound.tsx b/src/IconNoMealsRound.tsx new file mode 100644 index 000000000..24c7b8d02 --- /dev/null +++ b/src/IconNoMealsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMealsRound as default } diff --git a/src/IconNoMealsSharp.tsx b/src/IconNoMealsSharp.tsx new file mode 100644 index 000000000..dd2e262ff --- /dev/null +++ b/src/IconNoMealsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMealsSharp as default } diff --git a/src/IconNoMealsTwoTone.tsx b/src/IconNoMealsTwoTone.tsx new file mode 100644 index 000000000..685e44ddd --- /dev/null +++ b/src/IconNoMealsTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMealsTwoTone as default } diff --git a/src/IconNoMeetingRoomOutlined.tsx b/src/IconNoMeetingRoomOutlined.tsx new file mode 100644 index 000000000..c1e956ddc --- /dev/null +++ b/src/IconNoMeetingRoomOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMeetingRoomOutlined as default } diff --git a/src/IconNoMeetingRoomRound.tsx b/src/IconNoMeetingRoomRound.tsx new file mode 100644 index 000000000..516238acc --- /dev/null +++ b/src/IconNoMeetingRoomRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMeetingRoomRound as default } diff --git a/src/IconNoMeetingRoomSharp.tsx b/src/IconNoMeetingRoomSharp.tsx new file mode 100644 index 000000000..8b3d27f8d --- /dev/null +++ b/src/IconNoMeetingRoomSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoMeetingRoomSharp as default } diff --git a/src/IconNoMeetingRoomTwoTone.tsx b/src/IconNoMeetingRoomTwoTone.tsx new file mode 100644 index 000000000..17024213e --- /dev/null +++ b/src/IconNoMeetingRoomTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoMeetingRoomTwoTone as default } diff --git a/src/IconNoPhotographyOutlined.tsx b/src/IconNoPhotographyOutlined.tsx new file mode 100644 index 000000000..d4de625c2 --- /dev/null +++ b/src/IconNoPhotographyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoPhotographyOutlined as default } diff --git a/src/IconNoPhotographyRound.tsx b/src/IconNoPhotographyRound.tsx new file mode 100644 index 000000000..78ce8533d --- /dev/null +++ b/src/IconNoPhotographyRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoPhotographyRound as default } diff --git a/src/IconNoPhotographySharp.tsx b/src/IconNoPhotographySharp.tsx new file mode 100644 index 000000000..9a29d890b --- /dev/null +++ b/src/IconNoPhotographySharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoPhotographySharp as default } diff --git a/src/IconNoPhotographyTwoTone.tsx b/src/IconNoPhotographyTwoTone.tsx new file mode 100644 index 000000000..f39c75715 --- /dev/null +++ b/src/IconNoPhotographyTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoPhotographyTwoTone as default } diff --git a/src/IconNoSimOutlined.tsx b/src/IconNoSimOutlined.tsx new file mode 100644 index 000000000..88cef084b --- /dev/null +++ b/src/IconNoSimOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoSimOutlined as default } diff --git a/src/IconNoSimRound.tsx b/src/IconNoSimRound.tsx new file mode 100644 index 000000000..386d90c95 --- /dev/null +++ b/src/IconNoSimRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoSimRound as default } diff --git a/src/IconNoSimSharp.tsx b/src/IconNoSimSharp.tsx new file mode 100644 index 000000000..54b606699 --- /dev/null +++ b/src/IconNoSimSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoSimSharp as default } diff --git a/src/IconNoSimTwoTone.tsx b/src/IconNoSimTwoTone.tsx new file mode 100644 index 000000000..c4528a8b2 --- /dev/null +++ b/src/IconNoSimTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoSimTwoTone as default } diff --git a/src/IconNoStrollerOutlined.tsx b/src/IconNoStrollerOutlined.tsx new file mode 100644 index 000000000..b686ef2f2 --- /dev/null +++ b/src/IconNoStrollerOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoStrollerOutlined as default } diff --git a/src/IconNoStrollerRound.tsx b/src/IconNoStrollerRound.tsx new file mode 100644 index 000000000..034785a3e --- /dev/null +++ b/src/IconNoStrollerRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoStrollerRound as default } diff --git a/src/IconNoStrollerSharp.tsx b/src/IconNoStrollerSharp.tsx new file mode 100644 index 000000000..c1d386d3f --- /dev/null +++ b/src/IconNoStrollerSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNoStrollerSharp as default } diff --git a/src/IconNoStrollerTwoTone.tsx b/src/IconNoStrollerTwoTone.tsx new file mode 100644 index 000000000..bfe682deb --- /dev/null +++ b/src/IconNoStrollerTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNoStrollerTwoTone as default } diff --git a/src/IconNoTransferOutlined.tsx b/src/IconNoTransferOutlined.tsx new file mode 100644 index 000000000..dc3d173da --- /dev/null +++ b/src/IconNoTransferOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoTransferOutlined as default } diff --git a/src/IconNoTransferRound.tsx b/src/IconNoTransferRound.tsx new file mode 100644 index 000000000..8b36b01ea --- /dev/null +++ b/src/IconNoTransferRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoTransferRound as default } diff --git a/src/IconNoTransferSharp.tsx b/src/IconNoTransferSharp.tsx new file mode 100644 index 000000000..830c31e72 --- /dev/null +++ b/src/IconNoTransferSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoTransferSharp as default } diff --git a/src/IconNoTransferTwoTone.tsx b/src/IconNoTransferTwoTone.tsx new file mode 100644 index 000000000..b8c750195 --- /dev/null +++ b/src/IconNoTransferTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoTransferTwoTone as default } diff --git a/src/IconNoiseAwareOutlined.tsx b/src/IconNoiseAwareOutlined.tsx new file mode 100644 index 000000000..563d4e71c --- /dev/null +++ b/src/IconNoiseAwareOutlined.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconNoiseAwareOutlined as default } diff --git a/src/IconNoiseAwareRound.tsx b/src/IconNoiseAwareRound.tsx new file mode 100644 index 000000000..f4e47f77b --- /dev/null +++ b/src/IconNoiseAwareRound.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconNoiseAwareRound as default } diff --git a/src/IconNoiseAwareSharp.tsx b/src/IconNoiseAwareSharp.tsx new file mode 100644 index 000000000..1175df655 --- /dev/null +++ b/src/IconNoiseAwareSharp.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconNoiseAwareSharp as default } diff --git a/src/IconNoiseAwareTwoTone.tsx b/src/IconNoiseAwareTwoTone.tsx new file mode 100644 index 000000000..91565dad2 --- /dev/null +++ b/src/IconNoiseAwareTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconNoiseAwareTwoTone as default } diff --git a/src/IconNoiseControlOffOutlined.tsx b/src/IconNoiseControlOffOutlined.tsx new file mode 100644 index 000000000..90baaae13 --- /dev/null +++ b/src/IconNoiseControlOffOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconNoiseControlOffOutlined as default } diff --git a/src/IconNoiseControlOffRound.tsx b/src/IconNoiseControlOffRound.tsx new file mode 100644 index 000000000..58b2fbd34 --- /dev/null +++ b/src/IconNoiseControlOffRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconNoiseControlOffRound as default } diff --git a/src/IconNoiseControlOffSharp.tsx b/src/IconNoiseControlOffSharp.tsx new file mode 100644 index 000000000..754a1847b --- /dev/null +++ b/src/IconNoiseControlOffSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconNoiseControlOffSharp as default } diff --git a/src/IconNoiseControlOffTwoTone.tsx b/src/IconNoiseControlOffTwoTone.tsx new file mode 100644 index 000000000..ade178a7d --- /dev/null +++ b/src/IconNoiseControlOffTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconNoiseControlOffTwoTone as default } diff --git a/src/IconNordicWalkingOutlined.tsx b/src/IconNordicWalkingOutlined.tsx new file mode 100644 index 000000000..942a5f8d7 --- /dev/null +++ b/src/IconNordicWalkingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNordicWalkingOutlined as default } diff --git a/src/IconNordicWalkingRound.tsx b/src/IconNordicWalkingRound.tsx new file mode 100644 index 000000000..1364f878d --- /dev/null +++ b/src/IconNordicWalkingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNordicWalkingRound as default } diff --git a/src/IconNordicWalkingSharp.tsx b/src/IconNordicWalkingSharp.tsx new file mode 100644 index 000000000..ec1329cea --- /dev/null +++ b/src/IconNordicWalkingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNordicWalkingSharp as default } diff --git a/src/IconNordicWalkingTwoTone.tsx b/src/IconNordicWalkingTwoTone.tsx new file mode 100644 index 000000000..73e2bcc93 --- /dev/null +++ b/src/IconNordicWalkingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNordicWalkingTwoTone as default } diff --git a/src/IconNorthEastOutlined.tsx b/src/IconNorthEastOutlined.tsx new file mode 100644 index 000000000..c588431fb --- /dev/null +++ b/src/IconNorthEastOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthEastOutlined as default } diff --git a/src/IconNorthEastRound.tsx b/src/IconNorthEastRound.tsx new file mode 100644 index 000000000..0a0119048 --- /dev/null +++ b/src/IconNorthEastRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthEastRound as default } diff --git a/src/IconNorthEastSharp.tsx b/src/IconNorthEastSharp.tsx new file mode 100644 index 000000000..2293725cd --- /dev/null +++ b/src/IconNorthEastSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthEastSharp as default } diff --git a/src/IconNorthEastTwoTone.tsx b/src/IconNorthEastTwoTone.tsx new file mode 100644 index 000000000..b6b17c732 --- /dev/null +++ b/src/IconNorthEastTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthEastTwoTone as default } diff --git a/src/IconNorthOutlined.tsx b/src/IconNorthOutlined.tsx new file mode 100644 index 000000000..8665a036d --- /dev/null +++ b/src/IconNorthOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthOutlined as default } diff --git a/src/IconNorthRound.tsx b/src/IconNorthRound.tsx new file mode 100644 index 000000000..42bf9e4f9 --- /dev/null +++ b/src/IconNorthRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthRound as default } diff --git a/src/IconNorthSharp.tsx b/src/IconNorthSharp.tsx new file mode 100644 index 000000000..656ae6a93 --- /dev/null +++ b/src/IconNorthSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthSharp as default } diff --git a/src/IconNorthTwoTone.tsx b/src/IconNorthTwoTone.tsx new file mode 100644 index 000000000..35a467efe --- /dev/null +++ b/src/IconNorthTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthTwoTone as default } diff --git a/src/IconNorthWestOutlined.tsx b/src/IconNorthWestOutlined.tsx new file mode 100644 index 000000000..b90099f77 --- /dev/null +++ b/src/IconNorthWestOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthWestOutlined as default } diff --git a/src/IconNorthWestRound.tsx b/src/IconNorthWestRound.tsx new file mode 100644 index 000000000..54c9fc243 --- /dev/null +++ b/src/IconNorthWestRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthWestRound as default } diff --git a/src/IconNorthWestSharp.tsx b/src/IconNorthWestSharp.tsx new file mode 100644 index 000000000..a18c847b1 --- /dev/null +++ b/src/IconNorthWestSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthWestSharp as default } diff --git a/src/IconNorthWestTwoTone.tsx b/src/IconNorthWestTwoTone.tsx new file mode 100644 index 000000000..d3314fc14 --- /dev/null +++ b/src/IconNorthWestTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNorthWestTwoTone as default } diff --git a/src/IconNotAccessibleOutlined.tsx b/src/IconNotAccessibleOutlined.tsx new file mode 100644 index 000000000..164d6efc7 --- /dev/null +++ b/src/IconNotAccessibleOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotAccessibleOutlined as default } diff --git a/src/IconNotAccessibleRound.tsx b/src/IconNotAccessibleRound.tsx new file mode 100644 index 000000000..da183c45a --- /dev/null +++ b/src/IconNotAccessibleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotAccessibleRound as default } diff --git a/src/IconNotAccessibleSharp.tsx b/src/IconNotAccessibleSharp.tsx new file mode 100644 index 000000000..13a8954d1 --- /dev/null +++ b/src/IconNotAccessibleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotAccessibleSharp as default } diff --git a/src/IconNotAccessibleTwoTone.tsx b/src/IconNotAccessibleTwoTone.tsx new file mode 100644 index 000000000..15b74fb37 --- /dev/null +++ b/src/IconNotAccessibleTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotAccessibleTwoTone as default } diff --git a/src/IconNotInterestedOutlined.tsx b/src/IconNotInterestedOutlined.tsx new file mode 100644 index 000000000..52973ab21 --- /dev/null +++ b/src/IconNotInterestedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotInterestedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotInterestedOutlined as default } diff --git a/src/IconNotInterestedRound.tsx b/src/IconNotInterestedRound.tsx new file mode 100644 index 000000000..cde95ba44 --- /dev/null +++ b/src/IconNotInterestedRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotInterestedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotInterestedRound as default } diff --git a/src/IconNotInterestedSharp.tsx b/src/IconNotInterestedSharp.tsx new file mode 100644 index 000000000..09d0b4ad9 --- /dev/null +++ b/src/IconNotInterestedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotInterestedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotInterestedSharp as default } diff --git a/src/IconNotInterestedTwoTone.tsx b/src/IconNotInterestedTwoTone.tsx new file mode 100644 index 000000000..44d0684c0 --- /dev/null +++ b/src/IconNotInterestedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotInterestedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotInterestedTwoTone as default } diff --git a/src/IconNotListedLocationOutlined.tsx b/src/IconNotListedLocationOutlined.tsx new file mode 100644 index 000000000..607960979 --- /dev/null +++ b/src/IconNotListedLocationOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotListedLocationOutlined as default } diff --git a/src/IconNotListedLocationRound.tsx b/src/IconNotListedLocationRound.tsx new file mode 100644 index 000000000..e5c6430e5 --- /dev/null +++ b/src/IconNotListedLocationRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNotListedLocationRound as default } diff --git a/src/IconNotListedLocationSharp.tsx b/src/IconNotListedLocationSharp.tsx new file mode 100644 index 000000000..d69d9c1d8 --- /dev/null +++ b/src/IconNotListedLocationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotListedLocationSharp as default } diff --git a/src/IconNotListedLocationTwoTone.tsx b/src/IconNotListedLocationTwoTone.tsx new file mode 100644 index 000000000..c1d1462ea --- /dev/null +++ b/src/IconNotListedLocationTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotListedLocationTwoTone as default } diff --git a/src/IconNotStartedOutlined.tsx b/src/IconNotStartedOutlined.tsx new file mode 100644 index 000000000..53b1faa58 --- /dev/null +++ b/src/IconNotStartedOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotStartedOutlined as default } diff --git a/src/IconNotStartedRound.tsx b/src/IconNotStartedRound.tsx new file mode 100644 index 000000000..91f438972 --- /dev/null +++ b/src/IconNotStartedRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotStartedRound as default } diff --git a/src/IconNotStartedSharp.tsx b/src/IconNotStartedSharp.tsx new file mode 100644 index 000000000..1c732ad84 --- /dev/null +++ b/src/IconNotStartedSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotStartedSharp as default } diff --git a/src/IconNotStartedTwoTone.tsx b/src/IconNotStartedTwoTone.tsx new file mode 100644 index 000000000..c20031b5a --- /dev/null +++ b/src/IconNotStartedTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconNotStartedTwoTone as default } diff --git a/src/IconNoteAddOutlined.tsx b/src/IconNoteAddOutlined.tsx new file mode 100644 index 000000000..44cd3fbc4 --- /dev/null +++ b/src/IconNoteAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoteAddOutlined as default } diff --git a/src/IconNoteAddRound.tsx b/src/IconNoteAddRound.tsx new file mode 100644 index 000000000..156fe440a --- /dev/null +++ b/src/IconNoteAddRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoteAddRound as default } diff --git a/src/IconNoteAddSharp.tsx b/src/IconNoteAddSharp.tsx new file mode 100644 index 000000000..87882cb4e --- /dev/null +++ b/src/IconNoteAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoteAddSharp as default } diff --git a/src/IconNoteAddTwoTone.tsx b/src/IconNoteAddTwoTone.tsx new file mode 100644 index 000000000..0b5c1a07f --- /dev/null +++ b/src/IconNoteAddTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoteAddTwoTone as default } diff --git a/src/IconNoteAltOutlined.tsx b/src/IconNoteAltOutlined.tsx new file mode 100644 index 000000000..0ee45797b --- /dev/null +++ b/src/IconNoteAltOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconNoteAltOutlined as default } diff --git a/src/IconNoteAltRound.tsx b/src/IconNoteAltRound.tsx new file mode 100644 index 000000000..7653fa362 --- /dev/null +++ b/src/IconNoteAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoteAltRound as default } diff --git a/src/IconNoteAltSharp.tsx b/src/IconNoteAltSharp.tsx new file mode 100644 index 000000000..418507859 --- /dev/null +++ b/src/IconNoteAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNoteAltSharp as default } diff --git a/src/IconNoteAltTwoTone.tsx b/src/IconNoteAltTwoTone.tsx new file mode 100644 index 000000000..e240edd4d --- /dev/null +++ b/src/IconNoteAltTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconNoteAltTwoTone as default } diff --git a/src/IconNoteOutlined.tsx b/src/IconNoteOutlined.tsx new file mode 100644 index 000000000..e58540c68 --- /dev/null +++ b/src/IconNoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoteOutlined as default } diff --git a/src/IconNoteRound.tsx b/src/IconNoteRound.tsx new file mode 100644 index 000000000..74633d59d --- /dev/null +++ b/src/IconNoteRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteRound as default } diff --git a/src/IconNoteSharp.tsx b/src/IconNoteSharp.tsx new file mode 100644 index 000000000..2b2c7d3eb --- /dev/null +++ b/src/IconNoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNoteSharp as default } diff --git a/src/IconNoteTwoTone.tsx b/src/IconNoteTwoTone.tsx new file mode 100644 index 000000000..42b29c7b9 --- /dev/null +++ b/src/IconNoteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNoteTwoTone as default } diff --git a/src/IconNotesOutlined.tsx b/src/IconNotesOutlined.tsx new file mode 100644 index 000000000..19260b7cc --- /dev/null +++ b/src/IconNotesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotesOutlined as default } diff --git a/src/IconNotesRound.tsx b/src/IconNotesRound.tsx new file mode 100644 index 000000000..161d64f0e --- /dev/null +++ b/src/IconNotesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotesRound as default } diff --git a/src/IconNotesSharp.tsx b/src/IconNotesSharp.tsx new file mode 100644 index 000000000..574c15beb --- /dev/null +++ b/src/IconNotesSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotesSharp as default } diff --git a/src/IconNotesTwoTone.tsx b/src/IconNotesTwoTone.tsx new file mode 100644 index 000000000..19687fc93 --- /dev/null +++ b/src/IconNotesTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotesTwoTone as default } diff --git a/src/IconNotificationAddOutlined.tsx b/src/IconNotificationAddOutlined.tsx new file mode 100644 index 000000000..cfeea1567 --- /dev/null +++ b/src/IconNotificationAddOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotificationAddOutlined as default } diff --git a/src/IconNotificationAddRound.tsx b/src/IconNotificationAddRound.tsx new file mode 100644 index 000000000..6322d4580 --- /dev/null +++ b/src/IconNotificationAddRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotificationAddRound as default } diff --git a/src/IconNotificationAddSharp.tsx b/src/IconNotificationAddSharp.tsx new file mode 100644 index 000000000..f17f8f15a --- /dev/null +++ b/src/IconNotificationAddSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotificationAddSharp as default } diff --git a/src/IconNotificationAddTwoTone.tsx b/src/IconNotificationAddTwoTone.tsx new file mode 100644 index 000000000..7396e4a03 --- /dev/null +++ b/src/IconNotificationAddTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconNotificationAddTwoTone as default } diff --git a/src/IconNotificationImportantOutlined.tsx b/src/IconNotificationImportantOutlined.tsx new file mode 100644 index 000000000..48787202b --- /dev/null +++ b/src/IconNotificationImportantOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantOutlined as default } diff --git a/src/IconNotificationImportantRound.tsx b/src/IconNotificationImportantRound.tsx new file mode 100644 index 000000000..c58679dd1 --- /dev/null +++ b/src/IconNotificationImportantRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantRound as default } diff --git a/src/IconNotificationImportantSharp.tsx b/src/IconNotificationImportantSharp.tsx new file mode 100644 index 000000000..837b97f38 --- /dev/null +++ b/src/IconNotificationImportantSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantSharp as default } diff --git a/src/IconNotificationImportantTwoTone.tsx b/src/IconNotificationImportantTwoTone.tsx new file mode 100644 index 000000000..11d18ad88 --- /dev/null +++ b/src/IconNotificationImportantTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationImportantTwoTone as default } diff --git a/src/IconNotificationsActiveOutlined.tsx b/src/IconNotificationsActiveOutlined.tsx new file mode 100644 index 000000000..ff850c93e --- /dev/null +++ b/src/IconNotificationsActiveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsActiveOutlined as default } diff --git a/src/IconNotificationsActiveRound.tsx b/src/IconNotificationsActiveRound.tsx new file mode 100644 index 000000000..0528f4e7c --- /dev/null +++ b/src/IconNotificationsActiveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsActiveRound as default } diff --git a/src/IconNotificationsActiveSharp.tsx b/src/IconNotificationsActiveSharp.tsx new file mode 100644 index 000000000..fa50c9c6e --- /dev/null +++ b/src/IconNotificationsActiveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsActiveSharp as default } diff --git a/src/IconNotificationsActiveTwoTone.tsx b/src/IconNotificationsActiveTwoTone.tsx new file mode 100644 index 000000000..a249234e5 --- /dev/null +++ b/src/IconNotificationsActiveTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotificationsActiveTwoTone as default } diff --git a/src/IconNotificationsNoneOutlined.tsx b/src/IconNotificationsNoneOutlined.tsx new file mode 100644 index 000000000..4505752aa --- /dev/null +++ b/src/IconNotificationsNoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsNoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsNoneOutlined as default } diff --git a/src/IconNotificationsNoneRound.tsx b/src/IconNotificationsNoneRound.tsx new file mode 100644 index 000000000..07e038581 --- /dev/null +++ b/src/IconNotificationsNoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsNoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsNoneRound as default } diff --git a/src/IconNotificationsNoneSharp.tsx b/src/IconNotificationsNoneSharp.tsx new file mode 100644 index 000000000..265646876 --- /dev/null +++ b/src/IconNotificationsNoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsNoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsNoneSharp as default } diff --git a/src/IconNotificationsNoneTwoTone.tsx b/src/IconNotificationsNoneTwoTone.tsx new file mode 100644 index 000000000..ba782ebdb --- /dev/null +++ b/src/IconNotificationsNoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsNoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotificationsNoneTwoTone as default } diff --git a/src/IconNotificationsOffOutlined.tsx b/src/IconNotificationsOffOutlined.tsx new file mode 100644 index 000000000..16aef0fc3 --- /dev/null +++ b/src/IconNotificationsOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsOffOutlined as default } diff --git a/src/IconNotificationsOffRound.tsx b/src/IconNotificationsOffRound.tsx new file mode 100644 index 000000000..744408dd3 --- /dev/null +++ b/src/IconNotificationsOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsOffRound as default } diff --git a/src/IconNotificationsOffSharp.tsx b/src/IconNotificationsOffSharp.tsx new file mode 100644 index 000000000..0e5175c8e --- /dev/null +++ b/src/IconNotificationsOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsOffSharp as default } diff --git a/src/IconNotificationsOffTwoTone.tsx b/src/IconNotificationsOffTwoTone.tsx new file mode 100644 index 000000000..4d2f7cf69 --- /dev/null +++ b/src/IconNotificationsOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotificationsOffTwoTone as default } diff --git a/src/IconNotificationsOutlined.tsx b/src/IconNotificationsOutlined.tsx new file mode 100644 index 000000000..1800e7b08 --- /dev/null +++ b/src/IconNotificationsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsOutlined as default } diff --git a/src/IconNotificationsPausedOutlined.tsx b/src/IconNotificationsPausedOutlined.tsx new file mode 100644 index 000000000..f58bcac29 --- /dev/null +++ b/src/IconNotificationsPausedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsPausedOutlined as default } diff --git a/src/IconNotificationsPausedRound.tsx b/src/IconNotificationsPausedRound.tsx new file mode 100644 index 000000000..61f55a366 --- /dev/null +++ b/src/IconNotificationsPausedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsPausedRound as default } diff --git a/src/IconNotificationsPausedSharp.tsx b/src/IconNotificationsPausedSharp.tsx new file mode 100644 index 000000000..025f7571c --- /dev/null +++ b/src/IconNotificationsPausedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsPausedSharp as default } diff --git a/src/IconNotificationsPausedTwoTone.tsx b/src/IconNotificationsPausedTwoTone.tsx new file mode 100644 index 000000000..a36220702 --- /dev/null +++ b/src/IconNotificationsPausedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotificationsPausedTwoTone as default } diff --git a/src/IconNotificationsRound.tsx b/src/IconNotificationsRound.tsx new file mode 100644 index 000000000..81dd3b716 --- /dev/null +++ b/src/IconNotificationsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsRound as default } diff --git a/src/IconNotificationsSharp.tsx b/src/IconNotificationsSharp.tsx new file mode 100644 index 000000000..3a408b670 --- /dev/null +++ b/src/IconNotificationsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconNotificationsSharp as default } diff --git a/src/IconNotificationsTwoTone.tsx b/src/IconNotificationsTwoTone.tsx new file mode 100644 index 000000000..fbb451157 --- /dev/null +++ b/src/IconNotificationsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconNotificationsTwoTone as default } diff --git a/src/IconNumbersOutlined.tsx b/src/IconNumbersOutlined.tsx new file mode 100644 index 000000000..ece3b46cd --- /dev/null +++ b/src/IconNumbersOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNumbersOutlined as default } diff --git a/src/IconNumbersRound.tsx b/src/IconNumbersRound.tsx new file mode 100644 index 000000000..1f372b88f --- /dev/null +++ b/src/IconNumbersRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconNumbersRound as default } diff --git a/src/IconNumbersSharp.tsx b/src/IconNumbersSharp.tsx new file mode 100644 index 000000000..80b126074 --- /dev/null +++ b/src/IconNumbersSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNumbersSharp as default } diff --git a/src/IconNumbersTwoTone.tsx b/src/IconNumbersTwoTone.tsx new file mode 100644 index 000000000..b906ac1cc --- /dev/null +++ b/src/IconNumbersTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconNumbersTwoTone as default } diff --git a/src/IconOfflineBoltOutlined.tsx b/src/IconOfflineBoltOutlined.tsx new file mode 100644 index 000000000..1fe96bb2e --- /dev/null +++ b/src/IconOfflineBoltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflineBoltOutlined as default } diff --git a/src/IconOfflineBoltRound.tsx b/src/IconOfflineBoltRound.tsx new file mode 100644 index 000000000..8ee6c2382 --- /dev/null +++ b/src/IconOfflineBoltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflineBoltRound as default } diff --git a/src/IconOfflineBoltSharp.tsx b/src/IconOfflineBoltSharp.tsx new file mode 100644 index 000000000..45d8c04c0 --- /dev/null +++ b/src/IconOfflineBoltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflineBoltSharp as default } diff --git a/src/IconOfflineBoltTwoTone.tsx b/src/IconOfflineBoltTwoTone.tsx new file mode 100644 index 000000000..f714aa890 --- /dev/null +++ b/src/IconOfflineBoltTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOfflineBoltTwoTone as default } diff --git a/src/IconOfflinePinOutlined.tsx b/src/IconOfflinePinOutlined.tsx new file mode 100644 index 000000000..959c191a1 --- /dev/null +++ b/src/IconOfflinePinOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflinePinOutlined as default } diff --git a/src/IconOfflinePinRound.tsx b/src/IconOfflinePinRound.tsx new file mode 100644 index 000000000..1c8050082 --- /dev/null +++ b/src/IconOfflinePinRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflinePinRound as default } diff --git a/src/IconOfflinePinSharp.tsx b/src/IconOfflinePinSharp.tsx new file mode 100644 index 000000000..06b7635c7 --- /dev/null +++ b/src/IconOfflinePinSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOfflinePinSharp as default } diff --git a/src/IconOfflinePinTwoTone.tsx b/src/IconOfflinePinTwoTone.tsx new file mode 100644 index 000000000..0cc2121c5 --- /dev/null +++ b/src/IconOfflinePinTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOfflinePinTwoTone as default } diff --git a/src/IconOfflineShareOutlined.tsx b/src/IconOfflineShareOutlined.tsx new file mode 100644 index 000000000..b44478504 --- /dev/null +++ b/src/IconOfflineShareOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconOfflineShareOutlined as default } diff --git a/src/IconOfflineShareRound.tsx b/src/IconOfflineShareRound.tsx new file mode 100644 index 000000000..1f3cdac09 --- /dev/null +++ b/src/IconOfflineShareRound.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconOfflineShareRound as default } diff --git a/src/IconOfflineShareSharp.tsx b/src/IconOfflineShareSharp.tsx new file mode 100644 index 000000000..5f2ba0d7d --- /dev/null +++ b/src/IconOfflineShareSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconOfflineShareSharp as default } diff --git a/src/IconOfflineShareTwoTone.tsx b/src/IconOfflineShareTwoTone.tsx new file mode 100644 index 000000000..0652179e7 --- /dev/null +++ b/src/IconOfflineShareTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconOfflineShareTwoTone as default } diff --git a/src/IconOilBarrelOutlined.tsx b/src/IconOilBarrelOutlined.tsx new file mode 100644 index 000000000..5d0a6f875 --- /dev/null +++ b/src/IconOilBarrelOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOilBarrelOutlined as default } diff --git a/src/IconOilBarrelRound.tsx b/src/IconOilBarrelRound.tsx new file mode 100644 index 000000000..ce2cf1405 --- /dev/null +++ b/src/IconOilBarrelRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconOilBarrelRound as default } diff --git a/src/IconOilBarrelSharp.tsx b/src/IconOilBarrelSharp.tsx new file mode 100644 index 000000000..4ce6784e1 --- /dev/null +++ b/src/IconOilBarrelSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconOilBarrelSharp as default } diff --git a/src/IconOilBarrelTwoTone.tsx b/src/IconOilBarrelTwoTone.tsx new file mode 100644 index 000000000..0b57e24f2 --- /dev/null +++ b/src/IconOilBarrelTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconOilBarrelTwoTone as default } diff --git a/src/IconOnDeviceTrainingOutlined.tsx b/src/IconOnDeviceTrainingOutlined.tsx new file mode 100644 index 000000000..91607f7a2 --- /dev/null +++ b/src/IconOnDeviceTrainingOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconOnDeviceTrainingOutlined as default } diff --git a/src/IconOnDeviceTrainingRound.tsx b/src/IconOnDeviceTrainingRound.tsx new file mode 100644 index 000000000..49c013843 --- /dev/null +++ b/src/IconOnDeviceTrainingRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconOnDeviceTrainingRound as default } diff --git a/src/IconOnDeviceTrainingSharp.tsx b/src/IconOnDeviceTrainingSharp.tsx new file mode 100644 index 000000000..cc77c260d --- /dev/null +++ b/src/IconOnDeviceTrainingSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconOnDeviceTrainingSharp as default } diff --git a/src/IconOnDeviceTrainingTwoTone.tsx b/src/IconOnDeviceTrainingTwoTone.tsx new file mode 100644 index 000000000..ae8c7be7a --- /dev/null +++ b/src/IconOnDeviceTrainingTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconOnDeviceTrainingTwoTone as default } diff --git a/src/IconOndemandVideoOutlined.tsx b/src/IconOndemandVideoOutlined.tsx new file mode 100644 index 000000000..20655bfb3 --- /dev/null +++ b/src/IconOndemandVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOndemandVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOndemandVideoOutlined as default } diff --git a/src/IconOndemandVideoRound.tsx b/src/IconOndemandVideoRound.tsx new file mode 100644 index 000000000..d75c0cc5e --- /dev/null +++ b/src/IconOndemandVideoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOndemandVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOndemandVideoRound as default } diff --git a/src/IconOndemandVideoSharp.tsx b/src/IconOndemandVideoSharp.tsx new file mode 100644 index 000000000..e47a4d358 --- /dev/null +++ b/src/IconOndemandVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOndemandVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOndemandVideoSharp as default } diff --git a/src/IconOndemandVideoTwoTone.tsx b/src/IconOndemandVideoTwoTone.tsx new file mode 100644 index 000000000..9cd62b47e --- /dev/null +++ b/src/IconOndemandVideoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOndemandVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOndemandVideoTwoTone as default } diff --git a/src/IconOnlinePredictionOutlined.tsx b/src/IconOnlinePredictionOutlined.tsx new file mode 100644 index 000000000..b74dc5cd1 --- /dev/null +++ b/src/IconOnlinePredictionOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconOnlinePredictionOutlined as default } diff --git a/src/IconOnlinePredictionRound.tsx b/src/IconOnlinePredictionRound.tsx new file mode 100644 index 000000000..e682c8057 --- /dev/null +++ b/src/IconOnlinePredictionRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconOnlinePredictionRound as default } diff --git a/src/IconOnlinePredictionSharp.tsx b/src/IconOnlinePredictionSharp.tsx new file mode 100644 index 000000000..a35f83e50 --- /dev/null +++ b/src/IconOnlinePredictionSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconOnlinePredictionSharp as default } diff --git a/src/IconOnlinePredictionTwoTone.tsx b/src/IconOnlinePredictionTwoTone.tsx new file mode 100644 index 000000000..4ae17d488 --- /dev/null +++ b/src/IconOnlinePredictionTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconOnlinePredictionTwoTone as default } diff --git a/src/IconOpacityOutlined.tsx b/src/IconOpacityOutlined.tsx new file mode 100644 index 000000000..c41c8cced --- /dev/null +++ b/src/IconOpacityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpacityOutlined as default } diff --git a/src/IconOpacityRound.tsx b/src/IconOpacityRound.tsx new file mode 100644 index 000000000..2548f0b30 --- /dev/null +++ b/src/IconOpacityRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconOpacityRound as default } diff --git a/src/IconOpacitySharp.tsx b/src/IconOpacitySharp.tsx new file mode 100644 index 000000000..4aae8769e --- /dev/null +++ b/src/IconOpacitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpacitySharp as default } diff --git a/src/IconOpacityTwoTone.tsx b/src/IconOpacityTwoTone.tsx new file mode 100644 index 000000000..959d44171 --- /dev/null +++ b/src/IconOpacityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOpacityTwoTone as default } diff --git a/src/IconOpenInBrowserOutlined.tsx b/src/IconOpenInBrowserOutlined.tsx new file mode 100644 index 000000000..e06db94a9 --- /dev/null +++ b/src/IconOpenInBrowserOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInBrowserOutlined as default } diff --git a/src/IconOpenInBrowserRound.tsx b/src/IconOpenInBrowserRound.tsx new file mode 100644 index 000000000..5d5c78649 --- /dev/null +++ b/src/IconOpenInBrowserRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInBrowserRound as default } diff --git a/src/IconOpenInBrowserSharp.tsx b/src/IconOpenInBrowserSharp.tsx new file mode 100644 index 000000000..dabc551c1 --- /dev/null +++ b/src/IconOpenInBrowserSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInBrowserSharp as default } diff --git a/src/IconOpenInBrowserTwoTone.tsx b/src/IconOpenInBrowserTwoTone.tsx new file mode 100644 index 000000000..0121a7a53 --- /dev/null +++ b/src/IconOpenInBrowserTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInBrowserTwoTone as default } diff --git a/src/IconOpenInFullOutlined.tsx b/src/IconOpenInFullOutlined.tsx new file mode 100644 index 000000000..8a93ade2f --- /dev/null +++ b/src/IconOpenInFullOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInFullOutlined as default } diff --git a/src/IconOpenInFullRound.tsx b/src/IconOpenInFullRound.tsx new file mode 100644 index 000000000..d4f1d815e --- /dev/null +++ b/src/IconOpenInFullRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInFullRound as default } diff --git a/src/IconOpenInFullSharp.tsx b/src/IconOpenInFullSharp.tsx new file mode 100644 index 000000000..bce84265d --- /dev/null +++ b/src/IconOpenInFullSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInFullSharp as default } diff --git a/src/IconOpenInFullTwoTone.tsx b/src/IconOpenInFullTwoTone.tsx new file mode 100644 index 000000000..4964a8b1d --- /dev/null +++ b/src/IconOpenInFullTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInFullTwoTone as default } diff --git a/src/IconOpenInNewOffOutlined.tsx b/src/IconOpenInNewOffOutlined.tsx new file mode 100644 index 000000000..6cd9433c6 --- /dev/null +++ b/src/IconOpenInNewOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewOffOutlined as default } diff --git a/src/IconOpenInNewOffRound.tsx b/src/IconOpenInNewOffRound.tsx new file mode 100644 index 000000000..bfdfbf432 --- /dev/null +++ b/src/IconOpenInNewOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewOffRound as default } diff --git a/src/IconOpenInNewOffSharp.tsx b/src/IconOpenInNewOffSharp.tsx new file mode 100644 index 000000000..6be9846b9 --- /dev/null +++ b/src/IconOpenInNewOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewOffSharp as default } diff --git a/src/IconOpenInNewOffTwoTone.tsx b/src/IconOpenInNewOffTwoTone.tsx new file mode 100644 index 000000000..7b745cf43 --- /dev/null +++ b/src/IconOpenInNewOffTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewOffTwoTone as default } diff --git a/src/IconOpenInNewOutlined.tsx b/src/IconOpenInNewOutlined.tsx new file mode 100644 index 000000000..ad1533f8e --- /dev/null +++ b/src/IconOpenInNewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewOutlined as default } diff --git a/src/IconOpenInNewRound.tsx b/src/IconOpenInNewRound.tsx new file mode 100644 index 000000000..322eed81a --- /dev/null +++ b/src/IconOpenInNewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewRound as default } diff --git a/src/IconOpenInNewSharp.tsx b/src/IconOpenInNewSharp.tsx new file mode 100644 index 000000000..94772b708 --- /dev/null +++ b/src/IconOpenInNewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewSharp as default } diff --git a/src/IconOpenInNewTwoTone.tsx b/src/IconOpenInNewTwoTone.tsx new file mode 100644 index 000000000..c0d9ddbe5 --- /dev/null +++ b/src/IconOpenInNewTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenInNewTwoTone as default } diff --git a/src/IconOpenWithOutlined.tsx b/src/IconOpenWithOutlined.tsx new file mode 100644 index 000000000..70c3d4f9e --- /dev/null +++ b/src/IconOpenWithOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenWithOutlined as default } diff --git a/src/IconOpenWithRound.tsx b/src/IconOpenWithRound.tsx new file mode 100644 index 000000000..91316ed61 --- /dev/null +++ b/src/IconOpenWithRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenWithRound as default } diff --git a/src/IconOpenWithSharp.tsx b/src/IconOpenWithSharp.tsx new file mode 100644 index 000000000..8239fa9cf --- /dev/null +++ b/src/IconOpenWithSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenWithSharp as default } diff --git a/src/IconOpenWithTwoTone.tsx b/src/IconOpenWithTwoTone.tsx new file mode 100644 index 000000000..59a96d405 --- /dev/null +++ b/src/IconOpenWithTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOpenWithTwoTone as default } diff --git a/src/IconOtherHousesOutlined.tsx b/src/IconOtherHousesOutlined.tsx new file mode 100644 index 000000000..c8e6bacd1 --- /dev/null +++ b/src/IconOtherHousesOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOtherHousesOutlined as default } diff --git a/src/IconOtherHousesRound.tsx b/src/IconOtherHousesRound.tsx new file mode 100644 index 000000000..3991ebcc9 --- /dev/null +++ b/src/IconOtherHousesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOtherHousesRound as default } diff --git a/src/IconOtherHousesSharp.tsx b/src/IconOtherHousesSharp.tsx new file mode 100644 index 000000000..4fcf5bbb9 --- /dev/null +++ b/src/IconOtherHousesSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOtherHousesSharp as default } diff --git a/src/IconOtherHousesTwoTone.tsx b/src/IconOtherHousesTwoTone.tsx new file mode 100644 index 000000000..d75977e6a --- /dev/null +++ b/src/IconOtherHousesTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOtherHousesTwoTone as default } diff --git a/src/IconOutboundOutlined.tsx b/src/IconOutboundOutlined.tsx new file mode 100644 index 000000000..b7b3172d1 --- /dev/null +++ b/src/IconOutboundOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutboundOutlined as default } diff --git a/src/IconOutboundRound.tsx b/src/IconOutboundRound.tsx new file mode 100644 index 000000000..3b4ed9fd8 --- /dev/null +++ b/src/IconOutboundRound.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconOutboundRound as default } diff --git a/src/IconOutboundSharp.tsx b/src/IconOutboundSharp.tsx new file mode 100644 index 000000000..40d175cbc --- /dev/null +++ b/src/IconOutboundSharp.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconOutboundSharp as default } diff --git a/src/IconOutboundTwoTone.tsx b/src/IconOutboundTwoTone.tsx new file mode 100644 index 000000000..57455a809 --- /dev/null +++ b/src/IconOutboundTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOutboundTwoTone as default } diff --git a/src/IconOutboxOutlined.tsx b/src/IconOutboxOutlined.tsx new file mode 100644 index 000000000..80d511c67 --- /dev/null +++ b/src/IconOutboxOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutboxOutlined as default } diff --git a/src/IconOutboxRound.tsx b/src/IconOutboxRound.tsx new file mode 100644 index 000000000..59f239763 --- /dev/null +++ b/src/IconOutboxRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutboxRound as default } diff --git a/src/IconOutboxSharp.tsx b/src/IconOutboxSharp.tsx new file mode 100644 index 000000000..770e2bce6 --- /dev/null +++ b/src/IconOutboxSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutboxSharp as default } diff --git a/src/IconOutboxTwoTone.tsx b/src/IconOutboxTwoTone.tsx new file mode 100644 index 000000000..59c4bc321 --- /dev/null +++ b/src/IconOutboxTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconOutboxTwoTone as default } diff --git a/src/IconOutdoorGrillOutlined.tsx b/src/IconOutdoorGrillOutlined.tsx new file mode 100644 index 000000000..af497a9eb --- /dev/null +++ b/src/IconOutdoorGrillOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconOutdoorGrillOutlined as default } diff --git a/src/IconOutdoorGrillRound.tsx b/src/IconOutdoorGrillRound.tsx new file mode 100644 index 000000000..fa48a12c4 --- /dev/null +++ b/src/IconOutdoorGrillRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconOutdoorGrillRound as default } diff --git a/src/IconOutdoorGrillSharp.tsx b/src/IconOutdoorGrillSharp.tsx new file mode 100644 index 000000000..4f5e40c00 --- /dev/null +++ b/src/IconOutdoorGrillSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconOutdoorGrillSharp as default } diff --git a/src/IconOutdoorGrillTwoTone.tsx b/src/IconOutdoorGrillTwoTone.tsx new file mode 100644 index 000000000..9827e86c6 --- /dev/null +++ b/src/IconOutdoorGrillTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconOutdoorGrillTwoTone as default } diff --git a/src/IconOutletOutlined.tsx b/src/IconOutletOutlined.tsx new file mode 100644 index 000000000..a80051a68 --- /dev/null +++ b/src/IconOutletOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutletOutlined as default } diff --git a/src/IconOutletRound.tsx b/src/IconOutletRound.tsx new file mode 100644 index 000000000..df86e2680 --- /dev/null +++ b/src/IconOutletRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutletRound as default } diff --git a/src/IconOutletSharp.tsx b/src/IconOutletSharp.tsx new file mode 100644 index 000000000..ef6da906b --- /dev/null +++ b/src/IconOutletSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutletSharp as default } diff --git a/src/IconOutletTwoTone.tsx b/src/IconOutletTwoTone.tsx new file mode 100644 index 000000000..1ea05fde3 --- /dev/null +++ b/src/IconOutletTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconOutletTwoTone as default } diff --git a/src/IconOutlinedFlagOutlined.tsx b/src/IconOutlinedFlagOutlined.tsx new file mode 100644 index 000000000..63186c07b --- /dev/null +++ b/src/IconOutlinedFlagOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutlinedFlagOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutlinedFlagOutlined as default } diff --git a/src/IconOutlinedFlagRound.tsx b/src/IconOutlinedFlagRound.tsx new file mode 100644 index 000000000..b89016d81 --- /dev/null +++ b/src/IconOutlinedFlagRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutlinedFlagRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutlinedFlagRound as default } diff --git a/src/IconOutlinedFlagSharp.tsx b/src/IconOutlinedFlagSharp.tsx new file mode 100644 index 000000000..741c19682 --- /dev/null +++ b/src/IconOutlinedFlagSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutlinedFlagSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutlinedFlagSharp as default } diff --git a/src/IconOutlinedFlagTwoTone.tsx b/src/IconOutlinedFlagTwoTone.tsx new file mode 100644 index 000000000..bdab6f8e1 --- /dev/null +++ b/src/IconOutlinedFlagTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutlinedFlagTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconOutlinedFlagTwoTone as default } diff --git a/src/IconOutputOutlined.tsx b/src/IconOutputOutlined.tsx new file mode 100644 index 000000000..0a4cd1b3a --- /dev/null +++ b/src/IconOutputOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutputOutlined as default } diff --git a/src/IconOutputRound.tsx b/src/IconOutputRound.tsx new file mode 100644 index 000000000..e62351659 --- /dev/null +++ b/src/IconOutputRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconOutputRound as default } diff --git a/src/IconOutputSharp.tsx b/src/IconOutputSharp.tsx new file mode 100644 index 000000000..8abceaf73 --- /dev/null +++ b/src/IconOutputSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutputSharp as default } diff --git a/src/IconOutputTwoTone.tsx b/src/IconOutputTwoTone.tsx new file mode 100644 index 000000000..472acba47 --- /dev/null +++ b/src/IconOutputTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconOutputTwoTone as default } diff --git a/src/IconPaddingOutlined.tsx b/src/IconPaddingOutlined.tsx new file mode 100644 index 000000000..096345128 --- /dev/null +++ b/src/IconPaddingOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPaddingOutlined as default } diff --git a/src/IconPaddingRound.tsx b/src/IconPaddingRound.tsx new file mode 100644 index 000000000..8d898cd70 --- /dev/null +++ b/src/IconPaddingRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaddingRound as default } diff --git a/src/IconPaddingSharp.tsx b/src/IconPaddingSharp.tsx new file mode 100644 index 000000000..908c705fb --- /dev/null +++ b/src/IconPaddingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaddingSharp as default } diff --git a/src/IconPaddingTwoTone.tsx b/src/IconPaddingTwoTone.tsx new file mode 100644 index 000000000..412c15d00 --- /dev/null +++ b/src/IconPaddingTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPaddingTwoTone as default } diff --git a/src/IconPagesOutlined.tsx b/src/IconPagesOutlined.tsx new file mode 100644 index 000000000..0b5e8b61e --- /dev/null +++ b/src/IconPagesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPagesOutlined as default } diff --git a/src/IconPagesRound.tsx b/src/IconPagesRound.tsx new file mode 100644 index 000000000..20a02b8df --- /dev/null +++ b/src/IconPagesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPagesRound as default } diff --git a/src/IconPagesSharp.tsx b/src/IconPagesSharp.tsx new file mode 100644 index 000000000..5e5885811 --- /dev/null +++ b/src/IconPagesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPagesSharp as default } diff --git a/src/IconPagesTwoTone.tsx b/src/IconPagesTwoTone.tsx new file mode 100644 index 000000000..1854a2785 --- /dev/null +++ b/src/IconPagesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPagesTwoTone as default } diff --git a/src/IconPageviewOutlined.tsx b/src/IconPageviewOutlined.tsx new file mode 100644 index 000000000..54246e476 --- /dev/null +++ b/src/IconPageviewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPageviewOutlined as default } diff --git a/src/IconPageviewRound.tsx b/src/IconPageviewRound.tsx new file mode 100644 index 000000000..98e5c1fb7 --- /dev/null +++ b/src/IconPageviewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPageviewRound as default } diff --git a/src/IconPageviewSharp.tsx b/src/IconPageviewSharp.tsx new file mode 100644 index 000000000..e09faf17f --- /dev/null +++ b/src/IconPageviewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPageviewSharp as default } diff --git a/src/IconPageviewTwoTone.tsx b/src/IconPageviewTwoTone.tsx new file mode 100644 index 000000000..fed499dfb --- /dev/null +++ b/src/IconPageviewTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPageviewTwoTone as default } diff --git a/src/IconPaidOutlined.tsx b/src/IconPaidOutlined.tsx new file mode 100644 index 000000000..a27fe9aa0 --- /dev/null +++ b/src/IconPaidOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaidOutlined as default } diff --git a/src/IconPaidRound.tsx b/src/IconPaidRound.tsx new file mode 100644 index 000000000..a8f7ee16e --- /dev/null +++ b/src/IconPaidRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaidRound as default } diff --git a/src/IconPaidSharp.tsx b/src/IconPaidSharp.tsx new file mode 100644 index 000000000..99473e844 --- /dev/null +++ b/src/IconPaidSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaidSharp as default } diff --git a/src/IconPaidTwoTone.tsx b/src/IconPaidTwoTone.tsx new file mode 100644 index 000000000..eaa491f38 --- /dev/null +++ b/src/IconPaidTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPaidTwoTone as default } diff --git a/src/IconPaletteOutlined.tsx b/src/IconPaletteOutlined.tsx new file mode 100644 index 000000000..c57ca0142 --- /dev/null +++ b/src/IconPaletteOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconPaletteOutlined as default } diff --git a/src/IconPaletteRound.tsx b/src/IconPaletteRound.tsx new file mode 100644 index 000000000..90d976b96 --- /dev/null +++ b/src/IconPaletteRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaletteRound as default } diff --git a/src/IconPaletteSharp.tsx b/src/IconPaletteSharp.tsx new file mode 100644 index 000000000..40099e4db --- /dev/null +++ b/src/IconPaletteSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPaletteSharp as default } diff --git a/src/IconPaletteTwoTone.tsx b/src/IconPaletteTwoTone.tsx new file mode 100644 index 000000000..8efca7c61 --- /dev/null +++ b/src/IconPaletteTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconPaletteTwoTone as default } diff --git a/src/IconPanToolAltOutlined.tsx b/src/IconPanToolAltOutlined.tsx new file mode 100644 index 000000000..1bf7f0cec --- /dev/null +++ b/src/IconPanToolAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanToolAltOutlined as default } diff --git a/src/IconPanToolAltRound.tsx b/src/IconPanToolAltRound.tsx new file mode 100644 index 000000000..6fe4e3881 --- /dev/null +++ b/src/IconPanToolAltRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPanToolAltRound as default } diff --git a/src/IconPanToolAltSharp.tsx b/src/IconPanToolAltSharp.tsx new file mode 100644 index 000000000..b27cd39b5 --- /dev/null +++ b/src/IconPanToolAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanToolAltSharp as default } diff --git a/src/IconPanToolAltTwoTone.tsx b/src/IconPanToolAltTwoTone.tsx new file mode 100644 index 000000000..644b7cd18 --- /dev/null +++ b/src/IconPanToolAltTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPanToolAltTwoTone as default } diff --git a/src/IconPanToolOutlined.tsx b/src/IconPanToolOutlined.tsx new file mode 100644 index 000000000..67770a7d5 --- /dev/null +++ b/src/IconPanToolOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanToolOutlined as default } diff --git a/src/IconPanToolRound.tsx b/src/IconPanToolRound.tsx new file mode 100644 index 000000000..86ef3cd41 --- /dev/null +++ b/src/IconPanToolRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanToolRound as default } diff --git a/src/IconPanToolSharp.tsx b/src/IconPanToolSharp.tsx new file mode 100644 index 000000000..fbf8be658 --- /dev/null +++ b/src/IconPanToolSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanToolSharp as default } diff --git a/src/IconPanToolTwoTone.tsx b/src/IconPanToolTwoTone.tsx new file mode 100644 index 000000000..f3e75328f --- /dev/null +++ b/src/IconPanToolTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanToolTwoTone as default } diff --git a/src/IconPanoramaFishEyeOutlined.tsx b/src/IconPanoramaFishEyeOutlined.tsx new file mode 100644 index 000000000..ccc5922a3 --- /dev/null +++ b/src/IconPanoramaFishEyeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaFishEyeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaFishEyeOutlined as default } diff --git a/src/IconPanoramaFishEyeRound.tsx b/src/IconPanoramaFishEyeRound.tsx new file mode 100644 index 000000000..5e3ba29de --- /dev/null +++ b/src/IconPanoramaFishEyeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaFishEyeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaFishEyeRound as default } diff --git a/src/IconPanoramaFishEyeSharp.tsx b/src/IconPanoramaFishEyeSharp.tsx new file mode 100644 index 000000000..092a68d5b --- /dev/null +++ b/src/IconPanoramaFishEyeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaFishEyeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaFishEyeSharp as default } diff --git a/src/IconPanoramaFishEyeTwoTone.tsx b/src/IconPanoramaFishEyeTwoTone.tsx new file mode 100644 index 000000000..de4371c29 --- /dev/null +++ b/src/IconPanoramaFishEyeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaFishEyeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanoramaFishEyeTwoTone as default } diff --git a/src/IconPanoramaHorizontalOutlined.tsx b/src/IconPanoramaHorizontalOutlined.tsx new file mode 100644 index 000000000..8d0321c11 --- /dev/null +++ b/src/IconPanoramaHorizontalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaHorizontalOutlined as default } diff --git a/src/IconPanoramaHorizontalRound.tsx b/src/IconPanoramaHorizontalRound.tsx new file mode 100644 index 000000000..9464f60f9 --- /dev/null +++ b/src/IconPanoramaHorizontalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaHorizontalRound as default } diff --git a/src/IconPanoramaHorizontalSelectOutlined.tsx b/src/IconPanoramaHorizontalSelectOutlined.tsx new file mode 100644 index 000000000..fc2fee51c --- /dev/null +++ b/src/IconPanoramaHorizontalSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSelectOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaHorizontalSelectOutlined as default } diff --git a/src/IconPanoramaHorizontalSelectRound.tsx b/src/IconPanoramaHorizontalSelectRound.tsx new file mode 100644 index 000000000..3a825bf13 --- /dev/null +++ b/src/IconPanoramaHorizontalSelectRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSelectRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaHorizontalSelectRound as default } diff --git a/src/IconPanoramaHorizontalSelectSharp.tsx b/src/IconPanoramaHorizontalSelectSharp.tsx new file mode 100644 index 000000000..40470d897 --- /dev/null +++ b/src/IconPanoramaHorizontalSelectSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSelectSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaHorizontalSelectSharp as default } diff --git a/src/IconPanoramaHorizontalSelectTwoTone.tsx b/src/IconPanoramaHorizontalSelectTwoTone.tsx new file mode 100644 index 000000000..6d6ee96f5 --- /dev/null +++ b/src/IconPanoramaHorizontalSelectTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSelectTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPanoramaHorizontalSelectTwoTone as default } diff --git a/src/IconPanoramaHorizontalSharp.tsx b/src/IconPanoramaHorizontalSharp.tsx new file mode 100644 index 000000000..30e69e839 --- /dev/null +++ b/src/IconPanoramaHorizontalSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaHorizontalSharp as default } diff --git a/src/IconPanoramaHorizontalTwoTone.tsx b/src/IconPanoramaHorizontalTwoTone.tsx new file mode 100644 index 000000000..b31b631d6 --- /dev/null +++ b/src/IconPanoramaHorizontalTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanoramaHorizontalTwoTone as default } diff --git a/src/IconPanoramaOutlined.tsx b/src/IconPanoramaOutlined.tsx new file mode 100644 index 000000000..afc010fa7 --- /dev/null +++ b/src/IconPanoramaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaOutlined as default } diff --git a/src/IconPanoramaPhotosphereOutlined.tsx b/src/IconPanoramaPhotosphereOutlined.tsx new file mode 100644 index 000000000..5bf9d0e39 --- /dev/null +++ b/src/IconPanoramaPhotosphereOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereOutlined as default } diff --git a/src/IconPanoramaPhotosphereRound.tsx b/src/IconPanoramaPhotosphereRound.tsx new file mode 100644 index 000000000..81fbb16a5 --- /dev/null +++ b/src/IconPanoramaPhotosphereRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereRound as default } diff --git a/src/IconPanoramaPhotosphereSelectOutlined.tsx b/src/IconPanoramaPhotosphereSelectOutlined.tsx new file mode 100644 index 000000000..17c17b7c1 --- /dev/null +++ b/src/IconPanoramaPhotosphereSelectOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSelectOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereSelectOutlined as default } diff --git a/src/IconPanoramaPhotosphereSelectRound.tsx b/src/IconPanoramaPhotosphereSelectRound.tsx new file mode 100644 index 000000000..6bb247476 --- /dev/null +++ b/src/IconPanoramaPhotosphereSelectRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSelectRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereSelectRound as default } diff --git a/src/IconPanoramaPhotosphereSelectSharp.tsx b/src/IconPanoramaPhotosphereSelectSharp.tsx new file mode 100644 index 000000000..3d8c1a9ee --- /dev/null +++ b/src/IconPanoramaPhotosphereSelectSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSelectSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereSelectSharp as default } diff --git a/src/IconPanoramaPhotosphereSelectTwoTone.tsx b/src/IconPanoramaPhotosphereSelectTwoTone.tsx new file mode 100644 index 000000000..cfdd43c4c --- /dev/null +++ b/src/IconPanoramaPhotosphereSelectTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSelectTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereSelectTwoTone as default } diff --git a/src/IconPanoramaPhotosphereSharp.tsx b/src/IconPanoramaPhotosphereSharp.tsx new file mode 100644 index 000000000..afe8d3223 --- /dev/null +++ b/src/IconPanoramaPhotosphereSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPanoramaPhotosphereSharp as default } diff --git a/src/IconPanoramaPhotosphereTwoTone.tsx b/src/IconPanoramaPhotosphereTwoTone.tsx new file mode 100644 index 000000000..193a71a2c --- /dev/null +++ b/src/IconPanoramaPhotosphereTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPanoramaPhotosphereTwoTone as default } diff --git a/src/IconPanoramaRound.tsx b/src/IconPanoramaRound.tsx new file mode 100644 index 000000000..796ad432f --- /dev/null +++ b/src/IconPanoramaRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaRound as default } diff --git a/src/IconPanoramaSharp.tsx b/src/IconPanoramaSharp.tsx new file mode 100644 index 000000000..4d5ae9367 --- /dev/null +++ b/src/IconPanoramaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaSharp as default } diff --git a/src/IconPanoramaTwoTone.tsx b/src/IconPanoramaTwoTone.tsx new file mode 100644 index 000000000..4132a1fdf --- /dev/null +++ b/src/IconPanoramaTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanoramaTwoTone as default } diff --git a/src/IconPanoramaVerticalOutlined.tsx b/src/IconPanoramaVerticalOutlined.tsx new file mode 100644 index 000000000..89c405058 --- /dev/null +++ b/src/IconPanoramaVerticalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaVerticalOutlined as default } diff --git a/src/IconPanoramaVerticalRound.tsx b/src/IconPanoramaVerticalRound.tsx new file mode 100644 index 000000000..e6cdad7d3 --- /dev/null +++ b/src/IconPanoramaVerticalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaVerticalRound as default } diff --git a/src/IconPanoramaVerticalSelectOutlined.tsx b/src/IconPanoramaVerticalSelectOutlined.tsx new file mode 100644 index 000000000..abccf9a96 --- /dev/null +++ b/src/IconPanoramaVerticalSelectOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSelectOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaVerticalSelectOutlined as default } diff --git a/src/IconPanoramaVerticalSelectRound.tsx b/src/IconPanoramaVerticalSelectRound.tsx new file mode 100644 index 000000000..568ab2e72 --- /dev/null +++ b/src/IconPanoramaVerticalSelectRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaVerticalSelectRound as default } diff --git a/src/IconPanoramaVerticalSelectSharp.tsx b/src/IconPanoramaVerticalSelectSharp.tsx new file mode 100644 index 000000000..976346c46 --- /dev/null +++ b/src/IconPanoramaVerticalSelectSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaVerticalSelectSharp as default } diff --git a/src/IconPanoramaVerticalSelectTwoTone.tsx b/src/IconPanoramaVerticalSelectTwoTone.tsx new file mode 100644 index 000000000..db3346dfa --- /dev/null +++ b/src/IconPanoramaVerticalSelectTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSelectTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPanoramaVerticalSelectTwoTone as default } diff --git a/src/IconPanoramaVerticalSharp.tsx b/src/IconPanoramaVerticalSharp.tsx new file mode 100644 index 000000000..616492779 --- /dev/null +++ b/src/IconPanoramaVerticalSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaVerticalSharp as default } diff --git a/src/IconPanoramaVerticalTwoTone.tsx b/src/IconPanoramaVerticalTwoTone.tsx new file mode 100644 index 000000000..eb562824d --- /dev/null +++ b/src/IconPanoramaVerticalTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanoramaVerticalTwoTone as default } diff --git a/src/IconPanoramaWideAngleOutlined.tsx b/src/IconPanoramaWideAngleOutlined.tsx new file mode 100644 index 000000000..165b1858c --- /dev/null +++ b/src/IconPanoramaWideAngleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaWideAngleOutlined as default } diff --git a/src/IconPanoramaWideAngleRound.tsx b/src/IconPanoramaWideAngleRound.tsx new file mode 100644 index 000000000..2ab1c5417 --- /dev/null +++ b/src/IconPanoramaWideAngleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaWideAngleRound as default } diff --git a/src/IconPanoramaWideAngleSelectOutlined.tsx b/src/IconPanoramaWideAngleSelectOutlined.tsx new file mode 100644 index 000000000..073363ad1 --- /dev/null +++ b/src/IconPanoramaWideAngleSelectOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSelectOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPanoramaWideAngleSelectOutlined as default } diff --git a/src/IconPanoramaWideAngleSelectRound.tsx b/src/IconPanoramaWideAngleSelectRound.tsx new file mode 100644 index 000000000..1ede4c96d --- /dev/null +++ b/src/IconPanoramaWideAngleSelectRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSelectRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPanoramaWideAngleSelectRound as default } diff --git a/src/IconPanoramaWideAngleSelectSharp.tsx b/src/IconPanoramaWideAngleSelectSharp.tsx new file mode 100644 index 000000000..5b46ebd2d --- /dev/null +++ b/src/IconPanoramaWideAngleSelectSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSelectSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPanoramaWideAngleSelectSharp as default } diff --git a/src/IconPanoramaWideAngleSelectTwoTone.tsx b/src/IconPanoramaWideAngleSelectTwoTone.tsx new file mode 100644 index 000000000..ba4722caa --- /dev/null +++ b/src/IconPanoramaWideAngleSelectTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSelectTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPanoramaWideAngleSelectTwoTone as default } diff --git a/src/IconPanoramaWideAngleSharp.tsx b/src/IconPanoramaWideAngleSharp.tsx new file mode 100644 index 000000000..609500838 --- /dev/null +++ b/src/IconPanoramaWideAngleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPanoramaWideAngleSharp as default } diff --git a/src/IconPanoramaWideAngleTwoTone.tsx b/src/IconPanoramaWideAngleTwoTone.tsx new file mode 100644 index 000000000..cfafdd20f --- /dev/null +++ b/src/IconPanoramaWideAngleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPanoramaWideAngleTwoTone as default } diff --git a/src/IconParaglidingOutlined.tsx b/src/IconParaglidingOutlined.tsx new file mode 100644 index 000000000..599064c16 --- /dev/null +++ b/src/IconParaglidingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconParaglidingOutlined as default } diff --git a/src/IconParaglidingRound.tsx b/src/IconParaglidingRound.tsx new file mode 100644 index 000000000..78761c764 --- /dev/null +++ b/src/IconParaglidingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconParaglidingRound as default } diff --git a/src/IconParaglidingSharp.tsx b/src/IconParaglidingSharp.tsx new file mode 100644 index 000000000..97a348953 --- /dev/null +++ b/src/IconParaglidingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconParaglidingSharp as default } diff --git a/src/IconParaglidingTwoTone.tsx b/src/IconParaglidingTwoTone.tsx new file mode 100644 index 000000000..56e86e2d4 --- /dev/null +++ b/src/IconParaglidingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconParaglidingTwoTone as default } diff --git a/src/IconParkOutlined.tsx b/src/IconParkOutlined.tsx new file mode 100644 index 000000000..4530825ad --- /dev/null +++ b/src/IconParkOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconParkOutlined as default } diff --git a/src/IconParkRound.tsx b/src/IconParkRound.tsx new file mode 100644 index 000000000..20e02be0c --- /dev/null +++ b/src/IconParkRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconParkRound as default } diff --git a/src/IconParkSharp.tsx b/src/IconParkSharp.tsx new file mode 100644 index 000000000..6e16e393c --- /dev/null +++ b/src/IconParkSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconParkSharp as default } diff --git a/src/IconParkTwoTone.tsx b/src/IconParkTwoTone.tsx new file mode 100644 index 000000000..b508a8581 --- /dev/null +++ b/src/IconParkTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconParkTwoTone as default } diff --git a/src/IconPartyModeOutlined.tsx b/src/IconPartyModeOutlined.tsx new file mode 100644 index 000000000..fed199afb --- /dev/null +++ b/src/IconPartyModeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPartyModeOutlined as default } diff --git a/src/IconPartyModeRound.tsx b/src/IconPartyModeRound.tsx new file mode 100644 index 000000000..e57078473 --- /dev/null +++ b/src/IconPartyModeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPartyModeRound as default } diff --git a/src/IconPartyModeSharp.tsx b/src/IconPartyModeSharp.tsx new file mode 100644 index 000000000..bc645f0c4 --- /dev/null +++ b/src/IconPartyModeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPartyModeSharp as default } diff --git a/src/IconPartyModeTwoTone.tsx b/src/IconPartyModeTwoTone.tsx new file mode 100644 index 000000000..3b0a7498b --- /dev/null +++ b/src/IconPartyModeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPartyModeTwoTone as default } diff --git a/src/IconPasswordOutlined.tsx b/src/IconPasswordOutlined.tsx new file mode 100644 index 000000000..6ad0c957e --- /dev/null +++ b/src/IconPasswordOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPasswordOutlined as default } diff --git a/src/IconPasswordRound.tsx b/src/IconPasswordRound.tsx new file mode 100644 index 000000000..2845a2445 --- /dev/null +++ b/src/IconPasswordRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPasswordRound as default } diff --git a/src/IconPasswordSharp.tsx b/src/IconPasswordSharp.tsx new file mode 100644 index 000000000..c1d9e0931 --- /dev/null +++ b/src/IconPasswordSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPasswordSharp as default } diff --git a/src/IconPasswordTwoTone.tsx b/src/IconPasswordTwoTone.tsx new file mode 100644 index 000000000..a5e838ee3 --- /dev/null +++ b/src/IconPasswordTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPasswordTwoTone as default } diff --git a/src/IconPatternOutlined.tsx b/src/IconPatternOutlined.tsx new file mode 100644 index 000000000..6664fbdab --- /dev/null +++ b/src/IconPatternOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPatternOutlined as default } diff --git a/src/IconPatternRound.tsx b/src/IconPatternRound.tsx new file mode 100644 index 000000000..89eabefd2 --- /dev/null +++ b/src/IconPatternRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPatternRound as default } diff --git a/src/IconPatternSharp.tsx b/src/IconPatternSharp.tsx new file mode 100644 index 000000000..3cfdfe78b --- /dev/null +++ b/src/IconPatternSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPatternSharp as default } diff --git a/src/IconPatternTwoTone.tsx b/src/IconPatternTwoTone.tsx new file mode 100644 index 000000000..c27789f52 --- /dev/null +++ b/src/IconPatternTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPatternTwoTone as default } diff --git a/src/IconPauseCircleFilledOutlined.tsx b/src/IconPauseCircleFilledOutlined.tsx new file mode 100644 index 000000000..a3de21f75 --- /dev/null +++ b/src/IconPauseCircleFilledOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPauseCircleFilledOutlined as default } diff --git a/src/IconPauseCircleFilledRound.tsx b/src/IconPauseCircleFilledRound.tsx new file mode 100644 index 000000000..0d3d14464 --- /dev/null +++ b/src/IconPauseCircleFilledRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseCircleFilledRound as default } diff --git a/src/IconPauseCircleFilledSharp.tsx b/src/IconPauseCircleFilledSharp.tsx new file mode 100644 index 000000000..0bd9ea02c --- /dev/null +++ b/src/IconPauseCircleFilledSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPauseCircleFilledSharp as default } diff --git a/src/IconPauseCircleFilledTwoTone.tsx b/src/IconPauseCircleFilledTwoTone.tsx new file mode 100644 index 000000000..b51e7996e --- /dev/null +++ b/src/IconPauseCircleFilledTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconPauseCircleFilledTwoTone as default } diff --git a/src/IconPauseCircleOutlineOutlined.tsx b/src/IconPauseCircleOutlineOutlined.tsx new file mode 100644 index 000000000..dd6c03389 --- /dev/null +++ b/src/IconPauseCircleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseCircleOutlineOutlined as default } diff --git a/src/IconPauseCircleOutlineRound.tsx b/src/IconPauseCircleOutlineRound.tsx new file mode 100644 index 000000000..fd7cce357 --- /dev/null +++ b/src/IconPauseCircleOutlineRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseCircleOutlineRound as default } diff --git a/src/IconPauseCircleOutlineSharp.tsx b/src/IconPauseCircleOutlineSharp.tsx new file mode 100644 index 000000000..4113ec164 --- /dev/null +++ b/src/IconPauseCircleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseCircleOutlineSharp as default } diff --git a/src/IconPauseCircleOutlineTwoTone.tsx b/src/IconPauseCircleOutlineTwoTone.tsx new file mode 100644 index 000000000..48b0265d5 --- /dev/null +++ b/src/IconPauseCircleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseCircleOutlineTwoTone as default } diff --git a/src/IconPauseCircleOutlined.tsx b/src/IconPauseCircleOutlined.tsx new file mode 100644 index 000000000..642ccb1fa --- /dev/null +++ b/src/IconPauseCircleOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPauseCircleOutlined as default } diff --git a/src/IconPauseCircleRound.tsx b/src/IconPauseCircleRound.tsx new file mode 100644 index 000000000..ef807dcee --- /dev/null +++ b/src/IconPauseCircleRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPauseCircleRound as default } diff --git a/src/IconPauseCircleSharp.tsx b/src/IconPauseCircleSharp.tsx new file mode 100644 index 000000000..24f33ce1e --- /dev/null +++ b/src/IconPauseCircleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPauseCircleSharp as default } diff --git a/src/IconPauseCircleTwoTone.tsx b/src/IconPauseCircleTwoTone.tsx new file mode 100644 index 000000000..a0892e534 --- /dev/null +++ b/src/IconPauseCircleTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPauseCircleTwoTone as default } diff --git a/src/IconPauseOutlined.tsx b/src/IconPauseOutlined.tsx new file mode 100644 index 000000000..29124783a --- /dev/null +++ b/src/IconPauseOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseOutlined as default } diff --git a/src/IconPausePresentationOutlined.tsx b/src/IconPausePresentationOutlined.tsx new file mode 100644 index 000000000..162d82d6b --- /dev/null +++ b/src/IconPausePresentationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPausePresentationOutlined as default } diff --git a/src/IconPausePresentationRound.tsx b/src/IconPausePresentationRound.tsx new file mode 100644 index 000000000..1020b2826 --- /dev/null +++ b/src/IconPausePresentationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPausePresentationRound as default } diff --git a/src/IconPausePresentationSharp.tsx b/src/IconPausePresentationSharp.tsx new file mode 100644 index 000000000..43d0e1dce --- /dev/null +++ b/src/IconPausePresentationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPausePresentationSharp as default } diff --git a/src/IconPausePresentationTwoTone.tsx b/src/IconPausePresentationTwoTone.tsx new file mode 100644 index 000000000..8a2d1a47c --- /dev/null +++ b/src/IconPausePresentationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPausePresentationTwoTone as default } diff --git a/src/IconPauseRound.tsx b/src/IconPauseRound.tsx new file mode 100644 index 000000000..bfe5ecdfd --- /dev/null +++ b/src/IconPauseRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseRound as default } diff --git a/src/IconPauseSharp.tsx b/src/IconPauseSharp.tsx new file mode 100644 index 000000000..f939ec3dc --- /dev/null +++ b/src/IconPauseSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseSharp as default } diff --git a/src/IconPauseTwoTone.tsx b/src/IconPauseTwoTone.tsx new file mode 100644 index 000000000..8fecc621b --- /dev/null +++ b/src/IconPauseTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPauseTwoTone as default } diff --git a/src/IconPaymentOutlined.tsx b/src/IconPaymentOutlined.tsx new file mode 100644 index 000000000..d2d9b3543 --- /dev/null +++ b/src/IconPaymentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPaymentOutlined as default } diff --git a/src/IconPaymentRound.tsx b/src/IconPaymentRound.tsx new file mode 100644 index 000000000..f8ced121d --- /dev/null +++ b/src/IconPaymentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPaymentRound as default } diff --git a/src/IconPaymentSharp.tsx b/src/IconPaymentSharp.tsx new file mode 100644 index 000000000..bb1bd7830 --- /dev/null +++ b/src/IconPaymentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPaymentSharp as default } diff --git a/src/IconPaymentTwoTone.tsx b/src/IconPaymentTwoTone.tsx new file mode 100644 index 000000000..9256fa9ea --- /dev/null +++ b/src/IconPaymentTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPaymentTwoTone as default } diff --git a/src/IconPaymentsOutlined.tsx b/src/IconPaymentsOutlined.tsx new file mode 100644 index 000000000..1cd9b4b4f --- /dev/null +++ b/src/IconPaymentsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPaymentsOutlined as default } diff --git a/src/IconPaymentsRound.tsx b/src/IconPaymentsRound.tsx new file mode 100644 index 000000000..f18810cea --- /dev/null +++ b/src/IconPaymentsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPaymentsRound as default } diff --git a/src/IconPaymentsSharp.tsx b/src/IconPaymentsSharp.tsx new file mode 100644 index 000000000..e68caf076 --- /dev/null +++ b/src/IconPaymentsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPaymentsSharp as default } diff --git a/src/IconPaymentsTwoTone.tsx b/src/IconPaymentsTwoTone.tsx new file mode 100644 index 000000000..2da4b7ead --- /dev/null +++ b/src/IconPaymentsTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPaymentsTwoTone as default } diff --git a/src/IconPedalBikeOutlined.tsx b/src/IconPedalBikeOutlined.tsx new file mode 100644 index 000000000..7dfc5494d --- /dev/null +++ b/src/IconPedalBikeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPedalBikeOutlined as default } diff --git a/src/IconPedalBikeRound.tsx b/src/IconPedalBikeRound.tsx new file mode 100644 index 000000000..8dce0526b --- /dev/null +++ b/src/IconPedalBikeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPedalBikeRound as default } diff --git a/src/IconPedalBikeSharp.tsx b/src/IconPedalBikeSharp.tsx new file mode 100644 index 000000000..257a8caee --- /dev/null +++ b/src/IconPedalBikeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPedalBikeSharp as default } diff --git a/src/IconPedalBikeTwoTone.tsx b/src/IconPedalBikeTwoTone.tsx new file mode 100644 index 000000000..21378c3a9 --- /dev/null +++ b/src/IconPedalBikeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPedalBikeTwoTone as default } diff --git a/src/IconPendingActionsOutlined.tsx b/src/IconPendingActionsOutlined.tsx new file mode 100644 index 000000000..876802ddf --- /dev/null +++ b/src/IconPendingActionsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPendingActionsOutlined as default } diff --git a/src/IconPendingActionsRound.tsx b/src/IconPendingActionsRound.tsx new file mode 100644 index 000000000..3e9f14cf4 --- /dev/null +++ b/src/IconPendingActionsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPendingActionsRound as default } diff --git a/src/IconPendingActionsSharp.tsx b/src/IconPendingActionsSharp.tsx new file mode 100644 index 000000000..57a4baed5 --- /dev/null +++ b/src/IconPendingActionsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPendingActionsSharp as default } diff --git a/src/IconPendingActionsTwoTone.tsx b/src/IconPendingActionsTwoTone.tsx new file mode 100644 index 000000000..970368221 --- /dev/null +++ b/src/IconPendingActionsTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPendingActionsTwoTone as default } diff --git a/src/IconPendingOutlined.tsx b/src/IconPendingOutlined.tsx new file mode 100644 index 000000000..35f97e938 --- /dev/null +++ b/src/IconPendingOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPendingOutlined as default } diff --git a/src/IconPendingRound.tsx b/src/IconPendingRound.tsx new file mode 100644 index 000000000..b450b9d84 --- /dev/null +++ b/src/IconPendingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPendingRound as default } diff --git a/src/IconPendingSharp.tsx b/src/IconPendingSharp.tsx new file mode 100644 index 000000000..03fb7bcb6 --- /dev/null +++ b/src/IconPendingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPendingSharp as default } diff --git a/src/IconPendingTwoTone.tsx b/src/IconPendingTwoTone.tsx new file mode 100644 index 000000000..e4d372246 --- /dev/null +++ b/src/IconPendingTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPendingTwoTone as default } diff --git a/src/IconPentagonOutlined.tsx b/src/IconPentagonOutlined.tsx new file mode 100644 index 000000000..6a1d2dbb7 --- /dev/null +++ b/src/IconPentagonOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPentagonOutlined as default } diff --git a/src/IconPentagonRound.tsx b/src/IconPentagonRound.tsx new file mode 100644 index 000000000..917bb7b35 --- /dev/null +++ b/src/IconPentagonRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPentagonRound as default } diff --git a/src/IconPentagonSharp.tsx b/src/IconPentagonSharp.tsx new file mode 100644 index 000000000..96f5818f4 --- /dev/null +++ b/src/IconPentagonSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPentagonSharp as default } diff --git a/src/IconPentagonTwoTone.tsx b/src/IconPentagonTwoTone.tsx new file mode 100644 index 000000000..7b384e70e --- /dev/null +++ b/src/IconPentagonTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPentagonTwoTone as default } diff --git a/src/IconPeopleAltOutlined.tsx b/src/IconPeopleAltOutlined.tsx new file mode 100644 index 000000000..4d71ee19f --- /dev/null +++ b/src/IconPeopleAltOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPeopleAltOutlined as default } diff --git a/src/IconPeopleAltRound.tsx b/src/IconPeopleAltRound.tsx new file mode 100644 index 000000000..cf8061226 --- /dev/null +++ b/src/IconPeopleAltRound.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconPeopleAltRound as default } diff --git a/src/IconPeopleAltSharp.tsx b/src/IconPeopleAltSharp.tsx new file mode 100644 index 000000000..1d54b6f1d --- /dev/null +++ b/src/IconPeopleAltSharp.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconPeopleAltSharp as default } diff --git a/src/IconPeopleAltTwoTone.tsx b/src/IconPeopleAltTwoTone.tsx new file mode 100644 index 000000000..a5891ecc2 --- /dev/null +++ b/src/IconPeopleAltTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconPeopleAltTwoTone as default } diff --git a/src/IconPeopleOutlineOutlined.tsx b/src/IconPeopleOutlineOutlined.tsx new file mode 100644 index 000000000..c2d818d49 --- /dev/null +++ b/src/IconPeopleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleOutlineOutlined as default } diff --git a/src/IconPeopleOutlineRound.tsx b/src/IconPeopleOutlineRound.tsx new file mode 100644 index 000000000..e51cb8aa0 --- /dev/null +++ b/src/IconPeopleOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleOutlineRound as default } diff --git a/src/IconPeopleOutlineSharp.tsx b/src/IconPeopleOutlineSharp.tsx new file mode 100644 index 000000000..b60747ae2 --- /dev/null +++ b/src/IconPeopleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleOutlineSharp as default } diff --git a/src/IconPeopleOutlineTwoTone.tsx b/src/IconPeopleOutlineTwoTone.tsx new file mode 100644 index 000000000..9c328992d --- /dev/null +++ b/src/IconPeopleOutlineTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPeopleOutlineTwoTone as default } diff --git a/src/IconPeopleOutlined.tsx b/src/IconPeopleOutlined.tsx new file mode 100644 index 000000000..a6e87267b --- /dev/null +++ b/src/IconPeopleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleOutlined as default } diff --git a/src/IconPeopleRound.tsx b/src/IconPeopleRound.tsx new file mode 100644 index 000000000..02fb2d2b9 --- /dev/null +++ b/src/IconPeopleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleRound as default } diff --git a/src/IconPeopleSharp.tsx b/src/IconPeopleSharp.tsx new file mode 100644 index 000000000..41930e038 --- /dev/null +++ b/src/IconPeopleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPeopleSharp as default } diff --git a/src/IconPeopleTwoTone.tsx b/src/IconPeopleTwoTone.tsx new file mode 100644 index 000000000..40f86d6bc --- /dev/null +++ b/src/IconPeopleTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPeopleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPeopleTwoTone as default } diff --git a/src/IconPercentOutlined.tsx b/src/IconPercentOutlined.tsx new file mode 100644 index 000000000..8a7e78062 --- /dev/null +++ b/src/IconPercentOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPercentOutlined as default } diff --git a/src/IconPercentRound.tsx b/src/IconPercentRound.tsx new file mode 100644 index 000000000..5a3c5fdb7 --- /dev/null +++ b/src/IconPercentRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPercentRound as default } diff --git a/src/IconPercentSharp.tsx b/src/IconPercentSharp.tsx new file mode 100644 index 000000000..737a998ed --- /dev/null +++ b/src/IconPercentSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPercentSharp as default } diff --git a/src/IconPercentTwoTone.tsx b/src/IconPercentTwoTone.tsx new file mode 100644 index 000000000..daa0cc392 --- /dev/null +++ b/src/IconPercentTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPercentTwoTone as default } diff --git a/src/IconPermCameraMicOutlined.tsx b/src/IconPermCameraMicOutlined.tsx new file mode 100644 index 000000000..dfcf873c4 --- /dev/null +++ b/src/IconPermCameraMicOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermCameraMicOutlined as default } diff --git a/src/IconPermCameraMicRound.tsx b/src/IconPermCameraMicRound.tsx new file mode 100644 index 000000000..f0c697e09 --- /dev/null +++ b/src/IconPermCameraMicRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermCameraMicRound as default } diff --git a/src/IconPermCameraMicSharp.tsx b/src/IconPermCameraMicSharp.tsx new file mode 100644 index 000000000..3ef2c7479 --- /dev/null +++ b/src/IconPermCameraMicSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermCameraMicSharp as default } diff --git a/src/IconPermCameraMicTwoTone.tsx b/src/IconPermCameraMicTwoTone.tsx new file mode 100644 index 000000000..96869c88a --- /dev/null +++ b/src/IconPermCameraMicTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermCameraMicTwoTone as default } diff --git a/src/IconPermContactCalendarOutlined.tsx b/src/IconPermContactCalendarOutlined.tsx new file mode 100644 index 000000000..73f278ff3 --- /dev/null +++ b/src/IconPermContactCalendarOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermContactCalendarOutlined as default } diff --git a/src/IconPermContactCalendarRound.tsx b/src/IconPermContactCalendarRound.tsx new file mode 100644 index 000000000..d0e865bd1 --- /dev/null +++ b/src/IconPermContactCalendarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermContactCalendarRound as default } diff --git a/src/IconPermContactCalendarSharp.tsx b/src/IconPermContactCalendarSharp.tsx new file mode 100644 index 000000000..23e42cab7 --- /dev/null +++ b/src/IconPermContactCalendarSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermContactCalendarSharp as default } diff --git a/src/IconPermContactCalendarTwoTone.tsx b/src/IconPermContactCalendarTwoTone.tsx new file mode 100644 index 000000000..65a154477 --- /dev/null +++ b/src/IconPermContactCalendarTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermContactCalendarTwoTone as default } diff --git a/src/IconPermDataSettingOutlined.tsx b/src/IconPermDataSettingOutlined.tsx new file mode 100644 index 000000000..3afe6a82a --- /dev/null +++ b/src/IconPermDataSettingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDataSettingOutlined as default } diff --git a/src/IconPermDataSettingRound.tsx b/src/IconPermDataSettingRound.tsx new file mode 100644 index 000000000..ea8661da8 --- /dev/null +++ b/src/IconPermDataSettingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDataSettingRound as default } diff --git a/src/IconPermDataSettingSharp.tsx b/src/IconPermDataSettingSharp.tsx new file mode 100644 index 000000000..2c151b392 --- /dev/null +++ b/src/IconPermDataSettingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDataSettingSharp as default } diff --git a/src/IconPermDataSettingTwoTone.tsx b/src/IconPermDataSettingTwoTone.tsx new file mode 100644 index 000000000..ed9a7aaca --- /dev/null +++ b/src/IconPermDataSettingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDataSettingTwoTone as default } diff --git a/src/IconPermDeviceInformationOutlined.tsx b/src/IconPermDeviceInformationOutlined.tsx new file mode 100644 index 000000000..582f77203 --- /dev/null +++ b/src/IconPermDeviceInformationOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDeviceInformationOutlined as default } diff --git a/src/IconPermDeviceInformationRound.tsx b/src/IconPermDeviceInformationRound.tsx new file mode 100644 index 000000000..d3c6960c3 --- /dev/null +++ b/src/IconPermDeviceInformationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDeviceInformationRound as default } diff --git a/src/IconPermDeviceInformationSharp.tsx b/src/IconPermDeviceInformationSharp.tsx new file mode 100644 index 000000000..09add7e0c --- /dev/null +++ b/src/IconPermDeviceInformationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermDeviceInformationSharp as default } diff --git a/src/IconPermDeviceInformationTwoTone.tsx b/src/IconPermDeviceInformationTwoTone.tsx new file mode 100644 index 000000000..c33db0995 --- /dev/null +++ b/src/IconPermDeviceInformationTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermDeviceInformationTwoTone as default } diff --git a/src/IconPermIdentityOutlined.tsx b/src/IconPermIdentityOutlined.tsx new file mode 100644 index 000000000..df6f18b5d --- /dev/null +++ b/src/IconPermIdentityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermIdentityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermIdentityOutlined as default } diff --git a/src/IconPermIdentityRound.tsx b/src/IconPermIdentityRound.tsx new file mode 100644 index 000000000..1806f348c --- /dev/null +++ b/src/IconPermIdentityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermIdentityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermIdentityRound as default } diff --git a/src/IconPermIdentitySharp.tsx b/src/IconPermIdentitySharp.tsx new file mode 100644 index 000000000..54e813d4a --- /dev/null +++ b/src/IconPermIdentitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermIdentitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermIdentitySharp as default } diff --git a/src/IconPermIdentityTwoTone.tsx b/src/IconPermIdentityTwoTone.tsx new file mode 100644 index 000000000..921a7f984 --- /dev/null +++ b/src/IconPermIdentityTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermIdentityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPermIdentityTwoTone as default } diff --git a/src/IconPermMediaOutlined.tsx b/src/IconPermMediaOutlined.tsx new file mode 100644 index 000000000..0c30070ef --- /dev/null +++ b/src/IconPermMediaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermMediaOutlined as default } diff --git a/src/IconPermMediaRound.tsx b/src/IconPermMediaRound.tsx new file mode 100644 index 000000000..3e5e86e7b --- /dev/null +++ b/src/IconPermMediaRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPermMediaRound as default } diff --git a/src/IconPermMediaSharp.tsx b/src/IconPermMediaSharp.tsx new file mode 100644 index 000000000..c78769880 --- /dev/null +++ b/src/IconPermMediaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermMediaSharp as default } diff --git a/src/IconPermMediaTwoTone.tsx b/src/IconPermMediaTwoTone.tsx new file mode 100644 index 000000000..8186fbdf4 --- /dev/null +++ b/src/IconPermMediaTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermMediaTwoTone as default } diff --git a/src/IconPermPhoneMsgOutlined.tsx b/src/IconPermPhoneMsgOutlined.tsx new file mode 100644 index 000000000..0d36c4beb --- /dev/null +++ b/src/IconPermPhoneMsgOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermPhoneMsgOutlined as default } diff --git a/src/IconPermPhoneMsgRound.tsx b/src/IconPermPhoneMsgRound.tsx new file mode 100644 index 000000000..86b27c800 --- /dev/null +++ b/src/IconPermPhoneMsgRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermPhoneMsgRound as default } diff --git a/src/IconPermPhoneMsgSharp.tsx b/src/IconPermPhoneMsgSharp.tsx new file mode 100644 index 000000000..42e379acb --- /dev/null +++ b/src/IconPermPhoneMsgSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermPhoneMsgSharp as default } diff --git a/src/IconPermPhoneMsgTwoTone.tsx b/src/IconPermPhoneMsgTwoTone.tsx new file mode 100644 index 000000000..697b3a896 --- /dev/null +++ b/src/IconPermPhoneMsgTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermPhoneMsgTwoTone as default } diff --git a/src/IconPermScanWifiOutlined.tsx b/src/IconPermScanWifiOutlined.tsx new file mode 100644 index 000000000..7e10ea5c8 --- /dev/null +++ b/src/IconPermScanWifiOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermScanWifiOutlined as default } diff --git a/src/IconPermScanWifiRound.tsx b/src/IconPermScanWifiRound.tsx new file mode 100644 index 000000000..ab25ab874 --- /dev/null +++ b/src/IconPermScanWifiRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermScanWifiRound as default } diff --git a/src/IconPermScanWifiSharp.tsx b/src/IconPermScanWifiSharp.tsx new file mode 100644 index 000000000..3f841e6ae --- /dev/null +++ b/src/IconPermScanWifiSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPermScanWifiSharp as default } diff --git a/src/IconPermScanWifiTwoTone.tsx b/src/IconPermScanWifiTwoTone.tsx new file mode 100644 index 000000000..d8be13bee --- /dev/null +++ b/src/IconPermScanWifiTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPermScanWifiTwoTone as default } diff --git a/src/IconPerson2Outlined.tsx b/src/IconPerson2Outlined.tsx new file mode 100644 index 000000000..3f9dddde9 --- /dev/null +++ b/src/IconPerson2Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPerson2Outlined as default } diff --git a/src/IconPerson2Round.tsx b/src/IconPerson2Round.tsx new file mode 100644 index 000000000..26e6a51da --- /dev/null +++ b/src/IconPerson2Round.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPerson2Round as default } diff --git a/src/IconPerson2Sharp.tsx b/src/IconPerson2Sharp.tsx new file mode 100644 index 000000000..4f70405ab --- /dev/null +++ b/src/IconPerson2Sharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPerson2Sharp as default } diff --git a/src/IconPerson2TwoTone.tsx b/src/IconPerson2TwoTone.tsx new file mode 100644 index 000000000..27ad79b35 --- /dev/null +++ b/src/IconPerson2TwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPerson2TwoTone as default } diff --git a/src/IconPerson3Outlined.tsx b/src/IconPerson3Outlined.tsx new file mode 100644 index 000000000..6923d8171 --- /dev/null +++ b/src/IconPerson3Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPerson3Outlined as default } diff --git a/src/IconPerson3Round.tsx b/src/IconPerson3Round.tsx new file mode 100644 index 000000000..bfd2f1b61 --- /dev/null +++ b/src/IconPerson3Round.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconPerson3Round as default } diff --git a/src/IconPerson3Sharp.tsx b/src/IconPerson3Sharp.tsx new file mode 100644 index 000000000..41117cca5 --- /dev/null +++ b/src/IconPerson3Sharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPerson3Sharp as default } diff --git a/src/IconPerson3TwoTone.tsx b/src/IconPerson3TwoTone.tsx new file mode 100644 index 000000000..8d2eb1d66 --- /dev/null +++ b/src/IconPerson3TwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPerson3TwoTone as default } diff --git a/src/IconPerson4Outlined.tsx b/src/IconPerson4Outlined.tsx new file mode 100644 index 000000000..e03adcde9 --- /dev/null +++ b/src/IconPerson4Outlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPerson4Outlined as default } diff --git a/src/IconPerson4Round.tsx b/src/IconPerson4Round.tsx new file mode 100644 index 000000000..fda930159 --- /dev/null +++ b/src/IconPerson4Round.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconPerson4Round as default } diff --git a/src/IconPerson4Sharp.tsx b/src/IconPerson4Sharp.tsx new file mode 100644 index 000000000..22180dc93 --- /dev/null +++ b/src/IconPerson4Sharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPerson4Sharp as default } diff --git a/src/IconPerson4TwoTone.tsx b/src/IconPerson4TwoTone.tsx new file mode 100644 index 000000000..fa2151514 --- /dev/null +++ b/src/IconPerson4TwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPerson4TwoTone as default } diff --git a/src/IconPersonAddAlt1Outlined.tsx b/src/IconPersonAddAlt1Outlined.tsx new file mode 100644 index 000000000..4a1b6d0ba --- /dev/null +++ b/src/IconPersonAddAlt1Outlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAlt1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonAddAlt1Outlined as default } diff --git a/src/IconPersonAddAlt1Round.tsx b/src/IconPersonAddAlt1Round.tsx new file mode 100644 index 000000000..356737c2d --- /dev/null +++ b/src/IconPersonAddAlt1Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAlt1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPersonAddAlt1Round as default } diff --git a/src/IconPersonAddAlt1Sharp.tsx b/src/IconPersonAddAlt1Sharp.tsx new file mode 100644 index 000000000..d876b1ea6 --- /dev/null +++ b/src/IconPersonAddAlt1Sharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAlt1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonAddAlt1Sharp as default } diff --git a/src/IconPersonAddAlt1TwoTone.tsx b/src/IconPersonAddAlt1TwoTone.tsx new file mode 100644 index 000000000..7c76dccc6 --- /dev/null +++ b/src/IconPersonAddAlt1TwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAlt1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPersonAddAlt1TwoTone as default } diff --git a/src/IconPersonAddAltOutlined.tsx b/src/IconPersonAddAltOutlined.tsx new file mode 100644 index 000000000..db6c51dd3 --- /dev/null +++ b/src/IconPersonAddAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonAddAltOutlined as default } diff --git a/src/IconPersonAddAltRound.tsx b/src/IconPersonAddAltRound.tsx new file mode 100644 index 000000000..6dee21b2a --- /dev/null +++ b/src/IconPersonAddAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonAddAltRound as default } diff --git a/src/IconPersonAddAltSharp.tsx b/src/IconPersonAddAltSharp.tsx new file mode 100644 index 000000000..fa17acec1 --- /dev/null +++ b/src/IconPersonAddAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonAddAltSharp as default } diff --git a/src/IconPersonAddAltTwoTone.tsx b/src/IconPersonAddAltTwoTone.tsx new file mode 100644 index 000000000..02d4105a2 --- /dev/null +++ b/src/IconPersonAddAltTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPersonAddAltTwoTone as default } diff --git a/src/IconPersonAddDisabledOutlined.tsx b/src/IconPersonAddDisabledOutlined.tsx new file mode 100644 index 000000000..759f93a3b --- /dev/null +++ b/src/IconPersonAddDisabledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddDisabledOutlined as default } diff --git a/src/IconPersonAddDisabledRound.tsx b/src/IconPersonAddDisabledRound.tsx new file mode 100644 index 000000000..9344a65a7 --- /dev/null +++ b/src/IconPersonAddDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddDisabledRound as default } diff --git a/src/IconPersonAddDisabledSharp.tsx b/src/IconPersonAddDisabledSharp.tsx new file mode 100644 index 000000000..bdf324a8a --- /dev/null +++ b/src/IconPersonAddDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddDisabledSharp as default } diff --git a/src/IconPersonAddDisabledTwoTone.tsx b/src/IconPersonAddDisabledTwoTone.tsx new file mode 100644 index 000000000..060eed26c --- /dev/null +++ b/src/IconPersonAddDisabledTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonAddDisabledTwoTone as default } diff --git a/src/IconPersonAddOutlined.tsx b/src/IconPersonAddOutlined.tsx new file mode 100644 index 000000000..6aeb6b60a --- /dev/null +++ b/src/IconPersonAddOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddOutlined as default } diff --git a/src/IconPersonAddRound.tsx b/src/IconPersonAddRound.tsx new file mode 100644 index 000000000..34f7015e9 --- /dev/null +++ b/src/IconPersonAddRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddRound as default } diff --git a/src/IconPersonAddSharp.tsx b/src/IconPersonAddSharp.tsx new file mode 100644 index 000000000..757d739d2 --- /dev/null +++ b/src/IconPersonAddSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonAddSharp as default } diff --git a/src/IconPersonAddTwoTone.tsx b/src/IconPersonAddTwoTone.tsx new file mode 100644 index 000000000..845c0cf0c --- /dev/null +++ b/src/IconPersonAddTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonAddTwoTone as default } diff --git a/src/IconPersonOffOutlined.tsx b/src/IconPersonOffOutlined.tsx new file mode 100644 index 000000000..1fc6780e7 --- /dev/null +++ b/src/IconPersonOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonOffOutlined as default } diff --git a/src/IconPersonOffRound.tsx b/src/IconPersonOffRound.tsx new file mode 100644 index 000000000..e14c15085 --- /dev/null +++ b/src/IconPersonOffRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonOffRound as default } diff --git a/src/IconPersonOffSharp.tsx b/src/IconPersonOffSharp.tsx new file mode 100644 index 000000000..c98c468d7 --- /dev/null +++ b/src/IconPersonOffSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonOffSharp as default } diff --git a/src/IconPersonOffTwoTone.tsx b/src/IconPersonOffTwoTone.tsx new file mode 100644 index 000000000..2aeb41e93 --- /dev/null +++ b/src/IconPersonOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonOffTwoTone as default } diff --git a/src/IconPersonOutlineOutlined.tsx b/src/IconPersonOutlineOutlined.tsx new file mode 100644 index 000000000..46177b66d --- /dev/null +++ b/src/IconPersonOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonOutlineOutlined as default } diff --git a/src/IconPersonOutlineRound.tsx b/src/IconPersonOutlineRound.tsx new file mode 100644 index 000000000..1a8232b85 --- /dev/null +++ b/src/IconPersonOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonOutlineRound as default } diff --git a/src/IconPersonOutlineSharp.tsx b/src/IconPersonOutlineSharp.tsx new file mode 100644 index 000000000..d71371f11 --- /dev/null +++ b/src/IconPersonOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonOutlineSharp as default } diff --git a/src/IconPersonOutlineTwoTone.tsx b/src/IconPersonOutlineTwoTone.tsx new file mode 100644 index 000000000..ecedd5f84 --- /dev/null +++ b/src/IconPersonOutlineTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonOutlineTwoTone as default } diff --git a/src/IconPersonOutlined.tsx b/src/IconPersonOutlined.tsx new file mode 100644 index 000000000..862dabae9 --- /dev/null +++ b/src/IconPersonOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonOutlined as default } diff --git a/src/IconPersonPinCircleOutlined.tsx b/src/IconPersonPinCircleOutlined.tsx new file mode 100644 index 000000000..360d51be0 --- /dev/null +++ b/src/IconPersonPinCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonPinCircleOutlined as default } diff --git a/src/IconPersonPinCircleRound.tsx b/src/IconPersonPinCircleRound.tsx new file mode 100644 index 000000000..d5a26b6cb --- /dev/null +++ b/src/IconPersonPinCircleRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonPinCircleRound as default } diff --git a/src/IconPersonPinCircleSharp.tsx b/src/IconPersonPinCircleSharp.tsx new file mode 100644 index 000000000..8b7e9e0b7 --- /dev/null +++ b/src/IconPersonPinCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonPinCircleSharp as default } diff --git a/src/IconPersonPinCircleTwoTone.tsx b/src/IconPersonPinCircleTwoTone.tsx new file mode 100644 index 000000000..de05a87ef --- /dev/null +++ b/src/IconPersonPinCircleTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonPinCircleTwoTone as default } diff --git a/src/IconPersonPinOutlined.tsx b/src/IconPersonPinOutlined.tsx new file mode 100644 index 000000000..8d339b1f2 --- /dev/null +++ b/src/IconPersonPinOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonPinOutlined as default } diff --git a/src/IconPersonPinRound.tsx b/src/IconPersonPinRound.tsx new file mode 100644 index 000000000..505a616f9 --- /dev/null +++ b/src/IconPersonPinRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonPinRound as default } diff --git a/src/IconPersonPinSharp.tsx b/src/IconPersonPinSharp.tsx new file mode 100644 index 000000000..49cc20ea1 --- /dev/null +++ b/src/IconPersonPinSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonPinSharp as default } diff --git a/src/IconPersonPinTwoTone.tsx b/src/IconPersonPinTwoTone.tsx new file mode 100644 index 000000000..18b6e98a4 --- /dev/null +++ b/src/IconPersonPinTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonPinTwoTone as default } diff --git a/src/IconPersonRemoveAlt1Outlined.tsx b/src/IconPersonRemoveAlt1Outlined.tsx new file mode 100644 index 000000000..c192b5deb --- /dev/null +++ b/src/IconPersonRemoveAlt1Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveAlt1Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPersonRemoveAlt1Outlined as default } diff --git a/src/IconPersonRemoveAlt1Round.tsx b/src/IconPersonRemoveAlt1Round.tsx new file mode 100644 index 000000000..4fdc91052 --- /dev/null +++ b/src/IconPersonRemoveAlt1Round.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveAlt1Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPersonRemoveAlt1Round as default } diff --git a/src/IconPersonRemoveAlt1Sharp.tsx b/src/IconPersonRemoveAlt1Sharp.tsx new file mode 100644 index 000000000..9cb1f482c --- /dev/null +++ b/src/IconPersonRemoveAlt1Sharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveAlt1Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonRemoveAlt1Sharp as default } diff --git a/src/IconPersonRemoveAlt1TwoTone.tsx b/src/IconPersonRemoveAlt1TwoTone.tsx new file mode 100644 index 000000000..2e7acfe9c --- /dev/null +++ b/src/IconPersonRemoveAlt1TwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveAlt1TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPersonRemoveAlt1TwoTone as default } diff --git a/src/IconPersonRemoveOutlined.tsx b/src/IconPersonRemoveOutlined.tsx new file mode 100644 index 000000000..9dd950513 --- /dev/null +++ b/src/IconPersonRemoveOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPersonRemoveOutlined as default } diff --git a/src/IconPersonRemoveRound.tsx b/src/IconPersonRemoveRound.tsx new file mode 100644 index 000000000..66cc83d15 --- /dev/null +++ b/src/IconPersonRemoveRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPersonRemoveRound as default } diff --git a/src/IconPersonRemoveSharp.tsx b/src/IconPersonRemoveSharp.tsx new file mode 100644 index 000000000..9b8de4556 --- /dev/null +++ b/src/IconPersonRemoveSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPersonRemoveSharp as default } diff --git a/src/IconPersonRemoveTwoTone.tsx b/src/IconPersonRemoveTwoTone.tsx new file mode 100644 index 000000000..80af859e3 --- /dev/null +++ b/src/IconPersonRemoveTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPersonRemoveTwoTone as default } diff --git a/src/IconPersonRound.tsx b/src/IconPersonRound.tsx new file mode 100644 index 000000000..61554f645 --- /dev/null +++ b/src/IconPersonRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonRound as default } diff --git a/src/IconPersonSearchOutlined.tsx b/src/IconPersonSearchOutlined.tsx new file mode 100644 index 000000000..5a2336596 --- /dev/null +++ b/src/IconPersonSearchOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPersonSearchOutlined as default } diff --git a/src/IconPersonSearchRound.tsx b/src/IconPersonSearchRound.tsx new file mode 100644 index 000000000..a9511b972 --- /dev/null +++ b/src/IconPersonSearchRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPersonSearchRound as default } diff --git a/src/IconPersonSearchSharp.tsx b/src/IconPersonSearchSharp.tsx new file mode 100644 index 000000000..dd93f1e92 --- /dev/null +++ b/src/IconPersonSearchSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPersonSearchSharp as default } diff --git a/src/IconPersonSearchTwoTone.tsx b/src/IconPersonSearchTwoTone.tsx new file mode 100644 index 000000000..a20a9515e --- /dev/null +++ b/src/IconPersonSearchTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconPersonSearchTwoTone as default } diff --git a/src/IconPersonSharp.tsx b/src/IconPersonSharp.tsx new file mode 100644 index 000000000..7d05b0190 --- /dev/null +++ b/src/IconPersonSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonSharp as default } diff --git a/src/IconPersonTwoTone.tsx b/src/IconPersonTwoTone.tsx new file mode 100644 index 000000000..5917f5d2a --- /dev/null +++ b/src/IconPersonTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonTwoTone as default } diff --git a/src/IconPersonalInjuryOutlined.tsx b/src/IconPersonalInjuryOutlined.tsx new file mode 100644 index 000000000..db75cf823 --- /dev/null +++ b/src/IconPersonalInjuryOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjuryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonalInjuryOutlined as default } diff --git a/src/IconPersonalInjuryRound.tsx b/src/IconPersonalInjuryRound.tsx new file mode 100644 index 000000000..cebcaab09 --- /dev/null +++ b/src/IconPersonalInjuryRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjuryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonalInjuryRound as default } diff --git a/src/IconPersonalInjurySharp.tsx b/src/IconPersonalInjurySharp.tsx new file mode 100644 index 000000000..efe87fcab --- /dev/null +++ b/src/IconPersonalInjurySharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjurySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPersonalInjurySharp as default } diff --git a/src/IconPersonalInjuryTwoTone.tsx b/src/IconPersonalInjuryTwoTone.tsx new file mode 100644 index 000000000..56453750a --- /dev/null +++ b/src/IconPersonalInjuryTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjuryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonalInjuryTwoTone as default } diff --git a/src/IconPersonalVideoOutlined.tsx b/src/IconPersonalVideoOutlined.tsx new file mode 100644 index 000000000..0a594b4c4 --- /dev/null +++ b/src/IconPersonalVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonalVideoOutlined as default } diff --git a/src/IconPersonalVideoRound.tsx b/src/IconPersonalVideoRound.tsx new file mode 100644 index 000000000..03af140d8 --- /dev/null +++ b/src/IconPersonalVideoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonalVideoRound as default } diff --git a/src/IconPersonalVideoSharp.tsx b/src/IconPersonalVideoSharp.tsx new file mode 100644 index 000000000..3b17a7e2d --- /dev/null +++ b/src/IconPersonalVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPersonalVideoSharp as default } diff --git a/src/IconPersonalVideoTwoTone.tsx b/src/IconPersonalVideoTwoTone.tsx new file mode 100644 index 000000000..fd59e8466 --- /dev/null +++ b/src/IconPersonalVideoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPersonalVideoTwoTone as default } diff --git a/src/IconPestControlOutlined.tsx b/src/IconPestControlOutlined.tsx new file mode 100644 index 000000000..0b355ec58 --- /dev/null +++ b/src/IconPestControlOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPestControlOutlined as default } diff --git a/src/IconPestControlRodentOutlined.tsx b/src/IconPestControlRodentOutlined.tsx new file mode 100644 index 000000000..a2586e063 --- /dev/null +++ b/src/IconPestControlRodentOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPestControlRodentOutlined as default } diff --git a/src/IconPestControlRodentRound.tsx b/src/IconPestControlRodentRound.tsx new file mode 100644 index 000000000..a148506a4 --- /dev/null +++ b/src/IconPestControlRodentRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPestControlRodentRound as default } diff --git a/src/IconPestControlRodentSharp.tsx b/src/IconPestControlRodentSharp.tsx new file mode 100644 index 000000000..b4353559f --- /dev/null +++ b/src/IconPestControlRodentSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPestControlRodentSharp as default } diff --git a/src/IconPestControlRodentTwoTone.tsx b/src/IconPestControlRodentTwoTone.tsx new file mode 100644 index 000000000..61618917b --- /dev/null +++ b/src/IconPestControlRodentTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPestControlRodentTwoTone as default } diff --git a/src/IconPestControlRound.tsx b/src/IconPestControlRound.tsx new file mode 100644 index 000000000..a47da3c78 --- /dev/null +++ b/src/IconPestControlRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPestControlRound as default } diff --git a/src/IconPestControlSharp.tsx b/src/IconPestControlSharp.tsx new file mode 100644 index 000000000..3e69981bf --- /dev/null +++ b/src/IconPestControlSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPestControlSharp as default } diff --git a/src/IconPestControlTwoTone.tsx b/src/IconPestControlTwoTone.tsx new file mode 100644 index 000000000..9b67a0e61 --- /dev/null +++ b/src/IconPestControlTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPestControlTwoTone as default } diff --git a/src/IconPetsOutlined.tsx b/src/IconPetsOutlined.tsx new file mode 100644 index 000000000..be9bb2f6a --- /dev/null +++ b/src/IconPetsOutlined.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPetsOutlined as default } diff --git a/src/IconPetsRound.tsx b/src/IconPetsRound.tsx new file mode 100644 index 000000000..d7a0c848e --- /dev/null +++ b/src/IconPetsRound.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPetsRound as default } diff --git a/src/IconPetsSharp.tsx b/src/IconPetsSharp.tsx new file mode 100644 index 000000000..546f51b2d --- /dev/null +++ b/src/IconPetsSharp.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPetsSharp as default } diff --git a/src/IconPetsTwoTone.tsx b/src/IconPetsTwoTone.tsx new file mode 100644 index 000000000..0c8db11ff --- /dev/null +++ b/src/IconPetsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPetsTwoTone as default } diff --git a/src/IconPhishingOutlined.tsx b/src/IconPhishingOutlined.tsx new file mode 100644 index 000000000..4f43b69bb --- /dev/null +++ b/src/IconPhishingOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPhishingOutlined as default } diff --git a/src/IconPhishingRound.tsx b/src/IconPhishingRound.tsx new file mode 100644 index 000000000..efce888a4 --- /dev/null +++ b/src/IconPhishingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPhishingRound as default } diff --git a/src/IconPhishingSharp.tsx b/src/IconPhishingSharp.tsx new file mode 100644 index 000000000..01c93ef06 --- /dev/null +++ b/src/IconPhishingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhishingSharp as default } diff --git a/src/IconPhishingTwoTone.tsx b/src/IconPhishingTwoTone.tsx new file mode 100644 index 000000000..bd72585b0 --- /dev/null +++ b/src/IconPhishingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhishingTwoTone as default } diff --git a/src/IconPhoneAndroidOutlined.tsx b/src/IconPhoneAndroidOutlined.tsx new file mode 100644 index 000000000..e2caa9bfc --- /dev/null +++ b/src/IconPhoneAndroidOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneAndroidOutlined as default } diff --git a/src/IconPhoneAndroidRound.tsx b/src/IconPhoneAndroidRound.tsx new file mode 100644 index 000000000..38922f6ba --- /dev/null +++ b/src/IconPhoneAndroidRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneAndroidRound as default } diff --git a/src/IconPhoneAndroidSharp.tsx b/src/IconPhoneAndroidSharp.tsx new file mode 100644 index 000000000..fb02c8d72 --- /dev/null +++ b/src/IconPhoneAndroidSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneAndroidSharp as default } diff --git a/src/IconPhoneAndroidTwoTone.tsx b/src/IconPhoneAndroidTwoTone.tsx new file mode 100644 index 000000000..9535aaba9 --- /dev/null +++ b/src/IconPhoneAndroidTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneAndroidTwoTone as default } diff --git a/src/IconPhoneBluetoothSpeakerOutlined.tsx b/src/IconPhoneBluetoothSpeakerOutlined.tsx new file mode 100644 index 000000000..b6c89e5bc --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneBluetoothSpeakerOutlined as default } diff --git a/src/IconPhoneBluetoothSpeakerRound.tsx b/src/IconPhoneBluetoothSpeakerRound.tsx new file mode 100644 index 000000000..b52ca5471 --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneBluetoothSpeakerRound as default } diff --git a/src/IconPhoneBluetoothSpeakerSharp.tsx b/src/IconPhoneBluetoothSpeakerSharp.tsx new file mode 100644 index 000000000..93e188b02 --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneBluetoothSpeakerSharp as default } diff --git a/src/IconPhoneBluetoothSpeakerTwoTone.tsx b/src/IconPhoneBluetoothSpeakerTwoTone.tsx new file mode 100644 index 000000000..11ac3c98c --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneBluetoothSpeakerTwoTone as default } diff --git a/src/IconPhoneCallbackOutlined.tsx b/src/IconPhoneCallbackOutlined.tsx new file mode 100644 index 000000000..2d44d0847 --- /dev/null +++ b/src/IconPhoneCallbackOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneCallbackOutlined as default } diff --git a/src/IconPhoneCallbackRound.tsx b/src/IconPhoneCallbackRound.tsx new file mode 100644 index 000000000..720eca494 --- /dev/null +++ b/src/IconPhoneCallbackRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneCallbackRound as default } diff --git a/src/IconPhoneCallbackSharp.tsx b/src/IconPhoneCallbackSharp.tsx new file mode 100644 index 000000000..dfad05254 --- /dev/null +++ b/src/IconPhoneCallbackSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneCallbackSharp as default } diff --git a/src/IconPhoneCallbackTwoTone.tsx b/src/IconPhoneCallbackTwoTone.tsx new file mode 100644 index 000000000..fdf888a1e --- /dev/null +++ b/src/IconPhoneCallbackTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneCallbackTwoTone as default } diff --git a/src/IconPhoneDisabledOutlined.tsx b/src/IconPhoneDisabledOutlined.tsx new file mode 100644 index 000000000..e023eddc8 --- /dev/null +++ b/src/IconPhoneDisabledOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneDisabledOutlined as default } diff --git a/src/IconPhoneDisabledRound.tsx b/src/IconPhoneDisabledRound.tsx new file mode 100644 index 000000000..98bcd936a --- /dev/null +++ b/src/IconPhoneDisabledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneDisabledRound as default } diff --git a/src/IconPhoneDisabledSharp.tsx b/src/IconPhoneDisabledSharp.tsx new file mode 100644 index 000000000..62bbd9e16 --- /dev/null +++ b/src/IconPhoneDisabledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneDisabledSharp as default } diff --git a/src/IconPhoneDisabledTwoTone.tsx b/src/IconPhoneDisabledTwoTone.tsx new file mode 100644 index 000000000..4735636c1 --- /dev/null +++ b/src/IconPhoneDisabledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneDisabledTwoTone as default } diff --git a/src/IconPhoneEnabledOutlined.tsx b/src/IconPhoneEnabledOutlined.tsx new file mode 100644 index 000000000..011230ba4 --- /dev/null +++ b/src/IconPhoneEnabledOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneEnabledOutlined as default } diff --git a/src/IconPhoneEnabledRound.tsx b/src/IconPhoneEnabledRound.tsx new file mode 100644 index 000000000..4f2f348e5 --- /dev/null +++ b/src/IconPhoneEnabledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneEnabledRound as default } diff --git a/src/IconPhoneEnabledSharp.tsx b/src/IconPhoneEnabledSharp.tsx new file mode 100644 index 000000000..60b0b07cc --- /dev/null +++ b/src/IconPhoneEnabledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneEnabledSharp as default } diff --git a/src/IconPhoneEnabledTwoTone.tsx b/src/IconPhoneEnabledTwoTone.tsx new file mode 100644 index 000000000..1f47b4782 --- /dev/null +++ b/src/IconPhoneEnabledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhoneEnabledTwoTone as default } diff --git a/src/IconPhoneForwardedOutlined.tsx b/src/IconPhoneForwardedOutlined.tsx new file mode 100644 index 000000000..75e99b5ba --- /dev/null +++ b/src/IconPhoneForwardedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneForwardedOutlined as default } diff --git a/src/IconPhoneForwardedRound.tsx b/src/IconPhoneForwardedRound.tsx new file mode 100644 index 000000000..a9f6518c4 --- /dev/null +++ b/src/IconPhoneForwardedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneForwardedRound as default } diff --git a/src/IconPhoneForwardedSharp.tsx b/src/IconPhoneForwardedSharp.tsx new file mode 100644 index 000000000..5ef7cc168 --- /dev/null +++ b/src/IconPhoneForwardedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneForwardedSharp as default } diff --git a/src/IconPhoneForwardedTwoTone.tsx b/src/IconPhoneForwardedTwoTone.tsx new file mode 100644 index 000000000..1e83ea5e6 --- /dev/null +++ b/src/IconPhoneForwardedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneForwardedTwoTone as default } diff --git a/src/IconPhoneInTalkOutlined.tsx b/src/IconPhoneInTalkOutlined.tsx new file mode 100644 index 000000000..46d7473f1 --- /dev/null +++ b/src/IconPhoneInTalkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneInTalkOutlined as default } diff --git a/src/IconPhoneInTalkRound.tsx b/src/IconPhoneInTalkRound.tsx new file mode 100644 index 000000000..8462a2547 --- /dev/null +++ b/src/IconPhoneInTalkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneInTalkRound as default } diff --git a/src/IconPhoneInTalkSharp.tsx b/src/IconPhoneInTalkSharp.tsx new file mode 100644 index 000000000..23c810804 --- /dev/null +++ b/src/IconPhoneInTalkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneInTalkSharp as default } diff --git a/src/IconPhoneInTalkTwoTone.tsx b/src/IconPhoneInTalkTwoTone.tsx new file mode 100644 index 000000000..f296d2692 --- /dev/null +++ b/src/IconPhoneInTalkTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneInTalkTwoTone as default } diff --git a/src/IconPhoneIphoneOutlined.tsx b/src/IconPhoneIphoneOutlined.tsx new file mode 100644 index 000000000..c33426065 --- /dev/null +++ b/src/IconPhoneIphoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneIphoneOutlined as default } diff --git a/src/IconPhoneIphoneRound.tsx b/src/IconPhoneIphoneRound.tsx new file mode 100644 index 000000000..a43b3f4cf --- /dev/null +++ b/src/IconPhoneIphoneRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneIphoneRound as default } diff --git a/src/IconPhoneIphoneSharp.tsx b/src/IconPhoneIphoneSharp.tsx new file mode 100644 index 000000000..6710ac7eb --- /dev/null +++ b/src/IconPhoneIphoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneIphoneSharp as default } diff --git a/src/IconPhoneIphoneTwoTone.tsx b/src/IconPhoneIphoneTwoTone.tsx new file mode 100644 index 000000000..17e12f8e9 --- /dev/null +++ b/src/IconPhoneIphoneTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneIphoneTwoTone as default } diff --git a/src/IconPhoneLockedOutlined.tsx b/src/IconPhoneLockedOutlined.tsx new file mode 100644 index 000000000..26a899865 --- /dev/null +++ b/src/IconPhoneLockedOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhoneLockedOutlined as default } diff --git a/src/IconPhoneLockedRound.tsx b/src/IconPhoneLockedRound.tsx new file mode 100644 index 000000000..3b974c453 --- /dev/null +++ b/src/IconPhoneLockedRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhoneLockedRound as default } diff --git a/src/IconPhoneLockedSharp.tsx b/src/IconPhoneLockedSharp.tsx new file mode 100644 index 000000000..f4699b046 --- /dev/null +++ b/src/IconPhoneLockedSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhoneLockedSharp as default } diff --git a/src/IconPhoneLockedTwoTone.tsx b/src/IconPhoneLockedTwoTone.tsx new file mode 100644 index 000000000..74718356d --- /dev/null +++ b/src/IconPhoneLockedTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPhoneLockedTwoTone as default } diff --git a/src/IconPhoneMissedOutlined.tsx b/src/IconPhoneMissedOutlined.tsx new file mode 100644 index 000000000..3b678e007 --- /dev/null +++ b/src/IconPhoneMissedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneMissedOutlined as default } diff --git a/src/IconPhoneMissedRound.tsx b/src/IconPhoneMissedRound.tsx new file mode 100644 index 000000000..b04eeed81 --- /dev/null +++ b/src/IconPhoneMissedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneMissedRound as default } diff --git a/src/IconPhoneMissedSharp.tsx b/src/IconPhoneMissedSharp.tsx new file mode 100644 index 000000000..ec349b276 --- /dev/null +++ b/src/IconPhoneMissedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneMissedSharp as default } diff --git a/src/IconPhoneMissedTwoTone.tsx b/src/IconPhoneMissedTwoTone.tsx new file mode 100644 index 000000000..5d9436f8f --- /dev/null +++ b/src/IconPhoneMissedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneMissedTwoTone as default } diff --git a/src/IconPhoneOutlined.tsx b/src/IconPhoneOutlined.tsx new file mode 100644 index 000000000..039eabf5a --- /dev/null +++ b/src/IconPhoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneOutlined as default } diff --git a/src/IconPhonePausedOutlined.tsx b/src/IconPhonePausedOutlined.tsx new file mode 100644 index 000000000..eba43bb87 --- /dev/null +++ b/src/IconPhonePausedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonePausedOutlined as default } diff --git a/src/IconPhonePausedRound.tsx b/src/IconPhonePausedRound.tsx new file mode 100644 index 000000000..0ba72e243 --- /dev/null +++ b/src/IconPhonePausedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonePausedRound as default } diff --git a/src/IconPhonePausedSharp.tsx b/src/IconPhonePausedSharp.tsx new file mode 100644 index 000000000..ed558619e --- /dev/null +++ b/src/IconPhonePausedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonePausedSharp as default } diff --git a/src/IconPhonePausedTwoTone.tsx b/src/IconPhonePausedTwoTone.tsx new file mode 100644 index 000000000..f66a18d8e --- /dev/null +++ b/src/IconPhonePausedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhonePausedTwoTone as default } diff --git a/src/IconPhoneRound.tsx b/src/IconPhoneRound.tsx new file mode 100644 index 000000000..d03412a43 --- /dev/null +++ b/src/IconPhoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneRound as default } diff --git a/src/IconPhoneSharp.tsx b/src/IconPhoneSharp.tsx new file mode 100644 index 000000000..04297c792 --- /dev/null +++ b/src/IconPhoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhoneSharp as default } diff --git a/src/IconPhoneTwoTone.tsx b/src/IconPhoneTwoTone.tsx new file mode 100644 index 000000000..b90b158fe --- /dev/null +++ b/src/IconPhoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhoneTwoTone as default } diff --git a/src/IconPhonelinkEraseOutlined.tsx b/src/IconPhonelinkEraseOutlined.tsx new file mode 100644 index 000000000..2effd2e13 --- /dev/null +++ b/src/IconPhonelinkEraseOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkEraseOutlined as default } diff --git a/src/IconPhonelinkEraseRound.tsx b/src/IconPhonelinkEraseRound.tsx new file mode 100644 index 000000000..79eae0c22 --- /dev/null +++ b/src/IconPhonelinkEraseRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkEraseRound as default } diff --git a/src/IconPhonelinkEraseSharp.tsx b/src/IconPhonelinkEraseSharp.tsx new file mode 100644 index 000000000..f1aa13aab --- /dev/null +++ b/src/IconPhonelinkEraseSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkEraseSharp as default } diff --git a/src/IconPhonelinkEraseTwoTone.tsx b/src/IconPhonelinkEraseTwoTone.tsx new file mode 100644 index 000000000..dd2437ea1 --- /dev/null +++ b/src/IconPhonelinkEraseTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkEraseTwoTone as default } diff --git a/src/IconPhonelinkLockOutlined.tsx b/src/IconPhonelinkLockOutlined.tsx new file mode 100644 index 000000000..f6bf89f9b --- /dev/null +++ b/src/IconPhonelinkLockOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkLockOutlined as default } diff --git a/src/IconPhonelinkLockRound.tsx b/src/IconPhonelinkLockRound.tsx new file mode 100644 index 000000000..ef97a75e6 --- /dev/null +++ b/src/IconPhonelinkLockRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhonelinkLockRound as default } diff --git a/src/IconPhonelinkLockSharp.tsx b/src/IconPhonelinkLockSharp.tsx new file mode 100644 index 000000000..dcc8c89ce --- /dev/null +++ b/src/IconPhonelinkLockSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkLockSharp as default } diff --git a/src/IconPhonelinkLockTwoTone.tsx b/src/IconPhonelinkLockTwoTone.tsx new file mode 100644 index 000000000..7389ccfe4 --- /dev/null +++ b/src/IconPhonelinkLockTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkLockTwoTone as default } diff --git a/src/IconPhonelinkOffOutlined.tsx b/src/IconPhonelinkOffOutlined.tsx new file mode 100644 index 000000000..2464174c0 --- /dev/null +++ b/src/IconPhonelinkOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkOffOutlined as default } diff --git a/src/IconPhonelinkOffRound.tsx b/src/IconPhonelinkOffRound.tsx new file mode 100644 index 000000000..bc911e3cd --- /dev/null +++ b/src/IconPhonelinkOffRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkOffRound as default } diff --git a/src/IconPhonelinkOffSharp.tsx b/src/IconPhonelinkOffSharp.tsx new file mode 100644 index 000000000..5a274ab8a --- /dev/null +++ b/src/IconPhonelinkOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkOffSharp as default } diff --git a/src/IconPhonelinkOffTwoTone.tsx b/src/IconPhonelinkOffTwoTone.tsx new file mode 100644 index 000000000..41fc304b8 --- /dev/null +++ b/src/IconPhonelinkOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhonelinkOffTwoTone as default } diff --git a/src/IconPhonelinkOutlined.tsx b/src/IconPhonelinkOutlined.tsx new file mode 100644 index 000000000..60279ef46 --- /dev/null +++ b/src/IconPhonelinkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkOutlined as default } diff --git a/src/IconPhonelinkRingOutlined.tsx b/src/IconPhonelinkRingOutlined.tsx new file mode 100644 index 000000000..b43207c52 --- /dev/null +++ b/src/IconPhonelinkRingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkRingOutlined as default } diff --git a/src/IconPhonelinkRingRound.tsx b/src/IconPhonelinkRingRound.tsx new file mode 100644 index 000000000..ac997bd07 --- /dev/null +++ b/src/IconPhonelinkRingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkRingRound as default } diff --git a/src/IconPhonelinkRingSharp.tsx b/src/IconPhonelinkRingSharp.tsx new file mode 100644 index 000000000..b278eda7c --- /dev/null +++ b/src/IconPhonelinkRingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkRingSharp as default } diff --git a/src/IconPhonelinkRingTwoTone.tsx b/src/IconPhonelinkRingTwoTone.tsx new file mode 100644 index 000000000..b98dfd168 --- /dev/null +++ b/src/IconPhonelinkRingTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhonelinkRingTwoTone as default } diff --git a/src/IconPhonelinkRound.tsx b/src/IconPhonelinkRound.tsx new file mode 100644 index 000000000..c6f90543c --- /dev/null +++ b/src/IconPhonelinkRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRound as default } diff --git a/src/IconPhonelinkSetupOutlined.tsx b/src/IconPhonelinkSetupOutlined.tsx new file mode 100644 index 000000000..56e2270dd --- /dev/null +++ b/src/IconPhonelinkSetupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkSetupOutlined as default } diff --git a/src/IconPhonelinkSetupRound.tsx b/src/IconPhonelinkSetupRound.tsx new file mode 100644 index 000000000..bc80a3454 --- /dev/null +++ b/src/IconPhonelinkSetupRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkSetupRound as default } diff --git a/src/IconPhonelinkSetupSharp.tsx b/src/IconPhonelinkSetupSharp.tsx new file mode 100644 index 000000000..ab204d40c --- /dev/null +++ b/src/IconPhonelinkSetupSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkSetupSharp as default } diff --git a/src/IconPhonelinkSetupTwoTone.tsx b/src/IconPhonelinkSetupTwoTone.tsx new file mode 100644 index 000000000..2d3d47ee3 --- /dev/null +++ b/src/IconPhonelinkSetupTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkSetupTwoTone as default } diff --git a/src/IconPhonelinkSharp.tsx b/src/IconPhonelinkSharp.tsx new file mode 100644 index 000000000..279cd3527 --- /dev/null +++ b/src/IconPhonelinkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhonelinkSharp as default } diff --git a/src/IconPhonelinkTwoTone.tsx b/src/IconPhonelinkTwoTone.tsx new file mode 100644 index 000000000..30f212c2d --- /dev/null +++ b/src/IconPhonelinkTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhonelinkTwoTone as default } diff --git a/src/IconPhotoAlbumOutlined.tsx b/src/IconPhotoAlbumOutlined.tsx new file mode 100644 index 000000000..6c5c08291 --- /dev/null +++ b/src/IconPhotoAlbumOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoAlbumOutlined as default } diff --git a/src/IconPhotoAlbumRound.tsx b/src/IconPhotoAlbumRound.tsx new file mode 100644 index 000000000..d37428367 --- /dev/null +++ b/src/IconPhotoAlbumRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPhotoAlbumRound as default } diff --git a/src/IconPhotoAlbumSharp.tsx b/src/IconPhotoAlbumSharp.tsx new file mode 100644 index 000000000..b9e63b6d1 --- /dev/null +++ b/src/IconPhotoAlbumSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoAlbumSharp as default } diff --git a/src/IconPhotoAlbumTwoTone.tsx b/src/IconPhotoAlbumTwoTone.tsx new file mode 100644 index 000000000..175c0c5f2 --- /dev/null +++ b/src/IconPhotoAlbumTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoAlbumTwoTone as default } diff --git a/src/IconPhotoCameraBackOutlined.tsx b/src/IconPhotoCameraBackOutlined.tsx new file mode 100644 index 000000000..429fa4634 --- /dev/null +++ b/src/IconPhotoCameraBackOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhotoCameraBackOutlined as default } diff --git a/src/IconPhotoCameraBackRound.tsx b/src/IconPhotoCameraBackRound.tsx new file mode 100644 index 000000000..0311ca250 --- /dev/null +++ b/src/IconPhotoCameraBackRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhotoCameraBackRound as default } diff --git a/src/IconPhotoCameraBackSharp.tsx b/src/IconPhotoCameraBackSharp.tsx new file mode 100644 index 000000000..66902dd8a --- /dev/null +++ b/src/IconPhotoCameraBackSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhotoCameraBackSharp as default } diff --git a/src/IconPhotoCameraBackTwoTone.tsx b/src/IconPhotoCameraBackTwoTone.tsx new file mode 100644 index 000000000..82c1eebdb --- /dev/null +++ b/src/IconPhotoCameraBackTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPhotoCameraBackTwoTone as default } diff --git a/src/IconPhotoCameraFrontOutlined.tsx b/src/IconPhotoCameraFrontOutlined.tsx new file mode 100644 index 000000000..a7e3d4aa7 --- /dev/null +++ b/src/IconPhotoCameraFrontOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPhotoCameraFrontOutlined as default } diff --git a/src/IconPhotoCameraFrontRound.tsx b/src/IconPhotoCameraFrontRound.tsx new file mode 100644 index 000000000..d3268c600 --- /dev/null +++ b/src/IconPhotoCameraFrontRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhotoCameraFrontRound as default } diff --git a/src/IconPhotoCameraFrontSharp.tsx b/src/IconPhotoCameraFrontSharp.tsx new file mode 100644 index 000000000..bb64a5b9a --- /dev/null +++ b/src/IconPhotoCameraFrontSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhotoCameraFrontSharp as default } diff --git a/src/IconPhotoCameraFrontTwoTone.tsx b/src/IconPhotoCameraFrontTwoTone.tsx new file mode 100644 index 000000000..aa73999a0 --- /dev/null +++ b/src/IconPhotoCameraFrontTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPhotoCameraFrontTwoTone as default } diff --git a/src/IconPhotoCameraOutlined.tsx b/src/IconPhotoCameraOutlined.tsx new file mode 100644 index 000000000..0053dca5b --- /dev/null +++ b/src/IconPhotoCameraOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoCameraOutlined as default } diff --git a/src/IconPhotoCameraRound.tsx b/src/IconPhotoCameraRound.tsx new file mode 100644 index 000000000..64287e7c9 --- /dev/null +++ b/src/IconPhotoCameraRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoCameraRound as default } diff --git a/src/IconPhotoCameraSharp.tsx b/src/IconPhotoCameraSharp.tsx new file mode 100644 index 000000000..b6abee584 --- /dev/null +++ b/src/IconPhotoCameraSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoCameraSharp as default } diff --git a/src/IconPhotoCameraTwoTone.tsx b/src/IconPhotoCameraTwoTone.tsx new file mode 100644 index 000000000..d325f9e75 --- /dev/null +++ b/src/IconPhotoCameraTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoCameraTwoTone as default } diff --git a/src/IconPhotoFilterOutlined.tsx b/src/IconPhotoFilterOutlined.tsx new file mode 100644 index 000000000..42c4a3549 --- /dev/null +++ b/src/IconPhotoFilterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFilterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoFilterOutlined as default } diff --git a/src/IconPhotoFilterRound.tsx b/src/IconPhotoFilterRound.tsx new file mode 100644 index 000000000..93f4e2fc8 --- /dev/null +++ b/src/IconPhotoFilterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFilterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoFilterRound as default } diff --git a/src/IconPhotoFilterSharp.tsx b/src/IconPhotoFilterSharp.tsx new file mode 100644 index 000000000..c7ad32886 --- /dev/null +++ b/src/IconPhotoFilterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFilterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoFilterSharp as default } diff --git a/src/IconPhotoFilterTwoTone.tsx b/src/IconPhotoFilterTwoTone.tsx new file mode 100644 index 000000000..cad050efc --- /dev/null +++ b/src/IconPhotoFilterTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFilterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoFilterTwoTone as default } diff --git a/src/IconPhotoLibraryOutlined.tsx b/src/IconPhotoLibraryOutlined.tsx new file mode 100644 index 000000000..a04704377 --- /dev/null +++ b/src/IconPhotoLibraryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibraryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoLibraryOutlined as default } diff --git a/src/IconPhotoLibraryRound.tsx b/src/IconPhotoLibraryRound.tsx new file mode 100644 index 000000000..5e3651688 --- /dev/null +++ b/src/IconPhotoLibraryRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibraryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoLibraryRound as default } diff --git a/src/IconPhotoLibrarySharp.tsx b/src/IconPhotoLibrarySharp.tsx new file mode 100644 index 000000000..7d8e8b748 --- /dev/null +++ b/src/IconPhotoLibrarySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibrarySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoLibrarySharp as default } diff --git a/src/IconPhotoLibraryTwoTone.tsx b/src/IconPhotoLibraryTwoTone.tsx new file mode 100644 index 000000000..e4e95a0da --- /dev/null +++ b/src/IconPhotoLibraryTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibraryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoLibraryTwoTone as default } diff --git a/src/IconPhotoOutlined.tsx b/src/IconPhotoOutlined.tsx new file mode 100644 index 000000000..4642a0fea --- /dev/null +++ b/src/IconPhotoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoOutlined as default } diff --git a/src/IconPhotoRound.tsx b/src/IconPhotoRound.tsx new file mode 100644 index 000000000..5038cac36 --- /dev/null +++ b/src/IconPhotoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoRound as default } diff --git a/src/IconPhotoSharp.tsx b/src/IconPhotoSharp.tsx new file mode 100644 index 000000000..081bbdbf0 --- /dev/null +++ b/src/IconPhotoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSharp as default } diff --git a/src/IconPhotoSizeSelectActualOutlined.tsx b/src/IconPhotoSizeSelectActualOutlined.tsx new file mode 100644 index 000000000..da25cec51 --- /dev/null +++ b/src/IconPhotoSizeSelectActualOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectActualOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectActualOutlined as default } diff --git a/src/IconPhotoSizeSelectActualRound.tsx b/src/IconPhotoSizeSelectActualRound.tsx new file mode 100644 index 000000000..cbec6ac85 --- /dev/null +++ b/src/IconPhotoSizeSelectActualRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectActualRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectActualRound as default } diff --git a/src/IconPhotoSizeSelectActualSharp.tsx b/src/IconPhotoSizeSelectActualSharp.tsx new file mode 100644 index 000000000..5d5deb6dc --- /dev/null +++ b/src/IconPhotoSizeSelectActualSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectActualSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectActualSharp as default } diff --git a/src/IconPhotoSizeSelectActualTwoTone.tsx b/src/IconPhotoSizeSelectActualTwoTone.tsx new file mode 100644 index 000000000..cfc29e9f4 --- /dev/null +++ b/src/IconPhotoSizeSelectActualTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectActualTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoSizeSelectActualTwoTone as default } diff --git a/src/IconPhotoSizeSelectLargeOutlined.tsx b/src/IconPhotoSizeSelectLargeOutlined.tsx new file mode 100644 index 000000000..09eb82937 --- /dev/null +++ b/src/IconPhotoSizeSelectLargeOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectLargeOutlined as default } diff --git a/src/IconPhotoSizeSelectLargeRound.tsx b/src/IconPhotoSizeSelectLargeRound.tsx new file mode 100644 index 000000000..db192122d --- /dev/null +++ b/src/IconPhotoSizeSelectLargeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectLargeRound as default } diff --git a/src/IconPhotoSizeSelectLargeSharp.tsx b/src/IconPhotoSizeSelectLargeSharp.tsx new file mode 100644 index 000000000..bbf4097db --- /dev/null +++ b/src/IconPhotoSizeSelectLargeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectLargeSharp as default } diff --git a/src/IconPhotoSizeSelectLargeTwoTone.tsx b/src/IconPhotoSizeSelectLargeTwoTone.tsx new file mode 100644 index 000000000..8414f0352 --- /dev/null +++ b/src/IconPhotoSizeSelectLargeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectLargeTwoTone as default } diff --git a/src/IconPhotoSizeSelectSmallOutlined.tsx b/src/IconPhotoSizeSelectSmallOutlined.tsx new file mode 100644 index 000000000..14b94862a --- /dev/null +++ b/src/IconPhotoSizeSelectSmallOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectSmallOutlined as default } diff --git a/src/IconPhotoSizeSelectSmallRound.tsx b/src/IconPhotoSizeSelectSmallRound.tsx new file mode 100644 index 000000000..99ed650d1 --- /dev/null +++ b/src/IconPhotoSizeSelectSmallRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectSmallRound as default } diff --git a/src/IconPhotoSizeSelectSmallSharp.tsx b/src/IconPhotoSizeSelectSmallSharp.tsx new file mode 100644 index 000000000..b55838bdd --- /dev/null +++ b/src/IconPhotoSizeSelectSmallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectSmallSharp as default } diff --git a/src/IconPhotoSizeSelectSmallTwoTone.tsx b/src/IconPhotoSizeSelectSmallTwoTone.tsx new file mode 100644 index 000000000..e7a92fb5d --- /dev/null +++ b/src/IconPhotoSizeSelectSmallTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPhotoSizeSelectSmallTwoTone as default } diff --git a/src/IconPhotoTwoTone.tsx b/src/IconPhotoTwoTone.tsx new file mode 100644 index 000000000..7b2f349b0 --- /dev/null +++ b/src/IconPhotoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPhotoTwoTone as default } diff --git a/src/IconPhpOutlined.tsx b/src/IconPhpOutlined.tsx new file mode 100644 index 000000000..dd05e3a36 --- /dev/null +++ b/src/IconPhpOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhpOutlined as default } diff --git a/src/IconPhpRound.tsx b/src/IconPhpRound.tsx new file mode 100644 index 000000000..c1bcdf524 --- /dev/null +++ b/src/IconPhpRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPhpRound as default } diff --git a/src/IconPhpSharp.tsx b/src/IconPhpSharp.tsx new file mode 100644 index 000000000..10c3460ac --- /dev/null +++ b/src/IconPhpSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhpSharp as default } diff --git a/src/IconPhpTwoTone.tsx b/src/IconPhpTwoTone.tsx new file mode 100644 index 000000000..a912891b1 --- /dev/null +++ b/src/IconPhpTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPhpTwoTone as default } diff --git a/src/IconPianoOffOutlined.tsx b/src/IconPianoOffOutlined.tsx new file mode 100644 index 000000000..7bd7bb85e --- /dev/null +++ b/src/IconPianoOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoOffOutlined as default } diff --git a/src/IconPianoOffRound.tsx b/src/IconPianoOffRound.tsx new file mode 100644 index 000000000..7f2856381 --- /dev/null +++ b/src/IconPianoOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoOffRound as default } diff --git a/src/IconPianoOffSharp.tsx b/src/IconPianoOffSharp.tsx new file mode 100644 index 000000000..01046929d --- /dev/null +++ b/src/IconPianoOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoOffSharp as default } diff --git a/src/IconPianoOffTwoTone.tsx b/src/IconPianoOffTwoTone.tsx new file mode 100644 index 000000000..3d844fcd8 --- /dev/null +++ b/src/IconPianoOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPianoOffTwoTone as default } diff --git a/src/IconPianoOutlined.tsx b/src/IconPianoOutlined.tsx new file mode 100644 index 000000000..61b2d5d07 --- /dev/null +++ b/src/IconPianoOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoOutlined as default } diff --git a/src/IconPianoRound.tsx b/src/IconPianoRound.tsx new file mode 100644 index 000000000..e579f3bb6 --- /dev/null +++ b/src/IconPianoRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoRound as default } diff --git a/src/IconPianoSharp.tsx b/src/IconPianoSharp.tsx new file mode 100644 index 000000000..90c1ba416 --- /dev/null +++ b/src/IconPianoSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPianoSharp as default } diff --git a/src/IconPianoTwoTone.tsx b/src/IconPianoTwoTone.tsx new file mode 100644 index 000000000..51bb5bdce --- /dev/null +++ b/src/IconPianoTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPianoTwoTone as default } diff --git a/src/IconPictureAsPdfOutlined.tsx b/src/IconPictureAsPdfOutlined.tsx new file mode 100644 index 000000000..110fbc930 --- /dev/null +++ b/src/IconPictureAsPdfOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureAsPdfOutlined as default } diff --git a/src/IconPictureAsPdfRound.tsx b/src/IconPictureAsPdfRound.tsx new file mode 100644 index 000000000..5c0256cd5 --- /dev/null +++ b/src/IconPictureAsPdfRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureAsPdfRound as default } diff --git a/src/IconPictureAsPdfSharp.tsx b/src/IconPictureAsPdfSharp.tsx new file mode 100644 index 000000000..a9e9e3524 --- /dev/null +++ b/src/IconPictureAsPdfSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureAsPdfSharp as default } diff --git a/src/IconPictureAsPdfTwoTone.tsx b/src/IconPictureAsPdfTwoTone.tsx new file mode 100644 index 000000000..e790646f5 --- /dev/null +++ b/src/IconPictureAsPdfTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPictureAsPdfTwoTone as default } diff --git a/src/IconPictureInPictureAltOutlined.tsx b/src/IconPictureInPictureAltOutlined.tsx new file mode 100644 index 000000000..faf524398 --- /dev/null +++ b/src/IconPictureInPictureAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureAltOutlined as default } diff --git a/src/IconPictureInPictureAltRound.tsx b/src/IconPictureInPictureAltRound.tsx new file mode 100644 index 000000000..def73b7e2 --- /dev/null +++ b/src/IconPictureInPictureAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureAltRound as default } diff --git a/src/IconPictureInPictureAltSharp.tsx b/src/IconPictureInPictureAltSharp.tsx new file mode 100644 index 000000000..0842edd58 --- /dev/null +++ b/src/IconPictureInPictureAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureAltSharp as default } diff --git a/src/IconPictureInPictureAltTwoTone.tsx b/src/IconPictureInPictureAltTwoTone.tsx new file mode 100644 index 000000000..8202dffab --- /dev/null +++ b/src/IconPictureInPictureAltTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPictureInPictureAltTwoTone as default } diff --git a/src/IconPictureInPictureOutlined.tsx b/src/IconPictureInPictureOutlined.tsx new file mode 100644 index 000000000..6c90b6714 --- /dev/null +++ b/src/IconPictureInPictureOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureOutlined as default } diff --git a/src/IconPictureInPictureRound.tsx b/src/IconPictureInPictureRound.tsx new file mode 100644 index 000000000..5810210fa --- /dev/null +++ b/src/IconPictureInPictureRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureRound as default } diff --git a/src/IconPictureInPictureSharp.tsx b/src/IconPictureInPictureSharp.tsx new file mode 100644 index 000000000..9ef2f728d --- /dev/null +++ b/src/IconPictureInPictureSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPictureInPictureSharp as default } diff --git a/src/IconPictureInPictureTwoTone.tsx b/src/IconPictureInPictureTwoTone.tsx new file mode 100644 index 000000000..8111d592e --- /dev/null +++ b/src/IconPictureInPictureTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPictureInPictureTwoTone as default } diff --git a/src/IconPieChartOutlineOutlined.tsx b/src/IconPieChartOutlineOutlined.tsx new file mode 100644 index 000000000..b9b58f994 --- /dev/null +++ b/src/IconPieChartOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPieChartOutlineOutlined as default } diff --git a/src/IconPieChartOutlineRound.tsx b/src/IconPieChartOutlineRound.tsx new file mode 100644 index 000000000..23b793f06 --- /dev/null +++ b/src/IconPieChartOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPieChartOutlineRound as default } diff --git a/src/IconPieChartOutlineSharp.tsx b/src/IconPieChartOutlineSharp.tsx new file mode 100644 index 000000000..142ee53f4 --- /dev/null +++ b/src/IconPieChartOutlineSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPieChartOutlineSharp as default } diff --git a/src/IconPieChartOutlineTwoTone.tsx b/src/IconPieChartOutlineTwoTone.tsx new file mode 100644 index 000000000..3f97f4bfb --- /dev/null +++ b/src/IconPieChartOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPieChartOutlineTwoTone as default } diff --git a/src/IconPieChartOutlined.tsx b/src/IconPieChartOutlined.tsx new file mode 100644 index 000000000..c46f7c7ab --- /dev/null +++ b/src/IconPieChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPieChartOutlined as default } diff --git a/src/IconPieChartRound.tsx b/src/IconPieChartRound.tsx new file mode 100644 index 000000000..216f856cd --- /dev/null +++ b/src/IconPieChartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPieChartRound as default } diff --git a/src/IconPieChartSharp.tsx b/src/IconPieChartSharp.tsx new file mode 100644 index 000000000..b221c5fa7 --- /dev/null +++ b/src/IconPieChartSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPieChartSharp as default } diff --git a/src/IconPieChartTwoTone.tsx b/src/IconPieChartTwoTone.tsx new file mode 100644 index 000000000..bfcee653e --- /dev/null +++ b/src/IconPieChartTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPieChartTwoTone as default } diff --git a/src/IconPinDropOutlined.tsx b/src/IconPinDropOutlined.tsx new file mode 100644 index 000000000..a96268ef0 --- /dev/null +++ b/src/IconPinDropOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPinDropOutlined as default } diff --git a/src/IconPinDropRound.tsx b/src/IconPinDropRound.tsx new file mode 100644 index 000000000..b2ca68700 --- /dev/null +++ b/src/IconPinDropRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPinDropRound as default } diff --git a/src/IconPinDropSharp.tsx b/src/IconPinDropSharp.tsx new file mode 100644 index 000000000..1708da0c4 --- /dev/null +++ b/src/IconPinDropSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinDropSharp as default } diff --git a/src/IconPinDropTwoTone.tsx b/src/IconPinDropTwoTone.tsx new file mode 100644 index 000000000..06f95166d --- /dev/null +++ b/src/IconPinDropTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPinDropTwoTone as default } diff --git a/src/IconPinEndOutlined.tsx b/src/IconPinEndOutlined.tsx new file mode 100644 index 000000000..26edfe81f --- /dev/null +++ b/src/IconPinEndOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinEndOutlined as default } diff --git a/src/IconPinEndRound.tsx b/src/IconPinEndRound.tsx new file mode 100644 index 000000000..eedb10617 --- /dev/null +++ b/src/IconPinEndRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinEndRound as default } diff --git a/src/IconPinEndSharp.tsx b/src/IconPinEndSharp.tsx new file mode 100644 index 000000000..2d642a940 --- /dev/null +++ b/src/IconPinEndSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinEndSharp as default } diff --git a/src/IconPinEndTwoTone.tsx b/src/IconPinEndTwoTone.tsx new file mode 100644 index 000000000..e015659ad --- /dev/null +++ b/src/IconPinEndTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinEndTwoTone as default } diff --git a/src/IconPinInvokeOutlined.tsx b/src/IconPinInvokeOutlined.tsx new file mode 100644 index 000000000..2f79f9ee2 --- /dev/null +++ b/src/IconPinInvokeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinInvokeOutlined as default } diff --git a/src/IconPinInvokeRound.tsx b/src/IconPinInvokeRound.tsx new file mode 100644 index 000000000..3eed8dd9c --- /dev/null +++ b/src/IconPinInvokeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinInvokeRound as default } diff --git a/src/IconPinInvokeSharp.tsx b/src/IconPinInvokeSharp.tsx new file mode 100644 index 000000000..3ace98dd3 --- /dev/null +++ b/src/IconPinInvokeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinInvokeSharp as default } diff --git a/src/IconPinInvokeTwoTone.tsx b/src/IconPinInvokeTwoTone.tsx new file mode 100644 index 000000000..4644db29b --- /dev/null +++ b/src/IconPinInvokeTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPinInvokeTwoTone as default } diff --git a/src/IconPinOutlined.tsx b/src/IconPinOutlined.tsx new file mode 100644 index 000000000..730d78ac2 --- /dev/null +++ b/src/IconPinOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPinOutlined as default } diff --git a/src/IconPinRound.tsx b/src/IconPinRound.tsx new file mode 100644 index 000000000..a04144eb6 --- /dev/null +++ b/src/IconPinRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPinRound as default } diff --git a/src/IconPinSharp.tsx b/src/IconPinSharp.tsx new file mode 100644 index 000000000..e088843c2 --- /dev/null +++ b/src/IconPinSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPinSharp as default } diff --git a/src/IconPinTwoTone.tsx b/src/IconPinTwoTone.tsx new file mode 100644 index 000000000..037a08f98 --- /dev/null +++ b/src/IconPinTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPinTwoTone as default } diff --git a/src/IconPinchOutlined.tsx b/src/IconPinchOutlined.tsx new file mode 100644 index 000000000..baa7f2618 --- /dev/null +++ b/src/IconPinchOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPinchOutlined as default } diff --git a/src/IconPinchRound.tsx b/src/IconPinchRound.tsx new file mode 100644 index 000000000..f7519345d --- /dev/null +++ b/src/IconPinchRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPinchRound as default } diff --git a/src/IconPinchSharp.tsx b/src/IconPinchSharp.tsx new file mode 100644 index 000000000..9d1c19f67 --- /dev/null +++ b/src/IconPinchSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPinchSharp as default } diff --git a/src/IconPinchTwoTone.tsx b/src/IconPinchTwoTone.tsx new file mode 100644 index 000000000..491d60946 --- /dev/null +++ b/src/IconPinchTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPinchTwoTone as default } diff --git a/src/IconPivotTableChartOutlined.tsx b/src/IconPivotTableChartOutlined.tsx new file mode 100644 index 000000000..e8211bdd1 --- /dev/null +++ b/src/IconPivotTableChartOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPivotTableChartOutlined as default } diff --git a/src/IconPivotTableChartRound.tsx b/src/IconPivotTableChartRound.tsx new file mode 100644 index 000000000..77fce1b11 --- /dev/null +++ b/src/IconPivotTableChartRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPivotTableChartRound as default } diff --git a/src/IconPivotTableChartSharp.tsx b/src/IconPivotTableChartSharp.tsx new file mode 100644 index 000000000..a97fecdc1 --- /dev/null +++ b/src/IconPivotTableChartSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPivotTableChartSharp as default } diff --git a/src/IconPivotTableChartTwoTone.tsx b/src/IconPivotTableChartTwoTone.tsx new file mode 100644 index 000000000..5b026932e --- /dev/null +++ b/src/IconPivotTableChartTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPivotTableChartTwoTone as default } diff --git a/src/IconPixOutlined.tsx b/src/IconPixOutlined.tsx new file mode 100644 index 000000000..1ea086f5d --- /dev/null +++ b/src/IconPixOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPixOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPixOutlined as default } diff --git a/src/IconPixRound.tsx b/src/IconPixRound.tsx new file mode 100644 index 000000000..7e34ec376 --- /dev/null +++ b/src/IconPixRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPixRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPixRound as default } diff --git a/src/IconPixSharp.tsx b/src/IconPixSharp.tsx new file mode 100644 index 000000000..bd0244959 --- /dev/null +++ b/src/IconPixSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPixSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPixSharp as default } diff --git a/src/IconPixTwoTone.tsx b/src/IconPixTwoTone.tsx new file mode 100644 index 000000000..0957b307f --- /dev/null +++ b/src/IconPixTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPixTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPixTwoTone as default } diff --git a/src/IconPlaceOutlined.tsx b/src/IconPlaceOutlined.tsx new file mode 100644 index 000000000..bdf9664ad --- /dev/null +++ b/src/IconPlaceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaceOutlined as default } diff --git a/src/IconPlaceRound.tsx b/src/IconPlaceRound.tsx new file mode 100644 index 000000000..d5fb37e99 --- /dev/null +++ b/src/IconPlaceRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaceRound as default } diff --git a/src/IconPlaceSharp.tsx b/src/IconPlaceSharp.tsx new file mode 100644 index 000000000..b587f7f02 --- /dev/null +++ b/src/IconPlaceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaceSharp as default } diff --git a/src/IconPlaceTwoTone.tsx b/src/IconPlaceTwoTone.tsx new file mode 100644 index 000000000..296462b90 --- /dev/null +++ b/src/IconPlaceTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPlaceTwoTone as default } diff --git a/src/IconPlagiarismOutlined.tsx b/src/IconPlagiarismOutlined.tsx new file mode 100644 index 000000000..18acf82b0 --- /dev/null +++ b/src/IconPlagiarismOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlagiarismOutlined as default } diff --git a/src/IconPlagiarismRound.tsx b/src/IconPlagiarismRound.tsx new file mode 100644 index 000000000..d4394f5eb --- /dev/null +++ b/src/IconPlagiarismRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlagiarismRound as default } diff --git a/src/IconPlagiarismSharp.tsx b/src/IconPlagiarismSharp.tsx new file mode 100644 index 000000000..7bd59abde --- /dev/null +++ b/src/IconPlagiarismSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlagiarismSharp as default } diff --git a/src/IconPlagiarismTwoTone.tsx b/src/IconPlagiarismTwoTone.tsx new file mode 100644 index 000000000..caeadc715 --- /dev/null +++ b/src/IconPlagiarismTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlagiarismTwoTone as default } diff --git a/src/IconPlayArrowOutlined.tsx b/src/IconPlayArrowOutlined.tsx new file mode 100644 index 000000000..02401207a --- /dev/null +++ b/src/IconPlayArrowOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayArrowOutlined as default } diff --git a/src/IconPlayArrowRound.tsx b/src/IconPlayArrowRound.tsx new file mode 100644 index 000000000..7f406d8ed --- /dev/null +++ b/src/IconPlayArrowRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayArrowRound as default } diff --git a/src/IconPlayArrowSharp.tsx b/src/IconPlayArrowSharp.tsx new file mode 100644 index 000000000..30c31a1a7 --- /dev/null +++ b/src/IconPlayArrowSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayArrowSharp as default } diff --git a/src/IconPlayArrowTwoTone.tsx b/src/IconPlayArrowTwoTone.tsx new file mode 100644 index 000000000..6de8c534f --- /dev/null +++ b/src/IconPlayArrowTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPlayArrowTwoTone as default } diff --git a/src/IconPlayCircleFilledOutlined.tsx b/src/IconPlayCircleFilledOutlined.tsx new file mode 100644 index 000000000..27e0450d4 --- /dev/null +++ b/src/IconPlayCircleFilledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayCircleFilledOutlined as default } diff --git a/src/IconPlayCircleFilledRound.tsx b/src/IconPlayCircleFilledRound.tsx new file mode 100644 index 000000000..27bed2e24 --- /dev/null +++ b/src/IconPlayCircleFilledRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayCircleFilledRound as default } diff --git a/src/IconPlayCircleFilledSharp.tsx b/src/IconPlayCircleFilledSharp.tsx new file mode 100644 index 000000000..ff81a2e89 --- /dev/null +++ b/src/IconPlayCircleFilledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayCircleFilledSharp as default } diff --git a/src/IconPlayCircleFilledTwoTone.tsx b/src/IconPlayCircleFilledTwoTone.tsx new file mode 100644 index 000000000..71147d0f6 --- /dev/null +++ b/src/IconPlayCircleFilledTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPlayCircleFilledTwoTone as default } diff --git a/src/IconPlayCircleOutlineOutlined.tsx b/src/IconPlayCircleOutlineOutlined.tsx new file mode 100644 index 000000000..3d1ea3d1d --- /dev/null +++ b/src/IconPlayCircleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayCircleOutlineOutlined as default } diff --git a/src/IconPlayCircleOutlineRound.tsx b/src/IconPlayCircleOutlineRound.tsx new file mode 100644 index 000000000..6653873b0 --- /dev/null +++ b/src/IconPlayCircleOutlineRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayCircleOutlineRound as default } diff --git a/src/IconPlayCircleOutlineSharp.tsx b/src/IconPlayCircleOutlineSharp.tsx new file mode 100644 index 000000000..440112db0 --- /dev/null +++ b/src/IconPlayCircleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayCircleOutlineSharp as default } diff --git a/src/IconPlayCircleOutlineTwoTone.tsx b/src/IconPlayCircleOutlineTwoTone.tsx new file mode 100644 index 000000000..07f7bdd80 --- /dev/null +++ b/src/IconPlayCircleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayCircleOutlineTwoTone as default } diff --git a/src/IconPlayCircleOutlined.tsx b/src/IconPlayCircleOutlined.tsx new file mode 100644 index 000000000..8420c48ee --- /dev/null +++ b/src/IconPlayCircleOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlayCircleOutlined as default } diff --git a/src/IconPlayCircleRound.tsx b/src/IconPlayCircleRound.tsx new file mode 100644 index 000000000..13ff5074b --- /dev/null +++ b/src/IconPlayCircleRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlayCircleRound as default } diff --git a/src/IconPlayCircleSharp.tsx b/src/IconPlayCircleSharp.tsx new file mode 100644 index 000000000..b22e82006 --- /dev/null +++ b/src/IconPlayCircleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlayCircleSharp as default } diff --git a/src/IconPlayCircleTwoTone.tsx b/src/IconPlayCircleTwoTone.tsx new file mode 100644 index 000000000..3dc6759be --- /dev/null +++ b/src/IconPlayCircleTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlayCircleTwoTone as default } diff --git a/src/IconPlayDisabledOutlined.tsx b/src/IconPlayDisabledOutlined.tsx new file mode 100644 index 000000000..5b57186b4 --- /dev/null +++ b/src/IconPlayDisabledOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlayDisabledOutlined as default } diff --git a/src/IconPlayDisabledRound.tsx b/src/IconPlayDisabledRound.tsx new file mode 100644 index 000000000..ea1610df1 --- /dev/null +++ b/src/IconPlayDisabledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlayDisabledRound as default } diff --git a/src/IconPlayDisabledSharp.tsx b/src/IconPlayDisabledSharp.tsx new file mode 100644 index 000000000..81153e527 --- /dev/null +++ b/src/IconPlayDisabledSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlayDisabledSharp as default } diff --git a/src/IconPlayDisabledTwoTone.tsx b/src/IconPlayDisabledTwoTone.tsx new file mode 100644 index 000000000..1762de56d --- /dev/null +++ b/src/IconPlayDisabledTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlayDisabledTwoTone as default } diff --git a/src/IconPlayForWorkOutlined.tsx b/src/IconPlayForWorkOutlined.tsx new file mode 100644 index 000000000..cfdcc9611 --- /dev/null +++ b/src/IconPlayForWorkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayForWorkOutlined as default } diff --git a/src/IconPlayForWorkRound.tsx b/src/IconPlayForWorkRound.tsx new file mode 100644 index 000000000..3c69d2956 --- /dev/null +++ b/src/IconPlayForWorkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayForWorkRound as default } diff --git a/src/IconPlayForWorkSharp.tsx b/src/IconPlayForWorkSharp.tsx new file mode 100644 index 000000000..109ff0633 --- /dev/null +++ b/src/IconPlayForWorkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayForWorkSharp as default } diff --git a/src/IconPlayForWorkTwoTone.tsx b/src/IconPlayForWorkTwoTone.tsx new file mode 100644 index 000000000..8933ca01e --- /dev/null +++ b/src/IconPlayForWorkTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlayForWorkTwoTone as default } diff --git a/src/IconPlayLessonOutlined.tsx b/src/IconPlayLessonOutlined.tsx new file mode 100644 index 000000000..64e5d6cb8 --- /dev/null +++ b/src/IconPlayLessonOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlayLessonOutlined as default } diff --git a/src/IconPlayLessonRound.tsx b/src/IconPlayLessonRound.tsx new file mode 100644 index 000000000..056bb900e --- /dev/null +++ b/src/IconPlayLessonRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlayLessonRound as default } diff --git a/src/IconPlayLessonSharp.tsx b/src/IconPlayLessonSharp.tsx new file mode 100644 index 000000000..7b7365974 --- /dev/null +++ b/src/IconPlayLessonSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPlayLessonSharp as default } diff --git a/src/IconPlayLessonTwoTone.tsx b/src/IconPlayLessonTwoTone.tsx new file mode 100644 index 000000000..33619e0dd --- /dev/null +++ b/src/IconPlayLessonTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlayLessonTwoTone as default } diff --git a/src/IconPlaylistAddCheckCircleOutlined.tsx b/src/IconPlaylistAddCheckCircleOutlined.tsx new file mode 100644 index 000000000..da2feced4 --- /dev/null +++ b/src/IconPlaylistAddCheckCircleOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCheckCircleOutlined as default } diff --git a/src/IconPlaylistAddCheckCircleRound.tsx b/src/IconPlaylistAddCheckCircleRound.tsx new file mode 100644 index 000000000..d412aced1 --- /dev/null +++ b/src/IconPlaylistAddCheckCircleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCheckCircleRound as default } diff --git a/src/IconPlaylistAddCheckCircleSharp.tsx b/src/IconPlaylistAddCheckCircleSharp.tsx new file mode 100644 index 000000000..a51012cea --- /dev/null +++ b/src/IconPlaylistAddCheckCircleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCheckCircleSharp as default } diff --git a/src/IconPlaylistAddCheckCircleTwoTone.tsx b/src/IconPlaylistAddCheckCircleTwoTone.tsx new file mode 100644 index 000000000..0b7f1c59e --- /dev/null +++ b/src/IconPlaylistAddCheckCircleTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPlaylistAddCheckCircleTwoTone as default } diff --git a/src/IconPlaylistAddCheckOutlined.tsx b/src/IconPlaylistAddCheckOutlined.tsx new file mode 100644 index 000000000..fc7d6f7b6 --- /dev/null +++ b/src/IconPlaylistAddCheckOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistAddCheckOutlined as default } diff --git a/src/IconPlaylistAddCheckRound.tsx b/src/IconPlaylistAddCheckRound.tsx new file mode 100644 index 000000000..06d354931 --- /dev/null +++ b/src/IconPlaylistAddCheckRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckRound as default } diff --git a/src/IconPlaylistAddCheckSharp.tsx b/src/IconPlaylistAddCheckSharp.tsx new file mode 100644 index 000000000..d7be3ea33 --- /dev/null +++ b/src/IconPlaylistAddCheckSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistAddCheckSharp as default } diff --git a/src/IconPlaylistAddCheckTwoTone.tsx b/src/IconPlaylistAddCheckTwoTone.tsx new file mode 100644 index 000000000..1a7f5061b --- /dev/null +++ b/src/IconPlaylistAddCheckTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistAddCheckTwoTone as default } diff --git a/src/IconPlaylistAddCircleOutlined.tsx b/src/IconPlaylistAddCircleOutlined.tsx new file mode 100644 index 000000000..d2e6d60ba --- /dev/null +++ b/src/IconPlaylistAddCircleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCircleOutlined as default } diff --git a/src/IconPlaylistAddCircleRound.tsx b/src/IconPlaylistAddCircleRound.tsx new file mode 100644 index 000000000..8be70903e --- /dev/null +++ b/src/IconPlaylistAddCircleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCircleRound as default } diff --git a/src/IconPlaylistAddCircleSharp.tsx b/src/IconPlaylistAddCircleSharp.tsx new file mode 100644 index 000000000..7030c5fb2 --- /dev/null +++ b/src/IconPlaylistAddCircleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlaylistAddCircleSharp as default } diff --git a/src/IconPlaylistAddCircleTwoTone.tsx b/src/IconPlaylistAddCircleTwoTone.tsx new file mode 100644 index 000000000..019482f30 --- /dev/null +++ b/src/IconPlaylistAddCircleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPlaylistAddCircleTwoTone as default } diff --git a/src/IconPlaylistAddOutlined.tsx b/src/IconPlaylistAddOutlined.tsx new file mode 100644 index 000000000..c80c40ce7 --- /dev/null +++ b/src/IconPlaylistAddOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistAddOutlined as default } diff --git a/src/IconPlaylistAddRound.tsx b/src/IconPlaylistAddRound.tsx new file mode 100644 index 000000000..ccd099294 --- /dev/null +++ b/src/IconPlaylistAddRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddRound as default } diff --git a/src/IconPlaylistAddSharp.tsx b/src/IconPlaylistAddSharp.tsx new file mode 100644 index 000000000..a0f7e129c --- /dev/null +++ b/src/IconPlaylistAddSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistAddSharp as default } diff --git a/src/IconPlaylistAddTwoTone.tsx b/src/IconPlaylistAddTwoTone.tsx new file mode 100644 index 000000000..631c83fd3 --- /dev/null +++ b/src/IconPlaylistAddTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistAddTwoTone as default } diff --git a/src/IconPlaylistPlayOutlined.tsx b/src/IconPlaylistPlayOutlined.tsx new file mode 100644 index 000000000..89152e171 --- /dev/null +++ b/src/IconPlaylistPlayOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistPlayOutlined as default } diff --git a/src/IconPlaylistPlayRound.tsx b/src/IconPlaylistPlayRound.tsx new file mode 100644 index 000000000..09338d165 --- /dev/null +++ b/src/IconPlaylistPlayRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistPlayRound as default } diff --git a/src/IconPlaylistPlaySharp.tsx b/src/IconPlaylistPlaySharp.tsx new file mode 100644 index 000000000..486f6168b --- /dev/null +++ b/src/IconPlaylistPlaySharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistPlaySharp as default } diff --git a/src/IconPlaylistPlayTwoTone.tsx b/src/IconPlaylistPlayTwoTone.tsx new file mode 100644 index 000000000..5280d1809 --- /dev/null +++ b/src/IconPlaylistPlayTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlaylistPlayTwoTone as default } diff --git a/src/IconPlaylistRemoveOutlined.tsx b/src/IconPlaylistRemoveOutlined.tsx new file mode 100644 index 000000000..109a6d2b4 --- /dev/null +++ b/src/IconPlaylistRemoveOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistRemoveOutlined as default } diff --git a/src/IconPlaylistRemoveRound.tsx b/src/IconPlaylistRemoveRound.tsx new file mode 100644 index 000000000..56c0de62d --- /dev/null +++ b/src/IconPlaylistRemoveRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPlaylistRemoveRound as default } diff --git a/src/IconPlaylistRemoveSharp.tsx b/src/IconPlaylistRemoveSharp.tsx new file mode 100644 index 000000000..0477ca39d --- /dev/null +++ b/src/IconPlaylistRemoveSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistRemoveSharp as default } diff --git a/src/IconPlaylistRemoveTwoTone.tsx b/src/IconPlaylistRemoveTwoTone.tsx new file mode 100644 index 000000000..4ccf9078a --- /dev/null +++ b/src/IconPlaylistRemoveTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPlaylistRemoveTwoTone as default } diff --git a/src/IconPlumbingOutlined.tsx b/src/IconPlumbingOutlined.tsx new file mode 100644 index 000000000..e86d6b4fd --- /dev/null +++ b/src/IconPlumbingOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlumbingOutlined as default } diff --git a/src/IconPlumbingRound.tsx b/src/IconPlumbingRound.tsx new file mode 100644 index 000000000..381dc8cc0 --- /dev/null +++ b/src/IconPlumbingRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPlumbingRound as default } diff --git a/src/IconPlumbingSharp.tsx b/src/IconPlumbingSharp.tsx new file mode 100644 index 000000000..3524c7235 --- /dev/null +++ b/src/IconPlumbingSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlumbingSharp as default } diff --git a/src/IconPlumbingTwoTone.tsx b/src/IconPlumbingTwoTone.tsx new file mode 100644 index 000000000..a752267a9 --- /dev/null +++ b/src/IconPlumbingTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPlumbingTwoTone as default } diff --git a/src/IconPlusOneOutlined.tsx b/src/IconPlusOneOutlined.tsx new file mode 100644 index 000000000..b1b575054 --- /dev/null +++ b/src/IconPlusOneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlusOneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlusOneOutlined as default } diff --git a/src/IconPlusOneRound.tsx b/src/IconPlusOneRound.tsx new file mode 100644 index 000000000..636e72ee9 --- /dev/null +++ b/src/IconPlusOneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlusOneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlusOneRound as default } diff --git a/src/IconPlusOneSharp.tsx b/src/IconPlusOneSharp.tsx new file mode 100644 index 000000000..566bce3de --- /dev/null +++ b/src/IconPlusOneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlusOneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlusOneSharp as default } diff --git a/src/IconPlusOneTwoTone.tsx b/src/IconPlusOneTwoTone.tsx new file mode 100644 index 000000000..dafca4c37 --- /dev/null +++ b/src/IconPlusOneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlusOneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPlusOneTwoTone as default } diff --git a/src/IconPodcastsOutlined.tsx b/src/IconPodcastsOutlined.tsx new file mode 100644 index 000000000..8f99110b8 --- /dev/null +++ b/src/IconPodcastsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPodcastsOutlined as default } diff --git a/src/IconPodcastsRound.tsx b/src/IconPodcastsRound.tsx new file mode 100644 index 000000000..3d669e314 --- /dev/null +++ b/src/IconPodcastsRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPodcastsRound as default } diff --git a/src/IconPodcastsSharp.tsx b/src/IconPodcastsSharp.tsx new file mode 100644 index 000000000..fec1b8b50 --- /dev/null +++ b/src/IconPodcastsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPodcastsSharp as default } diff --git a/src/IconPodcastsTwoTone.tsx b/src/IconPodcastsTwoTone.tsx new file mode 100644 index 000000000..3b8f3e565 --- /dev/null +++ b/src/IconPodcastsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPodcastsTwoTone as default } diff --git a/src/IconPointOfSaleOutlined.tsx b/src/IconPointOfSaleOutlined.tsx new file mode 100644 index 000000000..a54223c13 --- /dev/null +++ b/src/IconPointOfSaleOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPointOfSaleOutlined as default } diff --git a/src/IconPointOfSaleRound.tsx b/src/IconPointOfSaleRound.tsx new file mode 100644 index 000000000..2fe7ec499 --- /dev/null +++ b/src/IconPointOfSaleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPointOfSaleRound as default } diff --git a/src/IconPointOfSaleSharp.tsx b/src/IconPointOfSaleSharp.tsx new file mode 100644 index 000000000..ef01f838c --- /dev/null +++ b/src/IconPointOfSaleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPointOfSaleSharp as default } diff --git a/src/IconPointOfSaleTwoTone.tsx b/src/IconPointOfSaleTwoTone.tsx new file mode 100644 index 000000000..9522b6b35 --- /dev/null +++ b/src/IconPointOfSaleTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPointOfSaleTwoTone as default } diff --git a/src/IconPolicyOutlined.tsx b/src/IconPolicyOutlined.tsx new file mode 100644 index 000000000..080d8824a --- /dev/null +++ b/src/IconPolicyOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPolicyOutlined as default } diff --git a/src/IconPolicyRound.tsx b/src/IconPolicyRound.tsx new file mode 100644 index 000000000..0cf18115f --- /dev/null +++ b/src/IconPolicyRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPolicyRound as default } diff --git a/src/IconPolicySharp.tsx b/src/IconPolicySharp.tsx new file mode 100644 index 000000000..a54bafd39 --- /dev/null +++ b/src/IconPolicySharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPolicySharp as default } diff --git a/src/IconPolicyTwoTone.tsx b/src/IconPolicyTwoTone.tsx new file mode 100644 index 000000000..611ce4c3e --- /dev/null +++ b/src/IconPolicyTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPolicyTwoTone as default } diff --git a/src/IconPollOutlined.tsx b/src/IconPollOutlined.tsx new file mode 100644 index 000000000..4f0083433 --- /dev/null +++ b/src/IconPollOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPollOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPollOutlined as default } diff --git a/src/IconPollRound.tsx b/src/IconPollRound.tsx new file mode 100644 index 000000000..ed03e131e --- /dev/null +++ b/src/IconPollRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPollRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPollRound as default } diff --git a/src/IconPollSharp.tsx b/src/IconPollSharp.tsx new file mode 100644 index 000000000..4e11a81f5 --- /dev/null +++ b/src/IconPollSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPollSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPollSharp as default } diff --git a/src/IconPollTwoTone.tsx b/src/IconPollTwoTone.tsx new file mode 100644 index 000000000..986b57baa --- /dev/null +++ b/src/IconPollTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPollTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPollTwoTone as default } diff --git a/src/IconPolylineOutlined.tsx b/src/IconPolylineOutlined.tsx new file mode 100644 index 000000000..d111c7f01 --- /dev/null +++ b/src/IconPolylineOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPolylineOutlined as default } diff --git a/src/IconPolylineRound.tsx b/src/IconPolylineRound.tsx new file mode 100644 index 000000000..14023c746 --- /dev/null +++ b/src/IconPolylineRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPolylineRound as default } diff --git a/src/IconPolylineSharp.tsx b/src/IconPolylineSharp.tsx new file mode 100644 index 000000000..d7f10b207 --- /dev/null +++ b/src/IconPolylineSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPolylineSharp as default } diff --git a/src/IconPolylineTwoTone.tsx b/src/IconPolylineTwoTone.tsx new file mode 100644 index 000000000..ed51f755b --- /dev/null +++ b/src/IconPolylineTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPolylineTwoTone as default } diff --git a/src/IconPolymerOutlined.tsx b/src/IconPolymerOutlined.tsx new file mode 100644 index 000000000..b7d7bb12a --- /dev/null +++ b/src/IconPolymerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPolymerOutlined as default } diff --git a/src/IconPolymerRound.tsx b/src/IconPolymerRound.tsx new file mode 100644 index 000000000..4861db338 --- /dev/null +++ b/src/IconPolymerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPolymerRound as default } diff --git a/src/IconPolymerSharp.tsx b/src/IconPolymerSharp.tsx new file mode 100644 index 000000000..8c9903621 --- /dev/null +++ b/src/IconPolymerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPolymerSharp as default } diff --git a/src/IconPolymerTwoTone.tsx b/src/IconPolymerTwoTone.tsx new file mode 100644 index 000000000..84e787c7f --- /dev/null +++ b/src/IconPolymerTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPolymerTwoTone as default } diff --git a/src/IconPoolOutlined.tsx b/src/IconPoolOutlined.tsx new file mode 100644 index 000000000..8399aed28 --- /dev/null +++ b/src/IconPoolOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPoolOutlined as default } diff --git a/src/IconPoolRound.tsx b/src/IconPoolRound.tsx new file mode 100644 index 000000000..0703180c3 --- /dev/null +++ b/src/IconPoolRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPoolRound as default } diff --git a/src/IconPoolSharp.tsx b/src/IconPoolSharp.tsx new file mode 100644 index 000000000..6471f7b65 --- /dev/null +++ b/src/IconPoolSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPoolSharp as default } diff --git a/src/IconPoolTwoTone.tsx b/src/IconPoolTwoTone.tsx new file mode 100644 index 000000000..099fd9e3e --- /dev/null +++ b/src/IconPoolTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPoolTwoTone as default } diff --git a/src/IconPortableWifiOffOutlined.tsx b/src/IconPortableWifiOffOutlined.tsx new file mode 100644 index 000000000..27c62c50f --- /dev/null +++ b/src/IconPortableWifiOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortableWifiOffOutlined as default } diff --git a/src/IconPortableWifiOffRound.tsx b/src/IconPortableWifiOffRound.tsx new file mode 100644 index 000000000..dd156110e --- /dev/null +++ b/src/IconPortableWifiOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortableWifiOffRound as default } diff --git a/src/IconPortableWifiOffSharp.tsx b/src/IconPortableWifiOffSharp.tsx new file mode 100644 index 000000000..0b2b3e46f --- /dev/null +++ b/src/IconPortableWifiOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortableWifiOffSharp as default } diff --git a/src/IconPortableWifiOffTwoTone.tsx b/src/IconPortableWifiOffTwoTone.tsx new file mode 100644 index 000000000..0f0093a68 --- /dev/null +++ b/src/IconPortableWifiOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortableWifiOffTwoTone as default } diff --git a/src/IconPortraitOutlined.tsx b/src/IconPortraitOutlined.tsx new file mode 100644 index 000000000..ff936b1b2 --- /dev/null +++ b/src/IconPortraitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortraitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortraitOutlined as default } diff --git a/src/IconPortraitRound.tsx b/src/IconPortraitRound.tsx new file mode 100644 index 000000000..382da9dee --- /dev/null +++ b/src/IconPortraitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortraitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortraitRound as default } diff --git a/src/IconPortraitSharp.tsx b/src/IconPortraitSharp.tsx new file mode 100644 index 000000000..9262f8402 --- /dev/null +++ b/src/IconPortraitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortraitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPortraitSharp as default } diff --git a/src/IconPortraitTwoTone.tsx b/src/IconPortraitTwoTone.tsx new file mode 100644 index 000000000..31f08e78e --- /dev/null +++ b/src/IconPortraitTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortraitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPortraitTwoTone as default } diff --git a/src/IconPostAddOutlined.tsx b/src/IconPostAddOutlined.tsx new file mode 100644 index 000000000..706b2be6c --- /dev/null +++ b/src/IconPostAddOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPostAddOutlined as default } diff --git a/src/IconPostAddRound.tsx b/src/IconPostAddRound.tsx new file mode 100644 index 000000000..d087c827d --- /dev/null +++ b/src/IconPostAddRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconPostAddRound as default } diff --git a/src/IconPostAddSharp.tsx b/src/IconPostAddSharp.tsx new file mode 100644 index 000000000..55807447b --- /dev/null +++ b/src/IconPostAddSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPostAddSharp as default } diff --git a/src/IconPostAddTwoTone.tsx b/src/IconPostAddTwoTone.tsx new file mode 100644 index 000000000..8008da152 --- /dev/null +++ b/src/IconPostAddTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconPostAddTwoTone as default } diff --git a/src/IconPowerInputOutlined.tsx b/src/IconPowerInputOutlined.tsx new file mode 100644 index 000000000..77e337821 --- /dev/null +++ b/src/IconPowerInputOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerInputOutlined as default } diff --git a/src/IconPowerInputRound.tsx b/src/IconPowerInputRound.tsx new file mode 100644 index 000000000..ca334a6e6 --- /dev/null +++ b/src/IconPowerInputRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerInputRound as default } diff --git a/src/IconPowerInputSharp.tsx b/src/IconPowerInputSharp.tsx new file mode 100644 index 000000000..a4242866f --- /dev/null +++ b/src/IconPowerInputSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerInputSharp as default } diff --git a/src/IconPowerInputTwoTone.tsx b/src/IconPowerInputTwoTone.tsx new file mode 100644 index 000000000..a39cd7902 --- /dev/null +++ b/src/IconPowerInputTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerInputTwoTone as default } diff --git a/src/IconPowerOffOutlined.tsx b/src/IconPowerOffOutlined.tsx new file mode 100644 index 000000000..4ea708d6f --- /dev/null +++ b/src/IconPowerOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerOffOutlined as default } diff --git a/src/IconPowerOffRound.tsx b/src/IconPowerOffRound.tsx new file mode 100644 index 000000000..160acb8b5 --- /dev/null +++ b/src/IconPowerOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerOffRound as default } diff --git a/src/IconPowerOffSharp.tsx b/src/IconPowerOffSharp.tsx new file mode 100644 index 000000000..5bef55847 --- /dev/null +++ b/src/IconPowerOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerOffSharp as default } diff --git a/src/IconPowerOffTwoTone.tsx b/src/IconPowerOffTwoTone.tsx new file mode 100644 index 000000000..a52c653ff --- /dev/null +++ b/src/IconPowerOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPowerOffTwoTone as default } diff --git a/src/IconPowerOutlined.tsx b/src/IconPowerOutlined.tsx new file mode 100644 index 000000000..6bee0662c --- /dev/null +++ b/src/IconPowerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerOutlined as default } diff --git a/src/IconPowerRound.tsx b/src/IconPowerRound.tsx new file mode 100644 index 000000000..921287639 --- /dev/null +++ b/src/IconPowerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerRound as default } diff --git a/src/IconPowerSettingsNewOutlined.tsx b/src/IconPowerSettingsNewOutlined.tsx new file mode 100644 index 000000000..afdf39f82 --- /dev/null +++ b/src/IconPowerSettingsNewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerSettingsNewOutlined as default } diff --git a/src/IconPowerSettingsNewRound.tsx b/src/IconPowerSettingsNewRound.tsx new file mode 100644 index 000000000..cc9da6404 --- /dev/null +++ b/src/IconPowerSettingsNewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerSettingsNewRound as default } diff --git a/src/IconPowerSettingsNewSharp.tsx b/src/IconPowerSettingsNewSharp.tsx new file mode 100644 index 000000000..4a51b2c5f --- /dev/null +++ b/src/IconPowerSettingsNewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerSettingsNewSharp as default } diff --git a/src/IconPowerSettingsNewTwoTone.tsx b/src/IconPowerSettingsNewTwoTone.tsx new file mode 100644 index 000000000..d6cb50573 --- /dev/null +++ b/src/IconPowerSettingsNewTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerSettingsNewTwoTone as default } diff --git a/src/IconPowerSharp.tsx b/src/IconPowerSharp.tsx new file mode 100644 index 000000000..fb5927752 --- /dev/null +++ b/src/IconPowerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPowerSharp as default } diff --git a/src/IconPowerTwoTone.tsx b/src/IconPowerTwoTone.tsx new file mode 100644 index 000000000..19dc35e45 --- /dev/null +++ b/src/IconPowerTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPowerTwoTone as default } diff --git a/src/IconPrecisionManufacturingOutlined.tsx b/src/IconPrecisionManufacturingOutlined.tsx new file mode 100644 index 000000000..e1b9ada80 --- /dev/null +++ b/src/IconPrecisionManufacturingOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPrecisionManufacturingOutlined as default } diff --git a/src/IconPrecisionManufacturingRound.tsx b/src/IconPrecisionManufacturingRound.tsx new file mode 100644 index 000000000..5338d7b05 --- /dev/null +++ b/src/IconPrecisionManufacturingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPrecisionManufacturingRound as default } diff --git a/src/IconPrecisionManufacturingSharp.tsx b/src/IconPrecisionManufacturingSharp.tsx new file mode 100644 index 000000000..9208bc203 --- /dev/null +++ b/src/IconPrecisionManufacturingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPrecisionManufacturingSharp as default } diff --git a/src/IconPrecisionManufacturingTwoTone.tsx b/src/IconPrecisionManufacturingTwoTone.tsx new file mode 100644 index 000000000..5bb2be61d --- /dev/null +++ b/src/IconPrecisionManufacturingTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPrecisionManufacturingTwoTone as default } diff --git a/src/IconPregnantWomanOutlined.tsx b/src/IconPregnantWomanOutlined.tsx new file mode 100644 index 000000000..546e4b6d9 --- /dev/null +++ b/src/IconPregnantWomanOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPregnantWomanOutlined as default } diff --git a/src/IconPregnantWomanRound.tsx b/src/IconPregnantWomanRound.tsx new file mode 100644 index 000000000..460966174 --- /dev/null +++ b/src/IconPregnantWomanRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPregnantWomanRound as default } diff --git a/src/IconPregnantWomanSharp.tsx b/src/IconPregnantWomanSharp.tsx new file mode 100644 index 000000000..76149436f --- /dev/null +++ b/src/IconPregnantWomanSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPregnantWomanSharp as default } diff --git a/src/IconPregnantWomanTwoTone.tsx b/src/IconPregnantWomanTwoTone.tsx new file mode 100644 index 000000000..3d83de4f8 --- /dev/null +++ b/src/IconPregnantWomanTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPregnantWomanTwoTone as default } diff --git a/src/IconPresentToAllOutlined.tsx b/src/IconPresentToAllOutlined.tsx new file mode 100644 index 000000000..b42c7c39b --- /dev/null +++ b/src/IconPresentToAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPresentToAllOutlined as default } diff --git a/src/IconPresentToAllRound.tsx b/src/IconPresentToAllRound.tsx new file mode 100644 index 000000000..9535f479a --- /dev/null +++ b/src/IconPresentToAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPresentToAllRound as default } diff --git a/src/IconPresentToAllSharp.tsx b/src/IconPresentToAllSharp.tsx new file mode 100644 index 000000000..49155773c --- /dev/null +++ b/src/IconPresentToAllSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPresentToAllSharp as default } diff --git a/src/IconPresentToAllTwoTone.tsx b/src/IconPresentToAllTwoTone.tsx new file mode 100644 index 000000000..a531fa9bb --- /dev/null +++ b/src/IconPresentToAllTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPresentToAllTwoTone as default } diff --git a/src/IconPreviewOutlined.tsx b/src/IconPreviewOutlined.tsx new file mode 100644 index 000000000..b248f34b9 --- /dev/null +++ b/src/IconPreviewOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPreviewOutlined as default } diff --git a/src/IconPreviewRound.tsx b/src/IconPreviewRound.tsx new file mode 100644 index 000000000..57d192f01 --- /dev/null +++ b/src/IconPreviewRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPreviewRound as default } diff --git a/src/IconPreviewSharp.tsx b/src/IconPreviewSharp.tsx new file mode 100644 index 000000000..26f4fec0b --- /dev/null +++ b/src/IconPreviewSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPreviewSharp as default } diff --git a/src/IconPreviewTwoTone.tsx b/src/IconPreviewTwoTone.tsx new file mode 100644 index 000000000..b7703f47c --- /dev/null +++ b/src/IconPreviewTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPreviewTwoTone as default } diff --git a/src/IconPriceChangeOutlined.tsx b/src/IconPriceChangeOutlined.tsx new file mode 100644 index 000000000..cb132bd2b --- /dev/null +++ b/src/IconPriceChangeOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconPriceChangeOutlined as default } diff --git a/src/IconPriceChangeRound.tsx b/src/IconPriceChangeRound.tsx new file mode 100644 index 000000000..97fc5d7e8 --- /dev/null +++ b/src/IconPriceChangeRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPriceChangeRound as default } diff --git a/src/IconPriceChangeSharp.tsx b/src/IconPriceChangeSharp.tsx new file mode 100644 index 000000000..9fdf97251 --- /dev/null +++ b/src/IconPriceChangeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPriceChangeSharp as default } diff --git a/src/IconPriceChangeTwoTone.tsx b/src/IconPriceChangeTwoTone.tsx new file mode 100644 index 000000000..48c4007e3 --- /dev/null +++ b/src/IconPriceChangeTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPriceChangeTwoTone as default } diff --git a/src/IconPriceCheckOutlined.tsx b/src/IconPriceCheckOutlined.tsx new file mode 100644 index 000000000..876c81721 --- /dev/null +++ b/src/IconPriceCheckOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPriceCheckOutlined as default } diff --git a/src/IconPriceCheckRound.tsx b/src/IconPriceCheckRound.tsx new file mode 100644 index 000000000..5029619d8 --- /dev/null +++ b/src/IconPriceCheckRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPriceCheckRound as default } diff --git a/src/IconPriceCheckSharp.tsx b/src/IconPriceCheckSharp.tsx new file mode 100644 index 000000000..5b16808de --- /dev/null +++ b/src/IconPriceCheckSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPriceCheckSharp as default } diff --git a/src/IconPriceCheckTwoTone.tsx b/src/IconPriceCheckTwoTone.tsx new file mode 100644 index 000000000..d69216e25 --- /dev/null +++ b/src/IconPriceCheckTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPriceCheckTwoTone as default } diff --git a/src/IconPrintDisabledOutlined.tsx b/src/IconPrintDisabledOutlined.tsx new file mode 100644 index 000000000..f75093aea --- /dev/null +++ b/src/IconPrintDisabledOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPrintDisabledOutlined as default } diff --git a/src/IconPrintDisabledRound.tsx b/src/IconPrintDisabledRound.tsx new file mode 100644 index 000000000..2bcc73875 --- /dev/null +++ b/src/IconPrintDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrintDisabledRound as default } diff --git a/src/IconPrintDisabledSharp.tsx b/src/IconPrintDisabledSharp.tsx new file mode 100644 index 000000000..eb1d88fe4 --- /dev/null +++ b/src/IconPrintDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrintDisabledSharp as default } diff --git a/src/IconPrintDisabledTwoTone.tsx b/src/IconPrintDisabledTwoTone.tsx new file mode 100644 index 000000000..ebce7f24c --- /dev/null +++ b/src/IconPrintDisabledTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPrintDisabledTwoTone as default } diff --git a/src/IconPrintOutlined.tsx b/src/IconPrintOutlined.tsx new file mode 100644 index 000000000..0976f1d2e --- /dev/null +++ b/src/IconPrintOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPrintOutlined as default } diff --git a/src/IconPrintRound.tsx b/src/IconPrintRound.tsx new file mode 100644 index 000000000..7a620d68a --- /dev/null +++ b/src/IconPrintRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrintRound as default } diff --git a/src/IconPrintSharp.tsx b/src/IconPrintSharp.tsx new file mode 100644 index 000000000..ae6ab6f08 --- /dev/null +++ b/src/IconPrintSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrintSharp as default } diff --git a/src/IconPrintTwoTone.tsx b/src/IconPrintTwoTone.tsx new file mode 100644 index 000000000..a3ed0588a --- /dev/null +++ b/src/IconPrintTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPrintTwoTone as default } diff --git a/src/IconPriorityHighOutlined.tsx b/src/IconPriorityHighOutlined.tsx new file mode 100644 index 000000000..2ed872761 --- /dev/null +++ b/src/IconPriorityHighOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPriorityHighOutlined as default } diff --git a/src/IconPriorityHighRound.tsx b/src/IconPriorityHighRound.tsx new file mode 100644 index 000000000..82cc46d8d --- /dev/null +++ b/src/IconPriorityHighRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPriorityHighRound as default } diff --git a/src/IconPriorityHighSharp.tsx b/src/IconPriorityHighSharp.tsx new file mode 100644 index 000000000..7dd3df381 --- /dev/null +++ b/src/IconPriorityHighSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPriorityHighSharp as default } diff --git a/src/IconPriorityHighTwoTone.tsx b/src/IconPriorityHighTwoTone.tsx new file mode 100644 index 000000000..5d9d4a14e --- /dev/null +++ b/src/IconPriorityHighTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPriorityHighTwoTone as default } diff --git a/src/IconPrivacyTipOutlined.tsx b/src/IconPrivacyTipOutlined.tsx new file mode 100644 index 000000000..537093b9e --- /dev/null +++ b/src/IconPrivacyTipOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPrivacyTipOutlined as default } diff --git a/src/IconPrivacyTipRound.tsx b/src/IconPrivacyTipRound.tsx new file mode 100644 index 000000000..9a0d99134 --- /dev/null +++ b/src/IconPrivacyTipRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPrivacyTipRound as default } diff --git a/src/IconPrivacyTipSharp.tsx b/src/IconPrivacyTipSharp.tsx new file mode 100644 index 000000000..225ceceb3 --- /dev/null +++ b/src/IconPrivacyTipSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPrivacyTipSharp as default } diff --git a/src/IconPrivacyTipTwoTone.tsx b/src/IconPrivacyTipTwoTone.tsx new file mode 100644 index 000000000..f979756e0 --- /dev/null +++ b/src/IconPrivacyTipTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPrivacyTipTwoTone as default } diff --git a/src/IconPrivateConnectivityOutlined.tsx b/src/IconPrivateConnectivityOutlined.tsx new file mode 100644 index 000000000..c5fffcf9c --- /dev/null +++ b/src/IconPrivateConnectivityOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrivateConnectivityOutlined as default } diff --git a/src/IconPrivateConnectivityRound.tsx b/src/IconPrivateConnectivityRound.tsx new file mode 100644 index 000000000..6635c5ee6 --- /dev/null +++ b/src/IconPrivateConnectivityRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrivateConnectivityRound as default } diff --git a/src/IconPrivateConnectivitySharp.tsx b/src/IconPrivateConnectivitySharp.tsx new file mode 100644 index 000000000..9e1573fd0 --- /dev/null +++ b/src/IconPrivateConnectivitySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPrivateConnectivitySharp as default } diff --git a/src/IconPrivateConnectivityTwoTone.tsx b/src/IconPrivateConnectivityTwoTone.tsx new file mode 100644 index 000000000..af74752af --- /dev/null +++ b/src/IconPrivateConnectivityTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPrivateConnectivityTwoTone as default } diff --git a/src/IconProductionQuantityLimitsOutlined.tsx b/src/IconProductionQuantityLimitsOutlined.tsx new file mode 100644 index 000000000..799895b84 --- /dev/null +++ b/src/IconProductionQuantityLimitsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconProductionQuantityLimitsOutlined as default } diff --git a/src/IconProductionQuantityLimitsRound.tsx b/src/IconProductionQuantityLimitsRound.tsx new file mode 100644 index 000000000..ee7696043 --- /dev/null +++ b/src/IconProductionQuantityLimitsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconProductionQuantityLimitsRound as default } diff --git a/src/IconProductionQuantityLimitsSharp.tsx b/src/IconProductionQuantityLimitsSharp.tsx new file mode 100644 index 000000000..f82f2d2fa --- /dev/null +++ b/src/IconProductionQuantityLimitsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconProductionQuantityLimitsSharp as default } diff --git a/src/IconProductionQuantityLimitsTwoTone.tsx b/src/IconProductionQuantityLimitsTwoTone.tsx new file mode 100644 index 000000000..eeeaa9335 --- /dev/null +++ b/src/IconProductionQuantityLimitsTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconProductionQuantityLimitsTwoTone as default } diff --git a/src/IconPropaneOutlined.tsx b/src/IconPropaneOutlined.tsx new file mode 100644 index 000000000..7138a551a --- /dev/null +++ b/src/IconPropaneOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPropaneOutlined as default } diff --git a/src/IconPropaneRound.tsx b/src/IconPropaneRound.tsx new file mode 100644 index 000000000..a033c1b5a --- /dev/null +++ b/src/IconPropaneRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPropaneRound as default } diff --git a/src/IconPropaneSharp.tsx b/src/IconPropaneSharp.tsx new file mode 100644 index 000000000..c1ddb45e1 --- /dev/null +++ b/src/IconPropaneSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPropaneSharp as default } diff --git a/src/IconPropaneTankOutlined.tsx b/src/IconPropaneTankOutlined.tsx new file mode 100644 index 000000000..0ed0ef421 --- /dev/null +++ b/src/IconPropaneTankOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPropaneTankOutlined as default } diff --git a/src/IconPropaneTankRound.tsx b/src/IconPropaneTankRound.tsx new file mode 100644 index 000000000..2d04db922 --- /dev/null +++ b/src/IconPropaneTankRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPropaneTankRound as default } diff --git a/src/IconPropaneTankSharp.tsx b/src/IconPropaneTankSharp.tsx new file mode 100644 index 000000000..45cdbefa2 --- /dev/null +++ b/src/IconPropaneTankSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPropaneTankSharp as default } diff --git a/src/IconPropaneTankTwoTone.tsx b/src/IconPropaneTankTwoTone.tsx new file mode 100644 index 000000000..2a2516de2 --- /dev/null +++ b/src/IconPropaneTankTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPropaneTankTwoTone as default } diff --git a/src/IconPropaneTwoTone.tsx b/src/IconPropaneTwoTone.tsx new file mode 100644 index 000000000..f24352aab --- /dev/null +++ b/src/IconPropaneTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPropaneTwoTone as default } diff --git a/src/IconPsychologyAltOutlined.tsx b/src/IconPsychologyAltOutlined.tsx new file mode 100644 index 000000000..fcf9d4ca4 --- /dev/null +++ b/src/IconPsychologyAltOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPsychologyAltOutlined as default } diff --git a/src/IconPsychologyAltRound.tsx b/src/IconPsychologyAltRound.tsx new file mode 100644 index 000000000..a07a51d86 --- /dev/null +++ b/src/IconPsychologyAltRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPsychologyAltRound as default } diff --git a/src/IconPsychologyAltSharp.tsx b/src/IconPsychologyAltSharp.tsx new file mode 100644 index 000000000..1e6030bd3 --- /dev/null +++ b/src/IconPsychologyAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPsychologyAltSharp as default } diff --git a/src/IconPsychologyAltTwoTone.tsx b/src/IconPsychologyAltTwoTone.tsx new file mode 100644 index 000000000..d5f942221 --- /dev/null +++ b/src/IconPsychologyAltTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconPsychologyAltTwoTone as default } diff --git a/src/IconPsychologyOutlined.tsx b/src/IconPsychologyOutlined.tsx new file mode 100644 index 000000000..3f9ad619e --- /dev/null +++ b/src/IconPsychologyOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPsychologyOutlined as default } diff --git a/src/IconPsychologyRound.tsx b/src/IconPsychologyRound.tsx new file mode 100644 index 000000000..da3f648b3 --- /dev/null +++ b/src/IconPsychologyRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPsychologyRound as default } diff --git a/src/IconPsychologySharp.tsx b/src/IconPsychologySharp.tsx new file mode 100644 index 000000000..e919f9ac9 --- /dev/null +++ b/src/IconPsychologySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPsychologySharp as default } diff --git a/src/IconPsychologyTwoTone.tsx b/src/IconPsychologyTwoTone.tsx new file mode 100644 index 000000000..fcc626604 --- /dev/null +++ b/src/IconPsychologyTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPsychologyTwoTone as default } diff --git a/src/IconPublicOffOutlined.tsx b/src/IconPublicOffOutlined.tsx new file mode 100644 index 000000000..d1d1e5e9b --- /dev/null +++ b/src/IconPublicOffOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPublicOffOutlined as default } diff --git a/src/IconPublicOffRound.tsx b/src/IconPublicOffRound.tsx new file mode 100644 index 000000000..0b9231e09 --- /dev/null +++ b/src/IconPublicOffRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPublicOffRound as default } diff --git a/src/IconPublicOffSharp.tsx b/src/IconPublicOffSharp.tsx new file mode 100644 index 000000000..86983e7b2 --- /dev/null +++ b/src/IconPublicOffSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconPublicOffSharp as default } diff --git a/src/IconPublicOffTwoTone.tsx b/src/IconPublicOffTwoTone.tsx new file mode 100644 index 000000000..d2dddd0ba --- /dev/null +++ b/src/IconPublicOffTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconPublicOffTwoTone as default } diff --git a/src/IconPublicOutlined.tsx b/src/IconPublicOutlined.tsx new file mode 100644 index 000000000..0d0a3137f --- /dev/null +++ b/src/IconPublicOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublicOutlined as default } diff --git a/src/IconPublicRound.tsx b/src/IconPublicRound.tsx new file mode 100644 index 000000000..d253e422a --- /dev/null +++ b/src/IconPublicRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublicRound as default } diff --git a/src/IconPublicSharp.tsx b/src/IconPublicSharp.tsx new file mode 100644 index 000000000..39878062b --- /dev/null +++ b/src/IconPublicSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublicSharp as default } diff --git a/src/IconPublicTwoTone.tsx b/src/IconPublicTwoTone.tsx new file mode 100644 index 000000000..8d2a61868 --- /dev/null +++ b/src/IconPublicTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPublicTwoTone as default } diff --git a/src/IconPublishOutlined.tsx b/src/IconPublishOutlined.tsx new file mode 100644 index 000000000..8b0398386 --- /dev/null +++ b/src/IconPublishOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishOutlined as default } diff --git a/src/IconPublishRound.tsx b/src/IconPublishRound.tsx new file mode 100644 index 000000000..e1ddebc6b --- /dev/null +++ b/src/IconPublishRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishRound as default } diff --git a/src/IconPublishSharp.tsx b/src/IconPublishSharp.tsx new file mode 100644 index 000000000..1159c9298 --- /dev/null +++ b/src/IconPublishSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishSharp as default } diff --git a/src/IconPublishTwoTone.tsx b/src/IconPublishTwoTone.tsx new file mode 100644 index 000000000..fa126e328 --- /dev/null +++ b/src/IconPublishTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconPublishTwoTone as default } diff --git a/src/IconPublishedWithChangesOutlined.tsx b/src/IconPublishedWithChangesOutlined.tsx new file mode 100644 index 000000000..d8325974d --- /dev/null +++ b/src/IconPublishedWithChangesOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishedWithChangesOutlined as default } diff --git a/src/IconPublishedWithChangesRound.tsx b/src/IconPublishedWithChangesRound.tsx new file mode 100644 index 000000000..cf5a4eb93 --- /dev/null +++ b/src/IconPublishedWithChangesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishedWithChangesRound as default } diff --git a/src/IconPublishedWithChangesSharp.tsx b/src/IconPublishedWithChangesSharp.tsx new file mode 100644 index 000000000..ab4345f64 --- /dev/null +++ b/src/IconPublishedWithChangesSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishedWithChangesSharp as default } diff --git a/src/IconPublishedWithChangesTwoTone.tsx b/src/IconPublishedWithChangesTwoTone.tsx new file mode 100644 index 000000000..0d4eff557 --- /dev/null +++ b/src/IconPublishedWithChangesTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconPublishedWithChangesTwoTone as default } diff --git a/src/IconPunchClockOutlined.tsx b/src/IconPunchClockOutlined.tsx new file mode 100644 index 000000000..6d3bb9389 --- /dev/null +++ b/src/IconPunchClockOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPunchClockOutlined as default } diff --git a/src/IconPunchClockRound.tsx b/src/IconPunchClockRound.tsx new file mode 100644 index 000000000..3cbc79126 --- /dev/null +++ b/src/IconPunchClockRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconPunchClockRound as default } diff --git a/src/IconPunchClockSharp.tsx b/src/IconPunchClockSharp.tsx new file mode 100644 index 000000000..2664c71a8 --- /dev/null +++ b/src/IconPunchClockSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPunchClockSharp as default } diff --git a/src/IconPunchClockTwoTone.tsx b/src/IconPunchClockTwoTone.tsx new file mode 100644 index 000000000..b4862ec77 --- /dev/null +++ b/src/IconPunchClockTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconPunchClockTwoTone as default } diff --git a/src/IconPushPinOutlined.tsx b/src/IconPushPinOutlined.tsx new file mode 100644 index 000000000..5ef65143b --- /dev/null +++ b/src/IconPushPinOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPushPinOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPushPinOutlined as default } diff --git a/src/IconPushPinRound.tsx b/src/IconPushPinRound.tsx new file mode 100644 index 000000000..ee9b0bd82 --- /dev/null +++ b/src/IconPushPinRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPushPinRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconPushPinRound as default } diff --git a/src/IconPushPinSharp.tsx b/src/IconPushPinSharp.tsx new file mode 100644 index 000000000..aafad7385 --- /dev/null +++ b/src/IconPushPinSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPushPinSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconPushPinSharp as default } diff --git a/src/IconPushPinTwoTone.tsx b/src/IconPushPinTwoTone.tsx new file mode 100644 index 000000000..c8205081b --- /dev/null +++ b/src/IconPushPinTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPushPinTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconPushPinTwoTone as default } diff --git a/src/IconQrCode2Outlined.tsx b/src/IconQrCode2Outlined.tsx new file mode 100644 index 000000000..18aeb725e --- /dev/null +++ b/src/IconQrCode2Outlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQrCode2Outlined as default } diff --git a/src/IconQrCode2Round.tsx b/src/IconQrCode2Round.tsx new file mode 100644 index 000000000..bfb51c731 --- /dev/null +++ b/src/IconQrCode2Round.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQrCode2Round as default } diff --git a/src/IconQrCode2Sharp.tsx b/src/IconQrCode2Sharp.tsx new file mode 100644 index 000000000..5cbc9b0c2 --- /dev/null +++ b/src/IconQrCode2Sharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQrCode2Sharp as default } diff --git a/src/IconQrCode2TwoTone.tsx b/src/IconQrCode2TwoTone.tsx new file mode 100644 index 000000000..039ed0e15 --- /dev/null +++ b/src/IconQrCode2TwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQrCode2TwoTone as default } diff --git a/src/IconQrCodeOutlined.tsx b/src/IconQrCodeOutlined.tsx new file mode 100644 index 000000000..1b977c033 --- /dev/null +++ b/src/IconQrCodeOutlined.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCodeOutlined as default } diff --git a/src/IconQrCodeRound.tsx b/src/IconQrCodeRound.tsx new file mode 100644 index 000000000..a9f2bc0c5 --- /dev/null +++ b/src/IconQrCodeRound.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCodeRound as default } diff --git a/src/IconQrCodeScannerOutlined.tsx b/src/IconQrCodeScannerOutlined.tsx new file mode 100644 index 000000000..bc9100414 --- /dev/null +++ b/src/IconQrCodeScannerOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQrCodeScannerOutlined as default } diff --git a/src/IconQrCodeScannerRound.tsx b/src/IconQrCodeScannerRound.tsx new file mode 100644 index 000000000..d48b7fe31 --- /dev/null +++ b/src/IconQrCodeScannerRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQrCodeScannerRound as default } diff --git a/src/IconQrCodeScannerSharp.tsx b/src/IconQrCodeScannerSharp.tsx new file mode 100644 index 000000000..216679225 --- /dev/null +++ b/src/IconQrCodeScannerSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQrCodeScannerSharp as default } diff --git a/src/IconQrCodeScannerTwoTone.tsx b/src/IconQrCodeScannerTwoTone.tsx new file mode 100644 index 000000000..133e35c08 --- /dev/null +++ b/src/IconQrCodeScannerTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQrCodeScannerTwoTone as default } diff --git a/src/IconQrCodeSharp.tsx b/src/IconQrCodeSharp.tsx new file mode 100644 index 000000000..e6e27e90a --- /dev/null +++ b/src/IconQrCodeSharp.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCodeSharp as default } diff --git a/src/IconQrCodeTwoTone.tsx b/src/IconQrCodeTwoTone.tsx new file mode 100644 index 000000000..46f80c1d1 --- /dev/null +++ b/src/IconQrCodeTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconQrCodeTwoTone as default } diff --git a/src/IconQueryBuilderOutlined.tsx b/src/IconQueryBuilderOutlined.tsx new file mode 100644 index 000000000..2140365c2 --- /dev/null +++ b/src/IconQueryBuilderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryBuilderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueryBuilderOutlined as default } diff --git a/src/IconQueryBuilderRound.tsx b/src/IconQueryBuilderRound.tsx new file mode 100644 index 000000000..fb5cee7f4 --- /dev/null +++ b/src/IconQueryBuilderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryBuilderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueryBuilderRound as default } diff --git a/src/IconQueryBuilderSharp.tsx b/src/IconQueryBuilderSharp.tsx new file mode 100644 index 000000000..7483bd758 --- /dev/null +++ b/src/IconQueryBuilderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryBuilderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueryBuilderSharp as default } diff --git a/src/IconQueryBuilderTwoTone.tsx b/src/IconQueryBuilderTwoTone.tsx new file mode 100644 index 000000000..7125f5e68 --- /dev/null +++ b/src/IconQueryBuilderTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryBuilderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconQueryBuilderTwoTone as default } diff --git a/src/IconQueryStatsOutlined.tsx b/src/IconQueryStatsOutlined.tsx new file mode 100644 index 000000000..6bc673055 --- /dev/null +++ b/src/IconQueryStatsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQueryStatsOutlined as default } diff --git a/src/IconQueryStatsRound.tsx b/src/IconQueryStatsRound.tsx new file mode 100644 index 000000000..ba60f3061 --- /dev/null +++ b/src/IconQueryStatsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQueryStatsRound as default } diff --git a/src/IconQueryStatsSharp.tsx b/src/IconQueryStatsSharp.tsx new file mode 100644 index 000000000..47a6e142f --- /dev/null +++ b/src/IconQueryStatsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQueryStatsSharp as default } diff --git a/src/IconQueryStatsTwoTone.tsx b/src/IconQueryStatsTwoTone.tsx new file mode 100644 index 000000000..315b1235a --- /dev/null +++ b/src/IconQueryStatsTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconQueryStatsTwoTone as default } diff --git a/src/IconQuestionAnswerOutlined.tsx b/src/IconQuestionAnswerOutlined.tsx new file mode 100644 index 000000000..d3ebb816b --- /dev/null +++ b/src/IconQuestionAnswerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionAnswerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQuestionAnswerOutlined as default } diff --git a/src/IconQuestionAnswerRound.tsx b/src/IconQuestionAnswerRound.tsx new file mode 100644 index 000000000..f7e1aca02 --- /dev/null +++ b/src/IconQuestionAnswerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionAnswerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQuestionAnswerRound as default } diff --git a/src/IconQuestionAnswerSharp.tsx b/src/IconQuestionAnswerSharp.tsx new file mode 100644 index 000000000..fdd732da8 --- /dev/null +++ b/src/IconQuestionAnswerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionAnswerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQuestionAnswerSharp as default } diff --git a/src/IconQuestionAnswerTwoTone.tsx b/src/IconQuestionAnswerTwoTone.tsx new file mode 100644 index 000000000..7b82a0c48 --- /dev/null +++ b/src/IconQuestionAnswerTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionAnswerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconQuestionAnswerTwoTone as default } diff --git a/src/IconQuestionMarkOutlined.tsx b/src/IconQuestionMarkOutlined.tsx new file mode 100644 index 000000000..bba19112b --- /dev/null +++ b/src/IconQuestionMarkOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQuestionMarkOutlined as default } diff --git a/src/IconQuestionMarkRound.tsx b/src/IconQuestionMarkRound.tsx new file mode 100644 index 000000000..8bc8d1141 --- /dev/null +++ b/src/IconQuestionMarkRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconQuestionMarkRound as default } diff --git a/src/IconQuestionMarkSharp.tsx b/src/IconQuestionMarkSharp.tsx new file mode 100644 index 000000000..0d39c102d --- /dev/null +++ b/src/IconQuestionMarkSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQuestionMarkSharp as default } diff --git a/src/IconQuestionMarkTwoTone.tsx b/src/IconQuestionMarkTwoTone.tsx new file mode 100644 index 000000000..ab1cfcee2 --- /dev/null +++ b/src/IconQuestionMarkTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQuestionMarkTwoTone as default } diff --git a/src/IconQueueMusicOutlined.tsx b/src/IconQueueMusicOutlined.tsx new file mode 100644 index 000000000..0ca7979c2 --- /dev/null +++ b/src/IconQueueMusicOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQueueMusicOutlined as default } diff --git a/src/IconQueueMusicRound.tsx b/src/IconQueueMusicRound.tsx new file mode 100644 index 000000000..821b2b166 --- /dev/null +++ b/src/IconQueueMusicRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueueMusicRound as default } diff --git a/src/IconQueueMusicSharp.tsx b/src/IconQueueMusicSharp.tsx new file mode 100644 index 000000000..2f4a036f3 --- /dev/null +++ b/src/IconQueueMusicSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQueueMusicSharp as default } diff --git a/src/IconQueueMusicTwoTone.tsx b/src/IconQueueMusicTwoTone.tsx new file mode 100644 index 000000000..0bc5b6d40 --- /dev/null +++ b/src/IconQueueMusicTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconQueueMusicTwoTone as default } diff --git a/src/IconQueueOutlined.tsx b/src/IconQueueOutlined.tsx new file mode 100644 index 000000000..4f5d43345 --- /dev/null +++ b/src/IconQueueOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueueOutlined as default } diff --git a/src/IconQueuePlayNextOutlined.tsx b/src/IconQueuePlayNextOutlined.tsx new file mode 100644 index 000000000..7e16dff53 --- /dev/null +++ b/src/IconQueuePlayNextOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueuePlayNextOutlined as default } diff --git a/src/IconQueuePlayNextRound.tsx b/src/IconQueuePlayNextRound.tsx new file mode 100644 index 000000000..47d67a856 --- /dev/null +++ b/src/IconQueuePlayNextRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueuePlayNextRound as default } diff --git a/src/IconQueuePlayNextSharp.tsx b/src/IconQueuePlayNextSharp.tsx new file mode 100644 index 000000000..667a3bfda --- /dev/null +++ b/src/IconQueuePlayNextSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueuePlayNextSharp as default } diff --git a/src/IconQueuePlayNextTwoTone.tsx b/src/IconQueuePlayNextTwoTone.tsx new file mode 100644 index 000000000..f03ea5213 --- /dev/null +++ b/src/IconQueuePlayNextTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueuePlayNextTwoTone as default } diff --git a/src/IconQueueRound.tsx b/src/IconQueueRound.tsx new file mode 100644 index 000000000..b69e07ceb --- /dev/null +++ b/src/IconQueueRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueueRound as default } diff --git a/src/IconQueueSharp.tsx b/src/IconQueueSharp.tsx new file mode 100644 index 000000000..b215de17d --- /dev/null +++ b/src/IconQueueSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconQueueSharp as default } diff --git a/src/IconQueueTwoTone.tsx b/src/IconQueueTwoTone.tsx new file mode 100644 index 000000000..720537b4d --- /dev/null +++ b/src/IconQueueTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconQueueTwoTone as default } diff --git a/src/IconQuickreplyOutlined.tsx b/src/IconQuickreplyOutlined.tsx new file mode 100644 index 000000000..94a6e1547 --- /dev/null +++ b/src/IconQuickreplyOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconQuickreplyOutlined as default } diff --git a/src/IconQuickreplyRound.tsx b/src/IconQuickreplyRound.tsx new file mode 100644 index 000000000..779e52626 --- /dev/null +++ b/src/IconQuickreplyRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconQuickreplyRound as default } diff --git a/src/IconQuickreplySharp.tsx b/src/IconQuickreplySharp.tsx new file mode 100644 index 000000000..665b2a300 --- /dev/null +++ b/src/IconQuickreplySharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconQuickreplySharp as default } diff --git a/src/IconQuickreplyTwoTone.tsx b/src/IconQuickreplyTwoTone.tsx new file mode 100644 index 000000000..02d5b464e --- /dev/null +++ b/src/IconQuickreplyTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconQuickreplyTwoTone as default } diff --git a/src/IconQuizOutlined.tsx b/src/IconQuizOutlined.tsx new file mode 100644 index 000000000..558ae493e --- /dev/null +++ b/src/IconQuizOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconQuizOutlined as default } diff --git a/src/IconQuizRound.tsx b/src/IconQuizRound.tsx new file mode 100644 index 000000000..6b7ac846a --- /dev/null +++ b/src/IconQuizRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconQuizRound as default } diff --git a/src/IconQuizSharp.tsx b/src/IconQuizSharp.tsx new file mode 100644 index 000000000..54ff7d2fd --- /dev/null +++ b/src/IconQuizSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconQuizSharp as default } diff --git a/src/IconQuizTwoTone.tsx b/src/IconQuizTwoTone.tsx new file mode 100644 index 000000000..b80838ff6 --- /dev/null +++ b/src/IconQuizTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconQuizTwoTone as default } diff --git a/src/IconRMobiledataOutlined.tsx b/src/IconRMobiledataOutlined.tsx new file mode 100644 index 000000000..fb2c7f92a --- /dev/null +++ b/src/IconRMobiledataOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRMobiledataOutlined as default } diff --git a/src/IconRMobiledataRound.tsx b/src/IconRMobiledataRound.tsx new file mode 100644 index 000000000..7dbe803da --- /dev/null +++ b/src/IconRMobiledataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRMobiledataRound as default } diff --git a/src/IconRMobiledataSharp.tsx b/src/IconRMobiledataSharp.tsx new file mode 100644 index 000000000..33d6e4952 --- /dev/null +++ b/src/IconRMobiledataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRMobiledataSharp as default } diff --git a/src/IconRMobiledataTwoTone.tsx b/src/IconRMobiledataTwoTone.tsx new file mode 100644 index 000000000..745539c71 --- /dev/null +++ b/src/IconRMobiledataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRMobiledataTwoTone as default } diff --git a/src/IconRadarOutlined.tsx b/src/IconRadarOutlined.tsx new file mode 100644 index 000000000..acaa30f96 --- /dev/null +++ b/src/IconRadarOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRadarOutlined as default } diff --git a/src/IconRadarRound.tsx b/src/IconRadarRound.tsx new file mode 100644 index 000000000..73946200b --- /dev/null +++ b/src/IconRadarRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRadarRound as default } diff --git a/src/IconRadarSharp.tsx b/src/IconRadarSharp.tsx new file mode 100644 index 000000000..172213c77 --- /dev/null +++ b/src/IconRadarSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRadarSharp as default } diff --git a/src/IconRadarTwoTone.tsx b/src/IconRadarTwoTone.tsx new file mode 100644 index 000000000..af428cf60 --- /dev/null +++ b/src/IconRadarTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRadarTwoTone as default } diff --git a/src/IconRadioButtonCheckedOutlined.tsx b/src/IconRadioButtonCheckedOutlined.tsx new file mode 100644 index 000000000..4f66ad023 --- /dev/null +++ b/src/IconRadioButtonCheckedOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRadioButtonCheckedOutlined as default } diff --git a/src/IconRadioButtonCheckedRound.tsx b/src/IconRadioButtonCheckedRound.tsx new file mode 100644 index 000000000..899b28067 --- /dev/null +++ b/src/IconRadioButtonCheckedRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRadioButtonCheckedRound as default } diff --git a/src/IconRadioButtonCheckedSharp.tsx b/src/IconRadioButtonCheckedSharp.tsx new file mode 100644 index 000000000..a8d91352a --- /dev/null +++ b/src/IconRadioButtonCheckedSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRadioButtonCheckedSharp as default } diff --git a/src/IconRadioButtonCheckedTwoTone.tsx b/src/IconRadioButtonCheckedTwoTone.tsx new file mode 100644 index 000000000..fcce22841 --- /dev/null +++ b/src/IconRadioButtonCheckedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRadioButtonCheckedTwoTone as default } diff --git a/src/IconRadioButtonUncheckedOutlined.tsx b/src/IconRadioButtonUncheckedOutlined.tsx new file mode 100644 index 000000000..40752f6cc --- /dev/null +++ b/src/IconRadioButtonUncheckedOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconRadioButtonUncheckedOutlined as default } diff --git a/src/IconRadioButtonUncheckedRound.tsx b/src/IconRadioButtonUncheckedRound.tsx new file mode 100644 index 000000000..175ec2576 --- /dev/null +++ b/src/IconRadioButtonUncheckedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRadioButtonUncheckedRound as default } diff --git a/src/IconRadioButtonUncheckedSharp.tsx b/src/IconRadioButtonUncheckedSharp.tsx new file mode 100644 index 000000000..da40defa5 --- /dev/null +++ b/src/IconRadioButtonUncheckedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRadioButtonUncheckedSharp as default } diff --git a/src/IconRadioButtonUncheckedTwoTone.tsx b/src/IconRadioButtonUncheckedTwoTone.tsx new file mode 100644 index 000000000..4a37fa734 --- /dev/null +++ b/src/IconRadioButtonUncheckedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRadioButtonUncheckedTwoTone as default } diff --git a/src/IconRadioOutlined.tsx b/src/IconRadioOutlined.tsx new file mode 100644 index 000000000..15b909ef4 --- /dev/null +++ b/src/IconRadioOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRadioOutlined as default } diff --git a/src/IconRadioRound.tsx b/src/IconRadioRound.tsx new file mode 100644 index 000000000..c9868a3d2 --- /dev/null +++ b/src/IconRadioRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioRound as default } diff --git a/src/IconRadioSharp.tsx b/src/IconRadioSharp.tsx new file mode 100644 index 000000000..105af63a2 --- /dev/null +++ b/src/IconRadioSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRadioSharp as default } diff --git a/src/IconRadioTwoTone.tsx b/src/IconRadioTwoTone.tsx new file mode 100644 index 000000000..16375611a --- /dev/null +++ b/src/IconRadioTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRadioTwoTone as default } diff --git a/src/IconRailwayAlertOutlined.tsx b/src/IconRailwayAlertOutlined.tsx new file mode 100644 index 000000000..f2373f9da --- /dev/null +++ b/src/IconRailwayAlertOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconRailwayAlertOutlined as default } diff --git a/src/IconRailwayAlertRound.tsx b/src/IconRailwayAlertRound.tsx new file mode 100644 index 000000000..a82c6d331 --- /dev/null +++ b/src/IconRailwayAlertRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRailwayAlertRound as default } diff --git a/src/IconRailwayAlertSharp.tsx b/src/IconRailwayAlertSharp.tsx new file mode 100644 index 000000000..56206647a --- /dev/null +++ b/src/IconRailwayAlertSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRailwayAlertSharp as default } diff --git a/src/IconRailwayAlertTwoTone.tsx b/src/IconRailwayAlertTwoTone.tsx new file mode 100644 index 000000000..4699da2a3 --- /dev/null +++ b/src/IconRailwayAlertTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconRailwayAlertTwoTone as default } diff --git a/src/IconRamenDiningOutlined.tsx b/src/IconRamenDiningOutlined.tsx new file mode 100644 index 000000000..a40474f0e --- /dev/null +++ b/src/IconRamenDiningOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRamenDiningOutlined as default } diff --git a/src/IconRamenDiningRound.tsx b/src/IconRamenDiningRound.tsx new file mode 100644 index 000000000..8307590bb --- /dev/null +++ b/src/IconRamenDiningRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRamenDiningRound as default } diff --git a/src/IconRamenDiningSharp.tsx b/src/IconRamenDiningSharp.tsx new file mode 100644 index 000000000..e6e20a4a5 --- /dev/null +++ b/src/IconRamenDiningSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRamenDiningSharp as default } diff --git a/src/IconRamenDiningTwoTone.tsx b/src/IconRamenDiningTwoTone.tsx new file mode 100644 index 000000000..c1a2baf68 --- /dev/null +++ b/src/IconRamenDiningTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRamenDiningTwoTone as default } diff --git a/src/IconRampLeftOutlined.tsx b/src/IconRampLeftOutlined.tsx new file mode 100644 index 000000000..a0508f033 --- /dev/null +++ b/src/IconRampLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampLeftOutlined as default } diff --git a/src/IconRampLeftRound.tsx b/src/IconRampLeftRound.tsx new file mode 100644 index 000000000..7d103c692 --- /dev/null +++ b/src/IconRampLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRampLeftRound as default } diff --git a/src/IconRampLeftSharp.tsx b/src/IconRampLeftSharp.tsx new file mode 100644 index 000000000..593c3941f --- /dev/null +++ b/src/IconRampLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampLeftSharp as default } diff --git a/src/IconRampLeftTwoTone.tsx b/src/IconRampLeftTwoTone.tsx new file mode 100644 index 000000000..c004b31b7 --- /dev/null +++ b/src/IconRampLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampLeftTwoTone as default } diff --git a/src/IconRampRightOutlined.tsx b/src/IconRampRightOutlined.tsx new file mode 100644 index 000000000..d9e03ec8b --- /dev/null +++ b/src/IconRampRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampRightOutlined as default } diff --git a/src/IconRampRightRound.tsx b/src/IconRampRightRound.tsx new file mode 100644 index 000000000..641dfd308 --- /dev/null +++ b/src/IconRampRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRampRightRound as default } diff --git a/src/IconRampRightSharp.tsx b/src/IconRampRightSharp.tsx new file mode 100644 index 000000000..1824ae6f5 --- /dev/null +++ b/src/IconRampRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampRightSharp as default } diff --git a/src/IconRampRightTwoTone.tsx b/src/IconRampRightTwoTone.tsx new file mode 100644 index 000000000..c2f506456 --- /dev/null +++ b/src/IconRampRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRampRightTwoTone as default } diff --git a/src/IconRateReviewOutlined.tsx b/src/IconRateReviewOutlined.tsx new file mode 100644 index 000000000..c11f4a25e --- /dev/null +++ b/src/IconRateReviewOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRateReviewOutlined as default } diff --git a/src/IconRateReviewRound.tsx b/src/IconRateReviewRound.tsx new file mode 100644 index 000000000..2688ec367 --- /dev/null +++ b/src/IconRateReviewRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRateReviewRound as default } diff --git a/src/IconRateReviewSharp.tsx b/src/IconRateReviewSharp.tsx new file mode 100644 index 000000000..21dd40b45 --- /dev/null +++ b/src/IconRateReviewSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRateReviewSharp as default } diff --git a/src/IconRateReviewTwoTone.tsx b/src/IconRateReviewTwoTone.tsx new file mode 100644 index 000000000..5e3d3c503 --- /dev/null +++ b/src/IconRateReviewTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRateReviewTwoTone as default } diff --git a/src/IconRawOffOutlined.tsx b/src/IconRawOffOutlined.tsx new file mode 100644 index 000000000..8174e877b --- /dev/null +++ b/src/IconRawOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRawOffOutlined as default } diff --git a/src/IconRawOffRound.tsx b/src/IconRawOffRound.tsx new file mode 100644 index 000000000..dd0615e4d --- /dev/null +++ b/src/IconRawOffRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRawOffRound as default } diff --git a/src/IconRawOffSharp.tsx b/src/IconRawOffSharp.tsx new file mode 100644 index 000000000..27c478a7c --- /dev/null +++ b/src/IconRawOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRawOffSharp as default } diff --git a/src/IconRawOffTwoTone.tsx b/src/IconRawOffTwoTone.tsx new file mode 100644 index 000000000..de783f4ba --- /dev/null +++ b/src/IconRawOffTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRawOffTwoTone as default } diff --git a/src/IconRawOnOutlined.tsx b/src/IconRawOnOutlined.tsx new file mode 100644 index 000000000..17568bcc2 --- /dev/null +++ b/src/IconRawOnOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRawOnOutlined as default } diff --git a/src/IconRawOnRound.tsx b/src/IconRawOnRound.tsx new file mode 100644 index 000000000..239e3d9c7 --- /dev/null +++ b/src/IconRawOnRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRawOnRound as default } diff --git a/src/IconRawOnSharp.tsx b/src/IconRawOnSharp.tsx new file mode 100644 index 000000000..3fc5e486d --- /dev/null +++ b/src/IconRawOnSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRawOnSharp as default } diff --git a/src/IconRawOnTwoTone.tsx b/src/IconRawOnTwoTone.tsx new file mode 100644 index 000000000..41e033ae9 --- /dev/null +++ b/src/IconRawOnTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRawOnTwoTone as default } diff --git a/src/IconReadMoreOutlined.tsx b/src/IconReadMoreOutlined.tsx new file mode 100644 index 000000000..164c25357 --- /dev/null +++ b/src/IconReadMoreOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconReadMoreOutlined as default } diff --git a/src/IconReadMoreRound.tsx b/src/IconReadMoreRound.tsx new file mode 100644 index 000000000..b6aa2b2af --- /dev/null +++ b/src/IconReadMoreRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconReadMoreRound as default } diff --git a/src/IconReadMoreSharp.tsx b/src/IconReadMoreSharp.tsx new file mode 100644 index 000000000..7ff1d9b7d --- /dev/null +++ b/src/IconReadMoreSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconReadMoreSharp as default } diff --git a/src/IconReadMoreTwoTone.tsx b/src/IconReadMoreTwoTone.tsx new file mode 100644 index 000000000..9f9cf1d10 --- /dev/null +++ b/src/IconReadMoreTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconReadMoreTwoTone as default } diff --git a/src/IconRealEstateAgentOutlined.tsx b/src/IconRealEstateAgentOutlined.tsx new file mode 100644 index 000000000..3c1ac7c1c --- /dev/null +++ b/src/IconRealEstateAgentOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRealEstateAgentOutlined as default } diff --git a/src/IconRealEstateAgentRound.tsx b/src/IconRealEstateAgentRound.tsx new file mode 100644 index 000000000..64ca5c1ef --- /dev/null +++ b/src/IconRealEstateAgentRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRealEstateAgentRound as default } diff --git a/src/IconRealEstateAgentSharp.tsx b/src/IconRealEstateAgentSharp.tsx new file mode 100644 index 000000000..a5cf81f9e --- /dev/null +++ b/src/IconRealEstateAgentSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRealEstateAgentSharp as default } diff --git a/src/IconRealEstateAgentTwoTone.tsx b/src/IconRealEstateAgentTwoTone.tsx new file mode 100644 index 000000000..c9825c51e --- /dev/null +++ b/src/IconRealEstateAgentTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRealEstateAgentTwoTone as default } diff --git a/src/IconReceiptLongOutlined.tsx b/src/IconReceiptLongOutlined.tsx new file mode 100644 index 000000000..3a1fffcbf --- /dev/null +++ b/src/IconReceiptLongOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconReceiptLongOutlined as default } diff --git a/src/IconReceiptLongRound.tsx b/src/IconReceiptLongRound.tsx new file mode 100644 index 000000000..7d4c2589c --- /dev/null +++ b/src/IconReceiptLongRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconReceiptLongRound as default } diff --git a/src/IconReceiptLongSharp.tsx b/src/IconReceiptLongSharp.tsx new file mode 100644 index 000000000..d59d4e237 --- /dev/null +++ b/src/IconReceiptLongSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconReceiptLongSharp as default } diff --git a/src/IconReceiptLongTwoTone.tsx b/src/IconReceiptLongTwoTone.tsx new file mode 100644 index 000000000..fb1f3afa0 --- /dev/null +++ b/src/IconReceiptLongTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconReceiptLongTwoTone as default } diff --git a/src/IconReceiptOutlined.tsx b/src/IconReceiptOutlined.tsx new file mode 100644 index 000000000..beef3e284 --- /dev/null +++ b/src/IconReceiptOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReceiptOutlined as default } diff --git a/src/IconReceiptRound.tsx b/src/IconReceiptRound.tsx new file mode 100644 index 000000000..d246e2995 --- /dev/null +++ b/src/IconReceiptRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReceiptRound as default } diff --git a/src/IconReceiptSharp.tsx b/src/IconReceiptSharp.tsx new file mode 100644 index 000000000..54f597846 --- /dev/null +++ b/src/IconReceiptSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReceiptSharp as default } diff --git a/src/IconReceiptTwoTone.tsx b/src/IconReceiptTwoTone.tsx new file mode 100644 index 000000000..4a5faf805 --- /dev/null +++ b/src/IconReceiptTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconReceiptTwoTone as default } diff --git a/src/IconRecentActorsOutlined.tsx b/src/IconRecentActorsOutlined.tsx new file mode 100644 index 000000000..0bc2e70e5 --- /dev/null +++ b/src/IconRecentActorsOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRecentActorsOutlined as default } diff --git a/src/IconRecentActorsRound.tsx b/src/IconRecentActorsRound.tsx new file mode 100644 index 000000000..6e32bd294 --- /dev/null +++ b/src/IconRecentActorsRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentActorsRound as default } diff --git a/src/IconRecentActorsSharp.tsx b/src/IconRecentActorsSharp.tsx new file mode 100644 index 000000000..b7417e0e2 --- /dev/null +++ b/src/IconRecentActorsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecentActorsSharp as default } diff --git a/src/IconRecentActorsTwoTone.tsx b/src/IconRecentActorsTwoTone.tsx new file mode 100644 index 000000000..75a5c941d --- /dev/null +++ b/src/IconRecentActorsTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconRecentActorsTwoTone as default } diff --git a/src/IconRecommendOutlined.tsx b/src/IconRecommendOutlined.tsx new file mode 100644 index 000000000..071a341f1 --- /dev/null +++ b/src/IconRecommendOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRecommendOutlined as default } diff --git a/src/IconRecommendRound.tsx b/src/IconRecommendRound.tsx new file mode 100644 index 000000000..4d4795bb2 --- /dev/null +++ b/src/IconRecommendRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRecommendRound as default } diff --git a/src/IconRecommendSharp.tsx b/src/IconRecommendSharp.tsx new file mode 100644 index 000000000..6b0d9f240 --- /dev/null +++ b/src/IconRecommendSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRecommendSharp as default } diff --git a/src/IconRecommendTwoTone.tsx b/src/IconRecommendTwoTone.tsx new file mode 100644 index 000000000..7198cc9e9 --- /dev/null +++ b/src/IconRecommendTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRecommendTwoTone as default } diff --git a/src/IconRecordVoiceOverOutlined.tsx b/src/IconRecordVoiceOverOutlined.tsx new file mode 100644 index 000000000..5f21863d3 --- /dev/null +++ b/src/IconRecordVoiceOverOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecordVoiceOverOutlined as default } diff --git a/src/IconRecordVoiceOverRound.tsx b/src/IconRecordVoiceOverRound.tsx new file mode 100644 index 000000000..2825a0eab --- /dev/null +++ b/src/IconRecordVoiceOverRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRecordVoiceOverRound as default } diff --git a/src/IconRecordVoiceOverSharp.tsx b/src/IconRecordVoiceOverSharp.tsx new file mode 100644 index 000000000..8331a911a --- /dev/null +++ b/src/IconRecordVoiceOverSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRecordVoiceOverSharp as default } diff --git a/src/IconRecordVoiceOverTwoTone.tsx b/src/IconRecordVoiceOverTwoTone.tsx new file mode 100644 index 000000000..c3bb30531 --- /dev/null +++ b/src/IconRecordVoiceOverTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRecordVoiceOverTwoTone as default } diff --git a/src/IconRectangleOutlined.tsx b/src/IconRectangleOutlined.tsx new file mode 100644 index 000000000..6cc5ca9a9 --- /dev/null +++ b/src/IconRectangleOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRectangleOutlined as default } diff --git a/src/IconRectangleRound.tsx b/src/IconRectangleRound.tsx new file mode 100644 index 000000000..094a88e58 --- /dev/null +++ b/src/IconRectangleRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRectangleRound as default } diff --git a/src/IconRectangleSharp.tsx b/src/IconRectangleSharp.tsx new file mode 100644 index 000000000..698a51b86 --- /dev/null +++ b/src/IconRectangleSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRectangleSharp as default } diff --git a/src/IconRectangleTwoTone.tsx b/src/IconRectangleTwoTone.tsx new file mode 100644 index 000000000..29a4b5524 --- /dev/null +++ b/src/IconRectangleTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRectangleTwoTone as default } diff --git a/src/IconRecyclingOutlined.tsx b/src/IconRecyclingOutlined.tsx new file mode 100644 index 000000000..9dbf94b09 --- /dev/null +++ b/src/IconRecyclingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecyclingOutlined as default } diff --git a/src/IconRecyclingRound.tsx b/src/IconRecyclingRound.tsx new file mode 100644 index 000000000..3f587d28a --- /dev/null +++ b/src/IconRecyclingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecyclingRound as default } diff --git a/src/IconRecyclingSharp.tsx b/src/IconRecyclingSharp.tsx new file mode 100644 index 000000000..b24875d98 --- /dev/null +++ b/src/IconRecyclingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecyclingSharp as default } diff --git a/src/IconRecyclingTwoTone.tsx b/src/IconRecyclingTwoTone.tsx new file mode 100644 index 000000000..76c99ee5f --- /dev/null +++ b/src/IconRecyclingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRecyclingTwoTone as default } diff --git a/src/IconRedeemOutlined.tsx b/src/IconRedeemOutlined.tsx new file mode 100644 index 000000000..0997c4878 --- /dev/null +++ b/src/IconRedeemOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedeemOutlined as default } diff --git a/src/IconRedeemRound.tsx b/src/IconRedeemRound.tsx new file mode 100644 index 000000000..e2395d29d --- /dev/null +++ b/src/IconRedeemRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedeemRound as default } diff --git a/src/IconRedeemSharp.tsx b/src/IconRedeemSharp.tsx new file mode 100644 index 000000000..6bf4c326c --- /dev/null +++ b/src/IconRedeemSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedeemSharp as default } diff --git a/src/IconRedeemTwoTone.tsx b/src/IconRedeemTwoTone.tsx new file mode 100644 index 000000000..c7c55ae2d --- /dev/null +++ b/src/IconRedeemTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRedeemTwoTone as default } diff --git a/src/IconRedoOutlined.tsx b/src/IconRedoOutlined.tsx new file mode 100644 index 000000000..3ac641075 --- /dev/null +++ b/src/IconRedoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedoOutlined as default } diff --git a/src/IconRedoRound.tsx b/src/IconRedoRound.tsx new file mode 100644 index 000000000..b0bc64bbd --- /dev/null +++ b/src/IconRedoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedoRound as default } diff --git a/src/IconRedoSharp.tsx b/src/IconRedoSharp.tsx new file mode 100644 index 000000000..de9a859fd --- /dev/null +++ b/src/IconRedoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedoSharp as default } diff --git a/src/IconRedoTwoTone.tsx b/src/IconRedoTwoTone.tsx new file mode 100644 index 000000000..f4c4133c9 --- /dev/null +++ b/src/IconRedoTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRedoTwoTone as default } diff --git a/src/IconReduceCapacityOutlined.tsx b/src/IconReduceCapacityOutlined.tsx new file mode 100644 index 000000000..c91652ccc --- /dev/null +++ b/src/IconReduceCapacityOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReduceCapacityOutlined as default } diff --git a/src/IconReduceCapacityRound.tsx b/src/IconReduceCapacityRound.tsx new file mode 100644 index 000000000..76c1b8816 --- /dev/null +++ b/src/IconReduceCapacityRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReduceCapacityRound as default } diff --git a/src/IconReduceCapacitySharp.tsx b/src/IconReduceCapacitySharp.tsx new file mode 100644 index 000000000..84109767c --- /dev/null +++ b/src/IconReduceCapacitySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReduceCapacitySharp as default } diff --git a/src/IconReduceCapacityTwoTone.tsx b/src/IconReduceCapacityTwoTone.tsx new file mode 100644 index 000000000..d34221420 --- /dev/null +++ b/src/IconReduceCapacityTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReduceCapacityTwoTone as default } diff --git a/src/IconRefreshOutlined.tsx b/src/IconRefreshOutlined.tsx new file mode 100644 index 000000000..108d9ccb2 --- /dev/null +++ b/src/IconRefreshOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRefreshOutlined as default } diff --git a/src/IconRefreshRound.tsx b/src/IconRefreshRound.tsx new file mode 100644 index 000000000..b65dee30e --- /dev/null +++ b/src/IconRefreshRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRefreshRound as default } diff --git a/src/IconRefreshSharp.tsx b/src/IconRefreshSharp.tsx new file mode 100644 index 000000000..43da28477 --- /dev/null +++ b/src/IconRefreshSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRefreshSharp as default } diff --git a/src/IconRefreshTwoTone.tsx b/src/IconRefreshTwoTone.tsx new file mode 100644 index 000000000..cb2df46e5 --- /dev/null +++ b/src/IconRefreshTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRefreshTwoTone as default } diff --git a/src/IconRememberMeOutlined.tsx b/src/IconRememberMeOutlined.tsx new file mode 100644 index 000000000..67f9e3264 --- /dev/null +++ b/src/IconRememberMeOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRememberMeOutlined as default } diff --git a/src/IconRememberMeRound.tsx b/src/IconRememberMeRound.tsx new file mode 100644 index 000000000..06d7bbb92 --- /dev/null +++ b/src/IconRememberMeRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRememberMeRound as default } diff --git a/src/IconRememberMeSharp.tsx b/src/IconRememberMeSharp.tsx new file mode 100644 index 000000000..4bbd7c9d7 --- /dev/null +++ b/src/IconRememberMeSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRememberMeSharp as default } diff --git a/src/IconRememberMeTwoTone.tsx b/src/IconRememberMeTwoTone.tsx new file mode 100644 index 000000000..c922e2a1e --- /dev/null +++ b/src/IconRememberMeTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRememberMeTwoTone as default } diff --git a/src/IconRemoveCircleOutlineOutlined.tsx b/src/IconRemoveCircleOutlineOutlined.tsx new file mode 100644 index 000000000..1985911b9 --- /dev/null +++ b/src/IconRemoveCircleOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleOutlineOutlined as default } diff --git a/src/IconRemoveCircleOutlineRound.tsx b/src/IconRemoveCircleOutlineRound.tsx new file mode 100644 index 000000000..1a4157066 --- /dev/null +++ b/src/IconRemoveCircleOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleOutlineRound as default } diff --git a/src/IconRemoveCircleOutlineSharp.tsx b/src/IconRemoveCircleOutlineSharp.tsx new file mode 100644 index 000000000..13094cf8b --- /dev/null +++ b/src/IconRemoveCircleOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleOutlineSharp as default } diff --git a/src/IconRemoveCircleOutlineTwoTone.tsx b/src/IconRemoveCircleOutlineTwoTone.tsx new file mode 100644 index 000000000..28073f953 --- /dev/null +++ b/src/IconRemoveCircleOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleOutlineTwoTone as default } diff --git a/src/IconRemoveCircleOutlined.tsx b/src/IconRemoveCircleOutlined.tsx new file mode 100644 index 000000000..79410002f --- /dev/null +++ b/src/IconRemoveCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleOutlined as default } diff --git a/src/IconRemoveCircleRound.tsx b/src/IconRemoveCircleRound.tsx new file mode 100644 index 000000000..fec3c988b --- /dev/null +++ b/src/IconRemoveCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleRound as default } diff --git a/src/IconRemoveCircleSharp.tsx b/src/IconRemoveCircleSharp.tsx new file mode 100644 index 000000000..8a65c18f0 --- /dev/null +++ b/src/IconRemoveCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveCircleSharp as default } diff --git a/src/IconRemoveCircleTwoTone.tsx b/src/IconRemoveCircleTwoTone.tsx new file mode 100644 index 000000000..469664264 --- /dev/null +++ b/src/IconRemoveCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRemoveCircleTwoTone as default } diff --git a/src/IconRemoveDoneOutlined.tsx b/src/IconRemoveDoneOutlined.tsx new file mode 100644 index 000000000..eabaab0e9 --- /dev/null +++ b/src/IconRemoveDoneOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRemoveDoneOutlined as default } diff --git a/src/IconRemoveDoneRound.tsx b/src/IconRemoveDoneRound.tsx new file mode 100644 index 000000000..6c3d4fdd0 --- /dev/null +++ b/src/IconRemoveDoneRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRemoveDoneRound as default } diff --git a/src/IconRemoveDoneSharp.tsx b/src/IconRemoveDoneSharp.tsx new file mode 100644 index 000000000..5b3e17d4e --- /dev/null +++ b/src/IconRemoveDoneSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRemoveDoneSharp as default } diff --git a/src/IconRemoveDoneTwoTone.tsx b/src/IconRemoveDoneTwoTone.tsx new file mode 100644 index 000000000..761f28c3b --- /dev/null +++ b/src/IconRemoveDoneTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRemoveDoneTwoTone as default } diff --git a/src/IconRemoveFromQueueOutlined.tsx b/src/IconRemoveFromQueueOutlined.tsx new file mode 100644 index 000000000..df76fe358 --- /dev/null +++ b/src/IconRemoveFromQueueOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveFromQueueOutlined as default } diff --git a/src/IconRemoveFromQueueRound.tsx b/src/IconRemoveFromQueueRound.tsx new file mode 100644 index 000000000..bb994bf9a --- /dev/null +++ b/src/IconRemoveFromQueueRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveFromQueueRound as default } diff --git a/src/IconRemoveFromQueueSharp.tsx b/src/IconRemoveFromQueueSharp.tsx new file mode 100644 index 000000000..190637d77 --- /dev/null +++ b/src/IconRemoveFromQueueSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveFromQueueSharp as default } diff --git a/src/IconRemoveFromQueueTwoTone.tsx b/src/IconRemoveFromQueueTwoTone.tsx new file mode 100644 index 000000000..a8bded15e --- /dev/null +++ b/src/IconRemoveFromQueueTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRemoveFromQueueTwoTone as default } diff --git a/src/IconRemoveModeratorOutlined.tsx b/src/IconRemoveModeratorOutlined.tsx new file mode 100644 index 000000000..88f49aa73 --- /dev/null +++ b/src/IconRemoveModeratorOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRemoveModeratorOutlined as default } diff --git a/src/IconRemoveModeratorRound.tsx b/src/IconRemoveModeratorRound.tsx new file mode 100644 index 000000000..df17f3f3a --- /dev/null +++ b/src/IconRemoveModeratorRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRemoveModeratorRound as default } diff --git a/src/IconRemoveModeratorSharp.tsx b/src/IconRemoveModeratorSharp.tsx new file mode 100644 index 000000000..b88775a59 --- /dev/null +++ b/src/IconRemoveModeratorSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRemoveModeratorSharp as default } diff --git a/src/IconRemoveModeratorTwoTone.tsx b/src/IconRemoveModeratorTwoTone.tsx new file mode 100644 index 000000000..40269a450 --- /dev/null +++ b/src/IconRemoveModeratorTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRemoveModeratorTwoTone as default } diff --git a/src/IconRemoveOutlined.tsx b/src/IconRemoveOutlined.tsx new file mode 100644 index 000000000..dd027dda5 --- /dev/null +++ b/src/IconRemoveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveOutlined as default } diff --git a/src/IconRemoveRedEyeOutlined.tsx b/src/IconRemoveRedEyeOutlined.tsx new file mode 100644 index 000000000..a0d9d99ff --- /dev/null +++ b/src/IconRemoveRedEyeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRedEyeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveRedEyeOutlined as default } diff --git a/src/IconRemoveRedEyeRound.tsx b/src/IconRemoveRedEyeRound.tsx new file mode 100644 index 000000000..51c01d87c --- /dev/null +++ b/src/IconRemoveRedEyeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRedEyeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveRedEyeRound as default } diff --git a/src/IconRemoveRedEyeSharp.tsx b/src/IconRemoveRedEyeSharp.tsx new file mode 100644 index 000000000..6a16bf815 --- /dev/null +++ b/src/IconRemoveRedEyeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRedEyeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveRedEyeSharp as default } diff --git a/src/IconRemoveRedEyeTwoTone.tsx b/src/IconRemoveRedEyeTwoTone.tsx new file mode 100644 index 000000000..43f9e209a --- /dev/null +++ b/src/IconRemoveRedEyeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRedEyeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRemoveRedEyeTwoTone as default } diff --git a/src/IconRemoveRoadOutlined.tsx b/src/IconRemoveRoadOutlined.tsx new file mode 100644 index 000000000..d4f71f2f0 --- /dev/null +++ b/src/IconRemoveRoadOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRemoveRoadOutlined as default } diff --git a/src/IconRemoveRoadRound.tsx b/src/IconRemoveRoadRound.tsx new file mode 100644 index 000000000..993df3381 --- /dev/null +++ b/src/IconRemoveRoadRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconRemoveRoadRound as default } diff --git a/src/IconRemoveRoadSharp.tsx b/src/IconRemoveRoadSharp.tsx new file mode 100644 index 000000000..960134eaa --- /dev/null +++ b/src/IconRemoveRoadSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRemoveRoadSharp as default } diff --git a/src/IconRemoveRoadTwoTone.tsx b/src/IconRemoveRoadTwoTone.tsx new file mode 100644 index 000000000..c9260a10b --- /dev/null +++ b/src/IconRemoveRoadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconRemoveRoadTwoTone as default } diff --git a/src/IconRemoveRound.tsx b/src/IconRemoveRound.tsx new file mode 100644 index 000000000..3a296bcf3 --- /dev/null +++ b/src/IconRemoveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveRound as default } diff --git a/src/IconRemoveSharp.tsx b/src/IconRemoveSharp.tsx new file mode 100644 index 000000000..fee5149e1 --- /dev/null +++ b/src/IconRemoveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveSharp as default } diff --git a/src/IconRemoveShoppingCartOutlined.tsx b/src/IconRemoveShoppingCartOutlined.tsx new file mode 100644 index 000000000..41b3c762f --- /dev/null +++ b/src/IconRemoveShoppingCartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveShoppingCartOutlined as default } diff --git a/src/IconRemoveShoppingCartRound.tsx b/src/IconRemoveShoppingCartRound.tsx new file mode 100644 index 000000000..a62ab719b --- /dev/null +++ b/src/IconRemoveShoppingCartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveShoppingCartRound as default } diff --git a/src/IconRemoveShoppingCartSharp.tsx b/src/IconRemoveShoppingCartSharp.tsx new file mode 100644 index 000000000..8a0d0506a --- /dev/null +++ b/src/IconRemoveShoppingCartSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveShoppingCartSharp as default } diff --git a/src/IconRemoveShoppingCartTwoTone.tsx b/src/IconRemoveShoppingCartTwoTone.tsx new file mode 100644 index 000000000..5c54da78a --- /dev/null +++ b/src/IconRemoveShoppingCartTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRemoveShoppingCartTwoTone as default } diff --git a/src/IconRemoveTwoTone.tsx b/src/IconRemoveTwoTone.tsx new file mode 100644 index 000000000..81f2cdcc1 --- /dev/null +++ b/src/IconRemoveTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRemoveTwoTone as default } diff --git a/src/IconReorderOutlined.tsx b/src/IconReorderOutlined.tsx new file mode 100644 index 000000000..519071661 --- /dev/null +++ b/src/IconReorderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReorderOutlined as default } diff --git a/src/IconReorderRound.tsx b/src/IconReorderRound.tsx new file mode 100644 index 000000000..d1a1c09f1 --- /dev/null +++ b/src/IconReorderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReorderRound as default } diff --git a/src/IconReorderSharp.tsx b/src/IconReorderSharp.tsx new file mode 100644 index 000000000..d7a359103 --- /dev/null +++ b/src/IconReorderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReorderSharp as default } diff --git a/src/IconReorderTwoTone.tsx b/src/IconReorderTwoTone.tsx new file mode 100644 index 000000000..1f4f676d5 --- /dev/null +++ b/src/IconReorderTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReorderTwoTone as default } diff --git a/src/IconRepartitionOutlined.tsx b/src/IconRepartitionOutlined.tsx new file mode 100644 index 000000000..3b97e3a3d --- /dev/null +++ b/src/IconRepartitionOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRepartitionOutlined as default } diff --git a/src/IconRepartitionRound.tsx b/src/IconRepartitionRound.tsx new file mode 100644 index 000000000..ec7a733a6 --- /dev/null +++ b/src/IconRepartitionRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRepartitionRound as default } diff --git a/src/IconRepartitionSharp.tsx b/src/IconRepartitionSharp.tsx new file mode 100644 index 000000000..28fb2580c --- /dev/null +++ b/src/IconRepartitionSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRepartitionSharp as default } diff --git a/src/IconRepartitionTwoTone.tsx b/src/IconRepartitionTwoTone.tsx new file mode 100644 index 000000000..a22dd4856 --- /dev/null +++ b/src/IconRepartitionTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconRepartitionTwoTone as default } diff --git a/src/IconRepeatOnOutlined.tsx b/src/IconRepeatOnOutlined.tsx new file mode 100644 index 000000000..a44ac0808 --- /dev/null +++ b/src/IconRepeatOnOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOnOutlined as default } diff --git a/src/IconRepeatOnRound.tsx b/src/IconRepeatOnRound.tsx new file mode 100644 index 000000000..ea6bfdcd4 --- /dev/null +++ b/src/IconRepeatOnRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOnRound as default } diff --git a/src/IconRepeatOnSharp.tsx b/src/IconRepeatOnSharp.tsx new file mode 100644 index 000000000..0e9d1dbf7 --- /dev/null +++ b/src/IconRepeatOnSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOnSharp as default } diff --git a/src/IconRepeatOnTwoTone.tsx b/src/IconRepeatOnTwoTone.tsx new file mode 100644 index 000000000..2e735cdec --- /dev/null +++ b/src/IconRepeatOnTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOnTwoTone as default } diff --git a/src/IconRepeatOneOnOutlined.tsx b/src/IconRepeatOneOnOutlined.tsx new file mode 100644 index 000000000..301670929 --- /dev/null +++ b/src/IconRepeatOneOnOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOneOnOutlined as default } diff --git a/src/IconRepeatOneOnRound.tsx b/src/IconRepeatOneOnRound.tsx new file mode 100644 index 000000000..2b3cf3cd0 --- /dev/null +++ b/src/IconRepeatOneOnRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOneOnRound as default } diff --git a/src/IconRepeatOneOnSharp.tsx b/src/IconRepeatOneOnSharp.tsx new file mode 100644 index 000000000..b139ecc09 --- /dev/null +++ b/src/IconRepeatOneOnSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOneOnSharp as default } diff --git a/src/IconRepeatOneOnTwoTone.tsx b/src/IconRepeatOneOnTwoTone.tsx new file mode 100644 index 000000000..08a68572c --- /dev/null +++ b/src/IconRepeatOneOnTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRepeatOneOnTwoTone as default } diff --git a/src/IconRepeatOneOutlined.tsx b/src/IconRepeatOneOutlined.tsx new file mode 100644 index 000000000..d38613c61 --- /dev/null +++ b/src/IconRepeatOneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatOneOutlined as default } diff --git a/src/IconRepeatOneRound.tsx b/src/IconRepeatOneRound.tsx new file mode 100644 index 000000000..7aa222075 --- /dev/null +++ b/src/IconRepeatOneRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneRound as default } diff --git a/src/IconRepeatOneSharp.tsx b/src/IconRepeatOneSharp.tsx new file mode 100644 index 000000000..036b81a7b --- /dev/null +++ b/src/IconRepeatOneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatOneSharp as default } diff --git a/src/IconRepeatOneTwoTone.tsx b/src/IconRepeatOneTwoTone.tsx new file mode 100644 index 000000000..e4fa66204 --- /dev/null +++ b/src/IconRepeatOneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatOneTwoTone as default } diff --git a/src/IconRepeatOutlined.tsx b/src/IconRepeatOutlined.tsx new file mode 100644 index 000000000..6a8990ff0 --- /dev/null +++ b/src/IconRepeatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatOutlined as default } diff --git a/src/IconRepeatRound.tsx b/src/IconRepeatRound.tsx new file mode 100644 index 000000000..1c9d4b214 --- /dev/null +++ b/src/IconRepeatRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatRound as default } diff --git a/src/IconRepeatSharp.tsx b/src/IconRepeatSharp.tsx new file mode 100644 index 000000000..937685191 --- /dev/null +++ b/src/IconRepeatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatSharp as default } diff --git a/src/IconRepeatTwoTone.tsx b/src/IconRepeatTwoTone.tsx new file mode 100644 index 000000000..b74a3cff7 --- /dev/null +++ b/src/IconRepeatTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRepeatTwoTone as default } diff --git a/src/IconReplay10Outlined.tsx b/src/IconReplay10Outlined.tsx new file mode 100644 index 000000000..c1986cb0b --- /dev/null +++ b/src/IconReplay10Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay10Outlined as default } diff --git a/src/IconReplay10Round.tsx b/src/IconReplay10Round.tsx new file mode 100644 index 000000000..f5b8e77b2 --- /dev/null +++ b/src/IconReplay10Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay10Round as default } diff --git a/src/IconReplay10Sharp.tsx b/src/IconReplay10Sharp.tsx new file mode 100644 index 000000000..d9ca9d81c --- /dev/null +++ b/src/IconReplay10Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay10Sharp as default } diff --git a/src/IconReplay10TwoTone.tsx b/src/IconReplay10TwoTone.tsx new file mode 100644 index 000000000..0b173e013 --- /dev/null +++ b/src/IconReplay10TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay10TwoTone as default } diff --git a/src/IconReplay30Outlined.tsx b/src/IconReplay30Outlined.tsx new file mode 100644 index 000000000..5f1faf5ff --- /dev/null +++ b/src/IconReplay30Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay30Outlined as default } diff --git a/src/IconReplay30Round.tsx b/src/IconReplay30Round.tsx new file mode 100644 index 000000000..10cfa772a --- /dev/null +++ b/src/IconReplay30Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay30Round as default } diff --git a/src/IconReplay30Sharp.tsx b/src/IconReplay30Sharp.tsx new file mode 100644 index 000000000..1b2d12d62 --- /dev/null +++ b/src/IconReplay30Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay30Sharp as default } diff --git a/src/IconReplay30TwoTone.tsx b/src/IconReplay30TwoTone.tsx new file mode 100644 index 000000000..70b72ba74 --- /dev/null +++ b/src/IconReplay30TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay30TwoTone as default } diff --git a/src/IconReplay5Outlined.tsx b/src/IconReplay5Outlined.tsx new file mode 100644 index 000000000..f73a9ab91 --- /dev/null +++ b/src/IconReplay5Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay5Outlined as default } diff --git a/src/IconReplay5Round.tsx b/src/IconReplay5Round.tsx new file mode 100644 index 000000000..97f03e569 --- /dev/null +++ b/src/IconReplay5Round.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay5Round as default } diff --git a/src/IconReplay5Sharp.tsx b/src/IconReplay5Sharp.tsx new file mode 100644 index 000000000..a7fb4a3b9 --- /dev/null +++ b/src/IconReplay5Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay5Sharp as default } diff --git a/src/IconReplay5TwoTone.tsx b/src/IconReplay5TwoTone.tsx new file mode 100644 index 000000000..7dfe85895 --- /dev/null +++ b/src/IconReplay5TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplay5TwoTone as default } diff --git a/src/IconReplayCircleFilledOutlined.tsx b/src/IconReplayCircleFilledOutlined.tsx new file mode 100644 index 000000000..2cf76e954 --- /dev/null +++ b/src/IconReplayCircleFilledOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayCircleFilledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReplayCircleFilledOutlined as default } diff --git a/src/IconReplayCircleFilledRound.tsx b/src/IconReplayCircleFilledRound.tsx new file mode 100644 index 000000000..dc6e5a024 --- /dev/null +++ b/src/IconReplayCircleFilledRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayCircleFilledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReplayCircleFilledRound as default } diff --git a/src/IconReplayCircleFilledSharp.tsx b/src/IconReplayCircleFilledSharp.tsx new file mode 100644 index 000000000..f9d3ee4ec --- /dev/null +++ b/src/IconReplayCircleFilledSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayCircleFilledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReplayCircleFilledSharp as default } diff --git a/src/IconReplayCircleFilledTwoTone.tsx b/src/IconReplayCircleFilledTwoTone.tsx new file mode 100644 index 000000000..1d9e43707 --- /dev/null +++ b/src/IconReplayCircleFilledTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayCircleFilledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReplayCircleFilledTwoTone as default } diff --git a/src/IconReplayOutlined.tsx b/src/IconReplayOutlined.tsx new file mode 100644 index 000000000..7be440208 --- /dev/null +++ b/src/IconReplayOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconReplayOutlined as default } diff --git a/src/IconReplayRound.tsx b/src/IconReplayRound.tsx new file mode 100644 index 000000000..7d21e60bb --- /dev/null +++ b/src/IconReplayRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplayRound as default } diff --git a/src/IconReplaySharp.tsx b/src/IconReplaySharp.tsx new file mode 100644 index 000000000..ebe6064a3 --- /dev/null +++ b/src/IconReplaySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconReplaySharp as default } diff --git a/src/IconReplayTwoTone.tsx b/src/IconReplayTwoTone.tsx new file mode 100644 index 000000000..6d48fe613 --- /dev/null +++ b/src/IconReplayTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconReplayTwoTone as default } diff --git a/src/IconReplyAllOutlined.tsx b/src/IconReplyAllOutlined.tsx new file mode 100644 index 000000000..6510addf0 --- /dev/null +++ b/src/IconReplyAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyAllOutlined as default } diff --git a/src/IconReplyAllRound.tsx b/src/IconReplyAllRound.tsx new file mode 100644 index 000000000..bd63b7553 --- /dev/null +++ b/src/IconReplyAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyAllRound as default } diff --git a/src/IconReplyAllSharp.tsx b/src/IconReplyAllSharp.tsx new file mode 100644 index 000000000..c80fb5133 --- /dev/null +++ b/src/IconReplyAllSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyAllSharp as default } diff --git a/src/IconReplyAllTwoTone.tsx b/src/IconReplyAllTwoTone.tsx new file mode 100644 index 000000000..f1b301b07 --- /dev/null +++ b/src/IconReplyAllTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyAllTwoTone as default } diff --git a/src/IconReplyOutlined.tsx b/src/IconReplyOutlined.tsx new file mode 100644 index 000000000..942b54d2b --- /dev/null +++ b/src/IconReplyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyOutlined as default } diff --git a/src/IconReplyRound.tsx b/src/IconReplyRound.tsx new file mode 100644 index 000000000..b17cfd0d7 --- /dev/null +++ b/src/IconReplyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyRound as default } diff --git a/src/IconReplySharp.tsx b/src/IconReplySharp.tsx new file mode 100644 index 000000000..e99bffa97 --- /dev/null +++ b/src/IconReplySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplySharp as default } diff --git a/src/IconReplyTwoTone.tsx b/src/IconReplyTwoTone.tsx new file mode 100644 index 000000000..5714ad2e8 --- /dev/null +++ b/src/IconReplyTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReplyTwoTone as default } diff --git a/src/IconReportGmailerrorredOutlined.tsx b/src/IconReportGmailerrorredOutlined.tsx new file mode 100644 index 000000000..d23539a00 --- /dev/null +++ b/src/IconReportGmailerrorredOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportGmailerrorredOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportGmailerrorredOutlined as default } diff --git a/src/IconReportGmailerrorredRound.tsx b/src/IconReportGmailerrorredRound.tsx new file mode 100644 index 000000000..2af5cc44d --- /dev/null +++ b/src/IconReportGmailerrorredRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportGmailerrorredRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportGmailerrorredRound as default } diff --git a/src/IconReportGmailerrorredSharp.tsx b/src/IconReportGmailerrorredSharp.tsx new file mode 100644 index 000000000..f0e062871 --- /dev/null +++ b/src/IconReportGmailerrorredSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportGmailerrorredSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportGmailerrorredSharp as default } diff --git a/src/IconReportGmailerrorredTwoTone.tsx b/src/IconReportGmailerrorredTwoTone.tsx new file mode 100644 index 000000000..659ee74c6 --- /dev/null +++ b/src/IconReportGmailerrorredTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportGmailerrorredTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportGmailerrorredTwoTone as default } diff --git a/src/IconReportOffOutlined.tsx b/src/IconReportOffOutlined.tsx new file mode 100644 index 000000000..54f0ee5ff --- /dev/null +++ b/src/IconReportOffOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportOffOutlined as default } diff --git a/src/IconReportOffRound.tsx b/src/IconReportOffRound.tsx new file mode 100644 index 000000000..f71b59459 --- /dev/null +++ b/src/IconReportOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportOffRound as default } diff --git a/src/IconReportOffSharp.tsx b/src/IconReportOffSharp.tsx new file mode 100644 index 000000000..9992746d4 --- /dev/null +++ b/src/IconReportOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportOffSharp as default } diff --git a/src/IconReportOffTwoTone.tsx b/src/IconReportOffTwoTone.tsx new file mode 100644 index 000000000..a13f47d72 --- /dev/null +++ b/src/IconReportOffTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconReportOffTwoTone as default } diff --git a/src/IconReportOutlined.tsx b/src/IconReportOutlined.tsx new file mode 100644 index 000000000..f5f374331 --- /dev/null +++ b/src/IconReportOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconReportOutlined as default } diff --git a/src/IconReportProblemOutlined.tsx b/src/IconReportProblemOutlined.tsx new file mode 100644 index 000000000..c4d68f7bc --- /dev/null +++ b/src/IconReportProblemOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportProblemOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportProblemOutlined as default } diff --git a/src/IconReportProblemRound.tsx b/src/IconReportProblemRound.tsx new file mode 100644 index 000000000..7700460f2 --- /dev/null +++ b/src/IconReportProblemRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportProblemRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportProblemRound as default } diff --git a/src/IconReportProblemSharp.tsx b/src/IconReportProblemSharp.tsx new file mode 100644 index 000000000..1607a056b --- /dev/null +++ b/src/IconReportProblemSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportProblemSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportProblemSharp as default } diff --git a/src/IconReportProblemTwoTone.tsx b/src/IconReportProblemTwoTone.tsx new file mode 100644 index 000000000..5ac048d33 --- /dev/null +++ b/src/IconReportProblemTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportProblemTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconReportProblemTwoTone as default } diff --git a/src/IconReportRound.tsx b/src/IconReportRound.tsx new file mode 100644 index 000000000..2cb97d959 --- /dev/null +++ b/src/IconReportRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportRound as default } diff --git a/src/IconReportSharp.tsx b/src/IconReportSharp.tsx new file mode 100644 index 000000000..e1cae81fd --- /dev/null +++ b/src/IconReportSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconReportSharp as default } diff --git a/src/IconReportTwoTone.tsx b/src/IconReportTwoTone.tsx new file mode 100644 index 000000000..fe95ee146 --- /dev/null +++ b/src/IconReportTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconReportTwoTone as default } diff --git a/src/IconRequestPageOutlined.tsx b/src/IconRequestPageOutlined.tsx new file mode 100644 index 000000000..0d8147972 --- /dev/null +++ b/src/IconRequestPageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRequestPageOutlined as default } diff --git a/src/IconRequestPageRound.tsx b/src/IconRequestPageRound.tsx new file mode 100644 index 000000000..19d67ec53 --- /dev/null +++ b/src/IconRequestPageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRequestPageRound as default } diff --git a/src/IconRequestPageSharp.tsx b/src/IconRequestPageSharp.tsx new file mode 100644 index 000000000..429d15852 --- /dev/null +++ b/src/IconRequestPageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRequestPageSharp as default } diff --git a/src/IconRequestPageTwoTone.tsx b/src/IconRequestPageTwoTone.tsx new file mode 100644 index 000000000..8cd0908d6 --- /dev/null +++ b/src/IconRequestPageTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRequestPageTwoTone as default } diff --git a/src/IconRequestQuoteOutlined.tsx b/src/IconRequestQuoteOutlined.tsx new file mode 100644 index 000000000..3e8a256a8 --- /dev/null +++ b/src/IconRequestQuoteOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRequestQuoteOutlined as default } diff --git a/src/IconRequestQuoteRound.tsx b/src/IconRequestQuoteRound.tsx new file mode 100644 index 000000000..009397436 --- /dev/null +++ b/src/IconRequestQuoteRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRequestQuoteRound as default } diff --git a/src/IconRequestQuoteSharp.tsx b/src/IconRequestQuoteSharp.tsx new file mode 100644 index 000000000..3e07c1777 --- /dev/null +++ b/src/IconRequestQuoteSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRequestQuoteSharp as default } diff --git a/src/IconRequestQuoteTwoTone.tsx b/src/IconRequestQuoteTwoTone.tsx new file mode 100644 index 000000000..e4565b7d1 --- /dev/null +++ b/src/IconRequestQuoteTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconRequestQuoteTwoTone as default } diff --git a/src/IconResetTvOutlined.tsx b/src/IconResetTvOutlined.tsx new file mode 100644 index 000000000..fad93dfb0 --- /dev/null +++ b/src/IconResetTvOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconResetTvOutlined as default } diff --git a/src/IconResetTvRound.tsx b/src/IconResetTvRound.tsx new file mode 100644 index 000000000..80347af50 --- /dev/null +++ b/src/IconResetTvRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconResetTvRound as default } diff --git a/src/IconResetTvSharp.tsx b/src/IconResetTvSharp.tsx new file mode 100644 index 000000000..680704b46 --- /dev/null +++ b/src/IconResetTvSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconResetTvSharp as default } diff --git a/src/IconResetTvTwoTone.tsx b/src/IconResetTvTwoTone.tsx new file mode 100644 index 000000000..d11f236ba --- /dev/null +++ b/src/IconResetTvTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconResetTvTwoTone as default } diff --git a/src/IconRestartAltOutlined.tsx b/src/IconRestartAltOutlined.tsx new file mode 100644 index 000000000..89e0f386d --- /dev/null +++ b/src/IconRestartAltOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRestartAltOutlined as default } diff --git a/src/IconRestartAltRound.tsx b/src/IconRestartAltRound.tsx new file mode 100644 index 000000000..91405636e --- /dev/null +++ b/src/IconRestartAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRestartAltRound as default } diff --git a/src/IconRestartAltSharp.tsx b/src/IconRestartAltSharp.tsx new file mode 100644 index 000000000..8617af726 --- /dev/null +++ b/src/IconRestartAltSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRestartAltSharp as default } diff --git a/src/IconRestartAltTwoTone.tsx b/src/IconRestartAltTwoTone.tsx new file mode 100644 index 000000000..af03b6966 --- /dev/null +++ b/src/IconRestartAltTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRestartAltTwoTone as default } diff --git a/src/IconRestaurantMenuOutlined.tsx b/src/IconRestaurantMenuOutlined.tsx new file mode 100644 index 000000000..4991e35fe --- /dev/null +++ b/src/IconRestaurantMenuOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantMenuOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantMenuOutlined as default } diff --git a/src/IconRestaurantMenuRound.tsx b/src/IconRestaurantMenuRound.tsx new file mode 100644 index 000000000..d7167ea6b --- /dev/null +++ b/src/IconRestaurantMenuRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantMenuRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantMenuRound as default } diff --git a/src/IconRestaurantMenuSharp.tsx b/src/IconRestaurantMenuSharp.tsx new file mode 100644 index 000000000..fa05f3152 --- /dev/null +++ b/src/IconRestaurantMenuSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantMenuSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantMenuSharp as default } diff --git a/src/IconRestaurantMenuTwoTone.tsx b/src/IconRestaurantMenuTwoTone.tsx new file mode 100644 index 000000000..7911861d1 --- /dev/null +++ b/src/IconRestaurantMenuTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantMenuTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantMenuTwoTone as default } diff --git a/src/IconRestaurantOutlined.tsx b/src/IconRestaurantOutlined.tsx new file mode 100644 index 000000000..71c5218de --- /dev/null +++ b/src/IconRestaurantOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantOutlined as default } diff --git a/src/IconRestaurantRound.tsx b/src/IconRestaurantRound.tsx new file mode 100644 index 000000000..a7b8f68f8 --- /dev/null +++ b/src/IconRestaurantRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantRound as default } diff --git a/src/IconRestaurantSharp.tsx b/src/IconRestaurantSharp.tsx new file mode 100644 index 000000000..83e5eb6a7 --- /dev/null +++ b/src/IconRestaurantSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantSharp as default } diff --git a/src/IconRestaurantTwoTone.tsx b/src/IconRestaurantTwoTone.tsx new file mode 100644 index 000000000..f6031a5e5 --- /dev/null +++ b/src/IconRestaurantTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestaurantTwoTone as default } diff --git a/src/IconRestoreFromTrashOutlined.tsx b/src/IconRestoreFromTrashOutlined.tsx new file mode 100644 index 000000000..49f3f496b --- /dev/null +++ b/src/IconRestoreFromTrashOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreFromTrashOutlined as default } diff --git a/src/IconRestoreFromTrashRound.tsx b/src/IconRestoreFromTrashRound.tsx new file mode 100644 index 000000000..8b7e517ba --- /dev/null +++ b/src/IconRestoreFromTrashRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreFromTrashRound as default } diff --git a/src/IconRestoreFromTrashSharp.tsx b/src/IconRestoreFromTrashSharp.tsx new file mode 100644 index 000000000..f226d94ec --- /dev/null +++ b/src/IconRestoreFromTrashSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreFromTrashSharp as default } diff --git a/src/IconRestoreFromTrashTwoTone.tsx b/src/IconRestoreFromTrashTwoTone.tsx new file mode 100644 index 000000000..c1c62a4ac --- /dev/null +++ b/src/IconRestoreFromTrashTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRestoreFromTrashTwoTone as default } diff --git a/src/IconRestoreOutlined.tsx b/src/IconRestoreOutlined.tsx new file mode 100644 index 000000000..cbede5d27 --- /dev/null +++ b/src/IconRestoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreOutlined as default } diff --git a/src/IconRestorePageOutlined.tsx b/src/IconRestorePageOutlined.tsx new file mode 100644 index 000000000..b5625b783 --- /dev/null +++ b/src/IconRestorePageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestorePageOutlined as default } diff --git a/src/IconRestorePageRound.tsx b/src/IconRestorePageRound.tsx new file mode 100644 index 000000000..0621b85c7 --- /dev/null +++ b/src/IconRestorePageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestorePageRound as default } diff --git a/src/IconRestorePageSharp.tsx b/src/IconRestorePageSharp.tsx new file mode 100644 index 000000000..7f05cedf4 --- /dev/null +++ b/src/IconRestorePageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestorePageSharp as default } diff --git a/src/IconRestorePageTwoTone.tsx b/src/IconRestorePageTwoTone.tsx new file mode 100644 index 000000000..7575cfc7a --- /dev/null +++ b/src/IconRestorePageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRestorePageTwoTone as default } diff --git a/src/IconRestoreRound.tsx b/src/IconRestoreRound.tsx new file mode 100644 index 000000000..eb1ebeeac --- /dev/null +++ b/src/IconRestoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreRound as default } diff --git a/src/IconRestoreSharp.tsx b/src/IconRestoreSharp.tsx new file mode 100644 index 000000000..7d0bd8a2a --- /dev/null +++ b/src/IconRestoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreSharp as default } diff --git a/src/IconRestoreTwoTone.tsx b/src/IconRestoreTwoTone.tsx new file mode 100644 index 000000000..b14a42767 --- /dev/null +++ b/src/IconRestoreTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRestoreTwoTone as default } diff --git a/src/IconReviewsOutlined.tsx b/src/IconReviewsOutlined.tsx new file mode 100644 index 000000000..6c68f5f32 --- /dev/null +++ b/src/IconReviewsOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconReviewsOutlined as default } diff --git a/src/IconReviewsRound.tsx b/src/IconReviewsRound.tsx new file mode 100644 index 000000000..a9d1165e6 --- /dev/null +++ b/src/IconReviewsRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReviewsRound as default } diff --git a/src/IconReviewsSharp.tsx b/src/IconReviewsSharp.tsx new file mode 100644 index 000000000..d8cf3b1c7 --- /dev/null +++ b/src/IconReviewsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconReviewsSharp as default } diff --git a/src/IconReviewsTwoTone.tsx b/src/IconReviewsTwoTone.tsx new file mode 100644 index 000000000..3cb3ce380 --- /dev/null +++ b/src/IconReviewsTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconReviewsTwoTone as default } diff --git a/src/IconRiceBowlOutlined.tsx b/src/IconRiceBowlOutlined.tsx new file mode 100644 index 000000000..c2e76eb1a --- /dev/null +++ b/src/IconRiceBowlOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRiceBowlOutlined as default } diff --git a/src/IconRiceBowlRound.tsx b/src/IconRiceBowlRound.tsx new file mode 100644 index 000000000..9d0e5b993 --- /dev/null +++ b/src/IconRiceBowlRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRiceBowlRound as default } diff --git a/src/IconRiceBowlSharp.tsx b/src/IconRiceBowlSharp.tsx new file mode 100644 index 000000000..a9e2b6838 --- /dev/null +++ b/src/IconRiceBowlSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRiceBowlSharp as default } diff --git a/src/IconRiceBowlTwoTone.tsx b/src/IconRiceBowlTwoTone.tsx new file mode 100644 index 000000000..c80684958 --- /dev/null +++ b/src/IconRiceBowlTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRiceBowlTwoTone as default } diff --git a/src/IconRingVolumeOutlined.tsx b/src/IconRingVolumeOutlined.tsx new file mode 100644 index 000000000..85ad258be --- /dev/null +++ b/src/IconRingVolumeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRingVolumeOutlined as default } diff --git a/src/IconRingVolumeRound.tsx b/src/IconRingVolumeRound.tsx new file mode 100644 index 000000000..1a1bc65f3 --- /dev/null +++ b/src/IconRingVolumeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRingVolumeRound as default } diff --git a/src/IconRingVolumeSharp.tsx b/src/IconRingVolumeSharp.tsx new file mode 100644 index 000000000..da0ca79ab --- /dev/null +++ b/src/IconRingVolumeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRingVolumeSharp as default } diff --git a/src/IconRingVolumeTwoTone.tsx b/src/IconRingVolumeTwoTone.tsx new file mode 100644 index 000000000..fe5ad1351 --- /dev/null +++ b/src/IconRingVolumeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRingVolumeTwoTone as default } diff --git a/src/IconRocketLaunchOutlined.tsx b/src/IconRocketLaunchOutlined.tsx new file mode 100644 index 000000000..d2f87a96e --- /dev/null +++ b/src/IconRocketLaunchOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRocketLaunchOutlined as default } diff --git a/src/IconRocketLaunchRound.tsx b/src/IconRocketLaunchRound.tsx new file mode 100644 index 000000000..aa0c95d09 --- /dev/null +++ b/src/IconRocketLaunchRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRocketLaunchRound as default } diff --git a/src/IconRocketLaunchSharp.tsx b/src/IconRocketLaunchSharp.tsx new file mode 100644 index 000000000..0a81170cb --- /dev/null +++ b/src/IconRocketLaunchSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRocketLaunchSharp as default } diff --git a/src/IconRocketLaunchTwoTone.tsx b/src/IconRocketLaunchTwoTone.tsx new file mode 100644 index 000000000..80f225b9e --- /dev/null +++ b/src/IconRocketLaunchTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRocketLaunchTwoTone as default } diff --git a/src/IconRocketOutlined.tsx b/src/IconRocketOutlined.tsx new file mode 100644 index 000000000..5a392a78f --- /dev/null +++ b/src/IconRocketOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRocketOutlined as default } diff --git a/src/IconRocketRound.tsx b/src/IconRocketRound.tsx new file mode 100644 index 000000000..793b2aa0b --- /dev/null +++ b/src/IconRocketRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRocketRound as default } diff --git a/src/IconRocketSharp.tsx b/src/IconRocketSharp.tsx new file mode 100644 index 000000000..5ea1175af --- /dev/null +++ b/src/IconRocketSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRocketSharp as default } diff --git a/src/IconRocketTwoTone.tsx b/src/IconRocketTwoTone.tsx new file mode 100644 index 000000000..b24dfae5b --- /dev/null +++ b/src/IconRocketTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconRocketTwoTone as default } diff --git a/src/IconRollerShadesClosedOutlined.tsx b/src/IconRollerShadesClosedOutlined.tsx new file mode 100644 index 000000000..b5e7265a1 --- /dev/null +++ b/src/IconRollerShadesClosedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRollerShadesClosedOutlined as default } diff --git a/src/IconRollerShadesClosedRound.tsx b/src/IconRollerShadesClosedRound.tsx new file mode 100644 index 000000000..7ff657319 --- /dev/null +++ b/src/IconRollerShadesClosedRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRollerShadesClosedRound as default } diff --git a/src/IconRollerShadesClosedSharp.tsx b/src/IconRollerShadesClosedSharp.tsx new file mode 100644 index 000000000..d5414a4b0 --- /dev/null +++ b/src/IconRollerShadesClosedSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRollerShadesClosedSharp as default } diff --git a/src/IconRollerShadesClosedTwoTone.tsx b/src/IconRollerShadesClosedTwoTone.tsx new file mode 100644 index 000000000..9437a8b22 --- /dev/null +++ b/src/IconRollerShadesClosedTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRollerShadesClosedTwoTone as default } diff --git a/src/IconRollerShadesOutlined.tsx b/src/IconRollerShadesOutlined.tsx new file mode 100644 index 000000000..0cc3f07ab --- /dev/null +++ b/src/IconRollerShadesOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRollerShadesOutlined as default } diff --git a/src/IconRollerShadesRound.tsx b/src/IconRollerShadesRound.tsx new file mode 100644 index 000000000..1d946e3d7 --- /dev/null +++ b/src/IconRollerShadesRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRollerShadesRound as default } diff --git a/src/IconRollerShadesSharp.tsx b/src/IconRollerShadesSharp.tsx new file mode 100644 index 000000000..4f74a3480 --- /dev/null +++ b/src/IconRollerShadesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRollerShadesSharp as default } diff --git a/src/IconRollerShadesTwoTone.tsx b/src/IconRollerShadesTwoTone.tsx new file mode 100644 index 000000000..639f1cd38 --- /dev/null +++ b/src/IconRollerShadesTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRollerShadesTwoTone as default } diff --git a/src/IconRollerSkatingOutlined.tsx b/src/IconRollerSkatingOutlined.tsx new file mode 100644 index 000000000..c4a365d40 --- /dev/null +++ b/src/IconRollerSkatingOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRollerSkatingOutlined as default } diff --git a/src/IconRollerSkatingRound.tsx b/src/IconRollerSkatingRound.tsx new file mode 100644 index 000000000..56b2fbdc4 --- /dev/null +++ b/src/IconRollerSkatingRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRollerSkatingRound as default } diff --git a/src/IconRollerSkatingSharp.tsx b/src/IconRollerSkatingSharp.tsx new file mode 100644 index 000000000..b4c989ebf --- /dev/null +++ b/src/IconRollerSkatingSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRollerSkatingSharp as default } diff --git a/src/IconRollerSkatingTwoTone.tsx b/src/IconRollerSkatingTwoTone.tsx new file mode 100644 index 000000000..25a46ee25 --- /dev/null +++ b/src/IconRollerSkatingTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconRollerSkatingTwoTone as default } diff --git a/src/IconRoofingOutlined.tsx b/src/IconRoofingOutlined.tsx new file mode 100644 index 000000000..7eb3ff44c --- /dev/null +++ b/src/IconRoofingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoofingOutlined as default } diff --git a/src/IconRoofingRound.tsx b/src/IconRoofingRound.tsx new file mode 100644 index 000000000..da567a495 --- /dev/null +++ b/src/IconRoofingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoofingRound as default } diff --git a/src/IconRoofingSharp.tsx b/src/IconRoofingSharp.tsx new file mode 100644 index 000000000..e43ec704a --- /dev/null +++ b/src/IconRoofingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoofingSharp as default } diff --git a/src/IconRoofingTwoTone.tsx b/src/IconRoofingTwoTone.tsx new file mode 100644 index 000000000..765405b1b --- /dev/null +++ b/src/IconRoofingTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRoofingTwoTone as default } diff --git a/src/IconRoomOutlined.tsx b/src/IconRoomOutlined.tsx new file mode 100644 index 000000000..cf8fd5ea9 --- /dev/null +++ b/src/IconRoomOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRoomOutlined as default } diff --git a/src/IconRoomPreferencesOutlined.tsx b/src/IconRoomPreferencesOutlined.tsx new file mode 100644 index 000000000..cb209f49c --- /dev/null +++ b/src/IconRoomPreferencesOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRoomPreferencesOutlined as default } diff --git a/src/IconRoomPreferencesRound.tsx b/src/IconRoomPreferencesRound.tsx new file mode 100644 index 000000000..55897bf97 --- /dev/null +++ b/src/IconRoomPreferencesRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRoomPreferencesRound as default } diff --git a/src/IconRoomPreferencesSharp.tsx b/src/IconRoomPreferencesSharp.tsx new file mode 100644 index 000000000..6f55a4400 --- /dev/null +++ b/src/IconRoomPreferencesSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRoomPreferencesSharp as default } diff --git a/src/IconRoomPreferencesTwoTone.tsx b/src/IconRoomPreferencesTwoTone.tsx new file mode 100644 index 000000000..1abf3866a --- /dev/null +++ b/src/IconRoomPreferencesTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconRoomPreferencesTwoTone as default } diff --git a/src/IconRoomRound.tsx b/src/IconRoomRound.tsx new file mode 100644 index 000000000..708866e4e --- /dev/null +++ b/src/IconRoomRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoomRound as default } diff --git a/src/IconRoomServiceOutlined.tsx b/src/IconRoomServiceOutlined.tsx new file mode 100644 index 000000000..b8d852479 --- /dev/null +++ b/src/IconRoomServiceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoomServiceOutlined as default } diff --git a/src/IconRoomServiceRound.tsx b/src/IconRoomServiceRound.tsx new file mode 100644 index 000000000..5058d9936 --- /dev/null +++ b/src/IconRoomServiceRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoomServiceRound as default } diff --git a/src/IconRoomServiceSharp.tsx b/src/IconRoomServiceSharp.tsx new file mode 100644 index 000000000..7e5e4571e --- /dev/null +++ b/src/IconRoomServiceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoomServiceSharp as default } diff --git a/src/IconRoomServiceTwoTone.tsx b/src/IconRoomServiceTwoTone.tsx new file mode 100644 index 000000000..23cd9a855 --- /dev/null +++ b/src/IconRoomServiceTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRoomServiceTwoTone as default } diff --git a/src/IconRoomSharp.tsx b/src/IconRoomSharp.tsx new file mode 100644 index 000000000..1ee2ed22e --- /dev/null +++ b/src/IconRoomSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoomSharp as default } diff --git a/src/IconRoomTwoTone.tsx b/src/IconRoomTwoTone.tsx new file mode 100644 index 000000000..8cb6e9238 --- /dev/null +++ b/src/IconRoomTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRoomTwoTone as default } diff --git a/src/IconRotate90DegreesCcwOutlined.tsx b/src/IconRotate90DegreesCcwOutlined.tsx new file mode 100644 index 000000000..65b097bbc --- /dev/null +++ b/src/IconRotate90DegreesCcwOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotate90DegreesCcwOutlined as default } diff --git a/src/IconRotate90DegreesCcwRound.tsx b/src/IconRotate90DegreesCcwRound.tsx new file mode 100644 index 000000000..bd51b2fb1 --- /dev/null +++ b/src/IconRotate90DegreesCcwRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotate90DegreesCcwRound as default } diff --git a/src/IconRotate90DegreesCcwSharp.tsx b/src/IconRotate90DegreesCcwSharp.tsx new file mode 100644 index 000000000..806e17cf3 --- /dev/null +++ b/src/IconRotate90DegreesCcwSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotate90DegreesCcwSharp as default } diff --git a/src/IconRotate90DegreesCcwTwoTone.tsx b/src/IconRotate90DegreesCcwTwoTone.tsx new file mode 100644 index 000000000..076cf2d09 --- /dev/null +++ b/src/IconRotate90DegreesCcwTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRotate90DegreesCcwTwoTone as default } diff --git a/src/IconRotate90DegreesCwOutlined.tsx b/src/IconRotate90DegreesCwOutlined.tsx new file mode 100644 index 000000000..ce5927ece --- /dev/null +++ b/src/IconRotate90DegreesCwOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRotate90DegreesCwOutlined as default } diff --git a/src/IconRotate90DegreesCwRound.tsx b/src/IconRotate90DegreesCwRound.tsx new file mode 100644 index 000000000..fa7c9ab95 --- /dev/null +++ b/src/IconRotate90DegreesCwRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconRotate90DegreesCwRound as default } diff --git a/src/IconRotate90DegreesCwSharp.tsx b/src/IconRotate90DegreesCwSharp.tsx new file mode 100644 index 000000000..84a13ae8a --- /dev/null +++ b/src/IconRotate90DegreesCwSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRotate90DegreesCwSharp as default } diff --git a/src/IconRotate90DegreesCwTwoTone.tsx b/src/IconRotate90DegreesCwTwoTone.tsx new file mode 100644 index 000000000..e311b5e86 --- /dev/null +++ b/src/IconRotate90DegreesCwTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRotate90DegreesCwTwoTone as default } diff --git a/src/IconRotateLeftOutlined.tsx b/src/IconRotateLeftOutlined.tsx new file mode 100644 index 000000000..aeedd8ff2 --- /dev/null +++ b/src/IconRotateLeftOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateLeftOutlined as default } diff --git a/src/IconRotateLeftRound.tsx b/src/IconRotateLeftRound.tsx new file mode 100644 index 000000000..38e8ee544 --- /dev/null +++ b/src/IconRotateLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateLeftRound as default } diff --git a/src/IconRotateLeftSharp.tsx b/src/IconRotateLeftSharp.tsx new file mode 100644 index 000000000..c4ea3738b --- /dev/null +++ b/src/IconRotateLeftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateLeftSharp as default } diff --git a/src/IconRotateLeftTwoTone.tsx b/src/IconRotateLeftTwoTone.tsx new file mode 100644 index 000000000..d2138050d --- /dev/null +++ b/src/IconRotateLeftTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateLeftTwoTone as default } diff --git a/src/IconRotateRightOutlined.tsx b/src/IconRotateRightOutlined.tsx new file mode 100644 index 000000000..b55a52936 --- /dev/null +++ b/src/IconRotateRightOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateRightOutlined as default } diff --git a/src/IconRotateRightRound.tsx b/src/IconRotateRightRound.tsx new file mode 100644 index 000000000..e40d79c27 --- /dev/null +++ b/src/IconRotateRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateRightRound as default } diff --git a/src/IconRotateRightSharp.tsx b/src/IconRotateRightSharp.tsx new file mode 100644 index 000000000..8bf414aec --- /dev/null +++ b/src/IconRotateRightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateRightSharp as default } diff --git a/src/IconRotateRightTwoTone.tsx b/src/IconRotateRightTwoTone.tsx new file mode 100644 index 000000000..a3f5b637e --- /dev/null +++ b/src/IconRotateRightTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRotateRightTwoTone as default } diff --git a/src/IconRoundaboutLeftOutlined.tsx b/src/IconRoundaboutLeftOutlined.tsx new file mode 100644 index 000000000..cffc985b1 --- /dev/null +++ b/src/IconRoundaboutLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutLeftOutlined as default } diff --git a/src/IconRoundaboutLeftRound.tsx b/src/IconRoundaboutLeftRound.tsx new file mode 100644 index 000000000..215eac74a --- /dev/null +++ b/src/IconRoundaboutLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRoundaboutLeftRound as default } diff --git a/src/IconRoundaboutLeftSharp.tsx b/src/IconRoundaboutLeftSharp.tsx new file mode 100644 index 000000000..838f7040e --- /dev/null +++ b/src/IconRoundaboutLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutLeftSharp as default } diff --git a/src/IconRoundaboutLeftTwoTone.tsx b/src/IconRoundaboutLeftTwoTone.tsx new file mode 100644 index 000000000..2bdb8d6ab --- /dev/null +++ b/src/IconRoundaboutLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutLeftTwoTone as default } diff --git a/src/IconRoundaboutRightOutlined.tsx b/src/IconRoundaboutRightOutlined.tsx new file mode 100644 index 000000000..5e827051c --- /dev/null +++ b/src/IconRoundaboutRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutRightOutlined as default } diff --git a/src/IconRoundaboutRightRound.tsx b/src/IconRoundaboutRightRound.tsx new file mode 100644 index 000000000..a69bd6c2f --- /dev/null +++ b/src/IconRoundaboutRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRoundaboutRightRound as default } diff --git a/src/IconRoundaboutRightSharp.tsx b/src/IconRoundaboutRightSharp.tsx new file mode 100644 index 000000000..3bc9388cd --- /dev/null +++ b/src/IconRoundaboutRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutRightSharp as default } diff --git a/src/IconRoundaboutRightTwoTone.tsx b/src/IconRoundaboutRightTwoTone.tsx new file mode 100644 index 000000000..b41fc185a --- /dev/null +++ b/src/IconRoundaboutRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRoundaboutRightTwoTone as default } diff --git a/src/IconRoundedCornerOutlined.tsx b/src/IconRoundedCornerOutlined.tsx new file mode 100644 index 000000000..af98428fc --- /dev/null +++ b/src/IconRoundedCornerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoundedCornerOutlined as default } diff --git a/src/IconRoundedCornerRound.tsx b/src/IconRoundedCornerRound.tsx new file mode 100644 index 000000000..23505e83a --- /dev/null +++ b/src/IconRoundedCornerRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoundedCornerRound as default } diff --git a/src/IconRoundedCornerSharp.tsx b/src/IconRoundedCornerSharp.tsx new file mode 100644 index 000000000..8311b8d7f --- /dev/null +++ b/src/IconRoundedCornerSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRoundedCornerSharp as default } diff --git a/src/IconRoundedCornerTwoTone.tsx b/src/IconRoundedCornerTwoTone.tsx new file mode 100644 index 000000000..738083ab4 --- /dev/null +++ b/src/IconRoundedCornerTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRoundedCornerTwoTone as default } diff --git a/src/IconRouteOutlined.tsx b/src/IconRouteOutlined.tsx new file mode 100644 index 000000000..393b391bc --- /dev/null +++ b/src/IconRouteOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRouteOutlined as default } diff --git a/src/IconRouteRound.tsx b/src/IconRouteRound.tsx new file mode 100644 index 000000000..ee5088730 --- /dev/null +++ b/src/IconRouteRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconRouteRound as default } diff --git a/src/IconRouteSharp.tsx b/src/IconRouteSharp.tsx new file mode 100644 index 000000000..eea233302 --- /dev/null +++ b/src/IconRouteSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRouteSharp as default } diff --git a/src/IconRouteTwoTone.tsx b/src/IconRouteTwoTone.tsx new file mode 100644 index 000000000..1259758ce --- /dev/null +++ b/src/IconRouteTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRouteTwoTone as default } diff --git a/src/IconRouterOutlined.tsx b/src/IconRouterOutlined.tsx new file mode 100644 index 000000000..1bae4bf61 --- /dev/null +++ b/src/IconRouterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRouterOutlined as default } diff --git a/src/IconRouterRound.tsx b/src/IconRouterRound.tsx new file mode 100644 index 000000000..56a15f237 --- /dev/null +++ b/src/IconRouterRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouterRound as default } diff --git a/src/IconRouterSharp.tsx b/src/IconRouterSharp.tsx new file mode 100644 index 000000000..2c1777892 --- /dev/null +++ b/src/IconRouterSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRouterSharp as default } diff --git a/src/IconRouterTwoTone.tsx b/src/IconRouterTwoTone.tsx new file mode 100644 index 000000000..0d3048845 --- /dev/null +++ b/src/IconRouterTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRouterTwoTone as default } diff --git a/src/IconRowingOutlined.tsx b/src/IconRowingOutlined.tsx new file mode 100644 index 000000000..59ad7a993 --- /dev/null +++ b/src/IconRowingOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRowingOutlined as default } diff --git a/src/IconRowingRound.tsx b/src/IconRowingRound.tsx new file mode 100644 index 000000000..2d6dfcd8d --- /dev/null +++ b/src/IconRowingRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRowingRound as default } diff --git a/src/IconRowingSharp.tsx b/src/IconRowingSharp.tsx new file mode 100644 index 000000000..076d726f2 --- /dev/null +++ b/src/IconRowingSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRowingSharp as default } diff --git a/src/IconRowingTwoTone.tsx b/src/IconRowingTwoTone.tsx new file mode 100644 index 000000000..26d53ef62 --- /dev/null +++ b/src/IconRowingTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRowingTwoTone as default } diff --git a/src/IconRssFeedOutlined.tsx b/src/IconRssFeedOutlined.tsx new file mode 100644 index 000000000..a32ac99b9 --- /dev/null +++ b/src/IconRssFeedOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRssFeedOutlined as default } diff --git a/src/IconRssFeedRound.tsx b/src/IconRssFeedRound.tsx new file mode 100644 index 000000000..9876ae6b0 --- /dev/null +++ b/src/IconRssFeedRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRssFeedRound as default } diff --git a/src/IconRssFeedSharp.tsx b/src/IconRssFeedSharp.tsx new file mode 100644 index 000000000..1e467e659 --- /dev/null +++ b/src/IconRssFeedSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRssFeedSharp as default } diff --git a/src/IconRssFeedTwoTone.tsx b/src/IconRssFeedTwoTone.tsx new file mode 100644 index 000000000..44bd52517 --- /dev/null +++ b/src/IconRssFeedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRssFeedTwoTone as default } diff --git a/src/IconRsvpOutlined.tsx b/src/IconRsvpOutlined.tsx new file mode 100644 index 000000000..2de55b5c9 --- /dev/null +++ b/src/IconRsvpOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRsvpOutlined as default } diff --git a/src/IconRsvpRound.tsx b/src/IconRsvpRound.tsx new file mode 100644 index 000000000..a6c1f6435 --- /dev/null +++ b/src/IconRsvpRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRsvpRound as default } diff --git a/src/IconRsvpSharp.tsx b/src/IconRsvpSharp.tsx new file mode 100644 index 000000000..bf5f068f7 --- /dev/null +++ b/src/IconRsvpSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRsvpSharp as default } diff --git a/src/IconRsvpTwoTone.tsx b/src/IconRsvpTwoTone.tsx new file mode 100644 index 000000000..579c55e86 --- /dev/null +++ b/src/IconRsvpTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconRsvpTwoTone as default } diff --git a/src/IconRttOutlined.tsx b/src/IconRttOutlined.tsx new file mode 100644 index 000000000..66b0d4949 --- /dev/null +++ b/src/IconRttOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRttOutlined as default } diff --git a/src/IconRttRound.tsx b/src/IconRttRound.tsx new file mode 100644 index 000000000..18d51c599 --- /dev/null +++ b/src/IconRttRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRttRound as default } diff --git a/src/IconRttSharp.tsx b/src/IconRttSharp.tsx new file mode 100644 index 000000000..88cc9b650 --- /dev/null +++ b/src/IconRttSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRttSharp as default } diff --git a/src/IconRttTwoTone.tsx b/src/IconRttTwoTone.tsx new file mode 100644 index 000000000..ef8f21ff3 --- /dev/null +++ b/src/IconRttTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRttTwoTone as default } diff --git a/src/IconRuleFolderOutlined.tsx b/src/IconRuleFolderOutlined.tsx new file mode 100644 index 000000000..dd51f659f --- /dev/null +++ b/src/IconRuleFolderOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleFolderOutlined as default } diff --git a/src/IconRuleFolderRound.tsx b/src/IconRuleFolderRound.tsx new file mode 100644 index 000000000..05cb86e11 --- /dev/null +++ b/src/IconRuleFolderRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleFolderRound as default } diff --git a/src/IconRuleFolderSharp.tsx b/src/IconRuleFolderSharp.tsx new file mode 100644 index 000000000..b592f7fea --- /dev/null +++ b/src/IconRuleFolderSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleFolderSharp as default } diff --git a/src/IconRuleFolderTwoTone.tsx b/src/IconRuleFolderTwoTone.tsx new file mode 100644 index 000000000..55544e691 --- /dev/null +++ b/src/IconRuleFolderTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconRuleFolderTwoTone as default } diff --git a/src/IconRuleOutlined.tsx b/src/IconRuleOutlined.tsx new file mode 100644 index 000000000..16a269a65 --- /dev/null +++ b/src/IconRuleOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleOutlined as default } diff --git a/src/IconRuleRound.tsx b/src/IconRuleRound.tsx new file mode 100644 index 000000000..8b336e103 --- /dev/null +++ b/src/IconRuleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleRound as default } diff --git a/src/IconRuleSharp.tsx b/src/IconRuleSharp.tsx new file mode 100644 index 000000000..bbff304ec --- /dev/null +++ b/src/IconRuleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleSharp as default } diff --git a/src/IconRuleTwoTone.tsx b/src/IconRuleTwoTone.tsx new file mode 100644 index 000000000..8df9e4492 --- /dev/null +++ b/src/IconRuleTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconRuleTwoTone as default } diff --git a/src/IconRunCircleOutlined.tsx b/src/IconRunCircleOutlined.tsx new file mode 100644 index 000000000..e4a6adff6 --- /dev/null +++ b/src/IconRunCircleOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconRunCircleOutlined as default } diff --git a/src/IconRunCircleRound.tsx b/src/IconRunCircleRound.tsx new file mode 100644 index 000000000..93b3a1902 --- /dev/null +++ b/src/IconRunCircleRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconRunCircleRound as default } diff --git a/src/IconRunCircleSharp.tsx b/src/IconRunCircleSharp.tsx new file mode 100644 index 000000000..b180a772d --- /dev/null +++ b/src/IconRunCircleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconRunCircleSharp as default } diff --git a/src/IconRunCircleTwoTone.tsx b/src/IconRunCircleTwoTone.tsx new file mode 100644 index 000000000..a09f5fdac --- /dev/null +++ b/src/IconRunCircleTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconRunCircleTwoTone as default } diff --git a/src/IconRunningWithErrorsOutlined.tsx b/src/IconRunningWithErrorsOutlined.tsx new file mode 100644 index 000000000..4e6540f7c --- /dev/null +++ b/src/IconRunningWithErrorsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRunningWithErrorsOutlined as default } diff --git a/src/IconRunningWithErrorsRound.tsx b/src/IconRunningWithErrorsRound.tsx new file mode 100644 index 000000000..cbef5cf1f --- /dev/null +++ b/src/IconRunningWithErrorsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRunningWithErrorsRound as default } diff --git a/src/IconRunningWithErrorsSharp.tsx b/src/IconRunningWithErrorsSharp.tsx new file mode 100644 index 000000000..167336d15 --- /dev/null +++ b/src/IconRunningWithErrorsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRunningWithErrorsSharp as default } diff --git a/src/IconRunningWithErrorsTwoTone.tsx b/src/IconRunningWithErrorsTwoTone.tsx new file mode 100644 index 000000000..011c67a2d --- /dev/null +++ b/src/IconRunningWithErrorsTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRunningWithErrorsTwoTone as default } diff --git a/src/IconRvHookupOutlined.tsx b/src/IconRvHookupOutlined.tsx new file mode 100644 index 000000000..737ca8da8 --- /dev/null +++ b/src/IconRvHookupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRvHookupOutlined as default } diff --git a/src/IconRvHookupRound.tsx b/src/IconRvHookupRound.tsx new file mode 100644 index 000000000..dba4417fb --- /dev/null +++ b/src/IconRvHookupRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRvHookupRound as default } diff --git a/src/IconRvHookupSharp.tsx b/src/IconRvHookupSharp.tsx new file mode 100644 index 000000000..a6652d887 --- /dev/null +++ b/src/IconRvHookupSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconRvHookupSharp as default } diff --git a/src/IconRvHookupTwoTone.tsx b/src/IconRvHookupTwoTone.tsx new file mode 100644 index 000000000..244a06711 --- /dev/null +++ b/src/IconRvHookupTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconRvHookupTwoTone as default } diff --git a/src/IconSafetyCheckOutlined.tsx b/src/IconSafetyCheckOutlined.tsx new file mode 100644 index 000000000..432540dd5 --- /dev/null +++ b/src/IconSafetyCheckOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSafetyCheckOutlined as default } diff --git a/src/IconSafetyCheckRound.tsx b/src/IconSafetyCheckRound.tsx new file mode 100644 index 000000000..b796216de --- /dev/null +++ b/src/IconSafetyCheckRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSafetyCheckRound as default } diff --git a/src/IconSafetyCheckSharp.tsx b/src/IconSafetyCheckSharp.tsx new file mode 100644 index 000000000..ba5679a31 --- /dev/null +++ b/src/IconSafetyCheckSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSafetyCheckSharp as default } diff --git a/src/IconSafetyCheckTwoTone.tsx b/src/IconSafetyCheckTwoTone.tsx new file mode 100644 index 000000000..519a5176d --- /dev/null +++ b/src/IconSafetyCheckTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSafetyCheckTwoTone as default } diff --git a/src/IconSafetyDividerOutlined.tsx b/src/IconSafetyDividerOutlined.tsx new file mode 100644 index 000000000..fad42daf1 --- /dev/null +++ b/src/IconSafetyDividerOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSafetyDividerOutlined as default } diff --git a/src/IconSafetyDividerRound.tsx b/src/IconSafetyDividerRound.tsx new file mode 100644 index 000000000..c9d1b58ac --- /dev/null +++ b/src/IconSafetyDividerRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSafetyDividerRound as default } diff --git a/src/IconSafetyDividerSharp.tsx b/src/IconSafetyDividerSharp.tsx new file mode 100644 index 000000000..c5dcdf596 --- /dev/null +++ b/src/IconSafetyDividerSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSafetyDividerSharp as default } diff --git a/src/IconSafetyDividerTwoTone.tsx b/src/IconSafetyDividerTwoTone.tsx new file mode 100644 index 000000000..3cb62fc2d --- /dev/null +++ b/src/IconSafetyDividerTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSafetyDividerTwoTone as default } diff --git a/src/IconSailingOutlined.tsx b/src/IconSailingOutlined.tsx new file mode 100644 index 000000000..322c40fd6 --- /dev/null +++ b/src/IconSailingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSailingOutlined as default } diff --git a/src/IconSailingRound.tsx b/src/IconSailingRound.tsx new file mode 100644 index 000000000..f1c82c113 --- /dev/null +++ b/src/IconSailingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSailingRound as default } diff --git a/src/IconSailingSharp.tsx b/src/IconSailingSharp.tsx new file mode 100644 index 000000000..018ad4ea9 --- /dev/null +++ b/src/IconSailingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSailingSharp as default } diff --git a/src/IconSailingTwoTone.tsx b/src/IconSailingTwoTone.tsx new file mode 100644 index 000000000..f9415484f --- /dev/null +++ b/src/IconSailingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSailingTwoTone as default } diff --git a/src/IconSanitizerOutlined.tsx b/src/IconSanitizerOutlined.tsx new file mode 100644 index 000000000..c42f560ee --- /dev/null +++ b/src/IconSanitizerOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSanitizerOutlined as default } diff --git a/src/IconSanitizerRound.tsx b/src/IconSanitizerRound.tsx new file mode 100644 index 000000000..26379b53b --- /dev/null +++ b/src/IconSanitizerRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSanitizerRound as default } diff --git a/src/IconSanitizerSharp.tsx b/src/IconSanitizerSharp.tsx new file mode 100644 index 000000000..6c55bca11 --- /dev/null +++ b/src/IconSanitizerSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSanitizerSharp as default } diff --git a/src/IconSanitizerTwoTone.tsx b/src/IconSanitizerTwoTone.tsx new file mode 100644 index 000000000..23af13c6e --- /dev/null +++ b/src/IconSanitizerTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSanitizerTwoTone as default } diff --git a/src/IconSatelliteAltOutlined.tsx b/src/IconSatelliteAltOutlined.tsx new file mode 100644 index 000000000..0d6a58dd4 --- /dev/null +++ b/src/IconSatelliteAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSatelliteAltOutlined as default } diff --git a/src/IconSatelliteAltRound.tsx b/src/IconSatelliteAltRound.tsx new file mode 100644 index 000000000..f28a8e17f --- /dev/null +++ b/src/IconSatelliteAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSatelliteAltRound as default } diff --git a/src/IconSatelliteAltSharp.tsx b/src/IconSatelliteAltSharp.tsx new file mode 100644 index 000000000..32272ac11 --- /dev/null +++ b/src/IconSatelliteAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSatelliteAltSharp as default } diff --git a/src/IconSatelliteAltTwoTone.tsx b/src/IconSatelliteAltTwoTone.tsx new file mode 100644 index 000000000..082174fed --- /dev/null +++ b/src/IconSatelliteAltTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSatelliteAltTwoTone as default } diff --git a/src/IconSatelliteOutlined.tsx b/src/IconSatelliteOutlined.tsx new file mode 100644 index 000000000..f1cb9fd1a --- /dev/null +++ b/src/IconSatelliteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSatelliteOutlined as default } diff --git a/src/IconSatelliteRound.tsx b/src/IconSatelliteRound.tsx new file mode 100644 index 000000000..d7f44ca2a --- /dev/null +++ b/src/IconSatelliteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSatelliteRound as default } diff --git a/src/IconSatelliteSharp.tsx b/src/IconSatelliteSharp.tsx new file mode 100644 index 000000000..ee914b851 --- /dev/null +++ b/src/IconSatelliteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSatelliteSharp as default } diff --git a/src/IconSatelliteTwoTone.tsx b/src/IconSatelliteTwoTone.tsx new file mode 100644 index 000000000..8f6776879 --- /dev/null +++ b/src/IconSatelliteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSatelliteTwoTone as default } diff --git a/src/IconSaveAltOutlined.tsx b/src/IconSaveAltOutlined.tsx new file mode 100644 index 000000000..cc3ac0246 --- /dev/null +++ b/src/IconSaveAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveAltOutlined as default } diff --git a/src/IconSaveAltRound.tsx b/src/IconSaveAltRound.tsx new file mode 100644 index 000000000..61feffc17 --- /dev/null +++ b/src/IconSaveAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveAltRound as default } diff --git a/src/IconSaveAltSharp.tsx b/src/IconSaveAltSharp.tsx new file mode 100644 index 000000000..676de3471 --- /dev/null +++ b/src/IconSaveAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveAltSharp as default } diff --git a/src/IconSaveAltTwoTone.tsx b/src/IconSaveAltTwoTone.tsx new file mode 100644 index 000000000..f30de00d6 --- /dev/null +++ b/src/IconSaveAltTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveAltTwoTone as default } diff --git a/src/IconSaveAsOutlined.tsx b/src/IconSaveAsOutlined.tsx new file mode 100644 index 000000000..82e04af1f --- /dev/null +++ b/src/IconSaveAsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSaveAsOutlined as default } diff --git a/src/IconSaveAsRound.tsx b/src/IconSaveAsRound.tsx new file mode 100644 index 000000000..2f93ef85d --- /dev/null +++ b/src/IconSaveAsRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSaveAsRound as default } diff --git a/src/IconSaveAsSharp.tsx b/src/IconSaveAsSharp.tsx new file mode 100644 index 000000000..5df786132 --- /dev/null +++ b/src/IconSaveAsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSaveAsSharp as default } diff --git a/src/IconSaveAsTwoTone.tsx b/src/IconSaveAsTwoTone.tsx new file mode 100644 index 000000000..a89c88273 --- /dev/null +++ b/src/IconSaveAsTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSaveAsTwoTone as default } diff --git a/src/IconSaveOutlined.tsx b/src/IconSaveOutlined.tsx new file mode 100644 index 000000000..680732f99 --- /dev/null +++ b/src/IconSaveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveOutlined as default } diff --git a/src/IconSaveRound.tsx b/src/IconSaveRound.tsx new file mode 100644 index 000000000..82e465c96 --- /dev/null +++ b/src/IconSaveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveRound as default } diff --git a/src/IconSaveSharp.tsx b/src/IconSaveSharp.tsx new file mode 100644 index 000000000..6f3458174 --- /dev/null +++ b/src/IconSaveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSaveSharp as default } diff --git a/src/IconSaveTwoTone.tsx b/src/IconSaveTwoTone.tsx new file mode 100644 index 000000000..6e7b5eaa3 --- /dev/null +++ b/src/IconSaveTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSaveTwoTone as default } diff --git a/src/IconSavedSearchOutlined.tsx b/src/IconSavedSearchOutlined.tsx new file mode 100644 index 000000000..93d4a4713 --- /dev/null +++ b/src/IconSavedSearchOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSavedSearchOutlined as default } diff --git a/src/IconSavedSearchRound.tsx b/src/IconSavedSearchRound.tsx new file mode 100644 index 000000000..0101a2e34 --- /dev/null +++ b/src/IconSavedSearchRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSavedSearchRound as default } diff --git a/src/IconSavedSearchSharp.tsx b/src/IconSavedSearchSharp.tsx new file mode 100644 index 000000000..372e484f0 --- /dev/null +++ b/src/IconSavedSearchSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSavedSearchSharp as default } diff --git a/src/IconSavedSearchTwoTone.tsx b/src/IconSavedSearchTwoTone.tsx new file mode 100644 index 000000000..33e7ef392 --- /dev/null +++ b/src/IconSavedSearchTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSavedSearchTwoTone as default } diff --git a/src/IconSavingsOutlined.tsx b/src/IconSavingsOutlined.tsx new file mode 100644 index 000000000..072695a68 --- /dev/null +++ b/src/IconSavingsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSavingsOutlined as default } diff --git a/src/IconSavingsRound.tsx b/src/IconSavingsRound.tsx new file mode 100644 index 000000000..2be34e69c --- /dev/null +++ b/src/IconSavingsRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSavingsRound as default } diff --git a/src/IconSavingsSharp.tsx b/src/IconSavingsSharp.tsx new file mode 100644 index 000000000..a3e18c292 --- /dev/null +++ b/src/IconSavingsSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSavingsSharp as default } diff --git a/src/IconSavingsTwoTone.tsx b/src/IconSavingsTwoTone.tsx new file mode 100644 index 000000000..e94863feb --- /dev/null +++ b/src/IconSavingsTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSavingsTwoTone as default } diff --git a/src/IconScaleOutlined.tsx b/src/IconScaleOutlined.tsx new file mode 100644 index 000000000..200d5c00c --- /dev/null +++ b/src/IconScaleOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScaleOutlined as default } diff --git a/src/IconScaleRound.tsx b/src/IconScaleRound.tsx new file mode 100644 index 000000000..1f6668866 --- /dev/null +++ b/src/IconScaleRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScaleRound as default } diff --git a/src/IconScaleSharp.tsx b/src/IconScaleSharp.tsx new file mode 100644 index 000000000..22f4c9300 --- /dev/null +++ b/src/IconScaleSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScaleSharp as default } diff --git a/src/IconScaleTwoTone.tsx b/src/IconScaleTwoTone.tsx new file mode 100644 index 000000000..1f2ab5d8c --- /dev/null +++ b/src/IconScaleTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconScaleTwoTone as default } diff --git a/src/IconScannerOutlined.tsx b/src/IconScannerOutlined.tsx new file mode 100644 index 000000000..a56710faf --- /dev/null +++ b/src/IconScannerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScannerOutlined as default } diff --git a/src/IconScannerRound.tsx b/src/IconScannerRound.tsx new file mode 100644 index 000000000..fe7bc45fc --- /dev/null +++ b/src/IconScannerRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScannerRound as default } diff --git a/src/IconScannerSharp.tsx b/src/IconScannerSharp.tsx new file mode 100644 index 000000000..335cb87cc --- /dev/null +++ b/src/IconScannerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScannerSharp as default } diff --git a/src/IconScannerTwoTone.tsx b/src/IconScannerTwoTone.tsx new file mode 100644 index 000000000..876876f23 --- /dev/null +++ b/src/IconScannerTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScannerTwoTone as default } diff --git a/src/IconScatterPlotOutlined.tsx b/src/IconScatterPlotOutlined.tsx new file mode 100644 index 000000000..24a073162 --- /dev/null +++ b/src/IconScatterPlotOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScatterPlotOutlined as default } diff --git a/src/IconScatterPlotRound.tsx b/src/IconScatterPlotRound.tsx new file mode 100644 index 000000000..13821071d --- /dev/null +++ b/src/IconScatterPlotRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconScatterPlotRound as default } diff --git a/src/IconScatterPlotSharp.tsx b/src/IconScatterPlotSharp.tsx new file mode 100644 index 000000000..575f1c924 --- /dev/null +++ b/src/IconScatterPlotSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScatterPlotSharp as default } diff --git a/src/IconScatterPlotTwoTone.tsx b/src/IconScatterPlotTwoTone.tsx new file mode 100644 index 000000000..fcfda05a3 --- /dev/null +++ b/src/IconScatterPlotTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconScatterPlotTwoTone as default } diff --git a/src/IconScheduleOutlined.tsx b/src/IconScheduleOutlined.tsx new file mode 100644 index 000000000..77b782bb2 --- /dev/null +++ b/src/IconScheduleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScheduleOutlined as default } diff --git a/src/IconScheduleRound.tsx b/src/IconScheduleRound.tsx new file mode 100644 index 000000000..977d08de4 --- /dev/null +++ b/src/IconScheduleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScheduleRound as default } diff --git a/src/IconScheduleSendOutlined.tsx b/src/IconScheduleSendOutlined.tsx new file mode 100644 index 000000000..32c65afb2 --- /dev/null +++ b/src/IconScheduleSendOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconScheduleSendOutlined as default } diff --git a/src/IconScheduleSendRound.tsx b/src/IconScheduleSendRound.tsx new file mode 100644 index 000000000..34a69e188 --- /dev/null +++ b/src/IconScheduleSendRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconScheduleSendRound as default } diff --git a/src/IconScheduleSendSharp.tsx b/src/IconScheduleSendSharp.tsx new file mode 100644 index 000000000..eb8291cae --- /dev/null +++ b/src/IconScheduleSendSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconScheduleSendSharp as default } diff --git a/src/IconScheduleSendTwoTone.tsx b/src/IconScheduleSendTwoTone.tsx new file mode 100644 index 000000000..427e04a11 --- /dev/null +++ b/src/IconScheduleSendTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScheduleSendTwoTone as default } diff --git a/src/IconScheduleSharp.tsx b/src/IconScheduleSharp.tsx new file mode 100644 index 000000000..1ebc1c621 --- /dev/null +++ b/src/IconScheduleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScheduleSharp as default } diff --git a/src/IconScheduleTwoTone.tsx b/src/IconScheduleTwoTone.tsx new file mode 100644 index 000000000..828f81884 --- /dev/null +++ b/src/IconScheduleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScheduleTwoTone as default } diff --git a/src/IconSchemaOutlined.tsx b/src/IconSchemaOutlined.tsx new file mode 100644 index 000000000..2126ded6d --- /dev/null +++ b/src/IconSchemaOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchemaOutlined as default } diff --git a/src/IconSchemaRound.tsx b/src/IconSchemaRound.tsx new file mode 100644 index 000000000..fed1bb26d --- /dev/null +++ b/src/IconSchemaRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchemaRound as default } diff --git a/src/IconSchemaSharp.tsx b/src/IconSchemaSharp.tsx new file mode 100644 index 000000000..6aff23ce8 --- /dev/null +++ b/src/IconSchemaSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchemaSharp as default } diff --git a/src/IconSchemaTwoTone.tsx b/src/IconSchemaTwoTone.tsx new file mode 100644 index 000000000..6a1df7e5f --- /dev/null +++ b/src/IconSchemaTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSchemaTwoTone as default } diff --git a/src/IconSchoolOutlined.tsx b/src/IconSchoolOutlined.tsx new file mode 100644 index 000000000..3f5a7bbe8 --- /dev/null +++ b/src/IconSchoolOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchoolOutlined as default } diff --git a/src/IconSchoolRound.tsx b/src/IconSchoolRound.tsx new file mode 100644 index 000000000..69b428a10 --- /dev/null +++ b/src/IconSchoolRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchoolRound as default } diff --git a/src/IconSchoolSharp.tsx b/src/IconSchoolSharp.tsx new file mode 100644 index 000000000..b452f7cd5 --- /dev/null +++ b/src/IconSchoolSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSchoolSharp as default } diff --git a/src/IconSchoolTwoTone.tsx b/src/IconSchoolTwoTone.tsx new file mode 100644 index 000000000..29d504e88 --- /dev/null +++ b/src/IconSchoolTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSchoolTwoTone as default } diff --git a/src/IconScienceOutlined.tsx b/src/IconScienceOutlined.tsx new file mode 100644 index 000000000..78579ab88 --- /dev/null +++ b/src/IconScienceOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScienceOutlined as default } diff --git a/src/IconScienceRound.tsx b/src/IconScienceRound.tsx new file mode 100644 index 000000000..7a285f904 --- /dev/null +++ b/src/IconScienceRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScienceRound as default } diff --git a/src/IconScienceSharp.tsx b/src/IconScienceSharp.tsx new file mode 100644 index 000000000..171e4e7c0 --- /dev/null +++ b/src/IconScienceSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScienceSharp as default } diff --git a/src/IconScienceTwoTone.tsx b/src/IconScienceTwoTone.tsx new file mode 100644 index 000000000..e32e8a116 --- /dev/null +++ b/src/IconScienceTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconScienceTwoTone as default } diff --git a/src/IconScoreOutlined.tsx b/src/IconScoreOutlined.tsx new file mode 100644 index 000000000..4f0ec5ec2 --- /dev/null +++ b/src/IconScoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScoreOutlined as default } diff --git a/src/IconScoreRound.tsx b/src/IconScoreRound.tsx new file mode 100644 index 000000000..28419bb36 --- /dev/null +++ b/src/IconScoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScoreRound as default } diff --git a/src/IconScoreSharp.tsx b/src/IconScoreSharp.tsx new file mode 100644 index 000000000..230525d19 --- /dev/null +++ b/src/IconScoreSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreSharp as default } diff --git a/src/IconScoreTwoTone.tsx b/src/IconScoreTwoTone.tsx new file mode 100644 index 000000000..bc6cbcd4c --- /dev/null +++ b/src/IconScoreTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScoreTwoTone as default } diff --git a/src/IconScoreboardOutlined.tsx b/src/IconScoreboardOutlined.tsx new file mode 100644 index 000000000..7f0700333 --- /dev/null +++ b/src/IconScoreboardOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScoreboardOutlined as default } diff --git a/src/IconScoreboardRound.tsx b/src/IconScoreboardRound.tsx new file mode 100644 index 000000000..1fcb3b1de --- /dev/null +++ b/src/IconScoreboardRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconScoreboardRound as default } diff --git a/src/IconScoreboardSharp.tsx b/src/IconScoreboardSharp.tsx new file mode 100644 index 000000000..446b58537 --- /dev/null +++ b/src/IconScoreboardSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScoreboardSharp as default } diff --git a/src/IconScoreboardTwoTone.tsx b/src/IconScoreboardTwoTone.tsx new file mode 100644 index 000000000..3f38052a7 --- /dev/null +++ b/src/IconScoreboardTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconScoreboardTwoTone as default } diff --git a/src/IconScreenLockLandscapeOutlined.tsx b/src/IconScreenLockLandscapeOutlined.tsx new file mode 100644 index 000000000..66b33b2a6 --- /dev/null +++ b/src/IconScreenLockLandscapeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockLandscapeOutlined as default } diff --git a/src/IconScreenLockLandscapeRound.tsx b/src/IconScreenLockLandscapeRound.tsx new file mode 100644 index 000000000..20d995622 --- /dev/null +++ b/src/IconScreenLockLandscapeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconScreenLockLandscapeRound as default } diff --git a/src/IconScreenLockLandscapeSharp.tsx b/src/IconScreenLockLandscapeSharp.tsx new file mode 100644 index 000000000..242318df3 --- /dev/null +++ b/src/IconScreenLockLandscapeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockLandscapeSharp as default } diff --git a/src/IconScreenLockLandscapeTwoTone.tsx b/src/IconScreenLockLandscapeTwoTone.tsx new file mode 100644 index 000000000..f8d38a239 --- /dev/null +++ b/src/IconScreenLockLandscapeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScreenLockLandscapeTwoTone as default } diff --git a/src/IconScreenLockPortraitOutlined.tsx b/src/IconScreenLockPortraitOutlined.tsx new file mode 100644 index 000000000..4664c37ee --- /dev/null +++ b/src/IconScreenLockPortraitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockPortraitOutlined as default } diff --git a/src/IconScreenLockPortraitRound.tsx b/src/IconScreenLockPortraitRound.tsx new file mode 100644 index 000000000..29dd5c057 --- /dev/null +++ b/src/IconScreenLockPortraitRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenLockPortraitRound as default } diff --git a/src/IconScreenLockPortraitSharp.tsx b/src/IconScreenLockPortraitSharp.tsx new file mode 100644 index 000000000..fda1646ca --- /dev/null +++ b/src/IconScreenLockPortraitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockPortraitSharp as default } diff --git a/src/IconScreenLockPortraitTwoTone.tsx b/src/IconScreenLockPortraitTwoTone.tsx new file mode 100644 index 000000000..411853cc0 --- /dev/null +++ b/src/IconScreenLockPortraitTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScreenLockPortraitTwoTone as default } diff --git a/src/IconScreenLockRotationOutlined.tsx b/src/IconScreenLockRotationOutlined.tsx new file mode 100644 index 000000000..a4c86acd0 --- /dev/null +++ b/src/IconScreenLockRotationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockRotationOutlined as default } diff --git a/src/IconScreenLockRotationRound.tsx b/src/IconScreenLockRotationRound.tsx new file mode 100644 index 000000000..b4f3fd7c2 --- /dev/null +++ b/src/IconScreenLockRotationRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenLockRotationRound as default } diff --git a/src/IconScreenLockRotationSharp.tsx b/src/IconScreenLockRotationSharp.tsx new file mode 100644 index 000000000..f9283339f --- /dev/null +++ b/src/IconScreenLockRotationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockRotationSharp as default } diff --git a/src/IconScreenLockRotationTwoTone.tsx b/src/IconScreenLockRotationTwoTone.tsx new file mode 100644 index 000000000..9c777ba30 --- /dev/null +++ b/src/IconScreenLockRotationTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenLockRotationTwoTone as default } diff --git a/src/IconScreenRotationAltOutlined.tsx b/src/IconScreenRotationAltOutlined.tsx new file mode 100644 index 000000000..aedf07c40 --- /dev/null +++ b/src/IconScreenRotationAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScreenRotationAltOutlined as default } diff --git a/src/IconScreenRotationAltRound.tsx b/src/IconScreenRotationAltRound.tsx new file mode 100644 index 000000000..2b118e996 --- /dev/null +++ b/src/IconScreenRotationAltRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconScreenRotationAltRound as default } diff --git a/src/IconScreenRotationAltSharp.tsx b/src/IconScreenRotationAltSharp.tsx new file mode 100644 index 000000000..37b599a25 --- /dev/null +++ b/src/IconScreenRotationAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScreenRotationAltSharp as default } diff --git a/src/IconScreenRotationAltTwoTone.tsx b/src/IconScreenRotationAltTwoTone.tsx new file mode 100644 index 000000000..1fd122f6e --- /dev/null +++ b/src/IconScreenRotationAltTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScreenRotationAltTwoTone as default } diff --git a/src/IconScreenRotationOutlined.tsx b/src/IconScreenRotationOutlined.tsx new file mode 100644 index 000000000..57506ff10 --- /dev/null +++ b/src/IconScreenRotationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenRotationOutlined as default } diff --git a/src/IconScreenRotationRound.tsx b/src/IconScreenRotationRound.tsx new file mode 100644 index 000000000..9b919a5c3 --- /dev/null +++ b/src/IconScreenRotationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenRotationRound as default } diff --git a/src/IconScreenRotationSharp.tsx b/src/IconScreenRotationSharp.tsx new file mode 100644 index 000000000..eb220d2b9 --- /dev/null +++ b/src/IconScreenRotationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenRotationSharp as default } diff --git a/src/IconScreenRotationTwoTone.tsx b/src/IconScreenRotationTwoTone.tsx new file mode 100644 index 000000000..b0bf22460 --- /dev/null +++ b/src/IconScreenRotationTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScreenRotationTwoTone as default } diff --git a/src/IconScreenSearchDesktopOutlined.tsx b/src/IconScreenSearchDesktopOutlined.tsx new file mode 100644 index 000000000..ea2c48d80 --- /dev/null +++ b/src/IconScreenSearchDesktopOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenSearchDesktopOutlined as default } diff --git a/src/IconScreenSearchDesktopRound.tsx b/src/IconScreenSearchDesktopRound.tsx new file mode 100644 index 000000000..93fd33660 --- /dev/null +++ b/src/IconScreenSearchDesktopRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenSearchDesktopRound as default } diff --git a/src/IconScreenSearchDesktopSharp.tsx b/src/IconScreenSearchDesktopSharp.tsx new file mode 100644 index 000000000..cef06100d --- /dev/null +++ b/src/IconScreenSearchDesktopSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenSearchDesktopSharp as default } diff --git a/src/IconScreenSearchDesktopTwoTone.tsx b/src/IconScreenSearchDesktopTwoTone.tsx new file mode 100644 index 000000000..c337b999c --- /dev/null +++ b/src/IconScreenSearchDesktopTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconScreenSearchDesktopTwoTone as default } diff --git a/src/IconScreenShareOutlined.tsx b/src/IconScreenShareOutlined.tsx new file mode 100644 index 000000000..d9506341e --- /dev/null +++ b/src/IconScreenShareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenShareOutlined as default } diff --git a/src/IconScreenShareRound.tsx b/src/IconScreenShareRound.tsx new file mode 100644 index 000000000..02f0ad145 --- /dev/null +++ b/src/IconScreenShareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenShareRound as default } diff --git a/src/IconScreenShareSharp.tsx b/src/IconScreenShareSharp.tsx new file mode 100644 index 000000000..feb9031c6 --- /dev/null +++ b/src/IconScreenShareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconScreenShareSharp as default } diff --git a/src/IconScreenShareTwoTone.tsx b/src/IconScreenShareTwoTone.tsx new file mode 100644 index 000000000..8f1a112d1 --- /dev/null +++ b/src/IconScreenShareTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconScreenShareTwoTone as default } diff --git a/src/IconScreenshotMonitorOutlined.tsx b/src/IconScreenshotMonitorOutlined.tsx new file mode 100644 index 000000000..d0b7d7e8a --- /dev/null +++ b/src/IconScreenshotMonitorOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenshotMonitorOutlined as default } diff --git a/src/IconScreenshotMonitorRound.tsx b/src/IconScreenshotMonitorRound.tsx new file mode 100644 index 000000000..da7d60c8f --- /dev/null +++ b/src/IconScreenshotMonitorRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconScreenshotMonitorRound as default } diff --git a/src/IconScreenshotMonitorSharp.tsx b/src/IconScreenshotMonitorSharp.tsx new file mode 100644 index 000000000..9b8524b2e --- /dev/null +++ b/src/IconScreenshotMonitorSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconScreenshotMonitorSharp as default } diff --git a/src/IconScreenshotMonitorTwoTone.tsx b/src/IconScreenshotMonitorTwoTone.tsx new file mode 100644 index 000000000..02b461b0b --- /dev/null +++ b/src/IconScreenshotMonitorTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconScreenshotMonitorTwoTone as default } diff --git a/src/IconScreenshotOutlined.tsx b/src/IconScreenshotOutlined.tsx new file mode 100644 index 000000000..ddf233b28 --- /dev/null +++ b/src/IconScreenshotOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconScreenshotOutlined as default } diff --git a/src/IconScreenshotRound.tsx b/src/IconScreenshotRound.tsx new file mode 100644 index 000000000..043c1ba91 --- /dev/null +++ b/src/IconScreenshotRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconScreenshotRound as default } diff --git a/src/IconScreenshotSharp.tsx b/src/IconScreenshotSharp.tsx new file mode 100644 index 000000000..ad955b301 --- /dev/null +++ b/src/IconScreenshotSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconScreenshotSharp as default } diff --git a/src/IconScreenshotTwoTone.tsx b/src/IconScreenshotTwoTone.tsx new file mode 100644 index 000000000..e7f6f14d6 --- /dev/null +++ b/src/IconScreenshotTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconScreenshotTwoTone as default } diff --git a/src/IconScubaDivingOutlined.tsx b/src/IconScubaDivingOutlined.tsx new file mode 100644 index 000000000..81df637d4 --- /dev/null +++ b/src/IconScubaDivingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScubaDivingOutlined as default } diff --git a/src/IconScubaDivingRound.tsx b/src/IconScubaDivingRound.tsx new file mode 100644 index 000000000..60f44b447 --- /dev/null +++ b/src/IconScubaDivingRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconScubaDivingRound as default } diff --git a/src/IconScubaDivingSharp.tsx b/src/IconScubaDivingSharp.tsx new file mode 100644 index 000000000..d9a1c6e38 --- /dev/null +++ b/src/IconScubaDivingSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScubaDivingSharp as default } diff --git a/src/IconScubaDivingTwoTone.tsx b/src/IconScubaDivingTwoTone.tsx new file mode 100644 index 000000000..979df549e --- /dev/null +++ b/src/IconScubaDivingTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconScubaDivingTwoTone as default } diff --git a/src/IconSdCardAlertOutlined.tsx b/src/IconSdCardAlertOutlined.tsx new file mode 100644 index 000000000..83b061751 --- /dev/null +++ b/src/IconSdCardAlertOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardAlertOutlined as default } diff --git a/src/IconSdCardAlertRound.tsx b/src/IconSdCardAlertRound.tsx new file mode 100644 index 000000000..5f30c776e --- /dev/null +++ b/src/IconSdCardAlertRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardAlertRound as default } diff --git a/src/IconSdCardAlertSharp.tsx b/src/IconSdCardAlertSharp.tsx new file mode 100644 index 000000000..2a5ac9d40 --- /dev/null +++ b/src/IconSdCardAlertSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardAlertSharp as default } diff --git a/src/IconSdCardAlertTwoTone.tsx b/src/IconSdCardAlertTwoTone.tsx new file mode 100644 index 000000000..fecdb6e51 --- /dev/null +++ b/src/IconSdCardAlertTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSdCardAlertTwoTone as default } diff --git a/src/IconSdCardOutlined.tsx b/src/IconSdCardOutlined.tsx new file mode 100644 index 000000000..046ca72f1 --- /dev/null +++ b/src/IconSdCardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardOutlined as default } diff --git a/src/IconSdCardRound.tsx b/src/IconSdCardRound.tsx new file mode 100644 index 000000000..0e3a6377f --- /dev/null +++ b/src/IconSdCardRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardRound as default } diff --git a/src/IconSdCardSharp.tsx b/src/IconSdCardSharp.tsx new file mode 100644 index 000000000..755f75c95 --- /dev/null +++ b/src/IconSdCardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdCardSharp as default } diff --git a/src/IconSdCardTwoTone.tsx b/src/IconSdCardTwoTone.tsx new file mode 100644 index 000000000..250eab0fe --- /dev/null +++ b/src/IconSdCardTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSdCardTwoTone as default } diff --git a/src/IconSdOutlined.tsx b/src/IconSdOutlined.tsx new file mode 100644 index 000000000..fdea9eb22 --- /dev/null +++ b/src/IconSdOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSdOutlined as default } diff --git a/src/IconSdRound.tsx b/src/IconSdRound.tsx new file mode 100644 index 000000000..3b23ac099 --- /dev/null +++ b/src/IconSdRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSdRound as default } diff --git a/src/IconSdSharp.tsx b/src/IconSdSharp.tsx new file mode 100644 index 000000000..f39d4673e --- /dev/null +++ b/src/IconSdSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSdSharp as default } diff --git a/src/IconSdStorageOutlined.tsx b/src/IconSdStorageOutlined.tsx new file mode 100644 index 000000000..9db655164 --- /dev/null +++ b/src/IconSdStorageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdStorageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdStorageOutlined as default } diff --git a/src/IconSdStorageRound.tsx b/src/IconSdStorageRound.tsx new file mode 100644 index 000000000..a120c44e2 --- /dev/null +++ b/src/IconSdStorageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdStorageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdStorageRound as default } diff --git a/src/IconSdStorageSharp.tsx b/src/IconSdStorageSharp.tsx new file mode 100644 index 000000000..b3347bbe7 --- /dev/null +++ b/src/IconSdStorageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdStorageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSdStorageSharp as default } diff --git a/src/IconSdStorageTwoTone.tsx b/src/IconSdStorageTwoTone.tsx new file mode 100644 index 000000000..11dd6829c --- /dev/null +++ b/src/IconSdStorageTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdStorageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSdStorageTwoTone as default } diff --git a/src/IconSdTwoTone.tsx b/src/IconSdTwoTone.tsx new file mode 100644 index 000000000..665e6947b --- /dev/null +++ b/src/IconSdTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSdTwoTone as default } diff --git a/src/IconSearchOffOutlined.tsx b/src/IconSearchOffOutlined.tsx new file mode 100644 index 000000000..c2522d44e --- /dev/null +++ b/src/IconSearchOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSearchOffOutlined as default } diff --git a/src/IconSearchOffRound.tsx b/src/IconSearchOffRound.tsx new file mode 100644 index 000000000..8966f2a75 --- /dev/null +++ b/src/IconSearchOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSearchOffRound as default } diff --git a/src/IconSearchOffSharp.tsx b/src/IconSearchOffSharp.tsx new file mode 100644 index 000000000..4499d1e50 --- /dev/null +++ b/src/IconSearchOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSearchOffSharp as default } diff --git a/src/IconSearchOffTwoTone.tsx b/src/IconSearchOffTwoTone.tsx new file mode 100644 index 000000000..4f55ee490 --- /dev/null +++ b/src/IconSearchOffTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSearchOffTwoTone as default } diff --git a/src/IconSearchOutlined.tsx b/src/IconSearchOutlined.tsx new file mode 100644 index 000000000..e24788ca1 --- /dev/null +++ b/src/IconSearchOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSearchOutlined as default } diff --git a/src/IconSearchRound.tsx b/src/IconSearchRound.tsx new file mode 100644 index 000000000..da61a83e9 --- /dev/null +++ b/src/IconSearchRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSearchRound as default } diff --git a/src/IconSearchSharp.tsx b/src/IconSearchSharp.tsx new file mode 100644 index 000000000..9556cf769 --- /dev/null +++ b/src/IconSearchSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSearchSharp as default } diff --git a/src/IconSearchTwoTone.tsx b/src/IconSearchTwoTone.tsx new file mode 100644 index 000000000..0d5bde69f --- /dev/null +++ b/src/IconSearchTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSearchTwoTone as default } diff --git a/src/IconSecurityOutlined.tsx b/src/IconSecurityOutlined.tsx new file mode 100644 index 000000000..e73e298d0 --- /dev/null +++ b/src/IconSecurityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSecurityOutlined as default } diff --git a/src/IconSecurityRound.tsx b/src/IconSecurityRound.tsx new file mode 100644 index 000000000..9fa620b57 --- /dev/null +++ b/src/IconSecurityRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityRound as default } diff --git a/src/IconSecuritySharp.tsx b/src/IconSecuritySharp.tsx new file mode 100644 index 000000000..2cd9d88fa --- /dev/null +++ b/src/IconSecuritySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecuritySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSecuritySharp as default } diff --git a/src/IconSecurityTwoTone.tsx b/src/IconSecurityTwoTone.tsx new file mode 100644 index 000000000..8841c1495 --- /dev/null +++ b/src/IconSecurityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSecurityTwoTone as default } diff --git a/src/IconSecurityUpdateGoodOutlined.tsx b/src/IconSecurityUpdateGoodOutlined.tsx new file mode 100644 index 000000000..0f5452a74 --- /dev/null +++ b/src/IconSecurityUpdateGoodOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSecurityUpdateGoodOutlined as default } diff --git a/src/IconSecurityUpdateGoodRound.tsx b/src/IconSecurityUpdateGoodRound.tsx new file mode 100644 index 000000000..43eb5e0b8 --- /dev/null +++ b/src/IconSecurityUpdateGoodRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSecurityUpdateGoodRound as default } diff --git a/src/IconSecurityUpdateGoodSharp.tsx b/src/IconSecurityUpdateGoodSharp.tsx new file mode 100644 index 000000000..4dbbcc981 --- /dev/null +++ b/src/IconSecurityUpdateGoodSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSecurityUpdateGoodSharp as default } diff --git a/src/IconSecurityUpdateGoodTwoTone.tsx b/src/IconSecurityUpdateGoodTwoTone.tsx new file mode 100644 index 000000000..4bade069d --- /dev/null +++ b/src/IconSecurityUpdateGoodTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSecurityUpdateGoodTwoTone as default } diff --git a/src/IconSecurityUpdateOutlined.tsx b/src/IconSecurityUpdateOutlined.tsx new file mode 100644 index 000000000..1b2ff462d --- /dev/null +++ b/src/IconSecurityUpdateOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSecurityUpdateOutlined as default } diff --git a/src/IconSecurityUpdateRound.tsx b/src/IconSecurityUpdateRound.tsx new file mode 100644 index 000000000..b29f08038 --- /dev/null +++ b/src/IconSecurityUpdateRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSecurityUpdateRound as default } diff --git a/src/IconSecurityUpdateSharp.tsx b/src/IconSecurityUpdateSharp.tsx new file mode 100644 index 000000000..5f6e14e66 --- /dev/null +++ b/src/IconSecurityUpdateSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSecurityUpdateSharp as default } diff --git a/src/IconSecurityUpdateTwoTone.tsx b/src/IconSecurityUpdateTwoTone.tsx new file mode 100644 index 000000000..27f849400 --- /dev/null +++ b/src/IconSecurityUpdateTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSecurityUpdateTwoTone as default } diff --git a/src/IconSecurityUpdateWarningOutlined.tsx b/src/IconSecurityUpdateWarningOutlined.tsx new file mode 100644 index 000000000..ed671c6e9 --- /dev/null +++ b/src/IconSecurityUpdateWarningOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSecurityUpdateWarningOutlined as default } diff --git a/src/IconSecurityUpdateWarningRound.tsx b/src/IconSecurityUpdateWarningRound.tsx new file mode 100644 index 000000000..ea1d59de5 --- /dev/null +++ b/src/IconSecurityUpdateWarningRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSecurityUpdateWarningRound as default } diff --git a/src/IconSecurityUpdateWarningSharp.tsx b/src/IconSecurityUpdateWarningSharp.tsx new file mode 100644 index 000000000..b95a995ce --- /dev/null +++ b/src/IconSecurityUpdateWarningSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSecurityUpdateWarningSharp as default } diff --git a/src/IconSecurityUpdateWarningTwoTone.tsx b/src/IconSecurityUpdateWarningTwoTone.tsx new file mode 100644 index 000000000..122ee52cd --- /dev/null +++ b/src/IconSecurityUpdateWarningTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSecurityUpdateWarningTwoTone as default } diff --git a/src/IconSegmentOutlined.tsx b/src/IconSegmentOutlined.tsx new file mode 100644 index 000000000..c155e2c1d --- /dev/null +++ b/src/IconSegmentOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSegmentOutlined as default } diff --git a/src/IconSegmentRound.tsx b/src/IconSegmentRound.tsx new file mode 100644 index 000000000..2ed16fe9e --- /dev/null +++ b/src/IconSegmentRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSegmentRound as default } diff --git a/src/IconSegmentSharp.tsx b/src/IconSegmentSharp.tsx new file mode 100644 index 000000000..0b74ae6fa --- /dev/null +++ b/src/IconSegmentSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSegmentSharp as default } diff --git a/src/IconSegmentTwoTone.tsx b/src/IconSegmentTwoTone.tsx new file mode 100644 index 000000000..bc01a65b7 --- /dev/null +++ b/src/IconSegmentTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSegmentTwoTone as default } diff --git a/src/IconSelectAllOutlined.tsx b/src/IconSelectAllOutlined.tsx new file mode 100644 index 000000000..4dfb37df4 --- /dev/null +++ b/src/IconSelectAllOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSelectAllOutlined as default } diff --git a/src/IconSelectAllRound.tsx b/src/IconSelectAllRound.tsx new file mode 100644 index 000000000..81b9bb817 --- /dev/null +++ b/src/IconSelectAllRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSelectAllRound as default } diff --git a/src/IconSelectAllSharp.tsx b/src/IconSelectAllSharp.tsx new file mode 100644 index 000000000..5f45455b8 --- /dev/null +++ b/src/IconSelectAllSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSelectAllSharp as default } diff --git a/src/IconSelectAllTwoTone.tsx b/src/IconSelectAllTwoTone.tsx new file mode 100644 index 000000000..11d27863d --- /dev/null +++ b/src/IconSelectAllTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSelectAllTwoTone as default } diff --git a/src/IconSelfImprovementOutlined.tsx b/src/IconSelfImprovementOutlined.tsx new file mode 100644 index 000000000..c88685b65 --- /dev/null +++ b/src/IconSelfImprovementOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSelfImprovementOutlined as default } diff --git a/src/IconSelfImprovementRound.tsx b/src/IconSelfImprovementRound.tsx new file mode 100644 index 000000000..9715fdabe --- /dev/null +++ b/src/IconSelfImprovementRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSelfImprovementRound as default } diff --git a/src/IconSelfImprovementSharp.tsx b/src/IconSelfImprovementSharp.tsx new file mode 100644 index 000000000..099bb3c98 --- /dev/null +++ b/src/IconSelfImprovementSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSelfImprovementSharp as default } diff --git a/src/IconSelfImprovementTwoTone.tsx b/src/IconSelfImprovementTwoTone.tsx new file mode 100644 index 000000000..cc16cd09f --- /dev/null +++ b/src/IconSelfImprovementTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSelfImprovementTwoTone as default } diff --git a/src/IconSellOutlined.tsx b/src/IconSellOutlined.tsx new file mode 100644 index 000000000..a1251d7e4 --- /dev/null +++ b/src/IconSellOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSellOutlined as default } diff --git a/src/IconSellRound.tsx b/src/IconSellRound.tsx new file mode 100644 index 000000000..0834e179f --- /dev/null +++ b/src/IconSellRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSellRound as default } diff --git a/src/IconSellSharp.tsx b/src/IconSellSharp.tsx new file mode 100644 index 000000000..2226fac7f --- /dev/null +++ b/src/IconSellSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSellSharp as default } diff --git a/src/IconSellTwoTone.tsx b/src/IconSellTwoTone.tsx new file mode 100644 index 000000000..d33cf9044 --- /dev/null +++ b/src/IconSellTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSellTwoTone as default } diff --git a/src/IconSendAndArchiveOutlined.tsx b/src/IconSendAndArchiveOutlined.tsx new file mode 100644 index 000000000..e513496d2 --- /dev/null +++ b/src/IconSendAndArchiveOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSendAndArchiveOutlined as default } diff --git a/src/IconSendAndArchiveRound.tsx b/src/IconSendAndArchiveRound.tsx new file mode 100644 index 000000000..36975c35a --- /dev/null +++ b/src/IconSendAndArchiveRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSendAndArchiveRound as default } diff --git a/src/IconSendAndArchiveSharp.tsx b/src/IconSendAndArchiveSharp.tsx new file mode 100644 index 000000000..213e0b204 --- /dev/null +++ b/src/IconSendAndArchiveSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSendAndArchiveSharp as default } diff --git a/src/IconSendAndArchiveTwoTone.tsx b/src/IconSendAndArchiveTwoTone.tsx new file mode 100644 index 000000000..5bc79fe3c --- /dev/null +++ b/src/IconSendAndArchiveTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconSendAndArchiveTwoTone as default } diff --git a/src/IconSendOutlined.tsx b/src/IconSendOutlined.tsx new file mode 100644 index 000000000..05dfd3056 --- /dev/null +++ b/src/IconSendOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSendOutlined as default } diff --git a/src/IconSendRound.tsx b/src/IconSendRound.tsx new file mode 100644 index 000000000..67c27d536 --- /dev/null +++ b/src/IconSendRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSendRound as default } diff --git a/src/IconSendSharp.tsx b/src/IconSendSharp.tsx new file mode 100644 index 000000000..eba4f7d45 --- /dev/null +++ b/src/IconSendSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSendSharp as default } diff --git a/src/IconSendTimeExtensionOutlined.tsx b/src/IconSendTimeExtensionOutlined.tsx new file mode 100644 index 000000000..6551d5624 --- /dev/null +++ b/src/IconSendTimeExtensionOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSendTimeExtensionOutlined as default } diff --git a/src/IconSendTimeExtensionRound.tsx b/src/IconSendTimeExtensionRound.tsx new file mode 100644 index 000000000..b3c059c3f --- /dev/null +++ b/src/IconSendTimeExtensionRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSendTimeExtensionRound as default } diff --git a/src/IconSendTimeExtensionSharp.tsx b/src/IconSendTimeExtensionSharp.tsx new file mode 100644 index 000000000..632ded0d1 --- /dev/null +++ b/src/IconSendTimeExtensionSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSendTimeExtensionSharp as default } diff --git a/src/IconSendTimeExtensionTwoTone.tsx b/src/IconSendTimeExtensionTwoTone.tsx new file mode 100644 index 000000000..8c6400df7 --- /dev/null +++ b/src/IconSendTimeExtensionTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSendTimeExtensionTwoTone as default } diff --git a/src/IconSendToMobileOutlined.tsx b/src/IconSendToMobileOutlined.tsx new file mode 100644 index 000000000..a96857e0e --- /dev/null +++ b/src/IconSendToMobileOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSendToMobileOutlined as default } diff --git a/src/IconSendToMobileRound.tsx b/src/IconSendToMobileRound.tsx new file mode 100644 index 000000000..ee3647958 --- /dev/null +++ b/src/IconSendToMobileRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSendToMobileRound as default } diff --git a/src/IconSendToMobileSharp.tsx b/src/IconSendToMobileSharp.tsx new file mode 100644 index 000000000..ca943ac21 --- /dev/null +++ b/src/IconSendToMobileSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSendToMobileSharp as default } diff --git a/src/IconSendToMobileTwoTone.tsx b/src/IconSendToMobileTwoTone.tsx new file mode 100644 index 000000000..9d0950791 --- /dev/null +++ b/src/IconSendToMobileTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSendToMobileTwoTone as default } diff --git a/src/IconSendTwoTone.tsx b/src/IconSendTwoTone.tsx new file mode 100644 index 000000000..1cda08d65 --- /dev/null +++ b/src/IconSendTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSendTwoTone as default } diff --git a/src/IconSensorDoorOutlined.tsx b/src/IconSensorDoorOutlined.tsx new file mode 100644 index 000000000..9963d01b5 --- /dev/null +++ b/src/IconSensorDoorOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorDoorOutlined as default } diff --git a/src/IconSensorDoorRound.tsx b/src/IconSensorDoorRound.tsx new file mode 100644 index 000000000..42195ac47 --- /dev/null +++ b/src/IconSensorDoorRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorDoorRound as default } diff --git a/src/IconSensorDoorSharp.tsx b/src/IconSensorDoorSharp.tsx new file mode 100644 index 000000000..7c1b3fd92 --- /dev/null +++ b/src/IconSensorDoorSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorDoorSharp as default } diff --git a/src/IconSensorDoorTwoTone.tsx b/src/IconSensorDoorTwoTone.tsx new file mode 100644 index 000000000..a4d04a001 --- /dev/null +++ b/src/IconSensorDoorTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSensorDoorTwoTone as default } diff --git a/src/IconSensorOccupiedOutlined.tsx b/src/IconSensorOccupiedOutlined.tsx new file mode 100644 index 000000000..4890152a5 --- /dev/null +++ b/src/IconSensorOccupiedOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSensorOccupiedOutlined as default } diff --git a/src/IconSensorOccupiedRound.tsx b/src/IconSensorOccupiedRound.tsx new file mode 100644 index 000000000..ef58f4e0c --- /dev/null +++ b/src/IconSensorOccupiedRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSensorOccupiedRound as default } diff --git a/src/IconSensorOccupiedSharp.tsx b/src/IconSensorOccupiedSharp.tsx new file mode 100644 index 000000000..e280f1d12 --- /dev/null +++ b/src/IconSensorOccupiedSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSensorOccupiedSharp as default } diff --git a/src/IconSensorOccupiedTwoTone.tsx b/src/IconSensorOccupiedTwoTone.tsx new file mode 100644 index 000000000..c6c53b739 --- /dev/null +++ b/src/IconSensorOccupiedTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconSensorOccupiedTwoTone as default } diff --git a/src/IconSensorWindowOutlined.tsx b/src/IconSensorWindowOutlined.tsx new file mode 100644 index 000000000..91599ccc7 --- /dev/null +++ b/src/IconSensorWindowOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorWindowOutlined as default } diff --git a/src/IconSensorWindowRound.tsx b/src/IconSensorWindowRound.tsx new file mode 100644 index 000000000..5e55f35b2 --- /dev/null +++ b/src/IconSensorWindowRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorWindowRound as default } diff --git a/src/IconSensorWindowSharp.tsx b/src/IconSensorWindowSharp.tsx new file mode 100644 index 000000000..818789d10 --- /dev/null +++ b/src/IconSensorWindowSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSensorWindowSharp as default } diff --git a/src/IconSensorWindowTwoTone.tsx b/src/IconSensorWindowTwoTone.tsx new file mode 100644 index 000000000..307e5a49a --- /dev/null +++ b/src/IconSensorWindowTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSensorWindowTwoTone as default } diff --git a/src/IconSensorsOffOutlined.tsx b/src/IconSensorsOffOutlined.tsx new file mode 100644 index 000000000..398516b81 --- /dev/null +++ b/src/IconSensorsOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsOffOutlined as default } diff --git a/src/IconSensorsOffRound.tsx b/src/IconSensorsOffRound.tsx new file mode 100644 index 000000000..448df1034 --- /dev/null +++ b/src/IconSensorsOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsOffRound as default } diff --git a/src/IconSensorsOffSharp.tsx b/src/IconSensorsOffSharp.tsx new file mode 100644 index 000000000..47f0553fc --- /dev/null +++ b/src/IconSensorsOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsOffSharp as default } diff --git a/src/IconSensorsOffTwoTone.tsx b/src/IconSensorsOffTwoTone.tsx new file mode 100644 index 000000000..0dfadde3c --- /dev/null +++ b/src/IconSensorsOffTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsOffTwoTone as default } diff --git a/src/IconSensorsOutlined.tsx b/src/IconSensorsOutlined.tsx new file mode 100644 index 000000000..f70be62d8 --- /dev/null +++ b/src/IconSensorsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsOutlined as default } diff --git a/src/IconSensorsRound.tsx b/src/IconSensorsRound.tsx new file mode 100644 index 000000000..a881efa05 --- /dev/null +++ b/src/IconSensorsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsRound as default } diff --git a/src/IconSensorsSharp.tsx b/src/IconSensorsSharp.tsx new file mode 100644 index 000000000..1052c9c15 --- /dev/null +++ b/src/IconSensorsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsSharp as default } diff --git a/src/IconSensorsTwoTone.tsx b/src/IconSensorsTwoTone.tsx new file mode 100644 index 000000000..bbf4906cb --- /dev/null +++ b/src/IconSensorsTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSensorsTwoTone as default } diff --git a/src/IconSentimentDissatisfiedOutlined.tsx b/src/IconSentimentDissatisfiedOutlined.tsx new file mode 100644 index 000000000..69e2481da --- /dev/null +++ b/src/IconSentimentDissatisfiedOutlined.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentDissatisfiedOutlined as default } diff --git a/src/IconSentimentDissatisfiedRound.tsx b/src/IconSentimentDissatisfiedRound.tsx new file mode 100644 index 000000000..1846dc338 --- /dev/null +++ b/src/IconSentimentDissatisfiedRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentDissatisfiedRound as default } diff --git a/src/IconSentimentDissatisfiedSharp.tsx b/src/IconSentimentDissatisfiedSharp.tsx new file mode 100644 index 000000000..f210be081 --- /dev/null +++ b/src/IconSentimentDissatisfiedSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentDissatisfiedSharp as default } diff --git a/src/IconSentimentDissatisfiedTwoTone.tsx b/src/IconSentimentDissatisfiedTwoTone.tsx new file mode 100644 index 000000000..291eec27d --- /dev/null +++ b/src/IconSentimentDissatisfiedTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSentimentDissatisfiedTwoTone as default } diff --git a/src/IconSentimentNeutralOutlined.tsx b/src/IconSentimentNeutralOutlined.tsx new file mode 100644 index 000000000..483093a3a --- /dev/null +++ b/src/IconSentimentNeutralOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSentimentNeutralOutlined as default } diff --git a/src/IconSentimentNeutralRound.tsx b/src/IconSentimentNeutralRound.tsx new file mode 100644 index 000000000..41eb289d9 --- /dev/null +++ b/src/IconSentimentNeutralRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSentimentNeutralRound as default } diff --git a/src/IconSentimentNeutralSharp.tsx b/src/IconSentimentNeutralSharp.tsx new file mode 100644 index 000000000..a9a6e05ce --- /dev/null +++ b/src/IconSentimentNeutralSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSentimentNeutralSharp as default } diff --git a/src/IconSentimentNeutralTwoTone.tsx b/src/IconSentimentNeutralTwoTone.tsx new file mode 100644 index 000000000..7d2b32c50 --- /dev/null +++ b/src/IconSentimentNeutralTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSentimentNeutralTwoTone as default } diff --git a/src/IconSentimentSatisfiedAltOutlined.tsx b/src/IconSentimentSatisfiedAltOutlined.tsx new file mode 100644 index 000000000..a71b094b0 --- /dev/null +++ b/src/IconSentimentSatisfiedAltOutlined.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedAltOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedAltOutlined as default } diff --git a/src/IconSentimentSatisfiedAltRound.tsx b/src/IconSentimentSatisfiedAltRound.tsx new file mode 100644 index 000000000..e1515b7cc --- /dev/null +++ b/src/IconSentimentSatisfiedAltRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedAltRound as default } diff --git a/src/IconSentimentSatisfiedAltSharp.tsx b/src/IconSentimentSatisfiedAltSharp.tsx new file mode 100644 index 000000000..ba5b3e45e --- /dev/null +++ b/src/IconSentimentSatisfiedAltSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedAltSharp as default } diff --git a/src/IconSentimentSatisfiedAltTwoTone.tsx b/src/IconSentimentSatisfiedAltTwoTone.tsx new file mode 100644 index 000000000..66140a026 --- /dev/null +++ b/src/IconSentimentSatisfiedAltTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedAltTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSentimentSatisfiedAltTwoTone as default } diff --git a/src/IconSentimentSatisfiedOutlined.tsx b/src/IconSentimentSatisfiedOutlined.tsx new file mode 100644 index 000000000..8f0255bba --- /dev/null +++ b/src/IconSentimentSatisfiedOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedOutlined as default } diff --git a/src/IconSentimentSatisfiedRound.tsx b/src/IconSentimentSatisfiedRound.tsx new file mode 100644 index 000000000..31c56f7b0 --- /dev/null +++ b/src/IconSentimentSatisfiedRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedRound as default } diff --git a/src/IconSentimentSatisfiedSharp.tsx b/src/IconSentimentSatisfiedSharp.tsx new file mode 100644 index 000000000..2fab5e2ac --- /dev/null +++ b/src/IconSentimentSatisfiedSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSentimentSatisfiedSharp as default } diff --git a/src/IconSentimentSatisfiedTwoTone.tsx b/src/IconSentimentSatisfiedTwoTone.tsx new file mode 100644 index 000000000..3db5970a9 --- /dev/null +++ b/src/IconSentimentSatisfiedTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSentimentSatisfiedTwoTone as default } diff --git a/src/IconSentimentVeryDissatisfiedOutlined.tsx b/src/IconSentimentVeryDissatisfiedOutlined.tsx new file mode 100644 index 000000000..20b09e8da --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVeryDissatisfiedOutlined as default } diff --git a/src/IconSentimentVeryDissatisfiedRound.tsx b/src/IconSentimentVeryDissatisfiedRound.tsx new file mode 100644 index 000000000..e6a752a0b --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVeryDissatisfiedRound as default } diff --git a/src/IconSentimentVeryDissatisfiedSharp.tsx b/src/IconSentimentVeryDissatisfiedSharp.tsx new file mode 100644 index 000000000..5a8732f8a --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVeryDissatisfiedSharp as default } diff --git a/src/IconSentimentVeryDissatisfiedTwoTone.tsx b/src/IconSentimentVeryDissatisfiedTwoTone.tsx new file mode 100644 index 000000000..01951025a --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSentimentVeryDissatisfiedTwoTone as default } diff --git a/src/IconSentimentVerySatisfiedOutlined.tsx b/src/IconSentimentVerySatisfiedOutlined.tsx new file mode 100644 index 000000000..2184d7d2f --- /dev/null +++ b/src/IconSentimentVerySatisfiedOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVerySatisfiedOutlined as default } diff --git a/src/IconSentimentVerySatisfiedRound.tsx b/src/IconSentimentVerySatisfiedRound.tsx new file mode 100644 index 000000000..80f0ad3a2 --- /dev/null +++ b/src/IconSentimentVerySatisfiedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVerySatisfiedRound as default } diff --git a/src/IconSentimentVerySatisfiedSharp.tsx b/src/IconSentimentVerySatisfiedSharp.tsx new file mode 100644 index 000000000..7480442be --- /dev/null +++ b/src/IconSentimentVerySatisfiedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSentimentVerySatisfiedSharp as default } diff --git a/src/IconSentimentVerySatisfiedTwoTone.tsx b/src/IconSentimentVerySatisfiedTwoTone.tsx new file mode 100644 index 000000000..1b65eea8d --- /dev/null +++ b/src/IconSentimentVerySatisfiedTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSentimentVerySatisfiedTwoTone as default } diff --git a/src/IconSetMealOutlined.tsx b/src/IconSetMealOutlined.tsx new file mode 100644 index 000000000..62ef58b5b --- /dev/null +++ b/src/IconSetMealOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSetMealOutlined as default } diff --git a/src/IconSetMealRound.tsx b/src/IconSetMealRound.tsx new file mode 100644 index 000000000..876a2a114 --- /dev/null +++ b/src/IconSetMealRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSetMealRound as default } diff --git a/src/IconSetMealSharp.tsx b/src/IconSetMealSharp.tsx new file mode 100644 index 000000000..6b3d8f758 --- /dev/null +++ b/src/IconSetMealSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSetMealSharp as default } diff --git a/src/IconSetMealTwoTone.tsx b/src/IconSetMealTwoTone.tsx new file mode 100644 index 000000000..7d21e8ad7 --- /dev/null +++ b/src/IconSetMealTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSetMealTwoTone as default } diff --git a/src/IconSettingsAccessibilityOutlined.tsx b/src/IconSettingsAccessibilityOutlined.tsx new file mode 100644 index 000000000..2a37107f5 --- /dev/null +++ b/src/IconSettingsAccessibilityOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilityOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsAccessibilityOutlined as default } diff --git a/src/IconSettingsAccessibilityRound.tsx b/src/IconSettingsAccessibilityRound.tsx new file mode 100644 index 000000000..826c2bb33 --- /dev/null +++ b/src/IconSettingsAccessibilityRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsAccessibilityRound as default } diff --git a/src/IconSettingsAccessibilitySharp.tsx b/src/IconSettingsAccessibilitySharp.tsx new file mode 100644 index 000000000..7998e6555 --- /dev/null +++ b/src/IconSettingsAccessibilitySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsAccessibilitySharp as default } diff --git a/src/IconSettingsAccessibilityTwoTone.tsx b/src/IconSettingsAccessibilityTwoTone.tsx new file mode 100644 index 000000000..f7c3be4b8 --- /dev/null +++ b/src/IconSettingsAccessibilityTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilityTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsAccessibilityTwoTone as default } diff --git a/src/IconSettingsApplicationsOutlined.tsx b/src/IconSettingsApplicationsOutlined.tsx new file mode 100644 index 000000000..208cf3dc0 --- /dev/null +++ b/src/IconSettingsApplicationsOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsApplicationsOutlined as default } diff --git a/src/IconSettingsApplicationsRound.tsx b/src/IconSettingsApplicationsRound.tsx new file mode 100644 index 000000000..31f5b6f14 --- /dev/null +++ b/src/IconSettingsApplicationsRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSettingsApplicationsRound as default } diff --git a/src/IconSettingsApplicationsSharp.tsx b/src/IconSettingsApplicationsSharp.tsx new file mode 100644 index 000000000..8d066732b --- /dev/null +++ b/src/IconSettingsApplicationsSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsApplicationsSharp as default } diff --git a/src/IconSettingsApplicationsTwoTone.tsx b/src/IconSettingsApplicationsTwoTone.tsx new file mode 100644 index 000000000..2d162ef50 --- /dev/null +++ b/src/IconSettingsApplicationsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsApplicationsTwoTone as default } diff --git a/src/IconSettingsBackupRestoreOutlined.tsx b/src/IconSettingsBackupRestoreOutlined.tsx new file mode 100644 index 000000000..ddac9f453 --- /dev/null +++ b/src/IconSettingsBackupRestoreOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBackupRestoreOutlined as default } diff --git a/src/IconSettingsBackupRestoreRound.tsx b/src/IconSettingsBackupRestoreRound.tsx new file mode 100644 index 000000000..d358cbb80 --- /dev/null +++ b/src/IconSettingsBackupRestoreRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsBackupRestoreRound as default } diff --git a/src/IconSettingsBackupRestoreSharp.tsx b/src/IconSettingsBackupRestoreSharp.tsx new file mode 100644 index 000000000..eba616d15 --- /dev/null +++ b/src/IconSettingsBackupRestoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBackupRestoreSharp as default } diff --git a/src/IconSettingsBackupRestoreTwoTone.tsx b/src/IconSettingsBackupRestoreTwoTone.tsx new file mode 100644 index 000000000..afa13bf58 --- /dev/null +++ b/src/IconSettingsBackupRestoreTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBackupRestoreTwoTone as default } diff --git a/src/IconSettingsBluetoothOutlined.tsx b/src/IconSettingsBluetoothOutlined.tsx new file mode 100644 index 000000000..b83f8d0af --- /dev/null +++ b/src/IconSettingsBluetoothOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBluetoothOutlined as default } diff --git a/src/IconSettingsBluetoothRound.tsx b/src/IconSettingsBluetoothRound.tsx new file mode 100644 index 000000000..53e77b36d --- /dev/null +++ b/src/IconSettingsBluetoothRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSettingsBluetoothRound as default } diff --git a/src/IconSettingsBluetoothSharp.tsx b/src/IconSettingsBluetoothSharp.tsx new file mode 100644 index 000000000..cf4f68eb9 --- /dev/null +++ b/src/IconSettingsBluetoothSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBluetoothSharp as default } diff --git a/src/IconSettingsBluetoothTwoTone.tsx b/src/IconSettingsBluetoothTwoTone.tsx new file mode 100644 index 000000000..ea2107f9d --- /dev/null +++ b/src/IconSettingsBluetoothTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBluetoothTwoTone as default } diff --git a/src/IconSettingsBrightnessOutlined.tsx b/src/IconSettingsBrightnessOutlined.tsx new file mode 100644 index 000000000..80841ad8f --- /dev/null +++ b/src/IconSettingsBrightnessOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBrightnessOutlined as default } diff --git a/src/IconSettingsBrightnessRound.tsx b/src/IconSettingsBrightnessRound.tsx new file mode 100644 index 000000000..a30728d28 --- /dev/null +++ b/src/IconSettingsBrightnessRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsBrightnessRound as default } diff --git a/src/IconSettingsBrightnessSharp.tsx b/src/IconSettingsBrightnessSharp.tsx new file mode 100644 index 000000000..9cd8a1597 --- /dev/null +++ b/src/IconSettingsBrightnessSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsBrightnessSharp as default } diff --git a/src/IconSettingsBrightnessTwoTone.tsx b/src/IconSettingsBrightnessTwoTone.tsx new file mode 100644 index 000000000..5edb5444e --- /dev/null +++ b/src/IconSettingsBrightnessTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsBrightnessTwoTone as default } diff --git a/src/IconSettingsCellOutlined.tsx b/src/IconSettingsCellOutlined.tsx new file mode 100644 index 000000000..61d1cc4b0 --- /dev/null +++ b/src/IconSettingsCellOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsCellOutlined as default } diff --git a/src/IconSettingsCellRound.tsx b/src/IconSettingsCellRound.tsx new file mode 100644 index 000000000..469dbd18b --- /dev/null +++ b/src/IconSettingsCellRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsCellRound as default } diff --git a/src/IconSettingsCellSharp.tsx b/src/IconSettingsCellSharp.tsx new file mode 100644 index 000000000..ab37d4218 --- /dev/null +++ b/src/IconSettingsCellSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsCellSharp as default } diff --git a/src/IconSettingsCellTwoTone.tsx b/src/IconSettingsCellTwoTone.tsx new file mode 100644 index 000000000..01072e1c0 --- /dev/null +++ b/src/IconSettingsCellTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsCellTwoTone as default } diff --git a/src/IconSettingsEthernetOutlined.tsx b/src/IconSettingsEthernetOutlined.tsx new file mode 100644 index 000000000..87507e66b --- /dev/null +++ b/src/IconSettingsEthernetOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsEthernetOutlined as default } diff --git a/src/IconSettingsEthernetRound.tsx b/src/IconSettingsEthernetRound.tsx new file mode 100644 index 000000000..203f6590e --- /dev/null +++ b/src/IconSettingsEthernetRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsEthernetRound as default } diff --git a/src/IconSettingsEthernetSharp.tsx b/src/IconSettingsEthernetSharp.tsx new file mode 100644 index 000000000..852d393d0 --- /dev/null +++ b/src/IconSettingsEthernetSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsEthernetSharp as default } diff --git a/src/IconSettingsEthernetTwoTone.tsx b/src/IconSettingsEthernetTwoTone.tsx new file mode 100644 index 000000000..d4993e9d0 --- /dev/null +++ b/src/IconSettingsEthernetTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsEthernetTwoTone as default } diff --git a/src/IconSettingsInputAntennaOutlined.tsx b/src/IconSettingsInputAntennaOutlined.tsx new file mode 100644 index 000000000..33d1f2a25 --- /dev/null +++ b/src/IconSettingsInputAntennaOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputAntennaOutlined as default } diff --git a/src/IconSettingsInputAntennaRound.tsx b/src/IconSettingsInputAntennaRound.tsx new file mode 100644 index 000000000..e0248bde4 --- /dev/null +++ b/src/IconSettingsInputAntennaRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsInputAntennaRound as default } diff --git a/src/IconSettingsInputAntennaSharp.tsx b/src/IconSettingsInputAntennaSharp.tsx new file mode 100644 index 000000000..b463862b7 --- /dev/null +++ b/src/IconSettingsInputAntennaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputAntennaSharp as default } diff --git a/src/IconSettingsInputAntennaTwoTone.tsx b/src/IconSettingsInputAntennaTwoTone.tsx new file mode 100644 index 000000000..1e7418794 --- /dev/null +++ b/src/IconSettingsInputAntennaTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputAntennaTwoTone as default } diff --git a/src/IconSettingsInputComponentOutlined.tsx b/src/IconSettingsInputComponentOutlined.tsx new file mode 100644 index 000000000..33445c818 --- /dev/null +++ b/src/IconSettingsInputComponentOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputComponentOutlined as default } diff --git a/src/IconSettingsInputComponentRound.tsx b/src/IconSettingsInputComponentRound.tsx new file mode 100644 index 000000000..c26143a6e --- /dev/null +++ b/src/IconSettingsInputComponentRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsInputComponentRound as default } diff --git a/src/IconSettingsInputComponentSharp.tsx b/src/IconSettingsInputComponentSharp.tsx new file mode 100644 index 000000000..4e5c3ab69 --- /dev/null +++ b/src/IconSettingsInputComponentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputComponentSharp as default } diff --git a/src/IconSettingsInputComponentTwoTone.tsx b/src/IconSettingsInputComponentTwoTone.tsx new file mode 100644 index 000000000..12583eea5 --- /dev/null +++ b/src/IconSettingsInputComponentTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsInputComponentTwoTone as default } diff --git a/src/IconSettingsInputCompositeOutlined.tsx b/src/IconSettingsInputCompositeOutlined.tsx new file mode 100644 index 000000000..7f669da7e --- /dev/null +++ b/src/IconSettingsInputCompositeOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputCompositeOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputCompositeOutlined as default } diff --git a/src/IconSettingsInputCompositeRound.tsx b/src/IconSettingsInputCompositeRound.tsx new file mode 100644 index 000000000..4520851ab --- /dev/null +++ b/src/IconSettingsInputCompositeRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputCompositeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsInputCompositeRound as default } diff --git a/src/IconSettingsInputCompositeSharp.tsx b/src/IconSettingsInputCompositeSharp.tsx new file mode 100644 index 000000000..94ae35a4f --- /dev/null +++ b/src/IconSettingsInputCompositeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputCompositeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputCompositeSharp as default } diff --git a/src/IconSettingsInputCompositeTwoTone.tsx b/src/IconSettingsInputCompositeTwoTone.tsx new file mode 100644 index 000000000..7ae6ba199 --- /dev/null +++ b/src/IconSettingsInputCompositeTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputCompositeTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsInputCompositeTwoTone as default } diff --git a/src/IconSettingsInputHdmiOutlined.tsx b/src/IconSettingsInputHdmiOutlined.tsx new file mode 100644 index 000000000..d89e2cb94 --- /dev/null +++ b/src/IconSettingsInputHdmiOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputHdmiOutlined as default } diff --git a/src/IconSettingsInputHdmiRound.tsx b/src/IconSettingsInputHdmiRound.tsx new file mode 100644 index 000000000..acb329893 --- /dev/null +++ b/src/IconSettingsInputHdmiRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsInputHdmiRound as default } diff --git a/src/IconSettingsInputHdmiSharp.tsx b/src/IconSettingsInputHdmiSharp.tsx new file mode 100644 index 000000000..478062723 --- /dev/null +++ b/src/IconSettingsInputHdmiSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputHdmiSharp as default } diff --git a/src/IconSettingsInputHdmiTwoTone.tsx b/src/IconSettingsInputHdmiTwoTone.tsx new file mode 100644 index 000000000..bd2f0a11a --- /dev/null +++ b/src/IconSettingsInputHdmiTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsInputHdmiTwoTone as default } diff --git a/src/IconSettingsInputSvideoOutlined.tsx b/src/IconSettingsInputSvideoOutlined.tsx new file mode 100644 index 000000000..b48af9ca6 --- /dev/null +++ b/src/IconSettingsInputSvideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputSvideoOutlined as default } diff --git a/src/IconSettingsInputSvideoRound.tsx b/src/IconSettingsInputSvideoRound.tsx new file mode 100644 index 000000000..8c2d28b01 --- /dev/null +++ b/src/IconSettingsInputSvideoRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSettingsInputSvideoRound as default } diff --git a/src/IconSettingsInputSvideoSharp.tsx b/src/IconSettingsInputSvideoSharp.tsx new file mode 100644 index 000000000..937ae55e3 --- /dev/null +++ b/src/IconSettingsInputSvideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsInputSvideoSharp as default } diff --git a/src/IconSettingsInputSvideoTwoTone.tsx b/src/IconSettingsInputSvideoTwoTone.tsx new file mode 100644 index 000000000..105340d46 --- /dev/null +++ b/src/IconSettingsInputSvideoTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSettingsInputSvideoTwoTone as default } diff --git a/src/IconSettingsOutlined.tsx b/src/IconSettingsOutlined.tsx new file mode 100644 index 000000000..0196d773c --- /dev/null +++ b/src/IconSettingsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsOutlined as default } diff --git a/src/IconSettingsOverscanOutlined.tsx b/src/IconSettingsOverscanOutlined.tsx new file mode 100644 index 000000000..e54191f18 --- /dev/null +++ b/src/IconSettingsOverscanOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsOverscanOutlined as default } diff --git a/src/IconSettingsOverscanRound.tsx b/src/IconSettingsOverscanRound.tsx new file mode 100644 index 000000000..0602b0a93 --- /dev/null +++ b/src/IconSettingsOverscanRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsOverscanRound as default } diff --git a/src/IconSettingsOverscanSharp.tsx b/src/IconSettingsOverscanSharp.tsx new file mode 100644 index 000000000..3f346c9d7 --- /dev/null +++ b/src/IconSettingsOverscanSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsOverscanSharp as default } diff --git a/src/IconSettingsOverscanTwoTone.tsx b/src/IconSettingsOverscanTwoTone.tsx new file mode 100644 index 000000000..39ccea464 --- /dev/null +++ b/src/IconSettingsOverscanTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsOverscanTwoTone as default } diff --git a/src/IconSettingsPhoneOutlined.tsx b/src/IconSettingsPhoneOutlined.tsx new file mode 100644 index 000000000..f891bfc19 --- /dev/null +++ b/src/IconSettingsPhoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsPhoneOutlined as default } diff --git a/src/IconSettingsPhoneRound.tsx b/src/IconSettingsPhoneRound.tsx new file mode 100644 index 000000000..2a5d9bc8d --- /dev/null +++ b/src/IconSettingsPhoneRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSettingsPhoneRound as default } diff --git a/src/IconSettingsPhoneSharp.tsx b/src/IconSettingsPhoneSharp.tsx new file mode 100644 index 000000000..08cae7209 --- /dev/null +++ b/src/IconSettingsPhoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsPhoneSharp as default } diff --git a/src/IconSettingsPhoneTwoTone.tsx b/src/IconSettingsPhoneTwoTone.tsx new file mode 100644 index 000000000..b5b90d803 --- /dev/null +++ b/src/IconSettingsPhoneTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsPhoneTwoTone as default } diff --git a/src/IconSettingsPowerOutlined.tsx b/src/IconSettingsPowerOutlined.tsx new file mode 100644 index 000000000..6be9a08e3 --- /dev/null +++ b/src/IconSettingsPowerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsPowerOutlined as default } diff --git a/src/IconSettingsPowerRound.tsx b/src/IconSettingsPowerRound.tsx new file mode 100644 index 000000000..a0bf8cfc5 --- /dev/null +++ b/src/IconSettingsPowerRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSettingsPowerRound as default } diff --git a/src/IconSettingsPowerSharp.tsx b/src/IconSettingsPowerSharp.tsx new file mode 100644 index 000000000..48963839e --- /dev/null +++ b/src/IconSettingsPowerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsPowerSharp as default } diff --git a/src/IconSettingsPowerTwoTone.tsx b/src/IconSettingsPowerTwoTone.tsx new file mode 100644 index 000000000..7cad41a3d --- /dev/null +++ b/src/IconSettingsPowerTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsPowerTwoTone as default } diff --git a/src/IconSettingsRemoteOutlined.tsx b/src/IconSettingsRemoteOutlined.tsx new file mode 100644 index 000000000..993468703 --- /dev/null +++ b/src/IconSettingsRemoteOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSettingsRemoteOutlined as default } diff --git a/src/IconSettingsRemoteRound.tsx b/src/IconSettingsRemoteRound.tsx new file mode 100644 index 000000000..a3af0bbfd --- /dev/null +++ b/src/IconSettingsRemoteRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSettingsRemoteRound as default } diff --git a/src/IconSettingsRemoteSharp.tsx b/src/IconSettingsRemoteSharp.tsx new file mode 100644 index 000000000..b1b103152 --- /dev/null +++ b/src/IconSettingsRemoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsRemoteSharp as default } diff --git a/src/IconSettingsRemoteTwoTone.tsx b/src/IconSettingsRemoteTwoTone.tsx new file mode 100644 index 000000000..bef30fb5d --- /dev/null +++ b/src/IconSettingsRemoteTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSettingsRemoteTwoTone as default } diff --git a/src/IconSettingsRound.tsx b/src/IconSettingsRound.tsx new file mode 100644 index 000000000..11495c20a --- /dev/null +++ b/src/IconSettingsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsRound as default } diff --git a/src/IconSettingsSharp.tsx b/src/IconSettingsSharp.tsx new file mode 100644 index 000000000..bcc58c8f3 --- /dev/null +++ b/src/IconSettingsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsSharp as default } diff --git a/src/IconSettingsSuggestOutlined.tsx b/src/IconSettingsSuggestOutlined.tsx new file mode 100644 index 000000000..5dd3f9514 --- /dev/null +++ b/src/IconSettingsSuggestOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSuggestOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsSuggestOutlined as default } diff --git a/src/IconSettingsSuggestRound.tsx b/src/IconSettingsSuggestRound.tsx new file mode 100644 index 000000000..934c719ed --- /dev/null +++ b/src/IconSettingsSuggestRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSuggestRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSettingsSuggestRound as default } diff --git a/src/IconSettingsSuggestSharp.tsx b/src/IconSettingsSuggestSharp.tsx new file mode 100644 index 000000000..5190d8df5 --- /dev/null +++ b/src/IconSettingsSuggestSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSuggestSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSettingsSuggestSharp as default } diff --git a/src/IconSettingsSuggestTwoTone.tsx b/src/IconSettingsSuggestTwoTone.tsx new file mode 100644 index 000000000..2e6b135ac --- /dev/null +++ b/src/IconSettingsSuggestTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSuggestTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsSuggestTwoTone as default } diff --git a/src/IconSettingsSystemDaydreamOutlined.tsx b/src/IconSettingsSystemDaydreamOutlined.tsx new file mode 100644 index 000000000..136ca67e1 --- /dev/null +++ b/src/IconSettingsSystemDaydreamOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsSystemDaydreamOutlined as default } diff --git a/src/IconSettingsSystemDaydreamRound.tsx b/src/IconSettingsSystemDaydreamRound.tsx new file mode 100644 index 000000000..99eb803dc --- /dev/null +++ b/src/IconSettingsSystemDaydreamRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsSystemDaydreamRound as default } diff --git a/src/IconSettingsSystemDaydreamSharp.tsx b/src/IconSettingsSystemDaydreamSharp.tsx new file mode 100644 index 000000000..68ad43515 --- /dev/null +++ b/src/IconSettingsSystemDaydreamSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsSystemDaydreamSharp as default } diff --git a/src/IconSettingsSystemDaydreamTwoTone.tsx b/src/IconSettingsSystemDaydreamTwoTone.tsx new file mode 100644 index 000000000..538f2c740 --- /dev/null +++ b/src/IconSettingsSystemDaydreamTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsSystemDaydreamTwoTone as default } diff --git a/src/IconSettingsTwoTone.tsx b/src/IconSettingsTwoTone.tsx new file mode 100644 index 000000000..740c500c4 --- /dev/null +++ b/src/IconSettingsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsTwoTone as default } diff --git a/src/IconSettingsVoiceOutlined.tsx b/src/IconSettingsVoiceOutlined.tsx new file mode 100644 index 000000000..727b76e06 --- /dev/null +++ b/src/IconSettingsVoiceOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsVoiceOutlined as default } diff --git a/src/IconSettingsVoiceRound.tsx b/src/IconSettingsVoiceRound.tsx new file mode 100644 index 000000000..ee503bd17 --- /dev/null +++ b/src/IconSettingsVoiceRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsVoiceRound as default } diff --git a/src/IconSettingsVoiceSharp.tsx b/src/IconSettingsVoiceSharp.tsx new file mode 100644 index 000000000..0f9802960 --- /dev/null +++ b/src/IconSettingsVoiceSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSettingsVoiceSharp as default } diff --git a/src/IconSettingsVoiceTwoTone.tsx b/src/IconSettingsVoiceTwoTone.tsx new file mode 100644 index 000000000..a4e6cdb74 --- /dev/null +++ b/src/IconSettingsVoiceTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSettingsVoiceTwoTone as default } diff --git a/src/IconSevereColdOutlined.tsx b/src/IconSevereColdOutlined.tsx new file mode 100644 index 000000000..172d49f20 --- /dev/null +++ b/src/IconSevereColdOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSevereColdOutlined as default } diff --git a/src/IconSevereColdRound.tsx b/src/IconSevereColdRound.tsx new file mode 100644 index 000000000..a8c322b34 --- /dev/null +++ b/src/IconSevereColdRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSevereColdRound as default } diff --git a/src/IconSevereColdSharp.tsx b/src/IconSevereColdSharp.tsx new file mode 100644 index 000000000..5bf1d933f --- /dev/null +++ b/src/IconSevereColdSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSevereColdSharp as default } diff --git a/src/IconSevereColdTwoTone.tsx b/src/IconSevereColdTwoTone.tsx new file mode 100644 index 000000000..3480e8c93 --- /dev/null +++ b/src/IconSevereColdTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSevereColdTwoTone as default } diff --git a/src/IconShapeLineOutlined.tsx b/src/IconShapeLineOutlined.tsx new file mode 100644 index 000000000..fbd133ecc --- /dev/null +++ b/src/IconShapeLineOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconShapeLineOutlined as default } diff --git a/src/IconShapeLineRound.tsx b/src/IconShapeLineRound.tsx new file mode 100644 index 000000000..a46fcc2f5 --- /dev/null +++ b/src/IconShapeLineRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconShapeLineRound as default } diff --git a/src/IconShapeLineSharp.tsx b/src/IconShapeLineSharp.tsx new file mode 100644 index 000000000..9617524ca --- /dev/null +++ b/src/IconShapeLineSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconShapeLineSharp as default } diff --git a/src/IconShapeLineTwoTone.tsx b/src/IconShapeLineTwoTone.tsx new file mode 100644 index 000000000..368f20da8 --- /dev/null +++ b/src/IconShapeLineTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconShapeLineTwoTone as default } diff --git a/src/IconShareLocationOutlined.tsx b/src/IconShareLocationOutlined.tsx new file mode 100644 index 000000000..cb39f7d7e --- /dev/null +++ b/src/IconShareLocationOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconShareLocationOutlined as default } diff --git a/src/IconShareLocationRound.tsx b/src/IconShareLocationRound.tsx new file mode 100644 index 000000000..8c52248d6 --- /dev/null +++ b/src/IconShareLocationRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconShareLocationRound as default } diff --git a/src/IconShareLocationSharp.tsx b/src/IconShareLocationSharp.tsx new file mode 100644 index 000000000..937d06668 --- /dev/null +++ b/src/IconShareLocationSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconShareLocationSharp as default } diff --git a/src/IconShareLocationTwoTone.tsx b/src/IconShareLocationTwoTone.tsx new file mode 100644 index 000000000..ffea37c8c --- /dev/null +++ b/src/IconShareLocationTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconShareLocationTwoTone as default } diff --git a/src/IconShareOutlined.tsx b/src/IconShareOutlined.tsx new file mode 100644 index 000000000..366e5e12e --- /dev/null +++ b/src/IconShareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShareOutlined as default } diff --git a/src/IconShareRound.tsx b/src/IconShareRound.tsx new file mode 100644 index 000000000..c3cfb3ff2 --- /dev/null +++ b/src/IconShareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShareRound as default } diff --git a/src/IconShareSharp.tsx b/src/IconShareSharp.tsx new file mode 100644 index 000000000..596416bce --- /dev/null +++ b/src/IconShareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShareSharp as default } diff --git a/src/IconShareTwoTone.tsx b/src/IconShareTwoTone.tsx new file mode 100644 index 000000000..8820d2ee6 --- /dev/null +++ b/src/IconShareTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconShareTwoTone as default } diff --git a/src/IconShieldMoonOutlined.tsx b/src/IconShieldMoonOutlined.tsx new file mode 100644 index 000000000..9fc75ec1e --- /dev/null +++ b/src/IconShieldMoonOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconShieldMoonOutlined as default } diff --git a/src/IconShieldMoonRound.tsx b/src/IconShieldMoonRound.tsx new file mode 100644 index 000000000..92fb8694c --- /dev/null +++ b/src/IconShieldMoonRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconShieldMoonRound as default } diff --git a/src/IconShieldMoonSharp.tsx b/src/IconShieldMoonSharp.tsx new file mode 100644 index 000000000..f51cf0c8f --- /dev/null +++ b/src/IconShieldMoonSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShieldMoonSharp as default } diff --git a/src/IconShieldMoonTwoTone.tsx b/src/IconShieldMoonTwoTone.tsx new file mode 100644 index 000000000..dbbb30657 --- /dev/null +++ b/src/IconShieldMoonTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconShieldMoonTwoTone as default } diff --git a/src/IconShieldOutlined.tsx b/src/IconShieldOutlined.tsx new file mode 100644 index 000000000..40863141e --- /dev/null +++ b/src/IconShieldOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShieldOutlined as default } diff --git a/src/IconShieldRound.tsx b/src/IconShieldRound.tsx new file mode 100644 index 000000000..c81104d11 --- /dev/null +++ b/src/IconShieldRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconShieldRound as default } diff --git a/src/IconShieldSharp.tsx b/src/IconShieldSharp.tsx new file mode 100644 index 000000000..9869a0ec0 --- /dev/null +++ b/src/IconShieldSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconShieldSharp as default } diff --git a/src/IconShieldTwoTone.tsx b/src/IconShieldTwoTone.tsx new file mode 100644 index 000000000..bf9e1dec3 --- /dev/null +++ b/src/IconShieldTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconShieldTwoTone as default } diff --git a/src/IconShop2Outlined.tsx b/src/IconShop2Outlined.tsx new file mode 100644 index 000000000..1ce21a807 --- /dev/null +++ b/src/IconShop2Outlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShop2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconShop2Outlined as default } diff --git a/src/IconShop2Round.tsx b/src/IconShop2Round.tsx new file mode 100644 index 000000000..bd8ef38ed --- /dev/null +++ b/src/IconShop2Round.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShop2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconShop2Round as default } diff --git a/src/IconShop2Sharp.tsx b/src/IconShop2Sharp.tsx new file mode 100644 index 000000000..62b7fd9f4 --- /dev/null +++ b/src/IconShop2Sharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShop2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconShop2Sharp as default } diff --git a/src/IconShop2TwoTone.tsx b/src/IconShop2TwoTone.tsx new file mode 100644 index 000000000..925cf6890 --- /dev/null +++ b/src/IconShop2TwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShop2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconShop2TwoTone as default } diff --git a/src/IconShopOutlined.tsx b/src/IconShopOutlined.tsx new file mode 100644 index 000000000..6f3f9e925 --- /dev/null +++ b/src/IconShopOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopOutlined as default } diff --git a/src/IconShopRound.tsx b/src/IconShopRound.tsx new file mode 100644 index 000000000..b2b75ecf3 --- /dev/null +++ b/src/IconShopRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopRound as default } diff --git a/src/IconShopSharp.tsx b/src/IconShopSharp.tsx new file mode 100644 index 000000000..923b6bde1 --- /dev/null +++ b/src/IconShopSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopSharp as default } diff --git a/src/IconShopTwoOutlined.tsx b/src/IconShopTwoOutlined.tsx new file mode 100644 index 000000000..e65204107 --- /dev/null +++ b/src/IconShopTwoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopTwoOutlined as default } diff --git a/src/IconShopTwoRound.tsx b/src/IconShopTwoRound.tsx new file mode 100644 index 000000000..c637144d1 --- /dev/null +++ b/src/IconShopTwoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopTwoRound as default } diff --git a/src/IconShopTwoSharp.tsx b/src/IconShopTwoSharp.tsx new file mode 100644 index 000000000..7f4c13bf2 --- /dev/null +++ b/src/IconShopTwoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShopTwoSharp as default } diff --git a/src/IconShopTwoTone.tsx b/src/IconShopTwoTone.tsx new file mode 100644 index 000000000..47cdb6788 --- /dev/null +++ b/src/IconShopTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconShopTwoTone as default } diff --git a/src/IconShopTwoTwoTone.tsx b/src/IconShopTwoTwoTone.tsx new file mode 100644 index 000000000..911825f53 --- /dev/null +++ b/src/IconShopTwoTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconShopTwoTwoTone as default } diff --git a/src/IconShoppingBagOutlined.tsx b/src/IconShoppingBagOutlined.tsx new file mode 100644 index 000000000..1fb83ff92 --- /dev/null +++ b/src/IconShoppingBagOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconShoppingBagOutlined as default } diff --git a/src/IconShoppingBagRound.tsx b/src/IconShoppingBagRound.tsx new file mode 100644 index 000000000..a473030d2 --- /dev/null +++ b/src/IconShoppingBagRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconShoppingBagRound as default } diff --git a/src/IconShoppingBagSharp.tsx b/src/IconShoppingBagSharp.tsx new file mode 100644 index 000000000..31e2156c9 --- /dev/null +++ b/src/IconShoppingBagSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconShoppingBagSharp as default } diff --git a/src/IconShoppingBagTwoTone.tsx b/src/IconShoppingBagTwoTone.tsx new file mode 100644 index 000000000..946542327 --- /dev/null +++ b/src/IconShoppingBagTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconShoppingBagTwoTone as default } diff --git a/src/IconShoppingBasketOutlined.tsx b/src/IconShoppingBasketOutlined.tsx new file mode 100644 index 000000000..13159d02c --- /dev/null +++ b/src/IconShoppingBasketOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingBasketOutlined as default } diff --git a/src/IconShoppingBasketRound.tsx b/src/IconShoppingBasketRound.tsx new file mode 100644 index 000000000..76eeab8ee --- /dev/null +++ b/src/IconShoppingBasketRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingBasketRound as default } diff --git a/src/IconShoppingBasketSharp.tsx b/src/IconShoppingBasketSharp.tsx new file mode 100644 index 000000000..57216a081 --- /dev/null +++ b/src/IconShoppingBasketSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingBasketSharp as default } diff --git a/src/IconShoppingBasketTwoTone.tsx b/src/IconShoppingBasketTwoTone.tsx new file mode 100644 index 000000000..15c5624e6 --- /dev/null +++ b/src/IconShoppingBasketTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconShoppingBasketTwoTone as default } diff --git a/src/IconShoppingCartCheckoutOutlined.tsx b/src/IconShoppingCartCheckoutOutlined.tsx new file mode 100644 index 000000000..f7c982fba --- /dev/null +++ b/src/IconShoppingCartCheckoutOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShoppingCartCheckoutOutlined as default } diff --git a/src/IconShoppingCartCheckoutRound.tsx b/src/IconShoppingCartCheckoutRound.tsx new file mode 100644 index 000000000..c877573eb --- /dev/null +++ b/src/IconShoppingCartCheckoutRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconShoppingCartCheckoutRound as default } diff --git a/src/IconShoppingCartCheckoutSharp.tsx b/src/IconShoppingCartCheckoutSharp.tsx new file mode 100644 index 000000000..229f6f5fa --- /dev/null +++ b/src/IconShoppingCartCheckoutSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShoppingCartCheckoutSharp as default } diff --git a/src/IconShoppingCartCheckoutTwoTone.tsx b/src/IconShoppingCartCheckoutTwoTone.tsx new file mode 100644 index 000000000..3808f1761 --- /dev/null +++ b/src/IconShoppingCartCheckoutTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShoppingCartCheckoutTwoTone as default } diff --git a/src/IconShoppingCartOutlined.tsx b/src/IconShoppingCartOutlined.tsx new file mode 100644 index 000000000..dc76bcc25 --- /dev/null +++ b/src/IconShoppingCartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingCartOutlined as default } diff --git a/src/IconShoppingCartRound.tsx b/src/IconShoppingCartRound.tsx new file mode 100644 index 000000000..d31e80a60 --- /dev/null +++ b/src/IconShoppingCartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingCartRound as default } diff --git a/src/IconShoppingCartSharp.tsx b/src/IconShoppingCartSharp.tsx new file mode 100644 index 000000000..2aba690e1 --- /dev/null +++ b/src/IconShoppingCartSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShoppingCartSharp as default } diff --git a/src/IconShoppingCartTwoTone.tsx b/src/IconShoppingCartTwoTone.tsx new file mode 100644 index 000000000..19ed16465 --- /dev/null +++ b/src/IconShoppingCartTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconShoppingCartTwoTone as default } diff --git a/src/IconShortTextOutlined.tsx b/src/IconShortTextOutlined.tsx new file mode 100644 index 000000000..8618644a1 --- /dev/null +++ b/src/IconShortTextOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShortTextOutlined as default } diff --git a/src/IconShortTextRound.tsx b/src/IconShortTextRound.tsx new file mode 100644 index 000000000..cddc07055 --- /dev/null +++ b/src/IconShortTextRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShortTextRound as default } diff --git a/src/IconShortTextSharp.tsx b/src/IconShortTextSharp.tsx new file mode 100644 index 000000000..cf08372be --- /dev/null +++ b/src/IconShortTextSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortTextSharp as default } diff --git a/src/IconShortTextTwoTone.tsx b/src/IconShortTextTwoTone.tsx new file mode 100644 index 000000000..b68e5e22a --- /dev/null +++ b/src/IconShortTextTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShortTextTwoTone as default } diff --git a/src/IconShortcutOutlined.tsx b/src/IconShortcutOutlined.tsx new file mode 100644 index 000000000..13c02e8e4 --- /dev/null +++ b/src/IconShortcutOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortcutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShortcutOutlined as default } diff --git a/src/IconShortcutRound.tsx b/src/IconShortcutRound.tsx new file mode 100644 index 000000000..53a28b605 --- /dev/null +++ b/src/IconShortcutRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortcutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShortcutRound as default } diff --git a/src/IconShortcutSharp.tsx b/src/IconShortcutSharp.tsx new file mode 100644 index 000000000..819099d49 --- /dev/null +++ b/src/IconShortcutSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortcutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShortcutSharp as default } diff --git a/src/IconShortcutTwoTone.tsx b/src/IconShortcutTwoTone.tsx new file mode 100644 index 000000000..adfc24042 --- /dev/null +++ b/src/IconShortcutTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortcutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShortcutTwoTone as default } diff --git a/src/IconShowChartOutlined.tsx b/src/IconShowChartOutlined.tsx new file mode 100644 index 000000000..90e87e8f9 --- /dev/null +++ b/src/IconShowChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShowChartOutlined as default } diff --git a/src/IconShowChartRound.tsx b/src/IconShowChartRound.tsx new file mode 100644 index 000000000..056e9c676 --- /dev/null +++ b/src/IconShowChartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShowChartRound as default } diff --git a/src/IconShowChartSharp.tsx b/src/IconShowChartSharp.tsx new file mode 100644 index 000000000..f27a732be --- /dev/null +++ b/src/IconShowChartSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowChartSharp as default } diff --git a/src/IconShowChartTwoTone.tsx b/src/IconShowChartTwoTone.tsx new file mode 100644 index 000000000..7f8d12421 --- /dev/null +++ b/src/IconShowChartTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShowChartTwoTone as default } diff --git a/src/IconShowerOutlined.tsx b/src/IconShowerOutlined.tsx new file mode 100644 index 000000000..b4dbae265 --- /dev/null +++ b/src/IconShowerOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShowerOutlined as default } diff --git a/src/IconShowerRound.tsx b/src/IconShowerRound.tsx new file mode 100644 index 000000000..d3ea6ba9b --- /dev/null +++ b/src/IconShowerRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconShowerRound as default } diff --git a/src/IconShowerSharp.tsx b/src/IconShowerSharp.tsx new file mode 100644 index 000000000..3116edfc4 --- /dev/null +++ b/src/IconShowerSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconShowerSharp as default } diff --git a/src/IconShowerTwoTone.tsx b/src/IconShowerTwoTone.tsx new file mode 100644 index 000000000..e6b43c3a4 --- /dev/null +++ b/src/IconShowerTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconShowerTwoTone as default } diff --git a/src/IconShuffleOnOutlined.tsx b/src/IconShuffleOnOutlined.tsx new file mode 100644 index 000000000..f7cfaeddc --- /dev/null +++ b/src/IconShuffleOnOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShuffleOnOutlined as default } diff --git a/src/IconShuffleOnRound.tsx b/src/IconShuffleOnRound.tsx new file mode 100644 index 000000000..afd0115a0 --- /dev/null +++ b/src/IconShuffleOnRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShuffleOnRound as default } diff --git a/src/IconShuffleOnSharp.tsx b/src/IconShuffleOnSharp.tsx new file mode 100644 index 000000000..29eedae22 --- /dev/null +++ b/src/IconShuffleOnSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShuffleOnSharp as default } diff --git a/src/IconShuffleOnTwoTone.tsx b/src/IconShuffleOnTwoTone.tsx new file mode 100644 index 000000000..fc03df689 --- /dev/null +++ b/src/IconShuffleOnTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconShuffleOnTwoTone as default } diff --git a/src/IconShuffleOutlined.tsx b/src/IconShuffleOutlined.tsx new file mode 100644 index 000000000..61b10ad19 --- /dev/null +++ b/src/IconShuffleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShuffleOutlined as default } diff --git a/src/IconShuffleRound.tsx b/src/IconShuffleRound.tsx new file mode 100644 index 000000000..9bff02cd1 --- /dev/null +++ b/src/IconShuffleRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleRound as default } diff --git a/src/IconShuffleSharp.tsx b/src/IconShuffleSharp.tsx new file mode 100644 index 000000000..6c1661105 --- /dev/null +++ b/src/IconShuffleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShuffleSharp as default } diff --git a/src/IconShuffleTwoTone.tsx b/src/IconShuffleTwoTone.tsx new file mode 100644 index 000000000..d2fa6ccc1 --- /dev/null +++ b/src/IconShuffleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShuffleTwoTone as default } diff --git a/src/IconShutterSpeedOutlined.tsx b/src/IconShutterSpeedOutlined.tsx new file mode 100644 index 000000000..9abc767fd --- /dev/null +++ b/src/IconShutterSpeedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShutterSpeedOutlined as default } diff --git a/src/IconShutterSpeedRound.tsx b/src/IconShutterSpeedRound.tsx new file mode 100644 index 000000000..e113498f0 --- /dev/null +++ b/src/IconShutterSpeedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShutterSpeedRound as default } diff --git a/src/IconShutterSpeedSharp.tsx b/src/IconShutterSpeedSharp.tsx new file mode 100644 index 000000000..27ab455cd --- /dev/null +++ b/src/IconShutterSpeedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconShutterSpeedSharp as default } diff --git a/src/IconShutterSpeedTwoTone.tsx b/src/IconShutterSpeedTwoTone.tsx new file mode 100644 index 000000000..319a3c1ff --- /dev/null +++ b/src/IconShutterSpeedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconShutterSpeedTwoTone as default } diff --git a/src/IconSickOutlined.tsx b/src/IconSickOutlined.tsx new file mode 100644 index 000000000..fd88ef95d --- /dev/null +++ b/src/IconSickOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSickOutlined as default } diff --git a/src/IconSickRound.tsx b/src/IconSickRound.tsx new file mode 100644 index 000000000..102361179 --- /dev/null +++ b/src/IconSickRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSickRound as default } diff --git a/src/IconSickSharp.tsx b/src/IconSickSharp.tsx new file mode 100644 index 000000000..9b00e945e --- /dev/null +++ b/src/IconSickSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSickSharp as default } diff --git a/src/IconSickTwoTone.tsx b/src/IconSickTwoTone.tsx new file mode 100644 index 000000000..17c741d7c --- /dev/null +++ b/src/IconSickTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSickTwoTone as default } diff --git a/src/IconSignLanguageOutlined.tsx b/src/IconSignLanguageOutlined.tsx new file mode 100644 index 000000000..3f0b905dc --- /dev/null +++ b/src/IconSignLanguageOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignLanguageOutlined as default } diff --git a/src/IconSignLanguageRound.tsx b/src/IconSignLanguageRound.tsx new file mode 100644 index 000000000..1aa0ede8b --- /dev/null +++ b/src/IconSignLanguageRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSignLanguageRound as default } diff --git a/src/IconSignLanguageSharp.tsx b/src/IconSignLanguageSharp.tsx new file mode 100644 index 000000000..31b397eed --- /dev/null +++ b/src/IconSignLanguageSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignLanguageSharp as default } diff --git a/src/IconSignLanguageTwoTone.tsx b/src/IconSignLanguageTwoTone.tsx new file mode 100644 index 000000000..386257e3d --- /dev/null +++ b/src/IconSignLanguageTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSignLanguageTwoTone as default } diff --git a/src/IconSignalCellular0BarOutlined.tsx b/src/IconSignalCellular0BarOutlined.tsx new file mode 100644 index 000000000..285aeb2bc --- /dev/null +++ b/src/IconSignalCellular0BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellular0BarOutlined as default } diff --git a/src/IconSignalCellular0BarRound.tsx b/src/IconSignalCellular0BarRound.tsx new file mode 100644 index 000000000..b8374b512 --- /dev/null +++ b/src/IconSignalCellular0BarRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellular0BarRound as default } diff --git a/src/IconSignalCellular0BarSharp.tsx b/src/IconSignalCellular0BarSharp.tsx new file mode 100644 index 000000000..fe32eed66 --- /dev/null +++ b/src/IconSignalCellular0BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellular0BarSharp as default } diff --git a/src/IconSignalCellular0BarTwoTone.tsx b/src/IconSignalCellular0BarTwoTone.tsx new file mode 100644 index 000000000..da9d4d970 --- /dev/null +++ b/src/IconSignalCellular0BarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellular0BarTwoTone as default } diff --git a/src/IconSignalCellular4BarOutlined.tsx b/src/IconSignalCellular4BarOutlined.tsx new file mode 100644 index 000000000..6ea1c5854 --- /dev/null +++ b/src/IconSignalCellular4BarOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellular4BarOutlined as default } diff --git a/src/IconSignalCellular4BarRound.tsx b/src/IconSignalCellular4BarRound.tsx new file mode 100644 index 000000000..723291b9b --- /dev/null +++ b/src/IconSignalCellular4BarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellular4BarRound as default } diff --git a/src/IconSignalCellular4BarSharp.tsx b/src/IconSignalCellular4BarSharp.tsx new file mode 100644 index 000000000..5455bd8ec --- /dev/null +++ b/src/IconSignalCellular4BarSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellular4BarSharp as default } diff --git a/src/IconSignalCellular4BarTwoTone.tsx b/src/IconSignalCellular4BarTwoTone.tsx new file mode 100644 index 000000000..0ca120c25 --- /dev/null +++ b/src/IconSignalCellular4BarTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellular4BarTwoTone as default } diff --git a/src/IconSignalCellularAlt1BarOutlined.tsx b/src/IconSignalCellularAlt1BarOutlined.tsx new file mode 100644 index 000000000..400775921 --- /dev/null +++ b/src/IconSignalCellularAlt1BarOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellularAlt1BarOutlined as default } diff --git a/src/IconSignalCellularAlt1BarRound.tsx b/src/IconSignalCellularAlt1BarRound.tsx new file mode 100644 index 000000000..64a575eb3 --- /dev/null +++ b/src/IconSignalCellularAlt1BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSignalCellularAlt1BarRound as default } diff --git a/src/IconSignalCellularAlt1BarSharp.tsx b/src/IconSignalCellularAlt1BarSharp.tsx new file mode 100644 index 000000000..3c427394a --- /dev/null +++ b/src/IconSignalCellularAlt1BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellularAlt1BarSharp as default } diff --git a/src/IconSignalCellularAlt1BarTwoTone.tsx b/src/IconSignalCellularAlt1BarTwoTone.tsx new file mode 100644 index 000000000..a3d8b7996 --- /dev/null +++ b/src/IconSignalCellularAlt1BarTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalCellularAlt1BarTwoTone as default } diff --git a/src/IconSignalCellularAlt2BarOutlined.tsx b/src/IconSignalCellularAlt2BarOutlined.tsx new file mode 100644 index 000000000..7ec4fc66a --- /dev/null +++ b/src/IconSignalCellularAlt2BarOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularAlt2BarOutlined as default } diff --git a/src/IconSignalCellularAlt2BarRound.tsx b/src/IconSignalCellularAlt2BarRound.tsx new file mode 100644 index 000000000..5b9ed03ce --- /dev/null +++ b/src/IconSignalCellularAlt2BarRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalCellularAlt2BarRound as default } diff --git a/src/IconSignalCellularAlt2BarSharp.tsx b/src/IconSignalCellularAlt2BarSharp.tsx new file mode 100644 index 000000000..873d3f9b3 --- /dev/null +++ b/src/IconSignalCellularAlt2BarSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularAlt2BarSharp as default } diff --git a/src/IconSignalCellularAlt2BarTwoTone.tsx b/src/IconSignalCellularAlt2BarTwoTone.tsx new file mode 100644 index 000000000..6cdc03f4a --- /dev/null +++ b/src/IconSignalCellularAlt2BarTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularAlt2BarTwoTone as default } diff --git a/src/IconSignalCellularAltOutlined.tsx b/src/IconSignalCellularAltOutlined.tsx new file mode 100644 index 000000000..a957bb9ea --- /dev/null +++ b/src/IconSignalCellularAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularAltOutlined as default } diff --git a/src/IconSignalCellularAltRound.tsx b/src/IconSignalCellularAltRound.tsx new file mode 100644 index 000000000..82f31f453 --- /dev/null +++ b/src/IconSignalCellularAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularAltRound as default } diff --git a/src/IconSignalCellularAltSharp.tsx b/src/IconSignalCellularAltSharp.tsx new file mode 100644 index 000000000..7e24d9004 --- /dev/null +++ b/src/IconSignalCellularAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularAltSharp as default } diff --git a/src/IconSignalCellularAltTwoTone.tsx b/src/IconSignalCellularAltTwoTone.tsx new file mode 100644 index 000000000..5ddeb2c54 --- /dev/null +++ b/src/IconSignalCellularAltTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularAltTwoTone as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx b/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx new file mode 100644 index 000000000..191d498bf --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarOutlined: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularConnectedNoInternet0BarOutlined as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarRound.tsx b/src/IconSignalCellularConnectedNoInternet0BarRound.tsx new file mode 100644 index 000000000..0718f2fae --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularConnectedNoInternet0BarRound as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx b/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx new file mode 100644 index 000000000..1813406d9 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularConnectedNoInternet0BarSharp as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarTwoTone.tsx b/src/IconSignalCellularConnectedNoInternet0BarTwoTone.tsx new file mode 100644 index 000000000..10ba22b0f --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularConnectedNoInternet0BarTwoTone as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx b/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx new file mode 100644 index 000000000..81e43a6d3 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarOutlined: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalCellularConnectedNoInternet4BarOutlined as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarRound.tsx b/src/IconSignalCellularConnectedNoInternet4BarRound.tsx new file mode 100644 index 000000000..300a2a90b --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalCellularConnectedNoInternet4BarRound as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx b/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx new file mode 100644 index 000000000..2e100a55d --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalCellularConnectedNoInternet4BarSharp as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarTwoTone.tsx b/src/IconSignalCellularConnectedNoInternet4BarTwoTone.tsx new file mode 100644 index 000000000..85183675d --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalCellularConnectedNoInternet4BarTwoTone as default } diff --git a/src/IconSignalCellularNoSimOutlined.tsx b/src/IconSignalCellularNoSimOutlined.tsx new file mode 100644 index 000000000..13453d434 --- /dev/null +++ b/src/IconSignalCellularNoSimOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNoSimOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNoSimOutlined as default } diff --git a/src/IconSignalCellularNoSimRound.tsx b/src/IconSignalCellularNoSimRound.tsx new file mode 100644 index 000000000..b8d995be4 --- /dev/null +++ b/src/IconSignalCellularNoSimRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNoSimRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNoSimRound as default } diff --git a/src/IconSignalCellularNoSimSharp.tsx b/src/IconSignalCellularNoSimSharp.tsx new file mode 100644 index 000000000..4bc6759d9 --- /dev/null +++ b/src/IconSignalCellularNoSimSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNoSimSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNoSimSharp as default } diff --git a/src/IconSignalCellularNoSimTwoTone.tsx b/src/IconSignalCellularNoSimTwoTone.tsx new file mode 100644 index 000000000..2e44932ea --- /dev/null +++ b/src/IconSignalCellularNoSimTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNoSimTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSignalCellularNoSimTwoTone as default } diff --git a/src/IconSignalCellularNodataOutlined.tsx b/src/IconSignalCellularNodataOutlined.tsx new file mode 100644 index 000000000..d99931a59 --- /dev/null +++ b/src/IconSignalCellularNodataOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularNodataOutlined as default } diff --git a/src/IconSignalCellularNodataRound.tsx b/src/IconSignalCellularNodataRound.tsx new file mode 100644 index 000000000..edf3d25e6 --- /dev/null +++ b/src/IconSignalCellularNodataRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularNodataRound as default } diff --git a/src/IconSignalCellularNodataSharp.tsx b/src/IconSignalCellularNodataSharp.tsx new file mode 100644 index 000000000..686ecd821 --- /dev/null +++ b/src/IconSignalCellularNodataSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularNodataSharp as default } diff --git a/src/IconSignalCellularNodataTwoTone.tsx b/src/IconSignalCellularNodataTwoTone.tsx new file mode 100644 index 000000000..f51ad596c --- /dev/null +++ b/src/IconSignalCellularNodataTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignalCellularNodataTwoTone as default } diff --git a/src/IconSignalCellularNullOutlined.tsx b/src/IconSignalCellularNullOutlined.tsx new file mode 100644 index 000000000..4c28fed38 --- /dev/null +++ b/src/IconSignalCellularNullOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNullOutlined as default } diff --git a/src/IconSignalCellularNullRound.tsx b/src/IconSignalCellularNullRound.tsx new file mode 100644 index 000000000..7295e932f --- /dev/null +++ b/src/IconSignalCellularNullRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNullRound as default } diff --git a/src/IconSignalCellularNullSharp.tsx b/src/IconSignalCellularNullSharp.tsx new file mode 100644 index 000000000..48b3e38f8 --- /dev/null +++ b/src/IconSignalCellularNullSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNullSharp as default } diff --git a/src/IconSignalCellularNullTwoTone.tsx b/src/IconSignalCellularNullTwoTone.tsx new file mode 100644 index 000000000..900372c70 --- /dev/null +++ b/src/IconSignalCellularNullTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularNullTwoTone as default } diff --git a/src/IconSignalCellularOffOutlined.tsx b/src/IconSignalCellularOffOutlined.tsx new file mode 100644 index 000000000..c6946822d --- /dev/null +++ b/src/IconSignalCellularOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularOffOutlined as default } diff --git a/src/IconSignalCellularOffRound.tsx b/src/IconSignalCellularOffRound.tsx new file mode 100644 index 000000000..cc1fd3d11 --- /dev/null +++ b/src/IconSignalCellularOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularOffRound as default } diff --git a/src/IconSignalCellularOffSharp.tsx b/src/IconSignalCellularOffSharp.tsx new file mode 100644 index 000000000..82195cc8d --- /dev/null +++ b/src/IconSignalCellularOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularOffSharp as default } diff --git a/src/IconSignalCellularOffTwoTone.tsx b/src/IconSignalCellularOffTwoTone.tsx new file mode 100644 index 000000000..5fa061128 --- /dev/null +++ b/src/IconSignalCellularOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalCellularOffTwoTone as default } diff --git a/src/IconSignalWifi0BarOutlined.tsx b/src/IconSignalWifi0BarOutlined.tsx new file mode 100644 index 000000000..e20a25d39 --- /dev/null +++ b/src/IconSignalWifi0BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifi0BarOutlined as default } diff --git a/src/IconSignalWifi0BarRound.tsx b/src/IconSignalWifi0BarRound.tsx new file mode 100644 index 000000000..faa22447d --- /dev/null +++ b/src/IconSignalWifi0BarRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifi0BarRound as default } diff --git a/src/IconSignalWifi0BarSharp.tsx b/src/IconSignalWifi0BarSharp.tsx new file mode 100644 index 000000000..69bbe9bb8 --- /dev/null +++ b/src/IconSignalWifi0BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifi0BarSharp as default } diff --git a/src/IconSignalWifi0BarTwoTone.tsx b/src/IconSignalWifi0BarTwoTone.tsx new file mode 100644 index 000000000..eb72c6437 --- /dev/null +++ b/src/IconSignalWifi0BarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifi0BarTwoTone as default } diff --git a/src/IconSignalWifi4BarLockOutlined.tsx b/src/IconSignalWifi4BarLockOutlined.tsx new file mode 100644 index 000000000..f825bd49d --- /dev/null +++ b/src/IconSignalWifi4BarLockOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifi4BarLockOutlined as default } diff --git a/src/IconSignalWifi4BarLockRound.tsx b/src/IconSignalWifi4BarLockRound.tsx new file mode 100644 index 000000000..5c7b2f6d6 --- /dev/null +++ b/src/IconSignalWifi4BarLockRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifi4BarLockRound as default } diff --git a/src/IconSignalWifi4BarLockSharp.tsx b/src/IconSignalWifi4BarLockSharp.tsx new file mode 100644 index 000000000..5edd65a2d --- /dev/null +++ b/src/IconSignalWifi4BarLockSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifi4BarLockSharp as default } diff --git a/src/IconSignalWifi4BarLockTwoTone.tsx b/src/IconSignalWifi4BarLockTwoTone.tsx new file mode 100644 index 000000000..2e698c07a --- /dev/null +++ b/src/IconSignalWifi4BarLockTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifi4BarLockTwoTone as default } diff --git a/src/IconSignalWifi4BarOutlined.tsx b/src/IconSignalWifi4BarOutlined.tsx new file mode 100644 index 000000000..129c0a89a --- /dev/null +++ b/src/IconSignalWifi4BarOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifi4BarOutlined as default } diff --git a/src/IconSignalWifi4BarRound.tsx b/src/IconSignalWifi4BarRound.tsx new file mode 100644 index 000000000..368ca3131 --- /dev/null +++ b/src/IconSignalWifi4BarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifi4BarRound as default } diff --git a/src/IconSignalWifi4BarSharp.tsx b/src/IconSignalWifi4BarSharp.tsx new file mode 100644 index 000000000..d347eab14 --- /dev/null +++ b/src/IconSignalWifi4BarSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifi4BarSharp as default } diff --git a/src/IconSignalWifi4BarTwoTone.tsx b/src/IconSignalWifi4BarTwoTone.tsx new file mode 100644 index 000000000..e46891d19 --- /dev/null +++ b/src/IconSignalWifi4BarTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifi4BarTwoTone as default } diff --git a/src/IconSignalWifiBadOutlined.tsx b/src/IconSignalWifiBadOutlined.tsx new file mode 100644 index 000000000..1cfd67bad --- /dev/null +++ b/src/IconSignalWifiBadOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiBadOutlined as default } diff --git a/src/IconSignalWifiBadRound.tsx b/src/IconSignalWifiBadRound.tsx new file mode 100644 index 000000000..921dacc99 --- /dev/null +++ b/src/IconSignalWifiBadRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifiBadRound as default } diff --git a/src/IconSignalWifiBadSharp.tsx b/src/IconSignalWifiBadSharp.tsx new file mode 100644 index 000000000..8932d942d --- /dev/null +++ b/src/IconSignalWifiBadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiBadSharp as default } diff --git a/src/IconSignalWifiBadTwoTone.tsx b/src/IconSignalWifiBadTwoTone.tsx new file mode 100644 index 000000000..412328764 --- /dev/null +++ b/src/IconSignalWifiBadTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiBadTwoTone as default } diff --git a/src/IconSignalWifiConnectedNoInternet4Outlined.tsx b/src/IconSignalWifiConnectedNoInternet4Outlined.tsx new file mode 100644 index 000000000..f2756d728 --- /dev/null +++ b/src/IconSignalWifiConnectedNoInternet4Outlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiConnectedNoInternet4Outlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiConnectedNoInternet4Outlined as default } diff --git a/src/IconSignalWifiConnectedNoInternet4Round.tsx b/src/IconSignalWifiConnectedNoInternet4Round.tsx new file mode 100644 index 000000000..f5376fbda --- /dev/null +++ b/src/IconSignalWifiConnectedNoInternet4Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiConnectedNoInternet4Round: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSignalWifiConnectedNoInternet4Round as default } diff --git a/src/IconSignalWifiConnectedNoInternet4Sharp.tsx b/src/IconSignalWifiConnectedNoInternet4Sharp.tsx new file mode 100644 index 000000000..760281c7c --- /dev/null +++ b/src/IconSignalWifiConnectedNoInternet4Sharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiConnectedNoInternet4Sharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiConnectedNoInternet4Sharp as default } diff --git a/src/IconSignalWifiConnectedNoInternet4TwoTone.tsx b/src/IconSignalWifiConnectedNoInternet4TwoTone.tsx new file mode 100644 index 000000000..1c6256669 --- /dev/null +++ b/src/IconSignalWifiConnectedNoInternet4TwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiConnectedNoInternet4TwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiConnectedNoInternet4TwoTone as default } diff --git a/src/IconSignalWifiOffOutlined.tsx b/src/IconSignalWifiOffOutlined.tsx new file mode 100644 index 000000000..fbb6d7071 --- /dev/null +++ b/src/IconSignalWifiOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifiOffOutlined as default } diff --git a/src/IconSignalWifiOffRound.tsx b/src/IconSignalWifiOffRound.tsx new file mode 100644 index 000000000..5d336b8e3 --- /dev/null +++ b/src/IconSignalWifiOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifiOffRound as default } diff --git a/src/IconSignalWifiOffSharp.tsx b/src/IconSignalWifiOffSharp.tsx new file mode 100644 index 000000000..627447812 --- /dev/null +++ b/src/IconSignalWifiOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifiOffSharp as default } diff --git a/src/IconSignalWifiOffTwoTone.tsx b/src/IconSignalWifiOffTwoTone.tsx new file mode 100644 index 000000000..9ea02591d --- /dev/null +++ b/src/IconSignalWifiOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifiOffTwoTone as default } diff --git a/src/IconSignalWifiStatusbar4BarOutlined.tsx b/src/IconSignalWifiStatusbar4BarOutlined.tsx new file mode 100644 index 000000000..b65e58f51 --- /dev/null +++ b/src/IconSignalWifiStatusbar4BarOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbar4BarOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbar4BarOutlined as default } diff --git a/src/IconSignalWifiStatusbar4BarRound.tsx b/src/IconSignalWifiStatusbar4BarRound.tsx new file mode 100644 index 000000000..8694f4aba --- /dev/null +++ b/src/IconSignalWifiStatusbar4BarRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbar4BarRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbar4BarRound as default } diff --git a/src/IconSignalWifiStatusbar4BarSharp.tsx b/src/IconSignalWifiStatusbar4BarSharp.tsx new file mode 100644 index 000000000..2c9621f0b --- /dev/null +++ b/src/IconSignalWifiStatusbar4BarSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbar4BarSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbar4BarSharp as default } diff --git a/src/IconSignalWifiStatusbar4BarTwoTone.tsx b/src/IconSignalWifiStatusbar4BarTwoTone.tsx new file mode 100644 index 000000000..f8e77ddbb --- /dev/null +++ b/src/IconSignalWifiStatusbar4BarTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbar4BarTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbar4BarTwoTone as default } diff --git a/src/IconSignalWifiStatusbarConnectedNoInternet4Outlined.tsx b/src/IconSignalWifiStatusbarConnectedNoInternet4Outlined.tsx new file mode 100644 index 000000000..ea1dff951 --- /dev/null +++ b/src/IconSignalWifiStatusbarConnectedNoInternet4Outlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarConnectedNoInternet4Outlined: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalWifiStatusbarConnectedNoInternet4Outlined as default } diff --git a/src/IconSignalWifiStatusbarConnectedNoInternet4Round.tsx b/src/IconSignalWifiStatusbarConnectedNoInternet4Round.tsx new file mode 100644 index 000000000..7277d3f1f --- /dev/null +++ b/src/IconSignalWifiStatusbarConnectedNoInternet4Round.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarConnectedNoInternet4Round: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSignalWifiStatusbarConnectedNoInternet4Round as default } diff --git a/src/IconSignalWifiStatusbarConnectedNoInternet4Sharp.tsx b/src/IconSignalWifiStatusbarConnectedNoInternet4Sharp.tsx new file mode 100644 index 000000000..d4e136fbe --- /dev/null +++ b/src/IconSignalWifiStatusbarConnectedNoInternet4Sharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarConnectedNoInternet4Sharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalWifiStatusbarConnectedNoInternet4Sharp as default } diff --git a/src/IconSignalWifiStatusbarConnectedNoInternet4TwoTone.tsx b/src/IconSignalWifiStatusbarConnectedNoInternet4TwoTone.tsx new file mode 100644 index 000000000..2e9ca51a7 --- /dev/null +++ b/src/IconSignalWifiStatusbarConnectedNoInternet4TwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarConnectedNoInternet4TwoTone: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSignalWifiStatusbarConnectedNoInternet4TwoTone as default } diff --git a/src/IconSignalWifiStatusbarNullOutlined.tsx b/src/IconSignalWifiStatusbarNullOutlined.tsx new file mode 100644 index 000000000..74d862c7c --- /dev/null +++ b/src/IconSignalWifiStatusbarNullOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbarNullOutlined as default } diff --git a/src/IconSignalWifiStatusbarNullRound.tsx b/src/IconSignalWifiStatusbarNullRound.tsx new file mode 100644 index 000000000..bde606eef --- /dev/null +++ b/src/IconSignalWifiStatusbarNullRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbarNullRound as default } diff --git a/src/IconSignalWifiStatusbarNullSharp.tsx b/src/IconSignalWifiStatusbarNullSharp.tsx new file mode 100644 index 000000000..d7863e37f --- /dev/null +++ b/src/IconSignalWifiStatusbarNullSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbarNullSharp as default } diff --git a/src/IconSignalWifiStatusbarNullTwoTone.tsx b/src/IconSignalWifiStatusbarNullTwoTone.tsx new file mode 100644 index 000000000..1943c4b54 --- /dev/null +++ b/src/IconSignalWifiStatusbarNullTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignalWifiStatusbarNullTwoTone as default } diff --git a/src/IconSignpostOutlined.tsx b/src/IconSignpostOutlined.tsx new file mode 100644 index 000000000..5a14a60fd --- /dev/null +++ b/src/IconSignpostOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSignpostOutlined as default } diff --git a/src/IconSignpostRound.tsx b/src/IconSignpostRound.tsx new file mode 100644 index 000000000..09a870e5c --- /dev/null +++ b/src/IconSignpostRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignpostRound as default } diff --git a/src/IconSignpostSharp.tsx b/src/IconSignpostSharp.tsx new file mode 100644 index 000000000..8cde19100 --- /dev/null +++ b/src/IconSignpostSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSignpostSharp as default } diff --git a/src/IconSignpostTwoTone.tsx b/src/IconSignpostTwoTone.tsx new file mode 100644 index 000000000..bf6019cf2 --- /dev/null +++ b/src/IconSignpostTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSignpostTwoTone as default } diff --git a/src/IconSimCardAlertOutlined.tsx b/src/IconSimCardAlertOutlined.tsx new file mode 100644 index 000000000..8ba1e4349 --- /dev/null +++ b/src/IconSimCardAlertOutlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSimCardAlertOutlined as default } diff --git a/src/IconSimCardAlertRound.tsx b/src/IconSimCardAlertRound.tsx new file mode 100644 index 000000000..ab7e31bb6 --- /dev/null +++ b/src/IconSimCardAlertRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSimCardAlertRound as default } diff --git a/src/IconSimCardAlertSharp.tsx b/src/IconSimCardAlertSharp.tsx new file mode 100644 index 000000000..e0e44918e --- /dev/null +++ b/src/IconSimCardAlertSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSimCardAlertSharp as default } diff --git a/src/IconSimCardAlertTwoTone.tsx b/src/IconSimCardAlertTwoTone.tsx new file mode 100644 index 000000000..3858561a1 --- /dev/null +++ b/src/IconSimCardAlertTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconSimCardAlertTwoTone as default } diff --git a/src/IconSimCardDownloadOutlined.tsx b/src/IconSimCardDownloadOutlined.tsx new file mode 100644 index 000000000..368500bdd --- /dev/null +++ b/src/IconSimCardDownloadOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSimCardDownloadOutlined as default } diff --git a/src/IconSimCardDownloadRound.tsx b/src/IconSimCardDownloadRound.tsx new file mode 100644 index 000000000..2b7f4f70e --- /dev/null +++ b/src/IconSimCardDownloadRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSimCardDownloadRound as default } diff --git a/src/IconSimCardDownloadSharp.tsx b/src/IconSimCardDownloadSharp.tsx new file mode 100644 index 000000000..7ae4accbc --- /dev/null +++ b/src/IconSimCardDownloadSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSimCardDownloadSharp as default } diff --git a/src/IconSimCardDownloadTwoTone.tsx b/src/IconSimCardDownloadTwoTone.tsx new file mode 100644 index 000000000..71d0e544b --- /dev/null +++ b/src/IconSimCardDownloadTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSimCardDownloadTwoTone as default } diff --git a/src/IconSimCardOutlined.tsx b/src/IconSimCardOutlined.tsx new file mode 100644 index 000000000..e6108246b --- /dev/null +++ b/src/IconSimCardOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSimCardOutlined as default } diff --git a/src/IconSimCardRound.tsx b/src/IconSimCardRound.tsx new file mode 100644 index 000000000..4f858a008 --- /dev/null +++ b/src/IconSimCardRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardRound as default } diff --git a/src/IconSimCardSharp.tsx b/src/IconSimCardSharp.tsx new file mode 100644 index 000000000..f4c7b78f6 --- /dev/null +++ b/src/IconSimCardSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSimCardSharp as default } diff --git a/src/IconSimCardTwoTone.tsx b/src/IconSimCardTwoTone.tsx new file mode 100644 index 000000000..1d07d5ab4 --- /dev/null +++ b/src/IconSimCardTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSimCardTwoTone as default } diff --git a/src/IconSingleBedOutlined.tsx b/src/IconSingleBedOutlined.tsx new file mode 100644 index 000000000..cafd8ff9d --- /dev/null +++ b/src/IconSingleBedOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSingleBedOutlined as default } diff --git a/src/IconSingleBedRound.tsx b/src/IconSingleBedRound.tsx new file mode 100644 index 000000000..bae55dc9a --- /dev/null +++ b/src/IconSingleBedRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSingleBedRound as default } diff --git a/src/IconSingleBedSharp.tsx b/src/IconSingleBedSharp.tsx new file mode 100644 index 000000000..f36434bbd --- /dev/null +++ b/src/IconSingleBedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSingleBedSharp as default } diff --git a/src/IconSingleBedTwoTone.tsx b/src/IconSingleBedTwoTone.tsx new file mode 100644 index 000000000..e8b26e2f7 --- /dev/null +++ b/src/IconSingleBedTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSingleBedTwoTone as default } diff --git a/src/IconSipOutlined.tsx b/src/IconSipOutlined.tsx new file mode 100644 index 000000000..fec2cddd5 --- /dev/null +++ b/src/IconSipOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSipOutlined as default } diff --git a/src/IconSipRound.tsx b/src/IconSipRound.tsx new file mode 100644 index 000000000..ef56492f1 --- /dev/null +++ b/src/IconSipRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSipRound as default } diff --git a/src/IconSipSharp.tsx b/src/IconSipSharp.tsx new file mode 100644 index 000000000..28a580fc3 --- /dev/null +++ b/src/IconSipSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSipSharp as default } diff --git a/src/IconSipTwoTone.tsx b/src/IconSipTwoTone.tsx new file mode 100644 index 000000000..7facd2da7 --- /dev/null +++ b/src/IconSipTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSipTwoTone as default } diff --git a/src/IconSkateboardingOutlined.tsx b/src/IconSkateboardingOutlined.tsx new file mode 100644 index 000000000..8205ec891 --- /dev/null +++ b/src/IconSkateboardingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkateboardingOutlined as default } diff --git a/src/IconSkateboardingRound.tsx b/src/IconSkateboardingRound.tsx new file mode 100644 index 000000000..78184af34 --- /dev/null +++ b/src/IconSkateboardingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkateboardingRound as default } diff --git a/src/IconSkateboardingSharp.tsx b/src/IconSkateboardingSharp.tsx new file mode 100644 index 000000000..8fa1dc72c --- /dev/null +++ b/src/IconSkateboardingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkateboardingSharp as default } diff --git a/src/IconSkateboardingTwoTone.tsx b/src/IconSkateboardingTwoTone.tsx new file mode 100644 index 000000000..ea09b6f26 --- /dev/null +++ b/src/IconSkateboardingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkateboardingTwoTone as default } diff --git a/src/IconSkipNextOutlined.tsx b/src/IconSkipNextOutlined.tsx new file mode 100644 index 000000000..e0f804b76 --- /dev/null +++ b/src/IconSkipNextOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkipNextOutlined as default } diff --git a/src/IconSkipNextRound.tsx b/src/IconSkipNextRound.tsx new file mode 100644 index 000000000..2379253dd --- /dev/null +++ b/src/IconSkipNextRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipNextRound as default } diff --git a/src/IconSkipNextSharp.tsx b/src/IconSkipNextSharp.tsx new file mode 100644 index 000000000..c4044ff4b --- /dev/null +++ b/src/IconSkipNextSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkipNextSharp as default } diff --git a/src/IconSkipNextTwoTone.tsx b/src/IconSkipNextTwoTone.tsx new file mode 100644 index 000000000..d510d2f83 --- /dev/null +++ b/src/IconSkipNextTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSkipNextTwoTone as default } diff --git a/src/IconSkipPreviousOutlined.tsx b/src/IconSkipPreviousOutlined.tsx new file mode 100644 index 000000000..2a0689c0b --- /dev/null +++ b/src/IconSkipPreviousOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkipPreviousOutlined as default } diff --git a/src/IconSkipPreviousRound.tsx b/src/IconSkipPreviousRound.tsx new file mode 100644 index 000000000..db5e1d07e --- /dev/null +++ b/src/IconSkipPreviousRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipPreviousRound as default } diff --git a/src/IconSkipPreviousSharp.tsx b/src/IconSkipPreviousSharp.tsx new file mode 100644 index 000000000..cd470d997 --- /dev/null +++ b/src/IconSkipPreviousSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSkipPreviousSharp as default } diff --git a/src/IconSkipPreviousTwoTone.tsx b/src/IconSkipPreviousTwoTone.tsx new file mode 100644 index 000000000..9a088dcb3 --- /dev/null +++ b/src/IconSkipPreviousTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSkipPreviousTwoTone as default } diff --git a/src/IconSleddingOutlined.tsx b/src/IconSleddingOutlined.tsx new file mode 100644 index 000000000..3a806532e --- /dev/null +++ b/src/IconSleddingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSleddingOutlined as default } diff --git a/src/IconSleddingRound.tsx b/src/IconSleddingRound.tsx new file mode 100644 index 000000000..259a9595b --- /dev/null +++ b/src/IconSleddingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSleddingRound as default } diff --git a/src/IconSleddingSharp.tsx b/src/IconSleddingSharp.tsx new file mode 100644 index 000000000..221a75359 --- /dev/null +++ b/src/IconSleddingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSleddingSharp as default } diff --git a/src/IconSleddingTwoTone.tsx b/src/IconSleddingTwoTone.tsx new file mode 100644 index 000000000..4401372c5 --- /dev/null +++ b/src/IconSleddingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSleddingTwoTone as default } diff --git a/src/IconSlideshowOutlined.tsx b/src/IconSlideshowOutlined.tsx new file mode 100644 index 000000000..3e9597141 --- /dev/null +++ b/src/IconSlideshowOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlideshowOutlined as default } diff --git a/src/IconSlideshowRound.tsx b/src/IconSlideshowRound.tsx new file mode 100644 index 000000000..3cd233186 --- /dev/null +++ b/src/IconSlideshowRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlideshowRound as default } diff --git a/src/IconSlideshowSharp.tsx b/src/IconSlideshowSharp.tsx new file mode 100644 index 000000000..bfe25e63a --- /dev/null +++ b/src/IconSlideshowSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlideshowSharp as default } diff --git a/src/IconSlideshowTwoTone.tsx b/src/IconSlideshowTwoTone.tsx new file mode 100644 index 000000000..08019e5a4 --- /dev/null +++ b/src/IconSlideshowTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSlideshowTwoTone as default } diff --git a/src/IconSlowMotionVideoOutlined.tsx b/src/IconSlowMotionVideoOutlined.tsx new file mode 100644 index 000000000..c8959ec14 --- /dev/null +++ b/src/IconSlowMotionVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlowMotionVideoOutlined as default } diff --git a/src/IconSlowMotionVideoRound.tsx b/src/IconSlowMotionVideoRound.tsx new file mode 100644 index 000000000..ea84de0eb --- /dev/null +++ b/src/IconSlowMotionVideoRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlowMotionVideoRound as default } diff --git a/src/IconSlowMotionVideoSharp.tsx b/src/IconSlowMotionVideoSharp.tsx new file mode 100644 index 000000000..9289416b1 --- /dev/null +++ b/src/IconSlowMotionVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlowMotionVideoSharp as default } diff --git a/src/IconSlowMotionVideoTwoTone.tsx b/src/IconSlowMotionVideoTwoTone.tsx new file mode 100644 index 000000000..bc3982ad9 --- /dev/null +++ b/src/IconSlowMotionVideoTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSlowMotionVideoTwoTone as default } diff --git a/src/IconSmartButtonOutlined.tsx b/src/IconSmartButtonOutlined.tsx new file mode 100644 index 000000000..49ad5f093 --- /dev/null +++ b/src/IconSmartButtonOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartButtonOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSmartButtonOutlined as default } diff --git a/src/IconSmartButtonRound.tsx b/src/IconSmartButtonRound.tsx new file mode 100644 index 000000000..d347d55ca --- /dev/null +++ b/src/IconSmartButtonRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartButtonRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSmartButtonRound as default } diff --git a/src/IconSmartButtonSharp.tsx b/src/IconSmartButtonSharp.tsx new file mode 100644 index 000000000..9a6fb7774 --- /dev/null +++ b/src/IconSmartButtonSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartButtonSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSmartButtonSharp as default } diff --git a/src/IconSmartButtonTwoTone.tsx b/src/IconSmartButtonTwoTone.tsx new file mode 100644 index 000000000..9326af899 --- /dev/null +++ b/src/IconSmartButtonTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartButtonTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSmartButtonTwoTone as default } diff --git a/src/IconSmartDisplayOutlined.tsx b/src/IconSmartDisplayOutlined.tsx new file mode 100644 index 000000000..e4b3af1ab --- /dev/null +++ b/src/IconSmartDisplayOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSmartDisplayOutlined as default } diff --git a/src/IconSmartDisplayRound.tsx b/src/IconSmartDisplayRound.tsx new file mode 100644 index 000000000..22b570846 --- /dev/null +++ b/src/IconSmartDisplayRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSmartDisplayRound as default } diff --git a/src/IconSmartDisplaySharp.tsx b/src/IconSmartDisplaySharp.tsx new file mode 100644 index 000000000..1c451f321 --- /dev/null +++ b/src/IconSmartDisplaySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSmartDisplaySharp as default } diff --git a/src/IconSmartDisplayTwoTone.tsx b/src/IconSmartDisplayTwoTone.tsx new file mode 100644 index 000000000..68bc6fe34 --- /dev/null +++ b/src/IconSmartDisplayTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSmartDisplayTwoTone as default } diff --git a/src/IconSmartScreenOutlined.tsx b/src/IconSmartScreenOutlined.tsx new file mode 100644 index 000000000..317dd5eb6 --- /dev/null +++ b/src/IconSmartScreenOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSmartScreenOutlined as default } diff --git a/src/IconSmartScreenRound.tsx b/src/IconSmartScreenRound.tsx new file mode 100644 index 000000000..2e2c726cf --- /dev/null +++ b/src/IconSmartScreenRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSmartScreenRound as default } diff --git a/src/IconSmartScreenSharp.tsx b/src/IconSmartScreenSharp.tsx new file mode 100644 index 000000000..dcc13015c --- /dev/null +++ b/src/IconSmartScreenSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSmartScreenSharp as default } diff --git a/src/IconSmartScreenTwoTone.tsx b/src/IconSmartScreenTwoTone.tsx new file mode 100644 index 000000000..b4be6acc6 --- /dev/null +++ b/src/IconSmartScreenTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSmartScreenTwoTone as default } diff --git a/src/IconSmartToyOutlined.tsx b/src/IconSmartToyOutlined.tsx new file mode 100644 index 000000000..224a973f6 --- /dev/null +++ b/src/IconSmartToyOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSmartToyOutlined as default } diff --git a/src/IconSmartToyRound.tsx b/src/IconSmartToyRound.tsx new file mode 100644 index 000000000..70dd83524 --- /dev/null +++ b/src/IconSmartToyRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSmartToyRound as default } diff --git a/src/IconSmartToySharp.tsx b/src/IconSmartToySharp.tsx new file mode 100644 index 000000000..64f6f52b9 --- /dev/null +++ b/src/IconSmartToySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSmartToySharp as default } diff --git a/src/IconSmartToyTwoTone.tsx b/src/IconSmartToyTwoTone.tsx new file mode 100644 index 000000000..ef8652eba --- /dev/null +++ b/src/IconSmartToyTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSmartToyTwoTone as default } diff --git a/src/IconSmartphoneOutlined.tsx b/src/IconSmartphoneOutlined.tsx new file mode 100644 index 000000000..00c68869d --- /dev/null +++ b/src/IconSmartphoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmartphoneOutlined as default } diff --git a/src/IconSmartphoneRound.tsx b/src/IconSmartphoneRound.tsx new file mode 100644 index 000000000..e5c50be90 --- /dev/null +++ b/src/IconSmartphoneRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneRound as default } diff --git a/src/IconSmartphoneSharp.tsx b/src/IconSmartphoneSharp.tsx new file mode 100644 index 000000000..8b0a44371 --- /dev/null +++ b/src/IconSmartphoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmartphoneSharp as default } diff --git a/src/IconSmartphoneTwoTone.tsx b/src/IconSmartphoneTwoTone.tsx new file mode 100644 index 000000000..81501ced2 --- /dev/null +++ b/src/IconSmartphoneTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSmartphoneTwoTone as default } diff --git a/src/IconSmokeFreeOutlined.tsx b/src/IconSmokeFreeOutlined.tsx new file mode 100644 index 000000000..ed30e3ec3 --- /dev/null +++ b/src/IconSmokeFreeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokeFreeOutlined as default } diff --git a/src/IconSmokeFreeRound.tsx b/src/IconSmokeFreeRound.tsx new file mode 100644 index 000000000..1875dccec --- /dev/null +++ b/src/IconSmokeFreeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokeFreeRound as default } diff --git a/src/IconSmokeFreeSharp.tsx b/src/IconSmokeFreeSharp.tsx new file mode 100644 index 000000000..ad74d63c2 --- /dev/null +++ b/src/IconSmokeFreeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokeFreeSharp as default } diff --git a/src/IconSmokeFreeTwoTone.tsx b/src/IconSmokeFreeTwoTone.tsx new file mode 100644 index 000000000..b8a604d99 --- /dev/null +++ b/src/IconSmokeFreeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokeFreeTwoTone as default } diff --git a/src/IconSmokingRoomsOutlined.tsx b/src/IconSmokingRoomsOutlined.tsx new file mode 100644 index 000000000..1b97232ff --- /dev/null +++ b/src/IconSmokingRoomsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokingRoomsOutlined as default } diff --git a/src/IconSmokingRoomsRound.tsx b/src/IconSmokingRoomsRound.tsx new file mode 100644 index 000000000..842a8b353 --- /dev/null +++ b/src/IconSmokingRoomsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokingRoomsRound as default } diff --git a/src/IconSmokingRoomsSharp.tsx b/src/IconSmokingRoomsSharp.tsx new file mode 100644 index 000000000..925e7e6be --- /dev/null +++ b/src/IconSmokingRoomsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmokingRoomsSharp as default } diff --git a/src/IconSmokingRoomsTwoTone.tsx b/src/IconSmokingRoomsTwoTone.tsx new file mode 100644 index 000000000..1f03a8ff0 --- /dev/null +++ b/src/IconSmokingRoomsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSmokingRoomsTwoTone as default } diff --git a/src/IconSmsFailedOutlined.tsx b/src/IconSmsFailedOutlined.tsx new file mode 100644 index 000000000..f8f108080 --- /dev/null +++ b/src/IconSmsFailedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsFailedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsFailedOutlined as default } diff --git a/src/IconSmsFailedRound.tsx b/src/IconSmsFailedRound.tsx new file mode 100644 index 000000000..62f2cc3af --- /dev/null +++ b/src/IconSmsFailedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsFailedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsFailedRound as default } diff --git a/src/IconSmsFailedSharp.tsx b/src/IconSmsFailedSharp.tsx new file mode 100644 index 000000000..517f52c38 --- /dev/null +++ b/src/IconSmsFailedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsFailedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsFailedSharp as default } diff --git a/src/IconSmsFailedTwoTone.tsx b/src/IconSmsFailedTwoTone.tsx new file mode 100644 index 000000000..4a21f40eb --- /dev/null +++ b/src/IconSmsFailedTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsFailedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSmsFailedTwoTone as default } diff --git a/src/IconSmsOutlined.tsx b/src/IconSmsOutlined.tsx new file mode 100644 index 000000000..469cbfa31 --- /dev/null +++ b/src/IconSmsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsOutlined as default } diff --git a/src/IconSmsRound.tsx b/src/IconSmsRound.tsx new file mode 100644 index 000000000..8c888b7f5 --- /dev/null +++ b/src/IconSmsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsRound as default } diff --git a/src/IconSmsSharp.tsx b/src/IconSmsSharp.tsx new file mode 100644 index 000000000..f9de28ef7 --- /dev/null +++ b/src/IconSmsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSmsSharp as default } diff --git a/src/IconSmsTwoTone.tsx b/src/IconSmsTwoTone.tsx new file mode 100644 index 000000000..ff2134b94 --- /dev/null +++ b/src/IconSmsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSmsTwoTone as default } diff --git a/src/IconSnippetFolderOutlined.tsx b/src/IconSnippetFolderOutlined.tsx new file mode 100644 index 000000000..2891f0a4b --- /dev/null +++ b/src/IconSnippetFolderOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSnippetFolderOutlined as default } diff --git a/src/IconSnippetFolderRound.tsx b/src/IconSnippetFolderRound.tsx new file mode 100644 index 000000000..c7b9d081c --- /dev/null +++ b/src/IconSnippetFolderRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSnippetFolderRound as default } diff --git a/src/IconSnippetFolderSharp.tsx b/src/IconSnippetFolderSharp.tsx new file mode 100644 index 000000000..65b184f16 --- /dev/null +++ b/src/IconSnippetFolderSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSnippetFolderSharp as default } diff --git a/src/IconSnippetFolderTwoTone.tsx b/src/IconSnippetFolderTwoTone.tsx new file mode 100644 index 000000000..72d85cf33 --- /dev/null +++ b/src/IconSnippetFolderTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSnippetFolderTwoTone as default } diff --git a/src/IconSnoozeOutlined.tsx b/src/IconSnoozeOutlined.tsx new file mode 100644 index 000000000..987d932ab --- /dev/null +++ b/src/IconSnoozeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnoozeOutlined as default } diff --git a/src/IconSnoozeRound.tsx b/src/IconSnoozeRound.tsx new file mode 100644 index 000000000..ff09cbc61 --- /dev/null +++ b/src/IconSnoozeRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnoozeRound as default } diff --git a/src/IconSnoozeSharp.tsx b/src/IconSnoozeSharp.tsx new file mode 100644 index 000000000..0844e0724 --- /dev/null +++ b/src/IconSnoozeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnoozeSharp as default } diff --git a/src/IconSnoozeTwoTone.tsx b/src/IconSnoozeTwoTone.tsx new file mode 100644 index 000000000..556c796e7 --- /dev/null +++ b/src/IconSnoozeTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnoozeTwoTone as default } diff --git a/src/IconSnowboardingOutlined.tsx b/src/IconSnowboardingOutlined.tsx new file mode 100644 index 000000000..40a27041d --- /dev/null +++ b/src/IconSnowboardingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowboardingOutlined as default } diff --git a/src/IconSnowboardingRound.tsx b/src/IconSnowboardingRound.tsx new file mode 100644 index 000000000..d48d76c69 --- /dev/null +++ b/src/IconSnowboardingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowboardingRound as default } diff --git a/src/IconSnowboardingSharp.tsx b/src/IconSnowboardingSharp.tsx new file mode 100644 index 000000000..043b911e2 --- /dev/null +++ b/src/IconSnowboardingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowboardingSharp as default } diff --git a/src/IconSnowboardingTwoTone.tsx b/src/IconSnowboardingTwoTone.tsx new file mode 100644 index 000000000..7723f71a9 --- /dev/null +++ b/src/IconSnowboardingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowboardingTwoTone as default } diff --git a/src/IconSnowmobileOutlined.tsx b/src/IconSnowmobileOutlined.tsx new file mode 100644 index 000000000..a9688710f --- /dev/null +++ b/src/IconSnowmobileOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowmobileOutlined as default } diff --git a/src/IconSnowmobileRound.tsx b/src/IconSnowmobileRound.tsx new file mode 100644 index 000000000..10a43b44c --- /dev/null +++ b/src/IconSnowmobileRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowmobileRound as default } diff --git a/src/IconSnowmobileSharp.tsx b/src/IconSnowmobileSharp.tsx new file mode 100644 index 000000000..795166fe4 --- /dev/null +++ b/src/IconSnowmobileSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowmobileSharp as default } diff --git a/src/IconSnowmobileTwoTone.tsx b/src/IconSnowmobileTwoTone.tsx new file mode 100644 index 000000000..3666c4701 --- /dev/null +++ b/src/IconSnowmobileTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSnowmobileTwoTone as default } diff --git a/src/IconSnowshoeingOutlined.tsx b/src/IconSnowshoeingOutlined.tsx new file mode 100644 index 000000000..d33020436 --- /dev/null +++ b/src/IconSnowshoeingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowshoeingOutlined as default } diff --git a/src/IconSnowshoeingRound.tsx b/src/IconSnowshoeingRound.tsx new file mode 100644 index 000000000..181b992c8 --- /dev/null +++ b/src/IconSnowshoeingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowshoeingRound as default } diff --git a/src/IconSnowshoeingSharp.tsx b/src/IconSnowshoeingSharp.tsx new file mode 100644 index 000000000..37b212ab6 --- /dev/null +++ b/src/IconSnowshoeingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowshoeingSharp as default } diff --git a/src/IconSnowshoeingTwoTone.tsx b/src/IconSnowshoeingTwoTone.tsx new file mode 100644 index 000000000..ac062deac --- /dev/null +++ b/src/IconSnowshoeingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSnowshoeingTwoTone as default } diff --git a/src/IconSoapOutlined.tsx b/src/IconSoapOutlined.tsx new file mode 100644 index 000000000..1fc96251a --- /dev/null +++ b/src/IconSoapOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSoapOutlined as default } diff --git a/src/IconSoapRound.tsx b/src/IconSoapRound.tsx new file mode 100644 index 000000000..10479fcdd --- /dev/null +++ b/src/IconSoapRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSoapRound as default } diff --git a/src/IconSoapSharp.tsx b/src/IconSoapSharp.tsx new file mode 100644 index 000000000..14c6ceb2f --- /dev/null +++ b/src/IconSoapSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSoapSharp as default } diff --git a/src/IconSoapTwoTone.tsx b/src/IconSoapTwoTone.tsx new file mode 100644 index 000000000..0e5eee1a0 --- /dev/null +++ b/src/IconSoapTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSoapTwoTone as default } diff --git a/src/IconSocialDistanceOutlined.tsx b/src/IconSocialDistanceOutlined.tsx new file mode 100644 index 000000000..b486e44a2 --- /dev/null +++ b/src/IconSocialDistanceOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSocialDistanceOutlined as default } diff --git a/src/IconSocialDistanceRound.tsx b/src/IconSocialDistanceRound.tsx new file mode 100644 index 000000000..54451e4c2 --- /dev/null +++ b/src/IconSocialDistanceRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSocialDistanceRound as default } diff --git a/src/IconSocialDistanceSharp.tsx b/src/IconSocialDistanceSharp.tsx new file mode 100644 index 000000000..4993c619e --- /dev/null +++ b/src/IconSocialDistanceSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSocialDistanceSharp as default } diff --git a/src/IconSocialDistanceTwoTone.tsx b/src/IconSocialDistanceTwoTone.tsx new file mode 100644 index 000000000..5a559dee6 --- /dev/null +++ b/src/IconSocialDistanceTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSocialDistanceTwoTone as default } diff --git a/src/IconSolarPowerOutlined.tsx b/src/IconSolarPowerOutlined.tsx new file mode 100644 index 000000000..4a89bdeaa --- /dev/null +++ b/src/IconSolarPowerOutlined.tsx @@ -0,0 +1,41 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSolarPowerOutlined as default } diff --git a/src/IconSolarPowerRound.tsx b/src/IconSolarPowerRound.tsx new file mode 100644 index 000000000..05fe8cc6a --- /dev/null +++ b/src/IconSolarPowerRound.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + +) + +export { IconSolarPowerRound as default } diff --git a/src/IconSolarPowerSharp.tsx b/src/IconSolarPowerSharp.tsx new file mode 100644 index 000000000..341961b86 --- /dev/null +++ b/src/IconSolarPowerSharp.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconSolarPowerSharp as default } diff --git a/src/IconSolarPowerTwoTone.tsx b/src/IconSolarPowerTwoTone.tsx new file mode 100644 index 000000000..a4faf13ed --- /dev/null +++ b/src/IconSolarPowerTwoTone.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconSolarPowerTwoTone as default } diff --git a/src/IconSortByAlphaOutlined.tsx b/src/IconSortByAlphaOutlined.tsx new file mode 100644 index 000000000..3fd63df4d --- /dev/null +++ b/src/IconSortByAlphaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortByAlphaOutlined as default } diff --git a/src/IconSortByAlphaRound.tsx b/src/IconSortByAlphaRound.tsx new file mode 100644 index 000000000..35893987c --- /dev/null +++ b/src/IconSortByAlphaRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortByAlphaRound as default } diff --git a/src/IconSortByAlphaSharp.tsx b/src/IconSortByAlphaSharp.tsx new file mode 100644 index 000000000..14f57b3a9 --- /dev/null +++ b/src/IconSortByAlphaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortByAlphaSharp as default } diff --git a/src/IconSortByAlphaTwoTone.tsx b/src/IconSortByAlphaTwoTone.tsx new file mode 100644 index 000000000..cacd9d674 --- /dev/null +++ b/src/IconSortByAlphaTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortByAlphaTwoTone as default } diff --git a/src/IconSortOutlined.tsx b/src/IconSortOutlined.tsx new file mode 100644 index 000000000..c83b6032f --- /dev/null +++ b/src/IconSortOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortOutlined as default } diff --git a/src/IconSortRound.tsx b/src/IconSortRound.tsx new file mode 100644 index 000000000..254adf35d --- /dev/null +++ b/src/IconSortRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortRound as default } diff --git a/src/IconSortSharp.tsx b/src/IconSortSharp.tsx new file mode 100644 index 000000000..5d5ee456b --- /dev/null +++ b/src/IconSortSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortSharp as default } diff --git a/src/IconSortTwoTone.tsx b/src/IconSortTwoTone.tsx new file mode 100644 index 000000000..40a491a04 --- /dev/null +++ b/src/IconSortTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSortTwoTone as default } diff --git a/src/IconSosOutlined.tsx b/src/IconSosOutlined.tsx new file mode 100644 index 000000000..6c48ef869 --- /dev/null +++ b/src/IconSosOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSosOutlined as default } diff --git a/src/IconSosRound.tsx b/src/IconSosRound.tsx new file mode 100644 index 000000000..b255888bb --- /dev/null +++ b/src/IconSosRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSosRound as default } diff --git a/src/IconSosSharp.tsx b/src/IconSosSharp.tsx new file mode 100644 index 000000000..edcf9d40d --- /dev/null +++ b/src/IconSosSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSosSharp as default } diff --git a/src/IconSosTwoTone.tsx b/src/IconSosTwoTone.tsx new file mode 100644 index 000000000..71a4dcee1 --- /dev/null +++ b/src/IconSosTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSosTwoTone as default } diff --git a/src/IconSoupKitchenOutlined.tsx b/src/IconSoupKitchenOutlined.tsx new file mode 100644 index 000000000..209a00a1b --- /dev/null +++ b/src/IconSoupKitchenOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSoupKitchenOutlined as default } diff --git a/src/IconSoupKitchenRound.tsx b/src/IconSoupKitchenRound.tsx new file mode 100644 index 000000000..11b4c8c3c --- /dev/null +++ b/src/IconSoupKitchenRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSoupKitchenRound as default } diff --git a/src/IconSoupKitchenSharp.tsx b/src/IconSoupKitchenSharp.tsx new file mode 100644 index 000000000..eecfdc40a --- /dev/null +++ b/src/IconSoupKitchenSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSoupKitchenSharp as default } diff --git a/src/IconSoupKitchenTwoTone.tsx b/src/IconSoupKitchenTwoTone.tsx new file mode 100644 index 000000000..a1267a4a8 --- /dev/null +++ b/src/IconSoupKitchenTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSoupKitchenTwoTone as default } diff --git a/src/IconSourceOutlined.tsx b/src/IconSourceOutlined.tsx new file mode 100644 index 000000000..2d2dd9955 --- /dev/null +++ b/src/IconSourceOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSourceOutlined as default } diff --git a/src/IconSourceRound.tsx b/src/IconSourceRound.tsx new file mode 100644 index 000000000..bc6f06d9a --- /dev/null +++ b/src/IconSourceRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSourceRound as default } diff --git a/src/IconSourceSharp.tsx b/src/IconSourceSharp.tsx new file mode 100644 index 000000000..607e69858 --- /dev/null +++ b/src/IconSourceSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSourceSharp as default } diff --git a/src/IconSourceTwoTone.tsx b/src/IconSourceTwoTone.tsx new file mode 100644 index 000000000..c77bd853b --- /dev/null +++ b/src/IconSourceTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSourceTwoTone as default } diff --git a/src/IconSouthAmericaOutlined.tsx b/src/IconSouthAmericaOutlined.tsx new file mode 100644 index 000000000..7e90119b1 --- /dev/null +++ b/src/IconSouthAmericaOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthAmericaOutlined as default } diff --git a/src/IconSouthAmericaRound.tsx b/src/IconSouthAmericaRound.tsx new file mode 100644 index 000000000..993acc60b --- /dev/null +++ b/src/IconSouthAmericaRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthAmericaRound as default } diff --git a/src/IconSouthAmericaSharp.tsx b/src/IconSouthAmericaSharp.tsx new file mode 100644 index 000000000..093064d16 --- /dev/null +++ b/src/IconSouthAmericaSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthAmericaSharp as default } diff --git a/src/IconSouthAmericaTwoTone.tsx b/src/IconSouthAmericaTwoTone.tsx new file mode 100644 index 000000000..fe685a0a6 --- /dev/null +++ b/src/IconSouthAmericaTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSouthAmericaTwoTone as default } diff --git a/src/IconSouthEastOutlined.tsx b/src/IconSouthEastOutlined.tsx new file mode 100644 index 000000000..c0bbef960 --- /dev/null +++ b/src/IconSouthEastOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthEastOutlined as default } diff --git a/src/IconSouthEastRound.tsx b/src/IconSouthEastRound.tsx new file mode 100644 index 000000000..bf347aa7d --- /dev/null +++ b/src/IconSouthEastRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthEastRound as default } diff --git a/src/IconSouthEastSharp.tsx b/src/IconSouthEastSharp.tsx new file mode 100644 index 000000000..a73a586c7 --- /dev/null +++ b/src/IconSouthEastSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthEastSharp as default } diff --git a/src/IconSouthEastTwoTone.tsx b/src/IconSouthEastTwoTone.tsx new file mode 100644 index 000000000..77cbfa4ce --- /dev/null +++ b/src/IconSouthEastTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthEastTwoTone as default } diff --git a/src/IconSouthOutlined.tsx b/src/IconSouthOutlined.tsx new file mode 100644 index 000000000..17bc2c9dc --- /dev/null +++ b/src/IconSouthOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthOutlined as default } diff --git a/src/IconSouthRound.tsx b/src/IconSouthRound.tsx new file mode 100644 index 000000000..f0ef67c26 --- /dev/null +++ b/src/IconSouthRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthRound as default } diff --git a/src/IconSouthSharp.tsx b/src/IconSouthSharp.tsx new file mode 100644 index 000000000..bc06b256b --- /dev/null +++ b/src/IconSouthSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthSharp as default } diff --git a/src/IconSouthTwoTone.tsx b/src/IconSouthTwoTone.tsx new file mode 100644 index 000000000..ee3db950d --- /dev/null +++ b/src/IconSouthTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthTwoTone as default } diff --git a/src/IconSouthWestOutlined.tsx b/src/IconSouthWestOutlined.tsx new file mode 100644 index 000000000..4b8cda56a --- /dev/null +++ b/src/IconSouthWestOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthWestOutlined as default } diff --git a/src/IconSouthWestRound.tsx b/src/IconSouthWestRound.tsx new file mode 100644 index 000000000..50ca09958 --- /dev/null +++ b/src/IconSouthWestRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthWestRound as default } diff --git a/src/IconSouthWestSharp.tsx b/src/IconSouthWestSharp.tsx new file mode 100644 index 000000000..4a0f92b5e --- /dev/null +++ b/src/IconSouthWestSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthWestSharp as default } diff --git a/src/IconSouthWestTwoTone.tsx b/src/IconSouthWestTwoTone.tsx new file mode 100644 index 000000000..ded5e0b8c --- /dev/null +++ b/src/IconSouthWestTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSouthWestTwoTone as default } diff --git a/src/IconSpaOutlined.tsx b/src/IconSpaOutlined.tsx new file mode 100644 index 000000000..7a21a8ab0 --- /dev/null +++ b/src/IconSpaOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaOutlined as default } diff --git a/src/IconSpaRound.tsx b/src/IconSpaRound.tsx new file mode 100644 index 000000000..c611e21f3 --- /dev/null +++ b/src/IconSpaRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaRound as default } diff --git a/src/IconSpaSharp.tsx b/src/IconSpaSharp.tsx new file mode 100644 index 000000000..a65dbbfd6 --- /dev/null +++ b/src/IconSpaSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaSharp as default } diff --git a/src/IconSpaTwoTone.tsx b/src/IconSpaTwoTone.tsx new file mode 100644 index 000000000..8b79b7813 --- /dev/null +++ b/src/IconSpaTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconSpaTwoTone as default } diff --git a/src/IconSpaceBarOutlined.tsx b/src/IconSpaceBarOutlined.tsx new file mode 100644 index 000000000..cd459aceb --- /dev/null +++ b/src/IconSpaceBarOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceBarOutlined as default } diff --git a/src/IconSpaceBarRound.tsx b/src/IconSpaceBarRound.tsx new file mode 100644 index 000000000..51b87ef7f --- /dev/null +++ b/src/IconSpaceBarRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceBarRound as default } diff --git a/src/IconSpaceBarSharp.tsx b/src/IconSpaceBarSharp.tsx new file mode 100644 index 000000000..fb7780346 --- /dev/null +++ b/src/IconSpaceBarSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceBarSharp as default } diff --git a/src/IconSpaceBarTwoTone.tsx b/src/IconSpaceBarTwoTone.tsx new file mode 100644 index 000000000..49a58f6a5 --- /dev/null +++ b/src/IconSpaceBarTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceBarTwoTone as default } diff --git a/src/IconSpaceDashboardOutlined.tsx b/src/IconSpaceDashboardOutlined.tsx new file mode 100644 index 000000000..d837c17ad --- /dev/null +++ b/src/IconSpaceDashboardOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceDashboardOutlined as default } diff --git a/src/IconSpaceDashboardRound.tsx b/src/IconSpaceDashboardRound.tsx new file mode 100644 index 000000000..cf2c7d9a8 --- /dev/null +++ b/src/IconSpaceDashboardRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceDashboardRound as default } diff --git a/src/IconSpaceDashboardSharp.tsx b/src/IconSpaceDashboardSharp.tsx new file mode 100644 index 000000000..d5159906c --- /dev/null +++ b/src/IconSpaceDashboardSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpaceDashboardSharp as default } diff --git a/src/IconSpaceDashboardTwoTone.tsx b/src/IconSpaceDashboardTwoTone.tsx new file mode 100644 index 000000000..41b675ade --- /dev/null +++ b/src/IconSpaceDashboardTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpaceDashboardTwoTone as default } diff --git a/src/IconSpatialAudioOffOutlined.tsx b/src/IconSpatialAudioOffOutlined.tsx new file mode 100644 index 000000000..99b9ac1a0 --- /dev/null +++ b/src/IconSpatialAudioOffOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudioOffOutlined as default } diff --git a/src/IconSpatialAudioOffRound.tsx b/src/IconSpatialAudioOffRound.tsx new file mode 100644 index 000000000..d7b8b2ce5 --- /dev/null +++ b/src/IconSpatialAudioOffRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSpatialAudioOffRound as default } diff --git a/src/IconSpatialAudioOffSharp.tsx b/src/IconSpatialAudioOffSharp.tsx new file mode 100644 index 000000000..9e2b4a976 --- /dev/null +++ b/src/IconSpatialAudioOffSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudioOffSharp as default } diff --git a/src/IconSpatialAudioOffTwoTone.tsx b/src/IconSpatialAudioOffTwoTone.tsx new file mode 100644 index 000000000..0e9f388f6 --- /dev/null +++ b/src/IconSpatialAudioOffTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSpatialAudioOffTwoTone as default } diff --git a/src/IconSpatialAudioOutlined.tsx b/src/IconSpatialAudioOutlined.tsx new file mode 100644 index 000000000..e2d6e43fd --- /dev/null +++ b/src/IconSpatialAudioOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudioOutlined as default } diff --git a/src/IconSpatialAudioRound.tsx b/src/IconSpatialAudioRound.tsx new file mode 100644 index 000000000..f30a32c45 --- /dev/null +++ b/src/IconSpatialAudioRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSpatialAudioRound as default } diff --git a/src/IconSpatialAudioSharp.tsx b/src/IconSpatialAudioSharp.tsx new file mode 100644 index 000000000..8b6b183c7 --- /dev/null +++ b/src/IconSpatialAudioSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialAudioSharp as default } diff --git a/src/IconSpatialAudioTwoTone.tsx b/src/IconSpatialAudioTwoTone.tsx new file mode 100644 index 000000000..2002d83b1 --- /dev/null +++ b/src/IconSpatialAudioTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSpatialAudioTwoTone as default } diff --git a/src/IconSpatialTrackingOutlined.tsx b/src/IconSpatialTrackingOutlined.tsx new file mode 100644 index 000000000..7dafb833d --- /dev/null +++ b/src/IconSpatialTrackingOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialTrackingOutlined as default } diff --git a/src/IconSpatialTrackingRound.tsx b/src/IconSpatialTrackingRound.tsx new file mode 100644 index 000000000..0b6558714 --- /dev/null +++ b/src/IconSpatialTrackingRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSpatialTrackingRound as default } diff --git a/src/IconSpatialTrackingSharp.tsx b/src/IconSpatialTrackingSharp.tsx new file mode 100644 index 000000000..e54d80f84 --- /dev/null +++ b/src/IconSpatialTrackingSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSpatialTrackingSharp as default } diff --git a/src/IconSpatialTrackingTwoTone.tsx b/src/IconSpatialTrackingTwoTone.tsx new file mode 100644 index 000000000..59b1ff420 --- /dev/null +++ b/src/IconSpatialTrackingTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSpatialTrackingTwoTone as default } diff --git a/src/IconSpeakerGroupOutlined.tsx b/src/IconSpeakerGroupOutlined.tsx new file mode 100644 index 000000000..83ca5354f --- /dev/null +++ b/src/IconSpeakerGroupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerGroupOutlined as default } diff --git a/src/IconSpeakerGroupRound.tsx b/src/IconSpeakerGroupRound.tsx new file mode 100644 index 000000000..c498866b3 --- /dev/null +++ b/src/IconSpeakerGroupRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerGroupRound as default } diff --git a/src/IconSpeakerGroupSharp.tsx b/src/IconSpeakerGroupSharp.tsx new file mode 100644 index 000000000..d1d1f4144 --- /dev/null +++ b/src/IconSpeakerGroupSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSpeakerGroupSharp as default } diff --git a/src/IconSpeakerGroupTwoTone.tsx b/src/IconSpeakerGroupTwoTone.tsx new file mode 100644 index 000000000..1b11d4b82 --- /dev/null +++ b/src/IconSpeakerGroupTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerGroupTwoTone as default } diff --git a/src/IconSpeakerNotesOffOutlined.tsx b/src/IconSpeakerNotesOffOutlined.tsx new file mode 100644 index 000000000..b2f74f009 --- /dev/null +++ b/src/IconSpeakerNotesOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesOffOutlined as default } diff --git a/src/IconSpeakerNotesOffRound.tsx b/src/IconSpeakerNotesOffRound.tsx new file mode 100644 index 000000000..3c206c85f --- /dev/null +++ b/src/IconSpeakerNotesOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesOffRound as default } diff --git a/src/IconSpeakerNotesOffSharp.tsx b/src/IconSpeakerNotesOffSharp.tsx new file mode 100644 index 000000000..26a837bcf --- /dev/null +++ b/src/IconSpeakerNotesOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesOffSharp as default } diff --git a/src/IconSpeakerNotesOffTwoTone.tsx b/src/IconSpeakerNotesOffTwoTone.tsx new file mode 100644 index 000000000..95fa1976e --- /dev/null +++ b/src/IconSpeakerNotesOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerNotesOffTwoTone as default } diff --git a/src/IconSpeakerNotesOutlined.tsx b/src/IconSpeakerNotesOutlined.tsx new file mode 100644 index 000000000..274c925b5 --- /dev/null +++ b/src/IconSpeakerNotesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesOutlined as default } diff --git a/src/IconSpeakerNotesRound.tsx b/src/IconSpeakerNotesRound.tsx new file mode 100644 index 000000000..6eeb2671f --- /dev/null +++ b/src/IconSpeakerNotesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesRound as default } diff --git a/src/IconSpeakerNotesSharp.tsx b/src/IconSpeakerNotesSharp.tsx new file mode 100644 index 000000000..4491de1ee --- /dev/null +++ b/src/IconSpeakerNotesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerNotesSharp as default } diff --git a/src/IconSpeakerNotesTwoTone.tsx b/src/IconSpeakerNotesTwoTone.tsx new file mode 100644 index 000000000..e2f0ff40c --- /dev/null +++ b/src/IconSpeakerNotesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerNotesTwoTone as default } diff --git a/src/IconSpeakerOutlined.tsx b/src/IconSpeakerOutlined.tsx new file mode 100644 index 000000000..ea5ec238c --- /dev/null +++ b/src/IconSpeakerOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerOutlined as default } diff --git a/src/IconSpeakerPhoneOutlined.tsx b/src/IconSpeakerPhoneOutlined.tsx new file mode 100644 index 000000000..d2b7e58a2 --- /dev/null +++ b/src/IconSpeakerPhoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerPhoneOutlined as default } diff --git a/src/IconSpeakerPhoneRound.tsx b/src/IconSpeakerPhoneRound.tsx new file mode 100644 index 000000000..8346adfcf --- /dev/null +++ b/src/IconSpeakerPhoneRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSpeakerPhoneRound as default } diff --git a/src/IconSpeakerPhoneSharp.tsx b/src/IconSpeakerPhoneSharp.tsx new file mode 100644 index 000000000..fdd19fd6f --- /dev/null +++ b/src/IconSpeakerPhoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerPhoneSharp as default } diff --git a/src/IconSpeakerPhoneTwoTone.tsx b/src/IconSpeakerPhoneTwoTone.tsx new file mode 100644 index 000000000..17bf3d622 --- /dev/null +++ b/src/IconSpeakerPhoneTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerPhoneTwoTone as default } diff --git a/src/IconSpeakerRound.tsx b/src/IconSpeakerRound.tsx new file mode 100644 index 000000000..a43ba9cda --- /dev/null +++ b/src/IconSpeakerRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerRound as default } diff --git a/src/IconSpeakerSharp.tsx b/src/IconSpeakerSharp.tsx new file mode 100644 index 000000000..985f41204 --- /dev/null +++ b/src/IconSpeakerSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpeakerSharp as default } diff --git a/src/IconSpeakerTwoTone.tsx b/src/IconSpeakerTwoTone.tsx new file mode 100644 index 000000000..00195ab37 --- /dev/null +++ b/src/IconSpeakerTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeakerTwoTone as default } diff --git a/src/IconSpeedOutlined.tsx b/src/IconSpeedOutlined.tsx new file mode 100644 index 000000000..5454fedba --- /dev/null +++ b/src/IconSpeedOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeedOutlined as default } diff --git a/src/IconSpeedRound.tsx b/src/IconSpeedRound.tsx new file mode 100644 index 000000000..630606109 --- /dev/null +++ b/src/IconSpeedRound.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeedRound as default } diff --git a/src/IconSpeedSharp.tsx b/src/IconSpeedSharp.tsx new file mode 100644 index 000000000..040e9fed6 --- /dev/null +++ b/src/IconSpeedSharp.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeedSharp as default } diff --git a/src/IconSpeedTwoTone.tsx b/src/IconSpeedTwoTone.tsx new file mode 100644 index 000000000..46fc8b7e5 --- /dev/null +++ b/src/IconSpeedTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpeedTwoTone as default } diff --git a/src/IconSpellcheckOutlined.tsx b/src/IconSpellcheckOutlined.tsx new file mode 100644 index 000000000..f4a2896dc --- /dev/null +++ b/src/IconSpellcheckOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpellcheckOutlined as default } diff --git a/src/IconSpellcheckRound.tsx b/src/IconSpellcheckRound.tsx new file mode 100644 index 000000000..f3055d629 --- /dev/null +++ b/src/IconSpellcheckRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpellcheckRound as default } diff --git a/src/IconSpellcheckSharp.tsx b/src/IconSpellcheckSharp.tsx new file mode 100644 index 000000000..77bba7a0b --- /dev/null +++ b/src/IconSpellcheckSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpellcheckSharp as default } diff --git a/src/IconSpellcheckTwoTone.tsx b/src/IconSpellcheckTwoTone.tsx new file mode 100644 index 000000000..d80bb36d0 --- /dev/null +++ b/src/IconSpellcheckTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpellcheckTwoTone as default } diff --git a/src/IconSplitscreenOutlined.tsx b/src/IconSplitscreenOutlined.tsx new file mode 100644 index 000000000..2dac131c0 --- /dev/null +++ b/src/IconSplitscreenOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSplitscreenOutlined as default } diff --git a/src/IconSplitscreenRound.tsx b/src/IconSplitscreenRound.tsx new file mode 100644 index 000000000..58a667a04 --- /dev/null +++ b/src/IconSplitscreenRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSplitscreenRound as default } diff --git a/src/IconSplitscreenSharp.tsx b/src/IconSplitscreenSharp.tsx new file mode 100644 index 000000000..7bfc82c2b --- /dev/null +++ b/src/IconSplitscreenSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSplitscreenSharp as default } diff --git a/src/IconSplitscreenTwoTone.tsx b/src/IconSplitscreenTwoTone.tsx new file mode 100644 index 000000000..27bfda8d6 --- /dev/null +++ b/src/IconSplitscreenTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSplitscreenTwoTone as default } diff --git a/src/IconSpokeOutlined.tsx b/src/IconSpokeOutlined.tsx new file mode 100644 index 000000000..04323ee6c --- /dev/null +++ b/src/IconSpokeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpokeOutlined as default } diff --git a/src/IconSpokeRound.tsx b/src/IconSpokeRound.tsx new file mode 100644 index 000000000..92609e667 --- /dev/null +++ b/src/IconSpokeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpokeRound as default } diff --git a/src/IconSpokeSharp.tsx b/src/IconSpokeSharp.tsx new file mode 100644 index 000000000..d17141060 --- /dev/null +++ b/src/IconSpokeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSpokeSharp as default } diff --git a/src/IconSpokeTwoTone.tsx b/src/IconSpokeTwoTone.tsx new file mode 100644 index 000000000..bb8bbee33 --- /dev/null +++ b/src/IconSpokeTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSpokeTwoTone as default } diff --git a/src/IconSportsBarOutlined.tsx b/src/IconSportsBarOutlined.tsx new file mode 100644 index 000000000..060e7d02b --- /dev/null +++ b/src/IconSportsBarOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSportsBarOutlined as default } diff --git a/src/IconSportsBarRound.tsx b/src/IconSportsBarRound.tsx new file mode 100644 index 000000000..d253547df --- /dev/null +++ b/src/IconSportsBarRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSportsBarRound as default } diff --git a/src/IconSportsBarSharp.tsx b/src/IconSportsBarSharp.tsx new file mode 100644 index 000000000..7551dcd1a --- /dev/null +++ b/src/IconSportsBarSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSportsBarSharp as default } diff --git a/src/IconSportsBarTwoTone.tsx b/src/IconSportsBarTwoTone.tsx new file mode 100644 index 000000000..3dbf2cbc6 --- /dev/null +++ b/src/IconSportsBarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSportsBarTwoTone as default } diff --git a/src/IconSportsBaseballOutlined.tsx b/src/IconSportsBaseballOutlined.tsx new file mode 100644 index 000000000..a5b026cd3 --- /dev/null +++ b/src/IconSportsBaseballOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsBaseballOutlined as default } diff --git a/src/IconSportsBaseballRound.tsx b/src/IconSportsBaseballRound.tsx new file mode 100644 index 000000000..afe32ad88 --- /dev/null +++ b/src/IconSportsBaseballRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBaseballRound as default } diff --git a/src/IconSportsBaseballSharp.tsx b/src/IconSportsBaseballSharp.tsx new file mode 100644 index 000000000..10c157651 --- /dev/null +++ b/src/IconSportsBaseballSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconSportsBaseballSharp as default } diff --git a/src/IconSportsBaseballTwoTone.tsx b/src/IconSportsBaseballTwoTone.tsx new file mode 100644 index 000000000..dc48da4be --- /dev/null +++ b/src/IconSportsBaseballTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsBaseballTwoTone as default } diff --git a/src/IconSportsBasketballOutlined.tsx b/src/IconSportsBasketballOutlined.tsx new file mode 100644 index 000000000..c1595eb24 --- /dev/null +++ b/src/IconSportsBasketballOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsBasketballOutlined as default } diff --git a/src/IconSportsBasketballRound.tsx b/src/IconSportsBasketballRound.tsx new file mode 100644 index 000000000..c850d04dc --- /dev/null +++ b/src/IconSportsBasketballRound.tsx @@ -0,0 +1,47 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBasketballRound as default } diff --git a/src/IconSportsBasketballSharp.tsx b/src/IconSportsBasketballSharp.tsx new file mode 100644 index 000000000..95865f9c6 --- /dev/null +++ b/src/IconSportsBasketballSharp.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconSportsBasketballSharp as default } diff --git a/src/IconSportsBasketballTwoTone.tsx b/src/IconSportsBasketballTwoTone.tsx new file mode 100644 index 000000000..4838b0809 --- /dev/null +++ b/src/IconSportsBasketballTwoTone.tsx @@ -0,0 +1,55 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconSportsBasketballTwoTone as default } diff --git a/src/IconSportsCricketOutlined.tsx b/src/IconSportsCricketOutlined.tsx new file mode 100644 index 000000000..e81612aaf --- /dev/null +++ b/src/IconSportsCricketOutlined.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsCricketOutlined as default } diff --git a/src/IconSportsCricketRound.tsx b/src/IconSportsCricketRound.tsx new file mode 100644 index 000000000..bbd3f7687 --- /dev/null +++ b/src/IconSportsCricketRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsCricketRound as default } diff --git a/src/IconSportsCricketSharp.tsx b/src/IconSportsCricketSharp.tsx new file mode 100644 index 000000000..b8f8e0487 --- /dev/null +++ b/src/IconSportsCricketSharp.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsCricketSharp as default } diff --git a/src/IconSportsCricketTwoTone.tsx b/src/IconSportsCricketTwoTone.tsx new file mode 100644 index 000000000..4ad311206 --- /dev/null +++ b/src/IconSportsCricketTwoTone.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsCricketTwoTone as default } diff --git a/src/IconSportsEsportsOutlined.tsx b/src/IconSportsEsportsOutlined.tsx new file mode 100644 index 000000000..4d2da3193 --- /dev/null +++ b/src/IconSportsEsportsOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsEsportsOutlined as default } diff --git a/src/IconSportsEsportsRound.tsx b/src/IconSportsEsportsRound.tsx new file mode 100644 index 000000000..3711199da --- /dev/null +++ b/src/IconSportsEsportsRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsEsportsRound as default } diff --git a/src/IconSportsEsportsSharp.tsx b/src/IconSportsEsportsSharp.tsx new file mode 100644 index 000000000..1b020498a --- /dev/null +++ b/src/IconSportsEsportsSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsEsportsSharp as default } diff --git a/src/IconSportsEsportsTwoTone.tsx b/src/IconSportsEsportsTwoTone.tsx new file mode 100644 index 000000000..959e0fbdf --- /dev/null +++ b/src/IconSportsEsportsTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsEsportsTwoTone as default } diff --git a/src/IconSportsFootballOutlined.tsx b/src/IconSportsFootballOutlined.tsx new file mode 100644 index 000000000..54afd95b2 --- /dev/null +++ b/src/IconSportsFootballOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsFootballOutlined as default } diff --git a/src/IconSportsFootballRound.tsx b/src/IconSportsFootballRound.tsx new file mode 100644 index 000000000..4ef2d107b --- /dev/null +++ b/src/IconSportsFootballRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsFootballRound as default } diff --git a/src/IconSportsFootballSharp.tsx b/src/IconSportsFootballSharp.tsx new file mode 100644 index 000000000..532a74df3 --- /dev/null +++ b/src/IconSportsFootballSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsFootballSharp as default } diff --git a/src/IconSportsFootballTwoTone.tsx b/src/IconSportsFootballTwoTone.tsx new file mode 100644 index 000000000..e14fb9c27 --- /dev/null +++ b/src/IconSportsFootballTwoTone.tsx @@ -0,0 +1,42 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsFootballTwoTone as default } diff --git a/src/IconSportsGolfOutlined.tsx b/src/IconSportsGolfOutlined.tsx new file mode 100644 index 000000000..1813a048e --- /dev/null +++ b/src/IconSportsGolfOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsGolfOutlined as default } diff --git a/src/IconSportsGolfRound.tsx b/src/IconSportsGolfRound.tsx new file mode 100644 index 000000000..52e241620 --- /dev/null +++ b/src/IconSportsGolfRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsGolfRound as default } diff --git a/src/IconSportsGolfSharp.tsx b/src/IconSportsGolfSharp.tsx new file mode 100644 index 000000000..15ce3034f --- /dev/null +++ b/src/IconSportsGolfSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsGolfSharp as default } diff --git a/src/IconSportsGolfTwoTone.tsx b/src/IconSportsGolfTwoTone.tsx new file mode 100644 index 000000000..dfdf53704 --- /dev/null +++ b/src/IconSportsGolfTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsGolfTwoTone as default } diff --git a/src/IconSportsGymnasticsOutlined.tsx b/src/IconSportsGymnasticsOutlined.tsx new file mode 100644 index 000000000..e3aa6112a --- /dev/null +++ b/src/IconSportsGymnasticsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsGymnasticsOutlined as default } diff --git a/src/IconSportsGymnasticsRound.tsx b/src/IconSportsGymnasticsRound.tsx new file mode 100644 index 000000000..80c741e6c --- /dev/null +++ b/src/IconSportsGymnasticsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSportsGymnasticsRound as default } diff --git a/src/IconSportsGymnasticsSharp.tsx b/src/IconSportsGymnasticsSharp.tsx new file mode 100644 index 000000000..de37e5cc3 --- /dev/null +++ b/src/IconSportsGymnasticsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsGymnasticsSharp as default } diff --git a/src/IconSportsGymnasticsTwoTone.tsx b/src/IconSportsGymnasticsTwoTone.tsx new file mode 100644 index 000000000..16f51aaa1 --- /dev/null +++ b/src/IconSportsGymnasticsTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsGymnasticsTwoTone as default } diff --git a/src/IconSportsHandballOutlined.tsx b/src/IconSportsHandballOutlined.tsx new file mode 100644 index 000000000..83fa74438 --- /dev/null +++ b/src/IconSportsHandballOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsHandballOutlined as default } diff --git a/src/IconSportsHandballRound.tsx b/src/IconSportsHandballRound.tsx new file mode 100644 index 000000000..13131d2d8 --- /dev/null +++ b/src/IconSportsHandballRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsHandballRound as default } diff --git a/src/IconSportsHandballSharp.tsx b/src/IconSportsHandballSharp.tsx new file mode 100644 index 000000000..235a9b58c --- /dev/null +++ b/src/IconSportsHandballSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsHandballSharp as default } diff --git a/src/IconSportsHandballTwoTone.tsx b/src/IconSportsHandballTwoTone.tsx new file mode 100644 index 000000000..61e4b4b12 --- /dev/null +++ b/src/IconSportsHandballTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsHandballTwoTone as default } diff --git a/src/IconSportsHockeyOutlined.tsx b/src/IconSportsHockeyOutlined.tsx new file mode 100644 index 000000000..77b3bab7d --- /dev/null +++ b/src/IconSportsHockeyOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsHockeyOutlined as default } diff --git a/src/IconSportsHockeyRound.tsx b/src/IconSportsHockeyRound.tsx new file mode 100644 index 000000000..fcdceadfc --- /dev/null +++ b/src/IconSportsHockeyRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSportsHockeyRound as default } diff --git a/src/IconSportsHockeySharp.tsx b/src/IconSportsHockeySharp.tsx new file mode 100644 index 000000000..e9b653c43 --- /dev/null +++ b/src/IconSportsHockeySharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsHockeySharp as default } diff --git a/src/IconSportsHockeyTwoTone.tsx b/src/IconSportsHockeyTwoTone.tsx new file mode 100644 index 000000000..557a77c36 --- /dev/null +++ b/src/IconSportsHockeyTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsHockeyTwoTone as default } diff --git a/src/IconSportsKabaddiOutlined.tsx b/src/IconSportsKabaddiOutlined.tsx new file mode 100644 index 000000000..b75dd39ff --- /dev/null +++ b/src/IconSportsKabaddiOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsKabaddiOutlined as default } diff --git a/src/IconSportsKabaddiRound.tsx b/src/IconSportsKabaddiRound.tsx new file mode 100644 index 000000000..4b1d91fd4 --- /dev/null +++ b/src/IconSportsKabaddiRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSportsKabaddiRound as default } diff --git a/src/IconSportsKabaddiSharp.tsx b/src/IconSportsKabaddiSharp.tsx new file mode 100644 index 000000000..cbf84d95c --- /dev/null +++ b/src/IconSportsKabaddiSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsKabaddiSharp as default } diff --git a/src/IconSportsKabaddiTwoTone.tsx b/src/IconSportsKabaddiTwoTone.tsx new file mode 100644 index 000000000..2158c7f77 --- /dev/null +++ b/src/IconSportsKabaddiTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsKabaddiTwoTone as default } diff --git a/src/IconSportsMartialArtsOutlined.tsx b/src/IconSportsMartialArtsOutlined.tsx new file mode 100644 index 000000000..a5f0ebb07 --- /dev/null +++ b/src/IconSportsMartialArtsOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMartialArtsOutlined as default } diff --git a/src/IconSportsMartialArtsRound.tsx b/src/IconSportsMartialArtsRound.tsx new file mode 100644 index 000000000..d20c3ade6 --- /dev/null +++ b/src/IconSportsMartialArtsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsMartialArtsRound as default } diff --git a/src/IconSportsMartialArtsSharp.tsx b/src/IconSportsMartialArtsSharp.tsx new file mode 100644 index 000000000..95d80980d --- /dev/null +++ b/src/IconSportsMartialArtsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMartialArtsSharp as default } diff --git a/src/IconSportsMartialArtsTwoTone.tsx b/src/IconSportsMartialArtsTwoTone.tsx new file mode 100644 index 000000000..37aa75059 --- /dev/null +++ b/src/IconSportsMartialArtsTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMartialArtsTwoTone as default } diff --git a/src/IconSportsMmaOutlined.tsx b/src/IconSportsMmaOutlined.tsx new file mode 100644 index 000000000..f824aad0a --- /dev/null +++ b/src/IconSportsMmaOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsMmaOutlined as default } diff --git a/src/IconSportsMmaRound.tsx b/src/IconSportsMmaRound.tsx new file mode 100644 index 000000000..1ec6cd5f5 --- /dev/null +++ b/src/IconSportsMmaRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsMmaRound as default } diff --git a/src/IconSportsMmaSharp.tsx b/src/IconSportsMmaSharp.tsx new file mode 100644 index 000000000..2dcfcc355 --- /dev/null +++ b/src/IconSportsMmaSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMmaSharp as default } diff --git a/src/IconSportsMmaTwoTone.tsx b/src/IconSportsMmaTwoTone.tsx new file mode 100644 index 000000000..d8ba61de0 --- /dev/null +++ b/src/IconSportsMmaTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsMmaTwoTone as default } diff --git a/src/IconSportsMotorsportsOutlined.tsx b/src/IconSportsMotorsportsOutlined.tsx new file mode 100644 index 000000000..3a2bc46ba --- /dev/null +++ b/src/IconSportsMotorsportsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsMotorsportsOutlined as default } diff --git a/src/IconSportsMotorsportsRound.tsx b/src/IconSportsMotorsportsRound.tsx new file mode 100644 index 000000000..6a937ccb6 --- /dev/null +++ b/src/IconSportsMotorsportsRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSportsMotorsportsRound as default } diff --git a/src/IconSportsMotorsportsSharp.tsx b/src/IconSportsMotorsportsSharp.tsx new file mode 100644 index 000000000..ee2dd46e4 --- /dev/null +++ b/src/IconSportsMotorsportsSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMotorsportsSharp as default } diff --git a/src/IconSportsMotorsportsTwoTone.tsx b/src/IconSportsMotorsportsTwoTone.tsx new file mode 100644 index 000000000..4606e9d75 --- /dev/null +++ b/src/IconSportsMotorsportsTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsMotorsportsTwoTone as default } diff --git a/src/IconSportsOutlined.tsx b/src/IconSportsOutlined.tsx new file mode 100644 index 000000000..926115655 --- /dev/null +++ b/src/IconSportsOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsOutlined as default } diff --git a/src/IconSportsRound.tsx b/src/IconSportsRound.tsx new file mode 100644 index 000000000..0d4c7f6bc --- /dev/null +++ b/src/IconSportsRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSportsRound as default } diff --git a/src/IconSportsRugbyOutlined.tsx b/src/IconSportsRugbyOutlined.tsx new file mode 100644 index 000000000..8c2a0a78a --- /dev/null +++ b/src/IconSportsRugbyOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSportsRugbyOutlined as default } diff --git a/src/IconSportsRugbyRound.tsx b/src/IconSportsRugbyRound.tsx new file mode 100644 index 000000000..d16c341ed --- /dev/null +++ b/src/IconSportsRugbyRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsRugbyRound as default } diff --git a/src/IconSportsRugbySharp.tsx b/src/IconSportsRugbySharp.tsx new file mode 100644 index 000000000..bb1af0d57 --- /dev/null +++ b/src/IconSportsRugbySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsRugbySharp as default } diff --git a/src/IconSportsRugbyTwoTone.tsx b/src/IconSportsRugbyTwoTone.tsx new file mode 100644 index 000000000..8cfb8107c --- /dev/null +++ b/src/IconSportsRugbyTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSportsRugbyTwoTone as default } diff --git a/src/IconSportsScoreOutlined.tsx b/src/IconSportsScoreOutlined.tsx new file mode 100644 index 000000000..f5ba33ad2 --- /dev/null +++ b/src/IconSportsScoreOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsScoreOutlined as default } diff --git a/src/IconSportsScoreRound.tsx b/src/IconSportsScoreRound.tsx new file mode 100644 index 000000000..6b8ccffdd --- /dev/null +++ b/src/IconSportsScoreRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsScoreRound as default } diff --git a/src/IconSportsScoreSharp.tsx b/src/IconSportsScoreSharp.tsx new file mode 100644 index 000000000..e82e08f18 --- /dev/null +++ b/src/IconSportsScoreSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsScoreSharp as default } diff --git a/src/IconSportsScoreTwoTone.tsx b/src/IconSportsScoreTwoTone.tsx new file mode 100644 index 000000000..290fc3e38 --- /dev/null +++ b/src/IconSportsScoreTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsScoreTwoTone as default } diff --git a/src/IconSportsSharp.tsx b/src/IconSportsSharp.tsx new file mode 100644 index 000000000..4f999cb5e --- /dev/null +++ b/src/IconSportsSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsSharp as default } diff --git a/src/IconSportsSoccerOutlined.tsx b/src/IconSportsSoccerOutlined.tsx new file mode 100644 index 000000000..177c9e2d2 --- /dev/null +++ b/src/IconSportsSoccerOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsSoccerOutlined as default } diff --git a/src/IconSportsSoccerRound.tsx b/src/IconSportsSoccerRound.tsx new file mode 100644 index 000000000..495ddb62d --- /dev/null +++ b/src/IconSportsSoccerRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSportsSoccerRound as default } diff --git a/src/IconSportsSoccerSharp.tsx b/src/IconSportsSoccerSharp.tsx new file mode 100644 index 000000000..5ba8f4ff2 --- /dev/null +++ b/src/IconSportsSoccerSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsSoccerSharp as default } diff --git a/src/IconSportsSoccerTwoTone.tsx b/src/IconSportsSoccerTwoTone.tsx new file mode 100644 index 000000000..709652b92 --- /dev/null +++ b/src/IconSportsSoccerTwoTone.tsx @@ -0,0 +1,43 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconSportsSoccerTwoTone as default } diff --git a/src/IconSportsTennisOutlined.tsx b/src/IconSportsTennisOutlined.tsx new file mode 100644 index 000000000..7429d4051 --- /dev/null +++ b/src/IconSportsTennisOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSportsTennisOutlined as default } diff --git a/src/IconSportsTennisRound.tsx b/src/IconSportsTennisRound.tsx new file mode 100644 index 000000000..dd4bf9061 --- /dev/null +++ b/src/IconSportsTennisRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsTennisRound as default } diff --git a/src/IconSportsTennisSharp.tsx b/src/IconSportsTennisSharp.tsx new file mode 100644 index 000000000..5a4c5f0c4 --- /dev/null +++ b/src/IconSportsTennisSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSportsTennisSharp as default } diff --git a/src/IconSportsTennisTwoTone.tsx b/src/IconSportsTennisTwoTone.tsx new file mode 100644 index 000000000..df7662a8f --- /dev/null +++ b/src/IconSportsTennisTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSportsTennisTwoTone as default } diff --git a/src/IconSportsTwoTone.tsx b/src/IconSportsTwoTone.tsx new file mode 100644 index 000000000..fc63b5dbf --- /dev/null +++ b/src/IconSportsTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsTwoTone as default } diff --git a/src/IconSportsVolleyballOutlined.tsx b/src/IconSportsVolleyballOutlined.tsx new file mode 100644 index 000000000..6b8b58bd0 --- /dev/null +++ b/src/IconSportsVolleyballOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSportsVolleyballOutlined as default } diff --git a/src/IconSportsVolleyballRound.tsx b/src/IconSportsVolleyballRound.tsx new file mode 100644 index 000000000..427c0f3fa --- /dev/null +++ b/src/IconSportsVolleyballRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSportsVolleyballRound as default } diff --git a/src/IconSportsVolleyballSharp.tsx b/src/IconSportsVolleyballSharp.tsx new file mode 100644 index 000000000..ef08983c7 --- /dev/null +++ b/src/IconSportsVolleyballSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSportsVolleyballSharp as default } diff --git a/src/IconSportsVolleyballTwoTone.tsx b/src/IconSportsVolleyballTwoTone.tsx new file mode 100644 index 000000000..aa08f6a11 --- /dev/null +++ b/src/IconSportsVolleyballTwoTone.tsx @@ -0,0 +1,47 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSportsVolleyballTwoTone as default } diff --git a/src/IconSquareFootOutlined.tsx b/src/IconSquareFootOutlined.tsx new file mode 100644 index 000000000..b9e57119e --- /dev/null +++ b/src/IconSquareFootOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquareFootOutlined as default } diff --git a/src/IconSquareFootRound.tsx b/src/IconSquareFootRound.tsx new file mode 100644 index 000000000..62a907575 --- /dev/null +++ b/src/IconSquareFootRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSquareFootRound as default } diff --git a/src/IconSquareFootSharp.tsx b/src/IconSquareFootSharp.tsx new file mode 100644 index 000000000..657b61926 --- /dev/null +++ b/src/IconSquareFootSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquareFootSharp as default } diff --git a/src/IconSquareFootTwoTone.tsx b/src/IconSquareFootTwoTone.tsx new file mode 100644 index 000000000..7c8a0f1c7 --- /dev/null +++ b/src/IconSquareFootTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSquareFootTwoTone as default } diff --git a/src/IconSquareOutlined.tsx b/src/IconSquareOutlined.tsx new file mode 100644 index 000000000..eb6deaf74 --- /dev/null +++ b/src/IconSquareOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquareOutlined as default } diff --git a/src/IconSquareRound.tsx b/src/IconSquareRound.tsx new file mode 100644 index 000000000..40998717b --- /dev/null +++ b/src/IconSquareRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquareRound as default } diff --git a/src/IconSquareSharp.tsx b/src/IconSquareSharp.tsx new file mode 100644 index 000000000..d3e73671d --- /dev/null +++ b/src/IconSquareSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSquareSharp as default } diff --git a/src/IconSquareTwoTone.tsx b/src/IconSquareTwoTone.tsx new file mode 100644 index 000000000..b0fb980ad --- /dev/null +++ b/src/IconSquareTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSquareTwoTone as default } diff --git a/src/IconSsidChartOutlined.tsx b/src/IconSsidChartOutlined.tsx new file mode 100644 index 000000000..da1e18cb2 --- /dev/null +++ b/src/IconSsidChartOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSsidChartOutlined as default } diff --git a/src/IconSsidChartRound.tsx b/src/IconSsidChartRound.tsx new file mode 100644 index 000000000..0d3178012 --- /dev/null +++ b/src/IconSsidChartRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSsidChartRound as default } diff --git a/src/IconSsidChartSharp.tsx b/src/IconSsidChartSharp.tsx new file mode 100644 index 000000000..e10159511 --- /dev/null +++ b/src/IconSsidChartSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSsidChartSharp as default } diff --git a/src/IconSsidChartTwoTone.tsx b/src/IconSsidChartTwoTone.tsx new file mode 100644 index 000000000..e1b56e936 --- /dev/null +++ b/src/IconSsidChartTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSsidChartTwoTone as default } diff --git a/src/IconStackedBarChartOutlined.tsx b/src/IconStackedBarChartOutlined.tsx new file mode 100644 index 000000000..c3addcfdf --- /dev/null +++ b/src/IconStackedBarChartOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconStackedBarChartOutlined as default } diff --git a/src/IconStackedBarChartRound.tsx b/src/IconStackedBarChartRound.tsx new file mode 100644 index 000000000..4bd58f7d4 --- /dev/null +++ b/src/IconStackedBarChartRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconStackedBarChartRound as default } diff --git a/src/IconStackedBarChartSharp.tsx b/src/IconStackedBarChartSharp.tsx new file mode 100644 index 000000000..3c135da31 --- /dev/null +++ b/src/IconStackedBarChartSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconStackedBarChartSharp as default } diff --git a/src/IconStackedBarChartTwoTone.tsx b/src/IconStackedBarChartTwoTone.tsx new file mode 100644 index 000000000..32ebba0be --- /dev/null +++ b/src/IconStackedBarChartTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconStackedBarChartTwoTone as default } diff --git a/src/IconStackedLineChartOutlined.tsx b/src/IconStackedLineChartOutlined.tsx new file mode 100644 index 000000000..dd23d3a86 --- /dev/null +++ b/src/IconStackedLineChartOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStackedLineChartOutlined as default } diff --git a/src/IconStackedLineChartRound.tsx b/src/IconStackedLineChartRound.tsx new file mode 100644 index 000000000..e148de152 --- /dev/null +++ b/src/IconStackedLineChartRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStackedLineChartRound as default } diff --git a/src/IconStackedLineChartSharp.tsx b/src/IconStackedLineChartSharp.tsx new file mode 100644 index 000000000..13e44203e --- /dev/null +++ b/src/IconStackedLineChartSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStackedLineChartSharp as default } diff --git a/src/IconStackedLineChartTwoTone.tsx b/src/IconStackedLineChartTwoTone.tsx new file mode 100644 index 000000000..b71bbe96c --- /dev/null +++ b/src/IconStackedLineChartTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStackedLineChartTwoTone as default } diff --git a/src/IconStadiumOutlined.tsx b/src/IconStadiumOutlined.tsx new file mode 100644 index 000000000..682c20430 --- /dev/null +++ b/src/IconStadiumOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStadiumOutlined as default } diff --git a/src/IconStadiumRound.tsx b/src/IconStadiumRound.tsx new file mode 100644 index 000000000..586414f4f --- /dev/null +++ b/src/IconStadiumRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStadiumRound as default } diff --git a/src/IconStadiumSharp.tsx b/src/IconStadiumSharp.tsx new file mode 100644 index 000000000..954273e6a --- /dev/null +++ b/src/IconStadiumSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStadiumSharp as default } diff --git a/src/IconStadiumTwoTone.tsx b/src/IconStadiumTwoTone.tsx new file mode 100644 index 000000000..bc951212f --- /dev/null +++ b/src/IconStadiumTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconStadiumTwoTone as default } diff --git a/src/IconStairsOutlined.tsx b/src/IconStairsOutlined.tsx new file mode 100644 index 000000000..e7932f685 --- /dev/null +++ b/src/IconStairsOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStairsOutlined as default } diff --git a/src/IconStairsRound.tsx b/src/IconStairsRound.tsx new file mode 100644 index 000000000..3f138ac9d --- /dev/null +++ b/src/IconStairsRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStairsRound as default } diff --git a/src/IconStairsSharp.tsx b/src/IconStairsSharp.tsx new file mode 100644 index 000000000..e15121d7b --- /dev/null +++ b/src/IconStairsSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStairsSharp as default } diff --git a/src/IconStairsTwoTone.tsx b/src/IconStairsTwoTone.tsx new file mode 100644 index 000000000..f6910fb02 --- /dev/null +++ b/src/IconStairsTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconStairsTwoTone as default } diff --git a/src/IconStar.tsx b/src/IconStar.tsx index 45a97c787..2af0add38 100644 --- a/src/IconStar.tsx +++ b/src/IconStar.tsx @@ -6,7 +6,7 @@ const IconStar: React.FC = ({ ...props }) => ( {props.title && {props.title}} - + ) diff --git a/src/IconStarBorderOutlined.tsx b/src/IconStarBorderOutlined.tsx new file mode 100644 index 000000000..0a242809d --- /dev/null +++ b/src/IconStarBorderOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderOutlined as default } diff --git a/src/IconStarBorderPurple500Outlined.tsx b/src/IconStarBorderPurple500Outlined.tsx new file mode 100644 index 000000000..41cbdb585 --- /dev/null +++ b/src/IconStarBorderPurple500Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderPurple500Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderPurple500Outlined as default } diff --git a/src/IconStarBorderPurple500Round.tsx b/src/IconStarBorderPurple500Round.tsx new file mode 100644 index 000000000..e7dbc328d --- /dev/null +++ b/src/IconStarBorderPurple500Round.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderPurple500Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStarBorderPurple500Round as default } diff --git a/src/IconStarBorderPurple500Sharp.tsx b/src/IconStarBorderPurple500Sharp.tsx new file mode 100644 index 000000000..db8a8f2df --- /dev/null +++ b/src/IconStarBorderPurple500Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderPurple500Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderPurple500Sharp as default } diff --git a/src/IconStarBorderPurple500TwoTone.tsx b/src/IconStarBorderPurple500TwoTone.tsx new file mode 100644 index 000000000..cd4f285dc --- /dev/null +++ b/src/IconStarBorderPurple500TwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderPurple500TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStarBorderPurple500TwoTone as default } diff --git a/src/IconStarBorderRound.tsx b/src/IconStarBorderRound.tsx new file mode 100644 index 000000000..4b1d08d80 --- /dev/null +++ b/src/IconStarBorderRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderRound as default } diff --git a/src/IconStarBorderSharp.tsx b/src/IconStarBorderSharp.tsx new file mode 100644 index 000000000..e08790da4 --- /dev/null +++ b/src/IconStarBorderSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderSharp as default } diff --git a/src/IconStarBorderTwoTone.tsx b/src/IconStarBorderTwoTone.tsx new file mode 100644 index 000000000..0c49bcc96 --- /dev/null +++ b/src/IconStarBorderTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarBorderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarBorderTwoTone as default } diff --git a/src/IconStarHalfOutlined.tsx b/src/IconStarHalfOutlined.tsx new file mode 100644 index 000000000..0ad9ab326 --- /dev/null +++ b/src/IconStarHalfOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarHalfOutlined as default } diff --git a/src/IconStarHalfRound.tsx b/src/IconStarHalfRound.tsx new file mode 100644 index 000000000..78e9f70c7 --- /dev/null +++ b/src/IconStarHalfRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarHalfRound as default } diff --git a/src/IconStarHalfSharp.tsx b/src/IconStarHalfSharp.tsx new file mode 100644 index 000000000..7aa507a71 --- /dev/null +++ b/src/IconStarHalfSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarHalfSharp as default } diff --git a/src/IconStarHalfTwoTone.tsx b/src/IconStarHalfTwoTone.tsx new file mode 100644 index 000000000..99389ed3d --- /dev/null +++ b/src/IconStarHalfTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarHalfTwoTone as default } diff --git a/src/IconStarOutlineOutlined.tsx b/src/IconStarOutlineOutlined.tsx new file mode 100644 index 000000000..20012b5db --- /dev/null +++ b/src/IconStarOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarOutlineOutlined as default } diff --git a/src/IconStarOutlineRound.tsx b/src/IconStarOutlineRound.tsx new file mode 100644 index 000000000..627a390c9 --- /dev/null +++ b/src/IconStarOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarOutlineRound as default } diff --git a/src/IconStarOutlineSharp.tsx b/src/IconStarOutlineSharp.tsx new file mode 100644 index 000000000..6a9a0cf41 --- /dev/null +++ b/src/IconStarOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarOutlineSharp as default } diff --git a/src/IconStarOutlineTwoTone.tsx b/src/IconStarOutlineTwoTone.tsx new file mode 100644 index 000000000..42baeb1d6 --- /dev/null +++ b/src/IconStarOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarOutlineTwoTone as default } diff --git a/src/IconStarOutlined.tsx b/src/IconStarOutlined.tsx new file mode 100644 index 000000000..87103f224 --- /dev/null +++ b/src/IconStarOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconStarOutlined as default } diff --git a/src/IconStarPurple500Outlined.tsx b/src/IconStarPurple500Outlined.tsx new file mode 100644 index 000000000..f554a6fc6 --- /dev/null +++ b/src/IconStarPurple500Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarPurple500Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarPurple500Outlined as default } diff --git a/src/IconStarPurple500Round.tsx b/src/IconStarPurple500Round.tsx new file mode 100644 index 000000000..b56749462 --- /dev/null +++ b/src/IconStarPurple500Round.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarPurple500Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStarPurple500Round as default } diff --git a/src/IconStarPurple500Sharp.tsx b/src/IconStarPurple500Sharp.tsx new file mode 100644 index 000000000..6b3680fba --- /dev/null +++ b/src/IconStarPurple500Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarPurple500Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarPurple500Sharp as default } diff --git a/src/IconStarPurple500TwoTone.tsx b/src/IconStarPurple500TwoTone.tsx new file mode 100644 index 000000000..108b84ea7 --- /dev/null +++ b/src/IconStarPurple500TwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarPurple500TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStarPurple500TwoTone as default } diff --git a/src/IconStarRateOutlined.tsx b/src/IconStarRateOutlined.tsx new file mode 100644 index 000000000..63642f64e --- /dev/null +++ b/src/IconStarRateOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStarRateOutlined as default } diff --git a/src/IconStarRateRound.tsx b/src/IconStarRateRound.tsx new file mode 100644 index 000000000..8d965a0cb --- /dev/null +++ b/src/IconStarRateRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStarRateRound as default } diff --git a/src/IconStarRateSharp.tsx b/src/IconStarRateSharp.tsx new file mode 100644 index 000000000..742946cb8 --- /dev/null +++ b/src/IconStarRateSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStarRateSharp as default } diff --git a/src/IconStarRateTwoTone.tsx b/src/IconStarRateTwoTone.tsx new file mode 100644 index 000000000..be6e15cd4 --- /dev/null +++ b/src/IconStarRateTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconStarRateTwoTone as default } diff --git a/src/IconStarRound.tsx b/src/IconStarRound.tsx new file mode 100644 index 000000000..09f1e9917 --- /dev/null +++ b/src/IconStarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconStarRound as default } diff --git a/src/IconStarSharp.tsx b/src/IconStarSharp.tsx new file mode 100644 index 000000000..0269a6bc9 --- /dev/null +++ b/src/IconStarSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconStarSharp as default } diff --git a/src/IconStarTwoTone.tsx b/src/IconStarTwoTone.tsx new file mode 100644 index 000000000..f9153503d --- /dev/null +++ b/src/IconStarTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconStarTwoTone as default } diff --git a/src/IconStarsOutlined.tsx b/src/IconStarsOutlined.tsx new file mode 100644 index 000000000..598744334 --- /dev/null +++ b/src/IconStarsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarsOutlined as default } diff --git a/src/IconStarsRound.tsx b/src/IconStarsRound.tsx new file mode 100644 index 000000000..ecab52c06 --- /dev/null +++ b/src/IconStarsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarsRound as default } diff --git a/src/IconStarsSharp.tsx b/src/IconStarsSharp.tsx new file mode 100644 index 000000000..fca5e2a77 --- /dev/null +++ b/src/IconStarsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStarsSharp as default } diff --git a/src/IconStarsTwoTone.tsx b/src/IconStarsTwoTone.tsx new file mode 100644 index 000000000..bd8f9c499 --- /dev/null +++ b/src/IconStarsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStarsTwoTone as default } diff --git a/src/IconStartOutlined.tsx b/src/IconStartOutlined.tsx new file mode 100644 index 000000000..ee4340ece --- /dev/null +++ b/src/IconStartOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStartOutlined as default } diff --git a/src/IconStartRound.tsx b/src/IconStartRound.tsx new file mode 100644 index 000000000..88b3adaac --- /dev/null +++ b/src/IconStartRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStartRound as default } diff --git a/src/IconStartSharp.tsx b/src/IconStartSharp.tsx new file mode 100644 index 000000000..6644d01f8 --- /dev/null +++ b/src/IconStartSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStartSharp as default } diff --git a/src/IconStartTwoTone.tsx b/src/IconStartTwoTone.tsx new file mode 100644 index 000000000..9289665d9 --- /dev/null +++ b/src/IconStartTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStartTwoTone as default } diff --git a/src/IconStayCurrentLandscapeOutlined.tsx b/src/IconStayCurrentLandscapeOutlined.tsx new file mode 100644 index 000000000..7a848c368 --- /dev/null +++ b/src/IconStayCurrentLandscapeOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentLandscapeOutlined as default } diff --git a/src/IconStayCurrentLandscapeRound.tsx b/src/IconStayCurrentLandscapeRound.tsx new file mode 100644 index 000000000..a3ee1f556 --- /dev/null +++ b/src/IconStayCurrentLandscapeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentLandscapeRound as default } diff --git a/src/IconStayCurrentLandscapeSharp.tsx b/src/IconStayCurrentLandscapeSharp.tsx new file mode 100644 index 000000000..cf460fd38 --- /dev/null +++ b/src/IconStayCurrentLandscapeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentLandscapeSharp as default } diff --git a/src/IconStayCurrentLandscapeTwoTone.tsx b/src/IconStayCurrentLandscapeTwoTone.tsx new file mode 100644 index 000000000..19e380144 --- /dev/null +++ b/src/IconStayCurrentLandscapeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStayCurrentLandscapeTwoTone as default } diff --git a/src/IconStayCurrentPortraitOutlined.tsx b/src/IconStayCurrentPortraitOutlined.tsx new file mode 100644 index 000000000..32ffa5473 --- /dev/null +++ b/src/IconStayCurrentPortraitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentPortraitOutlined as default } diff --git a/src/IconStayCurrentPortraitRound.tsx b/src/IconStayCurrentPortraitRound.tsx new file mode 100644 index 000000000..9291f1645 --- /dev/null +++ b/src/IconStayCurrentPortraitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentPortraitRound as default } diff --git a/src/IconStayCurrentPortraitSharp.tsx b/src/IconStayCurrentPortraitSharp.tsx new file mode 100644 index 000000000..0dc841897 --- /dev/null +++ b/src/IconStayCurrentPortraitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayCurrentPortraitSharp as default } diff --git a/src/IconStayCurrentPortraitTwoTone.tsx b/src/IconStayCurrentPortraitTwoTone.tsx new file mode 100644 index 000000000..4f9a3ee09 --- /dev/null +++ b/src/IconStayCurrentPortraitTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStayCurrentPortraitTwoTone as default } diff --git a/src/IconStayPrimaryLandscapeOutlined.tsx b/src/IconStayPrimaryLandscapeOutlined.tsx new file mode 100644 index 000000000..843181490 --- /dev/null +++ b/src/IconStayPrimaryLandscapeOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryLandscapeOutlined as default } diff --git a/src/IconStayPrimaryLandscapeRound.tsx b/src/IconStayPrimaryLandscapeRound.tsx new file mode 100644 index 000000000..0bae08e08 --- /dev/null +++ b/src/IconStayPrimaryLandscapeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryLandscapeRound as default } diff --git a/src/IconStayPrimaryLandscapeSharp.tsx b/src/IconStayPrimaryLandscapeSharp.tsx new file mode 100644 index 000000000..4ae204fd0 --- /dev/null +++ b/src/IconStayPrimaryLandscapeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryLandscapeSharp as default } diff --git a/src/IconStayPrimaryLandscapeTwoTone.tsx b/src/IconStayPrimaryLandscapeTwoTone.tsx new file mode 100644 index 000000000..a8f2ce4c7 --- /dev/null +++ b/src/IconStayPrimaryLandscapeTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStayPrimaryLandscapeTwoTone as default } diff --git a/src/IconStayPrimaryPortraitOutlined.tsx b/src/IconStayPrimaryPortraitOutlined.tsx new file mode 100644 index 000000000..d86b0362d --- /dev/null +++ b/src/IconStayPrimaryPortraitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryPortraitOutlined as default } diff --git a/src/IconStayPrimaryPortraitRound.tsx b/src/IconStayPrimaryPortraitRound.tsx new file mode 100644 index 000000000..f9a9380ec --- /dev/null +++ b/src/IconStayPrimaryPortraitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryPortraitRound as default } diff --git a/src/IconStayPrimaryPortraitSharp.tsx b/src/IconStayPrimaryPortraitSharp.tsx new file mode 100644 index 000000000..9e7e4f604 --- /dev/null +++ b/src/IconStayPrimaryPortraitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStayPrimaryPortraitSharp as default } diff --git a/src/IconStayPrimaryPortraitTwoTone.tsx b/src/IconStayPrimaryPortraitTwoTone.tsx new file mode 100644 index 000000000..66a4b9e65 --- /dev/null +++ b/src/IconStayPrimaryPortraitTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStayPrimaryPortraitTwoTone as default } diff --git a/src/IconStickyNote2Outlined.tsx b/src/IconStickyNote2Outlined.tsx new file mode 100644 index 000000000..fbe749877 --- /dev/null +++ b/src/IconStickyNote2Outlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStickyNote2Outlined as default } diff --git a/src/IconStickyNote2Round.tsx b/src/IconStickyNote2Round.tsx new file mode 100644 index 000000000..75e6630c3 --- /dev/null +++ b/src/IconStickyNote2Round.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStickyNote2Round as default } diff --git a/src/IconStickyNote2Sharp.tsx b/src/IconStickyNote2Sharp.tsx new file mode 100644 index 000000000..0045f4722 --- /dev/null +++ b/src/IconStickyNote2Sharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStickyNote2Sharp as default } diff --git a/src/IconStickyNote2TwoTone.tsx b/src/IconStickyNote2TwoTone.tsx new file mode 100644 index 000000000..207039ae2 --- /dev/null +++ b/src/IconStickyNote2TwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStickyNote2TwoTone as default } diff --git a/src/IconStopCircleOutlined.tsx b/src/IconStopCircleOutlined.tsx new file mode 100644 index 000000000..668edb5a1 --- /dev/null +++ b/src/IconStopCircleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopCircleOutlined as default } diff --git a/src/IconStopCircleRound.tsx b/src/IconStopCircleRound.tsx new file mode 100644 index 000000000..d680a1c73 --- /dev/null +++ b/src/IconStopCircleRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopCircleRound as default } diff --git a/src/IconStopCircleSharp.tsx b/src/IconStopCircleSharp.tsx new file mode 100644 index 000000000..be57cc5f1 --- /dev/null +++ b/src/IconStopCircleSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopCircleSharp as default } diff --git a/src/IconStopCircleTwoTone.tsx b/src/IconStopCircleTwoTone.tsx new file mode 100644 index 000000000..e5391ccf2 --- /dev/null +++ b/src/IconStopCircleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStopCircleTwoTone as default } diff --git a/src/IconStopOutlined.tsx b/src/IconStopOutlined.tsx new file mode 100644 index 000000000..bb6b21f85 --- /dev/null +++ b/src/IconStopOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopOutlined as default } diff --git a/src/IconStopRound.tsx b/src/IconStopRound.tsx new file mode 100644 index 000000000..c8de77c5a --- /dev/null +++ b/src/IconStopRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopRound as default } diff --git a/src/IconStopScreenShareOutlined.tsx b/src/IconStopScreenShareOutlined.tsx new file mode 100644 index 000000000..a7b189e10 --- /dev/null +++ b/src/IconStopScreenShareOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopScreenShareOutlined as default } diff --git a/src/IconStopScreenShareRound.tsx b/src/IconStopScreenShareRound.tsx new file mode 100644 index 000000000..abb917081 --- /dev/null +++ b/src/IconStopScreenShareRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopScreenShareRound as default } diff --git a/src/IconStopScreenShareSharp.tsx b/src/IconStopScreenShareSharp.tsx new file mode 100644 index 000000000..71ef30bdc --- /dev/null +++ b/src/IconStopScreenShareSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopScreenShareSharp as default } diff --git a/src/IconStopScreenShareTwoTone.tsx b/src/IconStopScreenShareTwoTone.tsx new file mode 100644 index 000000000..bcaa01ac0 --- /dev/null +++ b/src/IconStopScreenShareTwoTone.tsx @@ -0,0 +1,20 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStopScreenShareTwoTone as default } diff --git a/src/IconStopSharp.tsx b/src/IconStopSharp.tsx new file mode 100644 index 000000000..60ab53e50 --- /dev/null +++ b/src/IconStopSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStopSharp as default } diff --git a/src/IconStopTwoTone.tsx b/src/IconStopTwoTone.tsx new file mode 100644 index 000000000..3497f6545 --- /dev/null +++ b/src/IconStopTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStopTwoTone as default } diff --git a/src/IconStorageOutlined.tsx b/src/IconStorageOutlined.tsx new file mode 100644 index 000000000..b3682bd55 --- /dev/null +++ b/src/IconStorageOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStorageOutlined as default } diff --git a/src/IconStorageRound.tsx b/src/IconStorageRound.tsx new file mode 100644 index 000000000..f91f3848b --- /dev/null +++ b/src/IconStorageRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStorageRound as default } diff --git a/src/IconStorageSharp.tsx b/src/IconStorageSharp.tsx new file mode 100644 index 000000000..af34929ac --- /dev/null +++ b/src/IconStorageSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStorageSharp as default } diff --git a/src/IconStorageTwoTone.tsx b/src/IconStorageTwoTone.tsx new file mode 100644 index 000000000..7f5764694 --- /dev/null +++ b/src/IconStorageTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStorageTwoTone as default } diff --git a/src/IconStoreMallDirectoryOutlined.tsx b/src/IconStoreMallDirectoryOutlined.tsx new file mode 100644 index 000000000..cdd944f0b --- /dev/null +++ b/src/IconStoreMallDirectoryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreMallDirectoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreMallDirectoryOutlined as default } diff --git a/src/IconStoreMallDirectoryRound.tsx b/src/IconStoreMallDirectoryRound.tsx new file mode 100644 index 000000000..03240c9cb --- /dev/null +++ b/src/IconStoreMallDirectoryRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreMallDirectoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreMallDirectoryRound as default } diff --git a/src/IconStoreMallDirectorySharp.tsx b/src/IconStoreMallDirectorySharp.tsx new file mode 100644 index 000000000..d3acef4e0 --- /dev/null +++ b/src/IconStoreMallDirectorySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreMallDirectorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreMallDirectorySharp as default } diff --git a/src/IconStoreMallDirectoryTwoTone.tsx b/src/IconStoreMallDirectoryTwoTone.tsx new file mode 100644 index 000000000..b2531890f --- /dev/null +++ b/src/IconStoreMallDirectoryTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreMallDirectoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStoreMallDirectoryTwoTone as default } diff --git a/src/IconStoreOutlined.tsx b/src/IconStoreOutlined.tsx new file mode 100644 index 000000000..cf0899a50 --- /dev/null +++ b/src/IconStoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreOutlined as default } diff --git a/src/IconStoreRound.tsx b/src/IconStoreRound.tsx new file mode 100644 index 000000000..125dd815e --- /dev/null +++ b/src/IconStoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreRound as default } diff --git a/src/IconStoreSharp.tsx b/src/IconStoreSharp.tsx new file mode 100644 index 000000000..c254799bf --- /dev/null +++ b/src/IconStoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStoreSharp as default } diff --git a/src/IconStoreTwoTone.tsx b/src/IconStoreTwoTone.tsx new file mode 100644 index 000000000..34357de33 --- /dev/null +++ b/src/IconStoreTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStoreTwoTone as default } diff --git a/src/IconStorefrontOutlined.tsx b/src/IconStorefrontOutlined.tsx new file mode 100644 index 000000000..adc541fed --- /dev/null +++ b/src/IconStorefrontOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconStorefrontOutlined as default } diff --git a/src/IconStorefrontRound.tsx b/src/IconStorefrontRound.tsx new file mode 100644 index 000000000..d3db46ccc --- /dev/null +++ b/src/IconStorefrontRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconStorefrontRound as default } diff --git a/src/IconStorefrontSharp.tsx b/src/IconStorefrontSharp.tsx new file mode 100644 index 000000000..7bca69b75 --- /dev/null +++ b/src/IconStorefrontSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconStorefrontSharp as default } diff --git a/src/IconStorefrontTwoTone.tsx b/src/IconStorefrontTwoTone.tsx new file mode 100644 index 000000000..c5ff38a6a --- /dev/null +++ b/src/IconStorefrontTwoTone.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconStorefrontTwoTone as default } diff --git a/src/IconStormOutlined.tsx b/src/IconStormOutlined.tsx new file mode 100644 index 000000000..a1995e8fb --- /dev/null +++ b/src/IconStormOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStormOutlined as default } diff --git a/src/IconStormRound.tsx b/src/IconStormRound.tsx new file mode 100644 index 000000000..9e32e1897 --- /dev/null +++ b/src/IconStormRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStormRound as default } diff --git a/src/IconStormSharp.tsx b/src/IconStormSharp.tsx new file mode 100644 index 000000000..ea5e55133 --- /dev/null +++ b/src/IconStormSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconStormSharp as default } diff --git a/src/IconStormTwoTone.tsx b/src/IconStormTwoTone.tsx new file mode 100644 index 000000000..470177c32 --- /dev/null +++ b/src/IconStormTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconStormTwoTone as default } diff --git a/src/IconStraightOutlined.tsx b/src/IconStraightOutlined.tsx new file mode 100644 index 000000000..f63d67428 --- /dev/null +++ b/src/IconStraightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStraightOutlined as default } diff --git a/src/IconStraightRound.tsx b/src/IconStraightRound.tsx new file mode 100644 index 000000000..09454e481 --- /dev/null +++ b/src/IconStraightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconStraightRound as default } diff --git a/src/IconStraightSharp.tsx b/src/IconStraightSharp.tsx new file mode 100644 index 000000000..ce775da14 --- /dev/null +++ b/src/IconStraightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStraightSharp as default } diff --git a/src/IconStraightTwoTone.tsx b/src/IconStraightTwoTone.tsx new file mode 100644 index 000000000..7c71e9199 --- /dev/null +++ b/src/IconStraightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconStraightTwoTone as default } diff --git a/src/IconStraightenOutlined.tsx b/src/IconStraightenOutlined.tsx new file mode 100644 index 000000000..c7c285f10 --- /dev/null +++ b/src/IconStraightenOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStraightenOutlined as default } diff --git a/src/IconStraightenRound.tsx b/src/IconStraightenRound.tsx new file mode 100644 index 000000000..d4ee53e25 --- /dev/null +++ b/src/IconStraightenRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStraightenRound as default } diff --git a/src/IconStraightenSharp.tsx b/src/IconStraightenSharp.tsx new file mode 100644 index 000000000..75a38dabb --- /dev/null +++ b/src/IconStraightenSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStraightenSharp as default } diff --git a/src/IconStraightenTwoTone.tsx b/src/IconStraightenTwoTone.tsx new file mode 100644 index 000000000..c5760709c --- /dev/null +++ b/src/IconStraightenTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconStraightenTwoTone as default } diff --git a/src/IconStreamOutlined.tsx b/src/IconStreamOutlined.tsx new file mode 100644 index 000000000..2b22faf2a --- /dev/null +++ b/src/IconStreamOutlined.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconStreamOutlined as default } diff --git a/src/IconStreamRound.tsx b/src/IconStreamRound.tsx new file mode 100644 index 000000000..8f53e6da0 --- /dev/null +++ b/src/IconStreamRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconStreamRound as default } diff --git a/src/IconStreamSharp.tsx b/src/IconStreamSharp.tsx new file mode 100644 index 000000000..af2845fa2 --- /dev/null +++ b/src/IconStreamSharp.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconStreamSharp as default } diff --git a/src/IconStreamTwoTone.tsx b/src/IconStreamTwoTone.tsx new file mode 100644 index 000000000..0da51ad66 --- /dev/null +++ b/src/IconStreamTwoTone.tsx @@ -0,0 +1,36 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconStreamTwoTone as default } diff --git a/src/IconStreetviewOutlined.tsx b/src/IconStreetviewOutlined.tsx new file mode 100644 index 000000000..e3c8197d6 --- /dev/null +++ b/src/IconStreetviewOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStreetviewOutlined as default } diff --git a/src/IconStreetviewRound.tsx b/src/IconStreetviewRound.tsx new file mode 100644 index 000000000..aec156b7a --- /dev/null +++ b/src/IconStreetviewRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStreetviewRound as default } diff --git a/src/IconStreetviewSharp.tsx b/src/IconStreetviewSharp.tsx new file mode 100644 index 000000000..027ec3d80 --- /dev/null +++ b/src/IconStreetviewSharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStreetviewSharp as default } diff --git a/src/IconStreetviewTwoTone.tsx b/src/IconStreetviewTwoTone.tsx new file mode 100644 index 000000000..f863f0e35 --- /dev/null +++ b/src/IconStreetviewTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStreetviewTwoTone as default } diff --git a/src/IconStrikethroughSOutlined.tsx b/src/IconStrikethroughSOutlined.tsx new file mode 100644 index 000000000..41845241a --- /dev/null +++ b/src/IconStrikethroughSOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStrikethroughSOutlined as default } diff --git a/src/IconStrikethroughSRound.tsx b/src/IconStrikethroughSRound.tsx new file mode 100644 index 000000000..a928dca63 --- /dev/null +++ b/src/IconStrikethroughSRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStrikethroughSRound as default } diff --git a/src/IconStrikethroughSSharp.tsx b/src/IconStrikethroughSSharp.tsx new file mode 100644 index 000000000..097658e09 --- /dev/null +++ b/src/IconStrikethroughSSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrikethroughSSharp as default } diff --git a/src/IconStrikethroughSTwoTone.tsx b/src/IconStrikethroughSTwoTone.tsx new file mode 100644 index 000000000..848f54e5c --- /dev/null +++ b/src/IconStrikethroughSTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStrikethroughSTwoTone as default } diff --git a/src/IconStrollerOutlined.tsx b/src/IconStrollerOutlined.tsx new file mode 100644 index 000000000..de0a99826 --- /dev/null +++ b/src/IconStrollerOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStrollerOutlined as default } diff --git a/src/IconStrollerRound.tsx b/src/IconStrollerRound.tsx new file mode 100644 index 000000000..10647b7b7 --- /dev/null +++ b/src/IconStrollerRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStrollerRound as default } diff --git a/src/IconStrollerSharp.tsx b/src/IconStrollerSharp.tsx new file mode 100644 index 000000000..64169850b --- /dev/null +++ b/src/IconStrollerSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStrollerSharp as default } diff --git a/src/IconStrollerTwoTone.tsx b/src/IconStrollerTwoTone.tsx new file mode 100644 index 000000000..e16ec6ec5 --- /dev/null +++ b/src/IconStrollerTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconStrollerTwoTone as default } diff --git a/src/IconStyleOutlined.tsx b/src/IconStyleOutlined.tsx new file mode 100644 index 000000000..73f36db94 --- /dev/null +++ b/src/IconStyleOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconStyleOutlined as default } diff --git a/src/IconStyleRound.tsx b/src/IconStyleRound.tsx new file mode 100644 index 000000000..7f452881d --- /dev/null +++ b/src/IconStyleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStyleRound as default } diff --git a/src/IconStyleSharp.tsx b/src/IconStyleSharp.tsx new file mode 100644 index 000000000..34fbbabc9 --- /dev/null +++ b/src/IconStyleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconStyleSharp as default } diff --git a/src/IconStyleTwoTone.tsx b/src/IconStyleTwoTone.tsx new file mode 100644 index 000000000..7ab77ce88 --- /dev/null +++ b/src/IconStyleTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconStyleTwoTone as default } diff --git a/src/IconSubdirectoryArrowLeftOutlined.tsx b/src/IconSubdirectoryArrowLeftOutlined.tsx new file mode 100644 index 000000000..7eb6afd74 --- /dev/null +++ b/src/IconSubdirectoryArrowLeftOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowLeftOutlined as default } diff --git a/src/IconSubdirectoryArrowLeftRound.tsx b/src/IconSubdirectoryArrowLeftRound.tsx new file mode 100644 index 000000000..68b4a142d --- /dev/null +++ b/src/IconSubdirectoryArrowLeftRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowLeftRound as default } diff --git a/src/IconSubdirectoryArrowLeftSharp.tsx b/src/IconSubdirectoryArrowLeftSharp.tsx new file mode 100644 index 000000000..6cb419d7a --- /dev/null +++ b/src/IconSubdirectoryArrowLeftSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowLeftSharp as default } diff --git a/src/IconSubdirectoryArrowLeftTwoTone.tsx b/src/IconSubdirectoryArrowLeftTwoTone.tsx new file mode 100644 index 000000000..019b399a0 --- /dev/null +++ b/src/IconSubdirectoryArrowLeftTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowLeftTwoTone as default } diff --git a/src/IconSubdirectoryArrowRightOutlined.tsx b/src/IconSubdirectoryArrowRightOutlined.tsx new file mode 100644 index 000000000..dee150cd8 --- /dev/null +++ b/src/IconSubdirectoryArrowRightOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowRightOutlined as default } diff --git a/src/IconSubdirectoryArrowRightRound.tsx b/src/IconSubdirectoryArrowRightRound.tsx new file mode 100644 index 000000000..d23e38c8f --- /dev/null +++ b/src/IconSubdirectoryArrowRightRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowRightRound as default } diff --git a/src/IconSubdirectoryArrowRightSharp.tsx b/src/IconSubdirectoryArrowRightSharp.tsx new file mode 100644 index 000000000..1ade8aaa6 --- /dev/null +++ b/src/IconSubdirectoryArrowRightSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowRightSharp as default } diff --git a/src/IconSubdirectoryArrowRightTwoTone.tsx b/src/IconSubdirectoryArrowRightTwoTone.tsx new file mode 100644 index 000000000..9052fcd45 --- /dev/null +++ b/src/IconSubdirectoryArrowRightTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubdirectoryArrowRightTwoTone as default } diff --git a/src/IconSubjectOutlined.tsx b/src/IconSubjectOutlined.tsx new file mode 100644 index 000000000..10796e188 --- /dev/null +++ b/src/IconSubjectOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubjectOutlined as default } diff --git a/src/IconSubjectRound.tsx b/src/IconSubjectRound.tsx new file mode 100644 index 000000000..964efaf5c --- /dev/null +++ b/src/IconSubjectRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubjectRound as default } diff --git a/src/IconSubjectSharp.tsx b/src/IconSubjectSharp.tsx new file mode 100644 index 000000000..33813a4ab --- /dev/null +++ b/src/IconSubjectSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubjectSharp as default } diff --git a/src/IconSubjectTwoTone.tsx b/src/IconSubjectTwoTone.tsx new file mode 100644 index 000000000..a6da163ac --- /dev/null +++ b/src/IconSubjectTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubjectTwoTone as default } diff --git a/src/IconSubscriptOutlined.tsx b/src/IconSubscriptOutlined.tsx new file mode 100644 index 000000000..98b57399d --- /dev/null +++ b/src/IconSubscriptOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubscriptOutlined as default } diff --git a/src/IconSubscriptRound.tsx b/src/IconSubscriptRound.tsx new file mode 100644 index 000000000..c9e5d96ef --- /dev/null +++ b/src/IconSubscriptRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubscriptRound as default } diff --git a/src/IconSubscriptSharp.tsx b/src/IconSubscriptSharp.tsx new file mode 100644 index 000000000..b9b1673c3 --- /dev/null +++ b/src/IconSubscriptSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubscriptSharp as default } diff --git a/src/IconSubscriptTwoTone.tsx b/src/IconSubscriptTwoTone.tsx new file mode 100644 index 000000000..403eae0d2 --- /dev/null +++ b/src/IconSubscriptTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubscriptTwoTone as default } diff --git a/src/IconSubscriptionsOutlined.tsx b/src/IconSubscriptionsOutlined.tsx new file mode 100644 index 000000000..c6dd7465b --- /dev/null +++ b/src/IconSubscriptionsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubscriptionsOutlined as default } diff --git a/src/IconSubscriptionsRound.tsx b/src/IconSubscriptionsRound.tsx new file mode 100644 index 000000000..1802e34bf --- /dev/null +++ b/src/IconSubscriptionsRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptionsRound as default } diff --git a/src/IconSubscriptionsSharp.tsx b/src/IconSubscriptionsSharp.tsx new file mode 100644 index 000000000..db6b663b6 --- /dev/null +++ b/src/IconSubscriptionsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubscriptionsSharp as default } diff --git a/src/IconSubscriptionsTwoTone.tsx b/src/IconSubscriptionsTwoTone.tsx new file mode 100644 index 000000000..866a94462 --- /dev/null +++ b/src/IconSubscriptionsTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSubscriptionsTwoTone as default } diff --git a/src/IconSubtitlesOffOutlined.tsx b/src/IconSubtitlesOffOutlined.tsx new file mode 100644 index 000000000..c85146aa1 --- /dev/null +++ b/src/IconSubtitlesOffOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSubtitlesOffOutlined as default } diff --git a/src/IconSubtitlesOffRound.tsx b/src/IconSubtitlesOffRound.tsx new file mode 100644 index 000000000..48b05c7e2 --- /dev/null +++ b/src/IconSubtitlesOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSubtitlesOffRound as default } diff --git a/src/IconSubtitlesOffSharp.tsx b/src/IconSubtitlesOffSharp.tsx new file mode 100644 index 000000000..ab1ef25cf --- /dev/null +++ b/src/IconSubtitlesOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSubtitlesOffSharp as default } diff --git a/src/IconSubtitlesOffTwoTone.tsx b/src/IconSubtitlesOffTwoTone.tsx new file mode 100644 index 000000000..bd76bc612 --- /dev/null +++ b/src/IconSubtitlesOffTwoTone.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSubtitlesOffTwoTone as default } diff --git a/src/IconSubtitlesOutlined.tsx b/src/IconSubtitlesOutlined.tsx new file mode 100644 index 000000000..381569517 --- /dev/null +++ b/src/IconSubtitlesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubtitlesOutlined as default } diff --git a/src/IconSubtitlesRound.tsx b/src/IconSubtitlesRound.tsx new file mode 100644 index 000000000..93a5d4c14 --- /dev/null +++ b/src/IconSubtitlesRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesRound as default } diff --git a/src/IconSubtitlesSharp.tsx b/src/IconSubtitlesSharp.tsx new file mode 100644 index 000000000..e17c2a25a --- /dev/null +++ b/src/IconSubtitlesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubtitlesSharp as default } diff --git a/src/IconSubtitlesTwoTone.tsx b/src/IconSubtitlesTwoTone.tsx new file mode 100644 index 000000000..45d425698 --- /dev/null +++ b/src/IconSubtitlesTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSubtitlesTwoTone as default } diff --git a/src/IconSubwayOutlined.tsx b/src/IconSubwayOutlined.tsx new file mode 100644 index 000000000..b6ebc6592 --- /dev/null +++ b/src/IconSubwayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSubwayOutlined as default } diff --git a/src/IconSubwayRound.tsx b/src/IconSubwayRound.tsx new file mode 100644 index 000000000..e4471a04e --- /dev/null +++ b/src/IconSubwayRound.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubwayRound as default } diff --git a/src/IconSubwaySharp.tsx b/src/IconSubwaySharp.tsx new file mode 100644 index 000000000..d4a58a1da --- /dev/null +++ b/src/IconSubwaySharp.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSubwaySharp as default } diff --git a/src/IconSubwayTwoTone.tsx b/src/IconSubwayTwoTone.tsx new file mode 100644 index 000000000..5fe23fd68 --- /dev/null +++ b/src/IconSubwayTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSubwayTwoTone as default } diff --git a/src/IconSummarizeOutlined.tsx b/src/IconSummarizeOutlined.tsx new file mode 100644 index 000000000..a2433e0d3 --- /dev/null +++ b/src/IconSummarizeOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSummarizeOutlined as default } diff --git a/src/IconSummarizeRound.tsx b/src/IconSummarizeRound.tsx new file mode 100644 index 000000000..8f635213e --- /dev/null +++ b/src/IconSummarizeRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSummarizeRound as default } diff --git a/src/IconSummarizeSharp.tsx b/src/IconSummarizeSharp.tsx new file mode 100644 index 000000000..e15db95e5 --- /dev/null +++ b/src/IconSummarizeSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSummarizeSharp as default } diff --git a/src/IconSummarizeTwoTone.tsx b/src/IconSummarizeTwoTone.tsx new file mode 100644 index 000000000..c1af6f00b --- /dev/null +++ b/src/IconSummarizeTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSummarizeTwoTone as default } diff --git a/src/IconSuperscriptOutlined.tsx b/src/IconSuperscriptOutlined.tsx new file mode 100644 index 000000000..912dbdcaa --- /dev/null +++ b/src/IconSuperscriptOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSuperscriptOutlined as default } diff --git a/src/IconSuperscriptRound.tsx b/src/IconSuperscriptRound.tsx new file mode 100644 index 000000000..ef8b67128 --- /dev/null +++ b/src/IconSuperscriptRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSuperscriptRound as default } diff --git a/src/IconSuperscriptSharp.tsx b/src/IconSuperscriptSharp.tsx new file mode 100644 index 000000000..7ddbef6df --- /dev/null +++ b/src/IconSuperscriptSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSuperscriptSharp as default } diff --git a/src/IconSuperscriptTwoTone.tsx b/src/IconSuperscriptTwoTone.tsx new file mode 100644 index 000000000..937e4ba6b --- /dev/null +++ b/src/IconSuperscriptTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSuperscriptTwoTone as default } diff --git a/src/IconSupervisedUserCircleOutlined.tsx b/src/IconSupervisedUserCircleOutlined.tsx new file mode 100644 index 000000000..53e602de9 --- /dev/null +++ b/src/IconSupervisedUserCircleOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisedUserCircleOutlined as default } diff --git a/src/IconSupervisedUserCircleRound.tsx b/src/IconSupervisedUserCircleRound.tsx new file mode 100644 index 000000000..12cec821a --- /dev/null +++ b/src/IconSupervisedUserCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisedUserCircleRound as default } diff --git a/src/IconSupervisedUserCircleSharp.tsx b/src/IconSupervisedUserCircleSharp.tsx new file mode 100644 index 000000000..4f727a487 --- /dev/null +++ b/src/IconSupervisedUserCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisedUserCircleSharp as default } diff --git a/src/IconSupervisedUserCircleTwoTone.tsx b/src/IconSupervisedUserCircleTwoTone.tsx new file mode 100644 index 000000000..a0a13910d --- /dev/null +++ b/src/IconSupervisedUserCircleTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSupervisedUserCircleTwoTone as default } diff --git a/src/IconSupervisorAccountOutlined.tsx b/src/IconSupervisorAccountOutlined.tsx new file mode 100644 index 000000000..902a01032 --- /dev/null +++ b/src/IconSupervisorAccountOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisorAccountOutlined as default } diff --git a/src/IconSupervisorAccountRound.tsx b/src/IconSupervisorAccountRound.tsx new file mode 100644 index 000000000..d90f8fc0a --- /dev/null +++ b/src/IconSupervisorAccountRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisorAccountRound as default } diff --git a/src/IconSupervisorAccountSharp.tsx b/src/IconSupervisorAccountSharp.tsx new file mode 100644 index 000000000..b6c0569e6 --- /dev/null +++ b/src/IconSupervisorAccountSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSupervisorAccountSharp as default } diff --git a/src/IconSupervisorAccountTwoTone.tsx b/src/IconSupervisorAccountTwoTone.tsx new file mode 100644 index 000000000..c45b85e1f --- /dev/null +++ b/src/IconSupervisorAccountTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconSupervisorAccountTwoTone as default } diff --git a/src/IconSupportAgentOutlined.tsx b/src/IconSupportAgentOutlined.tsx new file mode 100644 index 000000000..17bbdd433 --- /dev/null +++ b/src/IconSupportAgentOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSupportAgentOutlined as default } diff --git a/src/IconSupportAgentRound.tsx b/src/IconSupportAgentRound.tsx new file mode 100644 index 000000000..8d7692c6a --- /dev/null +++ b/src/IconSupportAgentRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSupportAgentRound as default } diff --git a/src/IconSupportAgentSharp.tsx b/src/IconSupportAgentSharp.tsx new file mode 100644 index 000000000..c9f90a76c --- /dev/null +++ b/src/IconSupportAgentSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSupportAgentSharp as default } diff --git a/src/IconSupportAgentTwoTone.tsx b/src/IconSupportAgentTwoTone.tsx new file mode 100644 index 000000000..3005ad112 --- /dev/null +++ b/src/IconSupportAgentTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSupportAgentTwoTone as default } diff --git a/src/IconSupportOutlined.tsx b/src/IconSupportOutlined.tsx new file mode 100644 index 000000000..092d6acfb --- /dev/null +++ b/src/IconSupportOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSupportOutlined as default } diff --git a/src/IconSupportRound.tsx b/src/IconSupportRound.tsx new file mode 100644 index 000000000..49d4fe6c3 --- /dev/null +++ b/src/IconSupportRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSupportRound as default } diff --git a/src/IconSupportSharp.tsx b/src/IconSupportSharp.tsx new file mode 100644 index 000000000..e598ed7c7 --- /dev/null +++ b/src/IconSupportSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSupportSharp as default } diff --git a/src/IconSupportTwoTone.tsx b/src/IconSupportTwoTone.tsx new file mode 100644 index 000000000..ca303f553 --- /dev/null +++ b/src/IconSupportTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSupportTwoTone as default } diff --git a/src/IconSurfingOutlined.tsx b/src/IconSurfingOutlined.tsx new file mode 100644 index 000000000..b128800eb --- /dev/null +++ b/src/IconSurfingOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSurfingOutlined as default } diff --git a/src/IconSurfingRound.tsx b/src/IconSurfingRound.tsx new file mode 100644 index 000000000..e08453bbc --- /dev/null +++ b/src/IconSurfingRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSurfingRound as default } diff --git a/src/IconSurfingSharp.tsx b/src/IconSurfingSharp.tsx new file mode 100644 index 000000000..fa0be674e --- /dev/null +++ b/src/IconSurfingSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSurfingSharp as default } diff --git a/src/IconSurfingTwoTone.tsx b/src/IconSurfingTwoTone.tsx new file mode 100644 index 000000000..3ff3e78f1 --- /dev/null +++ b/src/IconSurfingTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSurfingTwoTone as default } diff --git a/src/IconSurroundSoundOutlined.tsx b/src/IconSurroundSoundOutlined.tsx new file mode 100644 index 000000000..1384845be --- /dev/null +++ b/src/IconSurroundSoundOutlined.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSurroundSoundOutlined as default } diff --git a/src/IconSurroundSoundRound.tsx b/src/IconSurroundSoundRound.tsx new file mode 100644 index 000000000..d25138e57 --- /dev/null +++ b/src/IconSurroundSoundRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurroundSoundRound as default } diff --git a/src/IconSurroundSoundSharp.tsx b/src/IconSurroundSoundSharp.tsx new file mode 100644 index 000000000..d29e20d14 --- /dev/null +++ b/src/IconSurroundSoundSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSurroundSoundSharp as default } diff --git a/src/IconSurroundSoundTwoTone.tsx b/src/IconSurroundSoundTwoTone.tsx new file mode 100644 index 000000000..cb42149e7 --- /dev/null +++ b/src/IconSurroundSoundTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconSurroundSoundTwoTone as default } diff --git a/src/IconSwapCallsOutlined.tsx b/src/IconSwapCallsOutlined.tsx new file mode 100644 index 000000000..2ca75dd9f --- /dev/null +++ b/src/IconSwapCallsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapCallsOutlined as default } diff --git a/src/IconSwapCallsRound.tsx b/src/IconSwapCallsRound.tsx new file mode 100644 index 000000000..135850606 --- /dev/null +++ b/src/IconSwapCallsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapCallsRound as default } diff --git a/src/IconSwapCallsSharp.tsx b/src/IconSwapCallsSharp.tsx new file mode 100644 index 000000000..cafeb7de5 --- /dev/null +++ b/src/IconSwapCallsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapCallsSharp as default } diff --git a/src/IconSwapCallsTwoTone.tsx b/src/IconSwapCallsTwoTone.tsx new file mode 100644 index 000000000..53a8afdc6 --- /dev/null +++ b/src/IconSwapCallsTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapCallsTwoTone as default } diff --git a/src/IconSwapHorizOutlined.tsx b/src/IconSwapHorizOutlined.tsx new file mode 100644 index 000000000..8e60f6993 --- /dev/null +++ b/src/IconSwapHorizOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizOutlined as default } diff --git a/src/IconSwapHorizRound.tsx b/src/IconSwapHorizRound.tsx new file mode 100644 index 000000000..a7e783411 --- /dev/null +++ b/src/IconSwapHorizRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizRound as default } diff --git a/src/IconSwapHorizSharp.tsx b/src/IconSwapHorizSharp.tsx new file mode 100644 index 000000000..460cd5e1b --- /dev/null +++ b/src/IconSwapHorizSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizSharp as default } diff --git a/src/IconSwapHorizTwoTone.tsx b/src/IconSwapHorizTwoTone.tsx new file mode 100644 index 000000000..e6d7ff5ec --- /dev/null +++ b/src/IconSwapHorizTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizTwoTone as default } diff --git a/src/IconSwapHorizontalCircleOutlined.tsx b/src/IconSwapHorizontalCircleOutlined.tsx new file mode 100644 index 000000000..53fc85b2d --- /dev/null +++ b/src/IconSwapHorizontalCircleOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizontalCircleOutlined as default } diff --git a/src/IconSwapHorizontalCircleRound.tsx b/src/IconSwapHorizontalCircleRound.tsx new file mode 100644 index 000000000..5ad24b0f4 --- /dev/null +++ b/src/IconSwapHorizontalCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizontalCircleRound as default } diff --git a/src/IconSwapHorizontalCircleSharp.tsx b/src/IconSwapHorizontalCircleSharp.tsx new file mode 100644 index 000000000..eb9ae1da3 --- /dev/null +++ b/src/IconSwapHorizontalCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapHorizontalCircleSharp as default } diff --git a/src/IconSwapHorizontalCircleTwoTone.tsx b/src/IconSwapHorizontalCircleTwoTone.tsx new file mode 100644 index 000000000..733a85dcf --- /dev/null +++ b/src/IconSwapHorizontalCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwapHorizontalCircleTwoTone as default } diff --git a/src/IconSwapVertOutlined.tsx b/src/IconSwapVertOutlined.tsx new file mode 100644 index 000000000..14f93728b --- /dev/null +++ b/src/IconSwapVertOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVertOutlined as default } diff --git a/src/IconSwapVertRound.tsx b/src/IconSwapVertRound.tsx new file mode 100644 index 000000000..aa76a099f --- /dev/null +++ b/src/IconSwapVertRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVertRound as default } diff --git a/src/IconSwapVertSharp.tsx b/src/IconSwapVertSharp.tsx new file mode 100644 index 000000000..ae01443c2 --- /dev/null +++ b/src/IconSwapVertSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVertSharp as default } diff --git a/src/IconSwapVertTwoTone.tsx b/src/IconSwapVertTwoTone.tsx new file mode 100644 index 000000000..858205887 --- /dev/null +++ b/src/IconSwapVertTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVertTwoTone as default } diff --git a/src/IconSwapVerticalCircleOutlined.tsx b/src/IconSwapVerticalCircleOutlined.tsx new file mode 100644 index 000000000..e6731797d --- /dev/null +++ b/src/IconSwapVerticalCircleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVerticalCircleOutlined as default } diff --git a/src/IconSwapVerticalCircleRound.tsx b/src/IconSwapVerticalCircleRound.tsx new file mode 100644 index 000000000..cdb9acbe6 --- /dev/null +++ b/src/IconSwapVerticalCircleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVerticalCircleRound as default } diff --git a/src/IconSwapVerticalCircleSharp.tsx b/src/IconSwapVerticalCircleSharp.tsx new file mode 100644 index 000000000..00267b3a8 --- /dev/null +++ b/src/IconSwapVerticalCircleSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwapVerticalCircleSharp as default } diff --git a/src/IconSwapVerticalCircleTwoTone.tsx b/src/IconSwapVerticalCircleTwoTone.tsx new file mode 100644 index 000000000..ed785a63b --- /dev/null +++ b/src/IconSwapVerticalCircleTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwapVerticalCircleTwoTone as default } diff --git a/src/IconSwipeDownAltOutlined.tsx b/src/IconSwipeDownAltOutlined.tsx new file mode 100644 index 000000000..578945a14 --- /dev/null +++ b/src/IconSwipeDownAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownAltOutlined as default } diff --git a/src/IconSwipeDownAltRound.tsx b/src/IconSwipeDownAltRound.tsx new file mode 100644 index 000000000..3e28bf68b --- /dev/null +++ b/src/IconSwipeDownAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownAltRound as default } diff --git a/src/IconSwipeDownAltSharp.tsx b/src/IconSwipeDownAltSharp.tsx new file mode 100644 index 000000000..553ab65ea --- /dev/null +++ b/src/IconSwipeDownAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownAltSharp as default } diff --git a/src/IconSwipeDownAltTwoTone.tsx b/src/IconSwipeDownAltTwoTone.tsx new file mode 100644 index 000000000..37ebf6b1f --- /dev/null +++ b/src/IconSwipeDownAltTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeDownAltTwoTone as default } diff --git a/src/IconSwipeDownOutlined.tsx b/src/IconSwipeDownOutlined.tsx new file mode 100644 index 000000000..1b6d5c9c2 --- /dev/null +++ b/src/IconSwipeDownOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownOutlined as default } diff --git a/src/IconSwipeDownRound.tsx b/src/IconSwipeDownRound.tsx new file mode 100644 index 000000000..7a4215b3c --- /dev/null +++ b/src/IconSwipeDownRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeDownRound as default } diff --git a/src/IconSwipeDownSharp.tsx b/src/IconSwipeDownSharp.tsx new file mode 100644 index 000000000..664624cc1 --- /dev/null +++ b/src/IconSwipeDownSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeDownSharp as default } diff --git a/src/IconSwipeDownTwoTone.tsx b/src/IconSwipeDownTwoTone.tsx new file mode 100644 index 000000000..0dbecd162 --- /dev/null +++ b/src/IconSwipeDownTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeDownTwoTone as default } diff --git a/src/IconSwipeLeftAltOutlined.tsx b/src/IconSwipeLeftAltOutlined.tsx new file mode 100644 index 000000000..7cc72c6e9 --- /dev/null +++ b/src/IconSwipeLeftAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftAltOutlined as default } diff --git a/src/IconSwipeLeftAltRound.tsx b/src/IconSwipeLeftAltRound.tsx new file mode 100644 index 000000000..5d9bdb9d6 --- /dev/null +++ b/src/IconSwipeLeftAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftAltRound as default } diff --git a/src/IconSwipeLeftAltSharp.tsx b/src/IconSwipeLeftAltSharp.tsx new file mode 100644 index 000000000..ea374e472 --- /dev/null +++ b/src/IconSwipeLeftAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftAltSharp as default } diff --git a/src/IconSwipeLeftAltTwoTone.tsx b/src/IconSwipeLeftAltTwoTone.tsx new file mode 100644 index 000000000..7e86f772c --- /dev/null +++ b/src/IconSwipeLeftAltTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeLeftAltTwoTone as default } diff --git a/src/IconSwipeLeftOutlined.tsx b/src/IconSwipeLeftOutlined.tsx new file mode 100644 index 000000000..21a026aad --- /dev/null +++ b/src/IconSwipeLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftOutlined as default } diff --git a/src/IconSwipeLeftRound.tsx b/src/IconSwipeLeftRound.tsx new file mode 100644 index 000000000..7fe679da3 --- /dev/null +++ b/src/IconSwipeLeftRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftRound as default } diff --git a/src/IconSwipeLeftSharp.tsx b/src/IconSwipeLeftSharp.tsx new file mode 100644 index 000000000..fd6767bcd --- /dev/null +++ b/src/IconSwipeLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeLeftSharp as default } diff --git a/src/IconSwipeLeftTwoTone.tsx b/src/IconSwipeLeftTwoTone.tsx new file mode 100644 index 000000000..8a62001da --- /dev/null +++ b/src/IconSwipeLeftTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeLeftTwoTone as default } diff --git a/src/IconSwipeOutlined.tsx b/src/IconSwipeOutlined.tsx new file mode 100644 index 000000000..d7681b1c0 --- /dev/null +++ b/src/IconSwipeOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconSwipeOutlined as default } diff --git a/src/IconSwipeRightAltOutlined.tsx b/src/IconSwipeRightAltOutlined.tsx new file mode 100644 index 000000000..62b9de940 --- /dev/null +++ b/src/IconSwipeRightAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightAltOutlined as default } diff --git a/src/IconSwipeRightAltRound.tsx b/src/IconSwipeRightAltRound.tsx new file mode 100644 index 000000000..4eaaa3c77 --- /dev/null +++ b/src/IconSwipeRightAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightAltRound as default } diff --git a/src/IconSwipeRightAltSharp.tsx b/src/IconSwipeRightAltSharp.tsx new file mode 100644 index 000000000..667cfadbe --- /dev/null +++ b/src/IconSwipeRightAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightAltSharp as default } diff --git a/src/IconSwipeRightAltTwoTone.tsx b/src/IconSwipeRightAltTwoTone.tsx new file mode 100644 index 000000000..fd2b8caec --- /dev/null +++ b/src/IconSwipeRightAltTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeRightAltTwoTone as default } diff --git a/src/IconSwipeRightOutlined.tsx b/src/IconSwipeRightOutlined.tsx new file mode 100644 index 000000000..ab789615d --- /dev/null +++ b/src/IconSwipeRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightOutlined as default } diff --git a/src/IconSwipeRightRound.tsx b/src/IconSwipeRightRound.tsx new file mode 100644 index 000000000..9cb4ad817 --- /dev/null +++ b/src/IconSwipeRightRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightRound as default } diff --git a/src/IconSwipeRightSharp.tsx b/src/IconSwipeRightSharp.tsx new file mode 100644 index 000000000..c9c94d6d8 --- /dev/null +++ b/src/IconSwipeRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeRightSharp as default } diff --git a/src/IconSwipeRightTwoTone.tsx b/src/IconSwipeRightTwoTone.tsx new file mode 100644 index 000000000..bae0a8173 --- /dev/null +++ b/src/IconSwipeRightTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeRightTwoTone as default } diff --git a/src/IconSwipeRound.tsx b/src/IconSwipeRound.tsx new file mode 100644 index 000000000..72c2b3e80 --- /dev/null +++ b/src/IconSwipeRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSwipeRound as default } diff --git a/src/IconSwipeSharp.tsx b/src/IconSwipeSharp.tsx new file mode 100644 index 000000000..0f1c89db1 --- /dev/null +++ b/src/IconSwipeSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSwipeSharp as default } diff --git a/src/IconSwipeTwoTone.tsx b/src/IconSwipeTwoTone.tsx new file mode 100644 index 000000000..095f27643 --- /dev/null +++ b/src/IconSwipeTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSwipeTwoTone as default } diff --git a/src/IconSwipeUpAltOutlined.tsx b/src/IconSwipeUpAltOutlined.tsx new file mode 100644 index 000000000..3fc78e964 --- /dev/null +++ b/src/IconSwipeUpAltOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpAltOutlined as default } diff --git a/src/IconSwipeUpAltRound.tsx b/src/IconSwipeUpAltRound.tsx new file mode 100644 index 000000000..42658a516 --- /dev/null +++ b/src/IconSwipeUpAltRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpAltRound as default } diff --git a/src/IconSwipeUpAltSharp.tsx b/src/IconSwipeUpAltSharp.tsx new file mode 100644 index 000000000..bd4aed457 --- /dev/null +++ b/src/IconSwipeUpAltSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpAltSharp as default } diff --git a/src/IconSwipeUpAltTwoTone.tsx b/src/IconSwipeUpAltTwoTone.tsx new file mode 100644 index 000000000..60e8f84f3 --- /dev/null +++ b/src/IconSwipeUpAltTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeUpAltTwoTone as default } diff --git a/src/IconSwipeUpOutlined.tsx b/src/IconSwipeUpOutlined.tsx new file mode 100644 index 000000000..8fddf45be --- /dev/null +++ b/src/IconSwipeUpOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpOutlined as default } diff --git a/src/IconSwipeUpRound.tsx b/src/IconSwipeUpRound.tsx new file mode 100644 index 000000000..9346258ad --- /dev/null +++ b/src/IconSwipeUpRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpRound as default } diff --git a/src/IconSwipeUpSharp.tsx b/src/IconSwipeUpSharp.tsx new file mode 100644 index 000000000..1cbbd0608 --- /dev/null +++ b/src/IconSwipeUpSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeUpSharp as default } diff --git a/src/IconSwipeUpTwoTone.tsx b/src/IconSwipeUpTwoTone.tsx new file mode 100644 index 000000000..348d0b3d2 --- /dev/null +++ b/src/IconSwipeUpTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeUpTwoTone as default } diff --git a/src/IconSwipeVerticalOutlined.tsx b/src/IconSwipeVerticalOutlined.tsx new file mode 100644 index 000000000..e57f8ad3d --- /dev/null +++ b/src/IconSwipeVerticalOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeVerticalOutlined as default } diff --git a/src/IconSwipeVerticalRound.tsx b/src/IconSwipeVerticalRound.tsx new file mode 100644 index 000000000..eb2af1f08 --- /dev/null +++ b/src/IconSwipeVerticalRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeVerticalRound as default } diff --git a/src/IconSwipeVerticalSharp.tsx b/src/IconSwipeVerticalSharp.tsx new file mode 100644 index 000000000..2d7472999 --- /dev/null +++ b/src/IconSwipeVerticalSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwipeVerticalSharp as default } diff --git a/src/IconSwipeVerticalTwoTone.tsx b/src/IconSwipeVerticalTwoTone.tsx new file mode 100644 index 000000000..711c30823 --- /dev/null +++ b/src/IconSwipeVerticalTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconSwipeVerticalTwoTone as default } diff --git a/src/IconSwitchAccessShortcutAddOutlined.tsx b/src/IconSwitchAccessShortcutAddOutlined.tsx new file mode 100644 index 000000000..cc9bfb82e --- /dev/null +++ b/src/IconSwitchAccessShortcutAddOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutAddOutlined as default } diff --git a/src/IconSwitchAccessShortcutAddRound.tsx b/src/IconSwitchAccessShortcutAddRound.tsx new file mode 100644 index 000000000..4c366e1a1 --- /dev/null +++ b/src/IconSwitchAccessShortcutAddRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutAddRound as default } diff --git a/src/IconSwitchAccessShortcutAddSharp.tsx b/src/IconSwitchAccessShortcutAddSharp.tsx new file mode 100644 index 000000000..157969a1e --- /dev/null +++ b/src/IconSwitchAccessShortcutAddSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutAddSharp as default } diff --git a/src/IconSwitchAccessShortcutAddTwoTone.tsx b/src/IconSwitchAccessShortcutAddTwoTone.tsx new file mode 100644 index 000000000..275d2e543 --- /dev/null +++ b/src/IconSwitchAccessShortcutAddTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutAddTwoTone as default } diff --git a/src/IconSwitchAccessShortcutOutlined.tsx b/src/IconSwitchAccessShortcutOutlined.tsx new file mode 100644 index 000000000..8cd38fef3 --- /dev/null +++ b/src/IconSwitchAccessShortcutOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutOutlined as default } diff --git a/src/IconSwitchAccessShortcutRound.tsx b/src/IconSwitchAccessShortcutRound.tsx new file mode 100644 index 000000000..fada79968 --- /dev/null +++ b/src/IconSwitchAccessShortcutRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutRound as default } diff --git a/src/IconSwitchAccessShortcutSharp.tsx b/src/IconSwitchAccessShortcutSharp.tsx new file mode 100644 index 000000000..fe68f6a20 --- /dev/null +++ b/src/IconSwitchAccessShortcutSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutSharp as default } diff --git a/src/IconSwitchAccessShortcutTwoTone.tsx b/src/IconSwitchAccessShortcutTwoTone.tsx new file mode 100644 index 000000000..27b368f0d --- /dev/null +++ b/src/IconSwitchAccessShortcutTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchAccessShortcutTwoTone as default } diff --git a/src/IconSwitchAccountOutlined.tsx b/src/IconSwitchAccountOutlined.tsx new file mode 100644 index 000000000..86e14c22a --- /dev/null +++ b/src/IconSwitchAccountOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwitchAccountOutlined as default } diff --git a/src/IconSwitchAccountRound.tsx b/src/IconSwitchAccountRound.tsx new file mode 100644 index 000000000..51f0f46cb --- /dev/null +++ b/src/IconSwitchAccountRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwitchAccountRound as default } diff --git a/src/IconSwitchAccountSharp.tsx b/src/IconSwitchAccountSharp.tsx new file mode 100644 index 000000000..693bcd22a --- /dev/null +++ b/src/IconSwitchAccountSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSwitchAccountSharp as default } diff --git a/src/IconSwitchAccountTwoTone.tsx b/src/IconSwitchAccountTwoTone.tsx new file mode 100644 index 000000000..3c5b22ed0 --- /dev/null +++ b/src/IconSwitchAccountTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSwitchAccountTwoTone as default } diff --git a/src/IconSwitchCameraOutlined.tsx b/src/IconSwitchCameraOutlined.tsx new file mode 100644 index 000000000..1562575e0 --- /dev/null +++ b/src/IconSwitchCameraOutlined.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwitchCameraOutlined as default } diff --git a/src/IconSwitchCameraRound.tsx b/src/IconSwitchCameraRound.tsx new file mode 100644 index 000000000..82cf808bd --- /dev/null +++ b/src/IconSwitchCameraRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchCameraRound as default } diff --git a/src/IconSwitchCameraSharp.tsx b/src/IconSwitchCameraSharp.tsx new file mode 100644 index 000000000..89abc9d48 --- /dev/null +++ b/src/IconSwitchCameraSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchCameraSharp as default } diff --git a/src/IconSwitchCameraTwoTone.tsx b/src/IconSwitchCameraTwoTone.tsx new file mode 100644 index 000000000..aac72ddba --- /dev/null +++ b/src/IconSwitchCameraTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwitchCameraTwoTone as default } diff --git a/src/IconSwitchLeftOutlined.tsx b/src/IconSwitchLeftOutlined.tsx new file mode 100644 index 000000000..d67804ffc --- /dev/null +++ b/src/IconSwitchLeftOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchLeftOutlined as default } diff --git a/src/IconSwitchLeftRound.tsx b/src/IconSwitchLeftRound.tsx new file mode 100644 index 000000000..27c89772e --- /dev/null +++ b/src/IconSwitchLeftRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchLeftRound as default } diff --git a/src/IconSwitchLeftSharp.tsx b/src/IconSwitchLeftSharp.tsx new file mode 100644 index 000000000..59f8d92b1 --- /dev/null +++ b/src/IconSwitchLeftSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchLeftSharp as default } diff --git a/src/IconSwitchLeftTwoTone.tsx b/src/IconSwitchLeftTwoTone.tsx new file mode 100644 index 000000000..17acfce3e --- /dev/null +++ b/src/IconSwitchLeftTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwitchLeftTwoTone as default } diff --git a/src/IconSwitchRightOutlined.tsx b/src/IconSwitchRightOutlined.tsx new file mode 100644 index 000000000..371c0dab4 --- /dev/null +++ b/src/IconSwitchRightOutlined.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchRightOutlined as default } diff --git a/src/IconSwitchRightRound.tsx b/src/IconSwitchRightRound.tsx new file mode 100644 index 000000000..4d1cedaad --- /dev/null +++ b/src/IconSwitchRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchRightRound as default } diff --git a/src/IconSwitchRightSharp.tsx b/src/IconSwitchRightSharp.tsx new file mode 100644 index 000000000..9346895fe --- /dev/null +++ b/src/IconSwitchRightSharp.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchRightSharp as default } diff --git a/src/IconSwitchRightTwoTone.tsx b/src/IconSwitchRightTwoTone.tsx new file mode 100644 index 000000000..18e7f62f5 --- /dev/null +++ b/src/IconSwitchRightTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwitchRightTwoTone as default } diff --git a/src/IconSwitchVideoOutlined.tsx b/src/IconSwitchVideoOutlined.tsx new file mode 100644 index 000000000..cec071e37 --- /dev/null +++ b/src/IconSwitchVideoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchVideoOutlined as default } diff --git a/src/IconSwitchVideoRound.tsx b/src/IconSwitchVideoRound.tsx new file mode 100644 index 000000000..4dcc94eab --- /dev/null +++ b/src/IconSwitchVideoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchVideoRound as default } diff --git a/src/IconSwitchVideoSharp.tsx b/src/IconSwitchVideoSharp.tsx new file mode 100644 index 000000000..f39649e6e --- /dev/null +++ b/src/IconSwitchVideoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSwitchVideoSharp as default } diff --git a/src/IconSwitchVideoTwoTone.tsx b/src/IconSwitchVideoTwoTone.tsx new file mode 100644 index 000000000..6de75ca04 --- /dev/null +++ b/src/IconSwitchVideoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSwitchVideoTwoTone as default } diff --git a/src/IconSynagogueOutlined.tsx b/src/IconSynagogueOutlined.tsx new file mode 100644 index 000000000..5d71e70d9 --- /dev/null +++ b/src/IconSynagogueOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSynagogueOutlined as default } diff --git a/src/IconSynagogueRound.tsx b/src/IconSynagogueRound.tsx new file mode 100644 index 000000000..d56369380 --- /dev/null +++ b/src/IconSynagogueRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconSynagogueRound as default } diff --git a/src/IconSynagogueSharp.tsx b/src/IconSynagogueSharp.tsx new file mode 100644 index 000000000..c53d6c35e --- /dev/null +++ b/src/IconSynagogueSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconSynagogueSharp as default } diff --git a/src/IconSynagogueTwoTone.tsx b/src/IconSynagogueTwoTone.tsx new file mode 100644 index 000000000..3f960d4c4 --- /dev/null +++ b/src/IconSynagogueTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSynagogueTwoTone as default } diff --git a/src/IconSyncAltOutlined.tsx b/src/IconSyncAltOutlined.tsx new file mode 100644 index 000000000..b6d7acf76 --- /dev/null +++ b/src/IconSyncAltOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSyncAltOutlined as default } diff --git a/src/IconSyncAltRound.tsx b/src/IconSyncAltRound.tsx new file mode 100644 index 000000000..2b6576f57 --- /dev/null +++ b/src/IconSyncAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSyncAltRound as default } diff --git a/src/IconSyncAltSharp.tsx b/src/IconSyncAltSharp.tsx new file mode 100644 index 000000000..2247f7a21 --- /dev/null +++ b/src/IconSyncAltSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSyncAltSharp as default } diff --git a/src/IconSyncAltTwoTone.tsx b/src/IconSyncAltTwoTone.tsx new file mode 100644 index 000000000..0c2dbd3b4 --- /dev/null +++ b/src/IconSyncAltTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSyncAltTwoTone as default } diff --git a/src/IconSyncDisabledOutlined.tsx b/src/IconSyncDisabledOutlined.tsx new file mode 100644 index 000000000..9c5d78bf0 --- /dev/null +++ b/src/IconSyncDisabledOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncDisabledOutlined as default } diff --git a/src/IconSyncDisabledRound.tsx b/src/IconSyncDisabledRound.tsx new file mode 100644 index 000000000..de2ba2df9 --- /dev/null +++ b/src/IconSyncDisabledRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncDisabledRound as default } diff --git a/src/IconSyncDisabledSharp.tsx b/src/IconSyncDisabledSharp.tsx new file mode 100644 index 000000000..bc7aeff14 --- /dev/null +++ b/src/IconSyncDisabledSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncDisabledSharp as default } diff --git a/src/IconSyncDisabledTwoTone.tsx b/src/IconSyncDisabledTwoTone.tsx new file mode 100644 index 000000000..f1fea6b1d --- /dev/null +++ b/src/IconSyncDisabledTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncDisabledTwoTone as default } diff --git a/src/IconSyncLockOutlined.tsx b/src/IconSyncLockOutlined.tsx new file mode 100644 index 000000000..927344044 --- /dev/null +++ b/src/IconSyncLockOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSyncLockOutlined as default } diff --git a/src/IconSyncLockRound.tsx b/src/IconSyncLockRound.tsx new file mode 100644 index 000000000..cf5ab43fa --- /dev/null +++ b/src/IconSyncLockRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSyncLockRound as default } diff --git a/src/IconSyncLockSharp.tsx b/src/IconSyncLockSharp.tsx new file mode 100644 index 000000000..9c9094340 --- /dev/null +++ b/src/IconSyncLockSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSyncLockSharp as default } diff --git a/src/IconSyncLockTwoTone.tsx b/src/IconSyncLockTwoTone.tsx new file mode 100644 index 000000000..bf0fb0965 --- /dev/null +++ b/src/IconSyncLockTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSyncLockTwoTone as default } diff --git a/src/IconSyncOutlined.tsx b/src/IconSyncOutlined.tsx new file mode 100644 index 000000000..627da5996 --- /dev/null +++ b/src/IconSyncOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncOutlined as default } diff --git a/src/IconSyncProblemOutlined.tsx b/src/IconSyncProblemOutlined.tsx new file mode 100644 index 000000000..997b26a2d --- /dev/null +++ b/src/IconSyncProblemOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncProblemOutlined as default } diff --git a/src/IconSyncProblemRound.tsx b/src/IconSyncProblemRound.tsx new file mode 100644 index 000000000..7f36b4af4 --- /dev/null +++ b/src/IconSyncProblemRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncProblemRound as default } diff --git a/src/IconSyncProblemSharp.tsx b/src/IconSyncProblemSharp.tsx new file mode 100644 index 000000000..a92760a8f --- /dev/null +++ b/src/IconSyncProblemSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncProblemSharp as default } diff --git a/src/IconSyncProblemTwoTone.tsx b/src/IconSyncProblemTwoTone.tsx new file mode 100644 index 000000000..f4b9590de --- /dev/null +++ b/src/IconSyncProblemTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncProblemTwoTone as default } diff --git a/src/IconSyncRound.tsx b/src/IconSyncRound.tsx new file mode 100644 index 000000000..5c083e10c --- /dev/null +++ b/src/IconSyncRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncRound as default } diff --git a/src/IconSyncSharp.tsx b/src/IconSyncSharp.tsx new file mode 100644 index 000000000..7c868a475 --- /dev/null +++ b/src/IconSyncSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncSharp as default } diff --git a/src/IconSyncTwoTone.tsx b/src/IconSyncTwoTone.tsx new file mode 100644 index 000000000..3118ad838 --- /dev/null +++ b/src/IconSyncTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSyncTwoTone as default } diff --git a/src/IconSystemSecurityUpdateGoodOutlined.tsx b/src/IconSystemSecurityUpdateGoodOutlined.tsx new file mode 100644 index 000000000..62e98f589 --- /dev/null +++ b/src/IconSystemSecurityUpdateGoodOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateGoodOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSystemSecurityUpdateGoodOutlined as default } diff --git a/src/IconSystemSecurityUpdateGoodRound.tsx b/src/IconSystemSecurityUpdateGoodRound.tsx new file mode 100644 index 000000000..93e9f615d --- /dev/null +++ b/src/IconSystemSecurityUpdateGoodRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateGoodRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSystemSecurityUpdateGoodRound as default } diff --git a/src/IconSystemSecurityUpdateGoodSharp.tsx b/src/IconSystemSecurityUpdateGoodSharp.tsx new file mode 100644 index 000000000..acc4f757e --- /dev/null +++ b/src/IconSystemSecurityUpdateGoodSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateGoodSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSystemSecurityUpdateGoodSharp as default } diff --git a/src/IconSystemSecurityUpdateGoodTwoTone.tsx b/src/IconSystemSecurityUpdateGoodTwoTone.tsx new file mode 100644 index 000000000..a768ea00f --- /dev/null +++ b/src/IconSystemSecurityUpdateGoodTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateGoodTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconSystemSecurityUpdateGoodTwoTone as default } diff --git a/src/IconSystemSecurityUpdateOutlined.tsx b/src/IconSystemSecurityUpdateOutlined.tsx new file mode 100644 index 000000000..0bfbce818 --- /dev/null +++ b/src/IconSystemSecurityUpdateOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconSystemSecurityUpdateOutlined as default } diff --git a/src/IconSystemSecurityUpdateRound.tsx b/src/IconSystemSecurityUpdateRound.tsx new file mode 100644 index 000000000..cb38b4db4 --- /dev/null +++ b/src/IconSystemSecurityUpdateRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSystemSecurityUpdateRound as default } diff --git a/src/IconSystemSecurityUpdateSharp.tsx b/src/IconSystemSecurityUpdateSharp.tsx new file mode 100644 index 000000000..06c30d03e --- /dev/null +++ b/src/IconSystemSecurityUpdateSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconSystemSecurityUpdateSharp as default } diff --git a/src/IconSystemSecurityUpdateTwoTone.tsx b/src/IconSystemSecurityUpdateTwoTone.tsx new file mode 100644 index 000000000..dedb53216 --- /dev/null +++ b/src/IconSystemSecurityUpdateTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSystemSecurityUpdateTwoTone as default } diff --git a/src/IconSystemSecurityUpdateWarningOutlined.tsx b/src/IconSystemSecurityUpdateWarningOutlined.tsx new file mode 100644 index 000000000..c70c29ce7 --- /dev/null +++ b/src/IconSystemSecurityUpdateWarningOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateWarningOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSystemSecurityUpdateWarningOutlined as default } diff --git a/src/IconSystemSecurityUpdateWarningRound.tsx b/src/IconSystemSecurityUpdateWarningRound.tsx new file mode 100644 index 000000000..c6e48b338 --- /dev/null +++ b/src/IconSystemSecurityUpdateWarningRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateWarningRound: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSystemSecurityUpdateWarningRound as default } diff --git a/src/IconSystemSecurityUpdateWarningSharp.tsx b/src/IconSystemSecurityUpdateWarningSharp.tsx new file mode 100644 index 000000000..cd7eec813 --- /dev/null +++ b/src/IconSystemSecurityUpdateWarningSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateWarningSharp: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconSystemSecurityUpdateWarningSharp as default } diff --git a/src/IconSystemSecurityUpdateWarningTwoTone.tsx b/src/IconSystemSecurityUpdateWarningTwoTone.tsx new file mode 100644 index 000000000..e8f354012 --- /dev/null +++ b/src/IconSystemSecurityUpdateWarningTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemSecurityUpdateWarningTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconSystemSecurityUpdateWarningTwoTone as default } diff --git a/src/IconSystemUpdateAltOutlined.tsx b/src/IconSystemUpdateAltOutlined.tsx new file mode 100644 index 000000000..1dbc28d45 --- /dev/null +++ b/src/IconSystemUpdateAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateAltOutlined as default } diff --git a/src/IconSystemUpdateAltRound.tsx b/src/IconSystemUpdateAltRound.tsx new file mode 100644 index 000000000..d738c56dd --- /dev/null +++ b/src/IconSystemUpdateAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateAltRound as default } diff --git a/src/IconSystemUpdateAltSharp.tsx b/src/IconSystemUpdateAltSharp.tsx new file mode 100644 index 000000000..57580f979 --- /dev/null +++ b/src/IconSystemUpdateAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateAltSharp as default } diff --git a/src/IconSystemUpdateAltTwoTone.tsx b/src/IconSystemUpdateAltTwoTone.tsx new file mode 100644 index 000000000..1c49b4e36 --- /dev/null +++ b/src/IconSystemUpdateAltTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateAltTwoTone as default } diff --git a/src/IconSystemUpdateOutlined.tsx b/src/IconSystemUpdateOutlined.tsx new file mode 100644 index 000000000..315b47617 --- /dev/null +++ b/src/IconSystemUpdateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateOutlined as default } diff --git a/src/IconSystemUpdateRound.tsx b/src/IconSystemUpdateRound.tsx new file mode 100644 index 000000000..3baf3b124 --- /dev/null +++ b/src/IconSystemUpdateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateRound as default } diff --git a/src/IconSystemUpdateSharp.tsx b/src/IconSystemUpdateSharp.tsx new file mode 100644 index 000000000..d69ae9f8e --- /dev/null +++ b/src/IconSystemUpdateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconSystemUpdateSharp as default } diff --git a/src/IconSystemUpdateTwoTone.tsx b/src/IconSystemUpdateTwoTone.tsx new file mode 100644 index 000000000..b0e1c2b0c --- /dev/null +++ b/src/IconSystemUpdateTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconSystemUpdateTwoTone as default } diff --git a/src/IconTabOutlined.tsx b/src/IconTabOutlined.tsx new file mode 100644 index 000000000..bc924a838 --- /dev/null +++ b/src/IconTabOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabOutlined as default } diff --git a/src/IconTabRound.tsx b/src/IconTabRound.tsx new file mode 100644 index 000000000..b4f2d38d3 --- /dev/null +++ b/src/IconTabRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabRound as default } diff --git a/src/IconTabSharp.tsx b/src/IconTabSharp.tsx new file mode 100644 index 000000000..c0fc96608 --- /dev/null +++ b/src/IconTabSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabSharp as default } diff --git a/src/IconTabTwoTone.tsx b/src/IconTabTwoTone.tsx new file mode 100644 index 000000000..737087901 --- /dev/null +++ b/src/IconTabTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabTwoTone as default } diff --git a/src/IconTabUnselectedOutlined.tsx b/src/IconTabUnselectedOutlined.tsx new file mode 100644 index 000000000..ff5d22b9e --- /dev/null +++ b/src/IconTabUnselectedOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabUnselectedOutlined as default } diff --git a/src/IconTabUnselectedRound.tsx b/src/IconTabUnselectedRound.tsx new file mode 100644 index 000000000..97438e26e --- /dev/null +++ b/src/IconTabUnselectedRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabUnselectedRound as default } diff --git a/src/IconTabUnselectedSharp.tsx b/src/IconTabUnselectedSharp.tsx new file mode 100644 index 000000000..64099c297 --- /dev/null +++ b/src/IconTabUnselectedSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabUnselectedSharp as default } diff --git a/src/IconTabUnselectedTwoTone.tsx b/src/IconTabUnselectedTwoTone.tsx new file mode 100644 index 000000000..713bddb1c --- /dev/null +++ b/src/IconTabUnselectedTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabUnselectedTwoTone as default } diff --git a/src/IconTableBarOutlined.tsx b/src/IconTableBarOutlined.tsx new file mode 100644 index 000000000..58a5aa7fa --- /dev/null +++ b/src/IconTableBarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTableBarOutlined as default } diff --git a/src/IconTableBarRound.tsx b/src/IconTableBarRound.tsx new file mode 100644 index 000000000..604d118c7 --- /dev/null +++ b/src/IconTableBarRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTableBarRound as default } diff --git a/src/IconTableBarSharp.tsx b/src/IconTableBarSharp.tsx new file mode 100644 index 000000000..82eff6c4b --- /dev/null +++ b/src/IconTableBarSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTableBarSharp as default } diff --git a/src/IconTableBarTwoTone.tsx b/src/IconTableBarTwoTone.tsx new file mode 100644 index 000000000..8c4bfb8c1 --- /dev/null +++ b/src/IconTableBarTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTableBarTwoTone as default } diff --git a/src/IconTableChartOutlined.tsx b/src/IconTableChartOutlined.tsx new file mode 100644 index 000000000..7f7c12b45 --- /dev/null +++ b/src/IconTableChartOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTableChartOutlined as default } diff --git a/src/IconTableChartRound.tsx b/src/IconTableChartRound.tsx new file mode 100644 index 000000000..adfb15c73 --- /dev/null +++ b/src/IconTableChartRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTableChartRound as default } diff --git a/src/IconTableChartSharp.tsx b/src/IconTableChartSharp.tsx new file mode 100644 index 000000000..9d09bb63a --- /dev/null +++ b/src/IconTableChartSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartSharp as default } diff --git a/src/IconTableChartTwoTone.tsx b/src/IconTableChartTwoTone.tsx new file mode 100644 index 000000000..0d449b5f1 --- /dev/null +++ b/src/IconTableChartTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTableChartTwoTone as default } diff --git a/src/IconTableRestaurantOutlined.tsx b/src/IconTableRestaurantOutlined.tsx new file mode 100644 index 000000000..b5c154a3f --- /dev/null +++ b/src/IconTableRestaurantOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTableRestaurantOutlined as default } diff --git a/src/IconTableRestaurantRound.tsx b/src/IconTableRestaurantRound.tsx new file mode 100644 index 000000000..13b12a14e --- /dev/null +++ b/src/IconTableRestaurantRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTableRestaurantRound as default } diff --git a/src/IconTableRestaurantSharp.tsx b/src/IconTableRestaurantSharp.tsx new file mode 100644 index 000000000..2fc045ac7 --- /dev/null +++ b/src/IconTableRestaurantSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTableRestaurantSharp as default } diff --git a/src/IconTableRestaurantTwoTone.tsx b/src/IconTableRestaurantTwoTone.tsx new file mode 100644 index 000000000..d88f2121d --- /dev/null +++ b/src/IconTableRestaurantTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTableRestaurantTwoTone as default } diff --git a/src/IconTableRowsOutlined.tsx b/src/IconTableRowsOutlined.tsx new file mode 100644 index 000000000..d31688c2b --- /dev/null +++ b/src/IconTableRowsOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTableRowsOutlined as default } diff --git a/src/IconTableRowsRound.tsx b/src/IconTableRowsRound.tsx new file mode 100644 index 000000000..45c7f3a15 --- /dev/null +++ b/src/IconTableRowsRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTableRowsRound as default } diff --git a/src/IconTableRowsSharp.tsx b/src/IconTableRowsSharp.tsx new file mode 100644 index 000000000..14f84943c --- /dev/null +++ b/src/IconTableRowsSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTableRowsSharp as default } diff --git a/src/IconTableRowsTwoTone.tsx b/src/IconTableRowsTwoTone.tsx new file mode 100644 index 000000000..27a47f767 --- /dev/null +++ b/src/IconTableRowsTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTableRowsTwoTone as default } diff --git a/src/IconTableViewOutlined.tsx b/src/IconTableViewOutlined.tsx new file mode 100644 index 000000000..2d26a4592 --- /dev/null +++ b/src/IconTableViewOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTableViewOutlined as default } diff --git a/src/IconTableViewRound.tsx b/src/IconTableViewRound.tsx new file mode 100644 index 000000000..cbeea78c9 --- /dev/null +++ b/src/IconTableViewRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTableViewRound as default } diff --git a/src/IconTableViewSharp.tsx b/src/IconTableViewSharp.tsx new file mode 100644 index 000000000..1f9df07a4 --- /dev/null +++ b/src/IconTableViewSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTableViewSharp as default } diff --git a/src/IconTableViewTwoTone.tsx b/src/IconTableViewTwoTone.tsx new file mode 100644 index 000000000..d85688c3e --- /dev/null +++ b/src/IconTableViewTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTableViewTwoTone as default } diff --git a/src/IconTabletAndroidOutlined.tsx b/src/IconTabletAndroidOutlined.tsx new file mode 100644 index 000000000..03d69b6cb --- /dev/null +++ b/src/IconTabletAndroidOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletAndroidOutlined as default } diff --git a/src/IconTabletAndroidRound.tsx b/src/IconTabletAndroidRound.tsx new file mode 100644 index 000000000..0fdb80cea --- /dev/null +++ b/src/IconTabletAndroidRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletAndroidRound as default } diff --git a/src/IconTabletAndroidSharp.tsx b/src/IconTabletAndroidSharp.tsx new file mode 100644 index 000000000..6cf366236 --- /dev/null +++ b/src/IconTabletAndroidSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletAndroidSharp as default } diff --git a/src/IconTabletAndroidTwoTone.tsx b/src/IconTabletAndroidTwoTone.tsx new file mode 100644 index 000000000..58926dc0c --- /dev/null +++ b/src/IconTabletAndroidTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTabletAndroidTwoTone as default } diff --git a/src/IconTabletMacOutlined.tsx b/src/IconTabletMacOutlined.tsx new file mode 100644 index 000000000..dc076ba72 --- /dev/null +++ b/src/IconTabletMacOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletMacOutlined as default } diff --git a/src/IconTabletMacRound.tsx b/src/IconTabletMacRound.tsx new file mode 100644 index 000000000..4e29e6e65 --- /dev/null +++ b/src/IconTabletMacRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletMacRound as default } diff --git a/src/IconTabletMacSharp.tsx b/src/IconTabletMacSharp.tsx new file mode 100644 index 000000000..0b9bbcc8f --- /dev/null +++ b/src/IconTabletMacSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletMacSharp as default } diff --git a/src/IconTabletMacTwoTone.tsx b/src/IconTabletMacTwoTone.tsx new file mode 100644 index 000000000..5038bb9f9 --- /dev/null +++ b/src/IconTabletMacTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTabletMacTwoTone as default } diff --git a/src/IconTabletOutlined.tsx b/src/IconTabletOutlined.tsx new file mode 100644 index 000000000..1c41574f5 --- /dev/null +++ b/src/IconTabletOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletOutlined as default } diff --git a/src/IconTabletRound.tsx b/src/IconTabletRound.tsx new file mode 100644 index 000000000..10ddbdea0 --- /dev/null +++ b/src/IconTabletRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletRound as default } diff --git a/src/IconTabletSharp.tsx b/src/IconTabletSharp.tsx new file mode 100644 index 000000000..77a4fb13d --- /dev/null +++ b/src/IconTabletSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTabletSharp as default } diff --git a/src/IconTabletTwoTone.tsx b/src/IconTabletTwoTone.tsx new file mode 100644 index 000000000..81db312ae --- /dev/null +++ b/src/IconTabletTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTabletTwoTone as default } diff --git a/src/IconTagFacesOutlined.tsx b/src/IconTagFacesOutlined.tsx new file mode 100644 index 000000000..be8f002b2 --- /dev/null +++ b/src/IconTagFacesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagFacesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTagFacesOutlined as default } diff --git a/src/IconTagFacesRound.tsx b/src/IconTagFacesRound.tsx new file mode 100644 index 000000000..e92c6eb96 --- /dev/null +++ b/src/IconTagFacesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagFacesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTagFacesRound as default } diff --git a/src/IconTagFacesSharp.tsx b/src/IconTagFacesSharp.tsx new file mode 100644 index 000000000..c08cb9b67 --- /dev/null +++ b/src/IconTagFacesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagFacesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTagFacesSharp as default } diff --git a/src/IconTagFacesTwoTone.tsx b/src/IconTagFacesTwoTone.tsx new file mode 100644 index 000000000..96d4a9b20 --- /dev/null +++ b/src/IconTagFacesTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagFacesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTagFacesTwoTone as default } diff --git a/src/IconTagOutlined.tsx b/src/IconTagOutlined.tsx new file mode 100644 index 000000000..3a687857a --- /dev/null +++ b/src/IconTagOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTagOutlined as default } diff --git a/src/IconTagRound.tsx b/src/IconTagRound.tsx new file mode 100644 index 000000000..5ac71cc83 --- /dev/null +++ b/src/IconTagRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTagRound as default } diff --git a/src/IconTagSharp.tsx b/src/IconTagSharp.tsx new file mode 100644 index 000000000..95fd4c5ab --- /dev/null +++ b/src/IconTagSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTagSharp as default } diff --git a/src/IconTagTwoTone.tsx b/src/IconTagTwoTone.tsx new file mode 100644 index 000000000..b7d670bb9 --- /dev/null +++ b/src/IconTagTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTagTwoTone as default } diff --git a/src/IconTakeoutDiningOutlined.tsx b/src/IconTakeoutDiningOutlined.tsx new file mode 100644 index 000000000..87fe94702 --- /dev/null +++ b/src/IconTakeoutDiningOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTakeoutDiningOutlined as default } diff --git a/src/IconTakeoutDiningRound.tsx b/src/IconTakeoutDiningRound.tsx new file mode 100644 index 000000000..063750929 --- /dev/null +++ b/src/IconTakeoutDiningRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTakeoutDiningRound as default } diff --git a/src/IconTakeoutDiningSharp.tsx b/src/IconTakeoutDiningSharp.tsx new file mode 100644 index 000000000..d1663aaab --- /dev/null +++ b/src/IconTakeoutDiningSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTakeoutDiningSharp as default } diff --git a/src/IconTakeoutDiningTwoTone.tsx b/src/IconTakeoutDiningTwoTone.tsx new file mode 100644 index 000000000..f45f4d46e --- /dev/null +++ b/src/IconTakeoutDiningTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTakeoutDiningTwoTone as default } diff --git a/src/IconTapAndPlayOutlined.tsx b/src/IconTapAndPlayOutlined.tsx new file mode 100644 index 000000000..3efc3548e --- /dev/null +++ b/src/IconTapAndPlayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapAndPlayOutlined as default } diff --git a/src/IconTapAndPlayRound.tsx b/src/IconTapAndPlayRound.tsx new file mode 100644 index 000000000..145301156 --- /dev/null +++ b/src/IconTapAndPlayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapAndPlayRound as default } diff --git a/src/IconTapAndPlaySharp.tsx b/src/IconTapAndPlaySharp.tsx new file mode 100644 index 000000000..948f3c334 --- /dev/null +++ b/src/IconTapAndPlaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapAndPlaySharp as default } diff --git a/src/IconTapAndPlayTwoTone.tsx b/src/IconTapAndPlayTwoTone.tsx new file mode 100644 index 000000000..f0a65796a --- /dev/null +++ b/src/IconTapAndPlayTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapAndPlayTwoTone as default } diff --git a/src/IconTapasOutlined.tsx b/src/IconTapasOutlined.tsx new file mode 100644 index 000000000..488c65cf9 --- /dev/null +++ b/src/IconTapasOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapasOutlined as default } diff --git a/src/IconTapasRound.tsx b/src/IconTapasRound.tsx new file mode 100644 index 000000000..2eb1fa9af --- /dev/null +++ b/src/IconTapasRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapasRound as default } diff --git a/src/IconTapasSharp.tsx b/src/IconTapasSharp.tsx new file mode 100644 index 000000000..cbece7ff5 --- /dev/null +++ b/src/IconTapasSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTapasSharp as default } diff --git a/src/IconTapasTwoTone.tsx b/src/IconTapasTwoTone.tsx new file mode 100644 index 000000000..6891c4a24 --- /dev/null +++ b/src/IconTapasTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTapasTwoTone as default } diff --git a/src/IconTaskAltOutlined.tsx b/src/IconTaskAltOutlined.tsx new file mode 100644 index 000000000..458db910a --- /dev/null +++ b/src/IconTaskAltOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTaskAltOutlined as default } diff --git a/src/IconTaskAltRound.tsx b/src/IconTaskAltRound.tsx new file mode 100644 index 000000000..c0c2f4d41 --- /dev/null +++ b/src/IconTaskAltRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTaskAltRound as default } diff --git a/src/IconTaskAltSharp.tsx b/src/IconTaskAltSharp.tsx new file mode 100644 index 000000000..bca9853fd --- /dev/null +++ b/src/IconTaskAltSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTaskAltSharp as default } diff --git a/src/IconTaskAltTwoTone.tsx b/src/IconTaskAltTwoTone.tsx new file mode 100644 index 000000000..15da10b94 --- /dev/null +++ b/src/IconTaskAltTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTaskAltTwoTone as default } diff --git a/src/IconTaskOutlined.tsx b/src/IconTaskOutlined.tsx new file mode 100644 index 000000000..b245388bb --- /dev/null +++ b/src/IconTaskOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTaskOutlined as default } diff --git a/src/IconTaskRound.tsx b/src/IconTaskRound.tsx new file mode 100644 index 000000000..19dd1eaa3 --- /dev/null +++ b/src/IconTaskRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTaskRound as default } diff --git a/src/IconTaskSharp.tsx b/src/IconTaskSharp.tsx new file mode 100644 index 000000000..23325dfd3 --- /dev/null +++ b/src/IconTaskSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTaskSharp as default } diff --git a/src/IconTaskTwoTone.tsx b/src/IconTaskTwoTone.tsx new file mode 100644 index 000000000..88d3015eb --- /dev/null +++ b/src/IconTaskTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTaskTwoTone as default } diff --git a/src/IconTaxiAlertOutlined.tsx b/src/IconTaxiAlertOutlined.tsx new file mode 100644 index 000000000..718244f99 --- /dev/null +++ b/src/IconTaxiAlertOutlined.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconTaxiAlertOutlined as default } diff --git a/src/IconTaxiAlertRound.tsx b/src/IconTaxiAlertRound.tsx new file mode 100644 index 000000000..a3f724bad --- /dev/null +++ b/src/IconTaxiAlertRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTaxiAlertRound as default } diff --git a/src/IconTaxiAlertSharp.tsx b/src/IconTaxiAlertSharp.tsx new file mode 100644 index 000000000..51bafbdad --- /dev/null +++ b/src/IconTaxiAlertSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTaxiAlertSharp as default } diff --git a/src/IconTaxiAlertTwoTone.tsx b/src/IconTaxiAlertTwoTone.tsx new file mode 100644 index 000000000..5b2525178 --- /dev/null +++ b/src/IconTaxiAlertTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconTaxiAlertTwoTone as default } diff --git a/src/IconTempleBuddhistOutlined.tsx b/src/IconTempleBuddhistOutlined.tsx new file mode 100644 index 000000000..c177c2ae4 --- /dev/null +++ b/src/IconTempleBuddhistOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTempleBuddhistOutlined as default } diff --git a/src/IconTempleBuddhistRound.tsx b/src/IconTempleBuddhistRound.tsx new file mode 100644 index 000000000..3f3b09d5e --- /dev/null +++ b/src/IconTempleBuddhistRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconTempleBuddhistRound as default } diff --git a/src/IconTempleBuddhistSharp.tsx b/src/IconTempleBuddhistSharp.tsx new file mode 100644 index 000000000..4c727cb61 --- /dev/null +++ b/src/IconTempleBuddhistSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconTempleBuddhistSharp as default } diff --git a/src/IconTempleBuddhistTwoTone.tsx b/src/IconTempleBuddhistTwoTone.tsx new file mode 100644 index 000000000..91f3c98e3 --- /dev/null +++ b/src/IconTempleBuddhistTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTempleBuddhistTwoTone as default } diff --git a/src/IconTempleHinduOutlined.tsx b/src/IconTempleHinduOutlined.tsx new file mode 100644 index 000000000..9c9772c1b --- /dev/null +++ b/src/IconTempleHinduOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTempleHinduOutlined as default } diff --git a/src/IconTempleHinduRound.tsx b/src/IconTempleHinduRound.tsx new file mode 100644 index 000000000..e08709723 --- /dev/null +++ b/src/IconTempleHinduRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTempleHinduRound as default } diff --git a/src/IconTempleHinduSharp.tsx b/src/IconTempleHinduSharp.tsx new file mode 100644 index 000000000..4504831de --- /dev/null +++ b/src/IconTempleHinduSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTempleHinduSharp as default } diff --git a/src/IconTempleHinduTwoTone.tsx b/src/IconTempleHinduTwoTone.tsx new file mode 100644 index 000000000..f0c7d1e5e --- /dev/null +++ b/src/IconTempleHinduTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTempleHinduTwoTone as default } diff --git a/src/IconTerminalOutlined.tsx b/src/IconTerminalOutlined.tsx new file mode 100644 index 000000000..7cf806ed2 --- /dev/null +++ b/src/IconTerminalOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTerminalOutlined as default } diff --git a/src/IconTerminalRound.tsx b/src/IconTerminalRound.tsx new file mode 100644 index 000000000..51735b481 --- /dev/null +++ b/src/IconTerminalRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTerminalRound as default } diff --git a/src/IconTerminalSharp.tsx b/src/IconTerminalSharp.tsx new file mode 100644 index 000000000..27742bcdb --- /dev/null +++ b/src/IconTerminalSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTerminalSharp as default } diff --git a/src/IconTerminalTwoTone.tsx b/src/IconTerminalTwoTone.tsx new file mode 100644 index 000000000..7776a7f2c --- /dev/null +++ b/src/IconTerminalTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTerminalTwoTone as default } diff --git a/src/IconTerrainOutlined.tsx b/src/IconTerrainOutlined.tsx new file mode 100644 index 000000000..e4d1ff2a6 --- /dev/null +++ b/src/IconTerrainOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerrainOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTerrainOutlined as default } diff --git a/src/IconTerrainRound.tsx b/src/IconTerrainRound.tsx new file mode 100644 index 000000000..56b9f743d --- /dev/null +++ b/src/IconTerrainRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerrainRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTerrainRound as default } diff --git a/src/IconTerrainSharp.tsx b/src/IconTerrainSharp.tsx new file mode 100644 index 000000000..f5696b6b7 --- /dev/null +++ b/src/IconTerrainSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerrainSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTerrainSharp as default } diff --git a/src/IconTerrainTwoTone.tsx b/src/IconTerrainTwoTone.tsx new file mode 100644 index 000000000..f50e4c98b --- /dev/null +++ b/src/IconTerrainTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerrainTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTerrainTwoTone as default } diff --git a/src/IconTextDecreaseOutlined.tsx b/src/IconTextDecreaseOutlined.tsx new file mode 100644 index 000000000..c3fc63877 --- /dev/null +++ b/src/IconTextDecreaseOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextDecreaseOutlined as default } diff --git a/src/IconTextDecreaseRound.tsx b/src/IconTextDecreaseRound.tsx new file mode 100644 index 000000000..50e8eb69d --- /dev/null +++ b/src/IconTextDecreaseRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextDecreaseRound as default } diff --git a/src/IconTextDecreaseSharp.tsx b/src/IconTextDecreaseSharp.tsx new file mode 100644 index 000000000..b779a1f26 --- /dev/null +++ b/src/IconTextDecreaseSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextDecreaseSharp as default } diff --git a/src/IconTextDecreaseTwoTone.tsx b/src/IconTextDecreaseTwoTone.tsx new file mode 100644 index 000000000..37098af08 --- /dev/null +++ b/src/IconTextDecreaseTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextDecreaseTwoTone as default } diff --git a/src/IconTextFieldsOutlined.tsx b/src/IconTextFieldsOutlined.tsx new file mode 100644 index 000000000..c011eed93 --- /dev/null +++ b/src/IconTextFieldsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFieldsOutlined as default } diff --git a/src/IconTextFieldsRound.tsx b/src/IconTextFieldsRound.tsx new file mode 100644 index 000000000..7409886c0 --- /dev/null +++ b/src/IconTextFieldsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFieldsRound as default } diff --git a/src/IconTextFieldsSharp.tsx b/src/IconTextFieldsSharp.tsx new file mode 100644 index 000000000..270b39efe --- /dev/null +++ b/src/IconTextFieldsSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsSharp as default } diff --git a/src/IconTextFieldsTwoTone.tsx b/src/IconTextFieldsTwoTone.tsx new file mode 100644 index 000000000..a7de6dfbe --- /dev/null +++ b/src/IconTextFieldsTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFieldsTwoTone as default } diff --git a/src/IconTextFormatOutlined.tsx b/src/IconTextFormatOutlined.tsx new file mode 100644 index 000000000..f28e4f5ea --- /dev/null +++ b/src/IconTextFormatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFormatOutlined as default } diff --git a/src/IconTextFormatRound.tsx b/src/IconTextFormatRound.tsx new file mode 100644 index 000000000..fa9496b41 --- /dev/null +++ b/src/IconTextFormatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFormatRound as default } diff --git a/src/IconTextFormatSharp.tsx b/src/IconTextFormatSharp.tsx new file mode 100644 index 000000000..5b5408580 --- /dev/null +++ b/src/IconTextFormatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFormatSharp as default } diff --git a/src/IconTextFormatTwoTone.tsx b/src/IconTextFormatTwoTone.tsx new file mode 100644 index 000000000..0018c7372 --- /dev/null +++ b/src/IconTextFormatTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextFormatTwoTone as default } diff --git a/src/IconTextIncreaseOutlined.tsx b/src/IconTextIncreaseOutlined.tsx new file mode 100644 index 000000000..422c9f85f --- /dev/null +++ b/src/IconTextIncreaseOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextIncreaseOutlined as default } diff --git a/src/IconTextIncreaseRound.tsx b/src/IconTextIncreaseRound.tsx new file mode 100644 index 000000000..e7744e52d --- /dev/null +++ b/src/IconTextIncreaseRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextIncreaseRound as default } diff --git a/src/IconTextIncreaseSharp.tsx b/src/IconTextIncreaseSharp.tsx new file mode 100644 index 000000000..a4e138327 --- /dev/null +++ b/src/IconTextIncreaseSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextIncreaseSharp as default } diff --git a/src/IconTextIncreaseTwoTone.tsx b/src/IconTextIncreaseTwoTone.tsx new file mode 100644 index 000000000..ce44f9e54 --- /dev/null +++ b/src/IconTextIncreaseTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextIncreaseTwoTone as default } diff --git a/src/IconTextRotateUpOutlined.tsx b/src/IconTextRotateUpOutlined.tsx new file mode 100644 index 000000000..84b33348e --- /dev/null +++ b/src/IconTextRotateUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateUpOutlined as default } diff --git a/src/IconTextRotateUpRound.tsx b/src/IconTextRotateUpRound.tsx new file mode 100644 index 000000000..ad0a219fc --- /dev/null +++ b/src/IconTextRotateUpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateUpRound as default } diff --git a/src/IconTextRotateUpSharp.tsx b/src/IconTextRotateUpSharp.tsx new file mode 100644 index 000000000..fb781622a --- /dev/null +++ b/src/IconTextRotateUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateUpSharp as default } diff --git a/src/IconTextRotateUpTwoTone.tsx b/src/IconTextRotateUpTwoTone.tsx new file mode 100644 index 000000000..09f781f57 --- /dev/null +++ b/src/IconTextRotateUpTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateUpTwoTone as default } diff --git a/src/IconTextRotateVerticalOutlined.tsx b/src/IconTextRotateVerticalOutlined.tsx new file mode 100644 index 000000000..02260d668 --- /dev/null +++ b/src/IconTextRotateVerticalOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateVerticalOutlined as default } diff --git a/src/IconTextRotateVerticalRound.tsx b/src/IconTextRotateVerticalRound.tsx new file mode 100644 index 000000000..b3cb1ef8f --- /dev/null +++ b/src/IconTextRotateVerticalRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateVerticalRound as default } diff --git a/src/IconTextRotateVerticalSharp.tsx b/src/IconTextRotateVerticalSharp.tsx new file mode 100644 index 000000000..130c28211 --- /dev/null +++ b/src/IconTextRotateVerticalSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateVerticalSharp as default } diff --git a/src/IconTextRotateVerticalTwoTone.tsx b/src/IconTextRotateVerticalTwoTone.tsx new file mode 100644 index 000000000..92b444739 --- /dev/null +++ b/src/IconTextRotateVerticalTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotateVerticalTwoTone as default } diff --git a/src/IconTextRotationAngledownOutlined.tsx b/src/IconTextRotationAngledownOutlined.tsx new file mode 100644 index 000000000..5637a73cf --- /dev/null +++ b/src/IconTextRotationAngledownOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngledownOutlined as default } diff --git a/src/IconTextRotationAngledownRound.tsx b/src/IconTextRotationAngledownRound.tsx new file mode 100644 index 000000000..87591f9bb --- /dev/null +++ b/src/IconTextRotationAngledownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngledownRound as default } diff --git a/src/IconTextRotationAngledownSharp.tsx b/src/IconTextRotationAngledownSharp.tsx new file mode 100644 index 000000000..607f3e5a1 --- /dev/null +++ b/src/IconTextRotationAngledownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngledownSharp as default } diff --git a/src/IconTextRotationAngledownTwoTone.tsx b/src/IconTextRotationAngledownTwoTone.tsx new file mode 100644 index 000000000..0311f144d --- /dev/null +++ b/src/IconTextRotationAngledownTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngledownTwoTone as default } diff --git a/src/IconTextRotationAngleupOutlined.tsx b/src/IconTextRotationAngleupOutlined.tsx new file mode 100644 index 000000000..53effca05 --- /dev/null +++ b/src/IconTextRotationAngleupOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngleupOutlined as default } diff --git a/src/IconTextRotationAngleupRound.tsx b/src/IconTextRotationAngleupRound.tsx new file mode 100644 index 000000000..7b3a3b232 --- /dev/null +++ b/src/IconTextRotationAngleupRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngleupRound as default } diff --git a/src/IconTextRotationAngleupSharp.tsx b/src/IconTextRotationAngleupSharp.tsx new file mode 100644 index 000000000..98e38d2a4 --- /dev/null +++ b/src/IconTextRotationAngleupSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngleupSharp as default } diff --git a/src/IconTextRotationAngleupTwoTone.tsx b/src/IconTextRotationAngleupTwoTone.tsx new file mode 100644 index 000000000..4ddc5105f --- /dev/null +++ b/src/IconTextRotationAngleupTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationAngleupTwoTone as default } diff --git a/src/IconTextRotationDownOutlined.tsx b/src/IconTextRotationDownOutlined.tsx new file mode 100644 index 000000000..6fce0ac41 --- /dev/null +++ b/src/IconTextRotationDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationDownOutlined as default } diff --git a/src/IconTextRotationDownRound.tsx b/src/IconTextRotationDownRound.tsx new file mode 100644 index 000000000..0d8736c21 --- /dev/null +++ b/src/IconTextRotationDownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationDownRound as default } diff --git a/src/IconTextRotationDownSharp.tsx b/src/IconTextRotationDownSharp.tsx new file mode 100644 index 000000000..6d45f6873 --- /dev/null +++ b/src/IconTextRotationDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationDownSharp as default } diff --git a/src/IconTextRotationDownTwoTone.tsx b/src/IconTextRotationDownTwoTone.tsx new file mode 100644 index 000000000..fbf10636c --- /dev/null +++ b/src/IconTextRotationDownTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationDownTwoTone as default } diff --git a/src/IconTextRotationNoneOutlined.tsx b/src/IconTextRotationNoneOutlined.tsx new file mode 100644 index 000000000..4298c6a63 --- /dev/null +++ b/src/IconTextRotationNoneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationNoneOutlined as default } diff --git a/src/IconTextRotationNoneRound.tsx b/src/IconTextRotationNoneRound.tsx new file mode 100644 index 000000000..1cd276313 --- /dev/null +++ b/src/IconTextRotationNoneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationNoneRound as default } diff --git a/src/IconTextRotationNoneSharp.tsx b/src/IconTextRotationNoneSharp.tsx new file mode 100644 index 000000000..73189edd7 --- /dev/null +++ b/src/IconTextRotationNoneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationNoneSharp as default } diff --git a/src/IconTextRotationNoneTwoTone.tsx b/src/IconTextRotationNoneTwoTone.tsx new file mode 100644 index 000000000..4c891bd5c --- /dev/null +++ b/src/IconTextRotationNoneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextRotationNoneTwoTone as default } diff --git a/src/IconTextSnippetOutlined.tsx b/src/IconTextSnippetOutlined.tsx new file mode 100644 index 000000000..02fae1fa0 --- /dev/null +++ b/src/IconTextSnippetOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTextSnippetOutlined as default } diff --git a/src/IconTextSnippetRound.tsx b/src/IconTextSnippetRound.tsx new file mode 100644 index 000000000..203ed214d --- /dev/null +++ b/src/IconTextSnippetRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTextSnippetRound as default } diff --git a/src/IconTextSnippetSharp.tsx b/src/IconTextSnippetSharp.tsx new file mode 100644 index 000000000..701637db3 --- /dev/null +++ b/src/IconTextSnippetSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTextSnippetSharp as default } diff --git a/src/IconTextSnippetTwoTone.tsx b/src/IconTextSnippetTwoTone.tsx new file mode 100644 index 000000000..005d39b07 --- /dev/null +++ b/src/IconTextSnippetTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTextSnippetTwoTone as default } diff --git a/src/IconTextsmsOutlined.tsx b/src/IconTextsmsOutlined.tsx new file mode 100644 index 000000000..5b9eabb53 --- /dev/null +++ b/src/IconTextsmsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextsmsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextsmsOutlined as default } diff --git a/src/IconTextsmsRound.tsx b/src/IconTextsmsRound.tsx new file mode 100644 index 000000000..206d573f8 --- /dev/null +++ b/src/IconTextsmsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextsmsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextsmsRound as default } diff --git a/src/IconTextsmsSharp.tsx b/src/IconTextsmsSharp.tsx new file mode 100644 index 000000000..d3caee557 --- /dev/null +++ b/src/IconTextsmsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextsmsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextsmsSharp as default } diff --git a/src/IconTextsmsTwoTone.tsx b/src/IconTextsmsTwoTone.tsx new file mode 100644 index 000000000..447373c7f --- /dev/null +++ b/src/IconTextsmsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextsmsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTextsmsTwoTone as default } diff --git a/src/IconTextureOutlined.tsx b/src/IconTextureOutlined.tsx new file mode 100644 index 000000000..9a0a1d1e0 --- /dev/null +++ b/src/IconTextureOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextureOutlined as default } diff --git a/src/IconTextureRound.tsx b/src/IconTextureRound.tsx new file mode 100644 index 000000000..056cd05b3 --- /dev/null +++ b/src/IconTextureRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextureRound as default } diff --git a/src/IconTextureSharp.tsx b/src/IconTextureSharp.tsx new file mode 100644 index 000000000..fab0eab32 --- /dev/null +++ b/src/IconTextureSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextureSharp as default } diff --git a/src/IconTextureTwoTone.tsx b/src/IconTextureTwoTone.tsx new file mode 100644 index 000000000..8fe19b45a --- /dev/null +++ b/src/IconTextureTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTextureTwoTone as default } diff --git a/src/IconTheaterComedyOutlined.tsx b/src/IconTheaterComedyOutlined.tsx new file mode 100644 index 000000000..ecb19ecda --- /dev/null +++ b/src/IconTheaterComedyOutlined.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconTheaterComedyOutlined as default } diff --git a/src/IconTheaterComedyRound.tsx b/src/IconTheaterComedyRound.tsx new file mode 100644 index 000000000..760a250c2 --- /dev/null +++ b/src/IconTheaterComedyRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTheaterComedyRound as default } diff --git a/src/IconTheaterComedySharp.tsx b/src/IconTheaterComedySharp.tsx new file mode 100644 index 000000000..f937fbc5e --- /dev/null +++ b/src/IconTheaterComedySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTheaterComedySharp as default } diff --git a/src/IconTheaterComedyTwoTone.tsx b/src/IconTheaterComedyTwoTone.tsx new file mode 100644 index 000000000..adfb761ae --- /dev/null +++ b/src/IconTheaterComedyTwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconTheaterComedyTwoTone as default } diff --git a/src/IconTheatersOutlined.tsx b/src/IconTheatersOutlined.tsx new file mode 100644 index 000000000..ed3215147 --- /dev/null +++ b/src/IconTheatersOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTheatersOutlined as default } diff --git a/src/IconTheatersRound.tsx b/src/IconTheatersRound.tsx new file mode 100644 index 000000000..168eeae49 --- /dev/null +++ b/src/IconTheatersRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTheatersRound as default } diff --git a/src/IconTheatersSharp.tsx b/src/IconTheatersSharp.tsx new file mode 100644 index 000000000..6d8ad80af --- /dev/null +++ b/src/IconTheatersSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTheatersSharp as default } diff --git a/src/IconTheatersTwoTone.tsx b/src/IconTheatersTwoTone.tsx new file mode 100644 index 000000000..2c2c7d6cb --- /dev/null +++ b/src/IconTheatersTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTheatersTwoTone as default } diff --git a/src/IconThermostatAutoOutlined.tsx b/src/IconThermostatAutoOutlined.tsx new file mode 100644 index 000000000..a24e9885f --- /dev/null +++ b/src/IconThermostatAutoOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconThermostatAutoOutlined as default } diff --git a/src/IconThermostatAutoRound.tsx b/src/IconThermostatAutoRound.tsx new file mode 100644 index 000000000..c9b68e276 --- /dev/null +++ b/src/IconThermostatAutoRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconThermostatAutoRound as default } diff --git a/src/IconThermostatAutoSharp.tsx b/src/IconThermostatAutoSharp.tsx new file mode 100644 index 000000000..50666e45e --- /dev/null +++ b/src/IconThermostatAutoSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconThermostatAutoSharp as default } diff --git a/src/IconThermostatAutoTwoTone.tsx b/src/IconThermostatAutoTwoTone.tsx new file mode 100644 index 000000000..14e097f44 --- /dev/null +++ b/src/IconThermostatAutoTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconThermostatAutoTwoTone as default } diff --git a/src/IconThermostatOutlined.tsx b/src/IconThermostatOutlined.tsx new file mode 100644 index 000000000..476bd8b09 --- /dev/null +++ b/src/IconThermostatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThermostatOutlined as default } diff --git a/src/IconThermostatRound.tsx b/src/IconThermostatRound.tsx new file mode 100644 index 000000000..79f0ad4a7 --- /dev/null +++ b/src/IconThermostatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThermostatRound as default } diff --git a/src/IconThermostatSharp.tsx b/src/IconThermostatSharp.tsx new file mode 100644 index 000000000..f103b740a --- /dev/null +++ b/src/IconThermostatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThermostatSharp as default } diff --git a/src/IconThermostatTwoTone.tsx b/src/IconThermostatTwoTone.tsx new file mode 100644 index 000000000..56e1f0c66 --- /dev/null +++ b/src/IconThermostatTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThermostatTwoTone as default } diff --git a/src/IconThumbDownAltOutlined.tsx b/src/IconThumbDownAltOutlined.tsx new file mode 100644 index 000000000..02a49e316 --- /dev/null +++ b/src/IconThumbDownAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownAltOutlined as default } diff --git a/src/IconThumbDownAltRound.tsx b/src/IconThumbDownAltRound.tsx new file mode 100644 index 000000000..d475b8e6f --- /dev/null +++ b/src/IconThumbDownAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownAltRound as default } diff --git a/src/IconThumbDownAltSharp.tsx b/src/IconThumbDownAltSharp.tsx new file mode 100644 index 000000000..ae39dc0ab --- /dev/null +++ b/src/IconThumbDownAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownAltSharp as default } diff --git a/src/IconThumbDownAltTwoTone.tsx b/src/IconThumbDownAltTwoTone.tsx new file mode 100644 index 000000000..3ef0a024c --- /dev/null +++ b/src/IconThumbDownAltTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconThumbDownAltTwoTone as default } diff --git a/src/IconThumbDownOffAltOutlined.tsx b/src/IconThumbDownOffAltOutlined.tsx new file mode 100644 index 000000000..cc3f32226 --- /dev/null +++ b/src/IconThumbDownOffAltOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOffAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconThumbDownOffAltOutlined as default } diff --git a/src/IconThumbDownOffAltRound.tsx b/src/IconThumbDownOffAltRound.tsx new file mode 100644 index 000000000..0dcd49c35 --- /dev/null +++ b/src/IconThumbDownOffAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOffAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconThumbDownOffAltRound as default } diff --git a/src/IconThumbDownOffAltSharp.tsx b/src/IconThumbDownOffAltSharp.tsx new file mode 100644 index 000000000..be1e3b405 --- /dev/null +++ b/src/IconThumbDownOffAltSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOffAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconThumbDownOffAltSharp as default } diff --git a/src/IconThumbDownOffAltTwoTone.tsx b/src/IconThumbDownOffAltTwoTone.tsx new file mode 100644 index 000000000..83c1c237f --- /dev/null +++ b/src/IconThumbDownOffAltTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOffAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconThumbDownOffAltTwoTone as default } diff --git a/src/IconThumbDownOutlined.tsx b/src/IconThumbDownOutlined.tsx new file mode 100644 index 000000000..804d8fa74 --- /dev/null +++ b/src/IconThumbDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownOutlined as default } diff --git a/src/IconThumbDownRound.tsx b/src/IconThumbDownRound.tsx new file mode 100644 index 000000000..e4d692c15 --- /dev/null +++ b/src/IconThumbDownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownRound as default } diff --git a/src/IconThumbDownSharp.tsx b/src/IconThumbDownSharp.tsx new file mode 100644 index 000000000..54b245274 --- /dev/null +++ b/src/IconThumbDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbDownSharp as default } diff --git a/src/IconThumbDownTwoTone.tsx b/src/IconThumbDownTwoTone.tsx new file mode 100644 index 000000000..6196a69d9 --- /dev/null +++ b/src/IconThumbDownTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconThumbDownTwoTone as default } diff --git a/src/IconThumbUpAltOutlined.tsx b/src/IconThumbUpAltOutlined.tsx new file mode 100644 index 000000000..767a3fa16 --- /dev/null +++ b/src/IconThumbUpAltOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpAltOutlined as default } diff --git a/src/IconThumbUpAltRound.tsx b/src/IconThumbUpAltRound.tsx new file mode 100644 index 000000000..3bdbbcdfd --- /dev/null +++ b/src/IconThumbUpAltRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpAltRound as default } diff --git a/src/IconThumbUpAltSharp.tsx b/src/IconThumbUpAltSharp.tsx new file mode 100644 index 000000000..4f4502cbd --- /dev/null +++ b/src/IconThumbUpAltSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpAltSharp as default } diff --git a/src/IconThumbUpAltTwoTone.tsx b/src/IconThumbUpAltTwoTone.tsx new file mode 100644 index 000000000..59f5e41e6 --- /dev/null +++ b/src/IconThumbUpAltTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconThumbUpAltTwoTone as default } diff --git a/src/IconThumbUpOffAltOutlined.tsx b/src/IconThumbUpOffAltOutlined.tsx new file mode 100644 index 000000000..b4179d5cd --- /dev/null +++ b/src/IconThumbUpOffAltOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOffAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconThumbUpOffAltOutlined as default } diff --git a/src/IconThumbUpOffAltRound.tsx b/src/IconThumbUpOffAltRound.tsx new file mode 100644 index 000000000..b84adf5bf --- /dev/null +++ b/src/IconThumbUpOffAltRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOffAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconThumbUpOffAltRound as default } diff --git a/src/IconThumbUpOffAltSharp.tsx b/src/IconThumbUpOffAltSharp.tsx new file mode 100644 index 000000000..fd3a71749 --- /dev/null +++ b/src/IconThumbUpOffAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOffAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconThumbUpOffAltSharp as default } diff --git a/src/IconThumbUpOffAltTwoTone.tsx b/src/IconThumbUpOffAltTwoTone.tsx new file mode 100644 index 000000000..dc7959f5c --- /dev/null +++ b/src/IconThumbUpOffAltTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOffAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconThumbUpOffAltTwoTone as default } diff --git a/src/IconThumbUpOutlined.tsx b/src/IconThumbUpOutlined.tsx new file mode 100644 index 000000000..42a8b86bb --- /dev/null +++ b/src/IconThumbUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpOutlined as default } diff --git a/src/IconThumbUpRound.tsx b/src/IconThumbUpRound.tsx new file mode 100644 index 000000000..b7e269f5c --- /dev/null +++ b/src/IconThumbUpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpRound as default } diff --git a/src/IconThumbUpSharp.tsx b/src/IconThumbUpSharp.tsx new file mode 100644 index 000000000..8d453ad03 --- /dev/null +++ b/src/IconThumbUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbUpSharp as default } diff --git a/src/IconThumbUpTwoTone.tsx b/src/IconThumbUpTwoTone.tsx new file mode 100644 index 000000000..b031fc8d8 --- /dev/null +++ b/src/IconThumbUpTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconThumbUpTwoTone as default } diff --git a/src/IconThumbsUpDownOutlined.tsx b/src/IconThumbsUpDownOutlined.tsx new file mode 100644 index 000000000..b876611b4 --- /dev/null +++ b/src/IconThumbsUpDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbsUpDownOutlined as default } diff --git a/src/IconThumbsUpDownRound.tsx b/src/IconThumbsUpDownRound.tsx new file mode 100644 index 000000000..e9723e981 --- /dev/null +++ b/src/IconThumbsUpDownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbsUpDownRound as default } diff --git a/src/IconThumbsUpDownSharp.tsx b/src/IconThumbsUpDownSharp.tsx new file mode 100644 index 000000000..5dc1bba3c --- /dev/null +++ b/src/IconThumbsUpDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconThumbsUpDownSharp as default } diff --git a/src/IconThumbsUpDownTwoTone.tsx b/src/IconThumbsUpDownTwoTone.tsx new file mode 100644 index 000000000..b4d5df799 --- /dev/null +++ b/src/IconThumbsUpDownTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconThumbsUpDownTwoTone as default } diff --git a/src/IconThunderstormOutlined.tsx b/src/IconThunderstormOutlined.tsx new file mode 100644 index 000000000..98ccbec95 --- /dev/null +++ b/src/IconThunderstormOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconThunderstormOutlined as default } diff --git a/src/IconThunderstormRound.tsx b/src/IconThunderstormRound.tsx new file mode 100644 index 000000000..5327b748f --- /dev/null +++ b/src/IconThunderstormRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconThunderstormRound as default } diff --git a/src/IconThunderstormSharp.tsx b/src/IconThunderstormSharp.tsx new file mode 100644 index 000000000..a76939244 --- /dev/null +++ b/src/IconThunderstormSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconThunderstormSharp as default } diff --git a/src/IconThunderstormTwoTone.tsx b/src/IconThunderstormTwoTone.tsx new file mode 100644 index 000000000..3b85e74ba --- /dev/null +++ b/src/IconThunderstormTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconThunderstormTwoTone as default } diff --git a/src/IconTimeToLeaveOutlined.tsx b/src/IconTimeToLeaveOutlined.tsx new file mode 100644 index 000000000..1bff57a9a --- /dev/null +++ b/src/IconTimeToLeaveOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeToLeaveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTimeToLeaveOutlined as default } diff --git a/src/IconTimeToLeaveRound.tsx b/src/IconTimeToLeaveRound.tsx new file mode 100644 index 000000000..08f7a16c2 --- /dev/null +++ b/src/IconTimeToLeaveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeToLeaveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimeToLeaveRound as default } diff --git a/src/IconTimeToLeaveSharp.tsx b/src/IconTimeToLeaveSharp.tsx new file mode 100644 index 000000000..c00b80302 --- /dev/null +++ b/src/IconTimeToLeaveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeToLeaveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimeToLeaveSharp as default } diff --git a/src/IconTimeToLeaveTwoTone.tsx b/src/IconTimeToLeaveTwoTone.tsx new file mode 100644 index 000000000..7181ebf18 --- /dev/null +++ b/src/IconTimeToLeaveTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeToLeaveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTimeToLeaveTwoTone as default } diff --git a/src/IconTimelapseOutlined.tsx b/src/IconTimelapseOutlined.tsx new file mode 100644 index 000000000..ac81d124f --- /dev/null +++ b/src/IconTimelapseOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimelapseOutlined as default } diff --git a/src/IconTimelapseRound.tsx b/src/IconTimelapseRound.tsx new file mode 100644 index 000000000..2434133ef --- /dev/null +++ b/src/IconTimelapseRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimelapseRound as default } diff --git a/src/IconTimelapseSharp.tsx b/src/IconTimelapseSharp.tsx new file mode 100644 index 000000000..8135610f0 --- /dev/null +++ b/src/IconTimelapseSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimelapseSharp as default } diff --git a/src/IconTimelapseTwoTone.tsx b/src/IconTimelapseTwoTone.tsx new file mode 100644 index 000000000..9e65f3929 --- /dev/null +++ b/src/IconTimelapseTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTimelapseTwoTone as default } diff --git a/src/IconTimelineOutlined.tsx b/src/IconTimelineOutlined.tsx new file mode 100644 index 000000000..296bd348f --- /dev/null +++ b/src/IconTimelineOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTimelineOutlined as default } diff --git a/src/IconTimelineRound.tsx b/src/IconTimelineRound.tsx new file mode 100644 index 000000000..932dbce8d --- /dev/null +++ b/src/IconTimelineRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTimelineRound as default } diff --git a/src/IconTimelineSharp.tsx b/src/IconTimelineSharp.tsx new file mode 100644 index 000000000..f221e850b --- /dev/null +++ b/src/IconTimelineSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTimelineSharp as default } diff --git a/src/IconTimelineTwoTone.tsx b/src/IconTimelineTwoTone.tsx new file mode 100644 index 000000000..0195d8877 --- /dev/null +++ b/src/IconTimelineTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTimelineTwoTone as default } diff --git a/src/IconTimer10Outlined.tsx b/src/IconTimer10Outlined.tsx new file mode 100644 index 000000000..50e9763c1 --- /dev/null +++ b/src/IconTimer10Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10Outlined as default } diff --git a/src/IconTimer10Round.tsx b/src/IconTimer10Round.tsx new file mode 100644 index 000000000..f476c13a5 --- /dev/null +++ b/src/IconTimer10Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10Round as default } diff --git a/src/IconTimer10SelectOutlined.tsx b/src/IconTimer10SelectOutlined.tsx new file mode 100644 index 000000000..2a6005b1b --- /dev/null +++ b/src/IconTimer10SelectOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10SelectOutlined as default } diff --git a/src/IconTimer10SelectRound.tsx b/src/IconTimer10SelectRound.tsx new file mode 100644 index 000000000..d414e07f6 --- /dev/null +++ b/src/IconTimer10SelectRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10SelectRound as default } diff --git a/src/IconTimer10SelectSharp.tsx b/src/IconTimer10SelectSharp.tsx new file mode 100644 index 000000000..554311623 --- /dev/null +++ b/src/IconTimer10SelectSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10SelectSharp as default } diff --git a/src/IconTimer10SelectTwoTone.tsx b/src/IconTimer10SelectTwoTone.tsx new file mode 100644 index 000000000..889ab8408 --- /dev/null +++ b/src/IconTimer10SelectTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10SelectTwoTone as default } diff --git a/src/IconTimer10Sharp.tsx b/src/IconTimer10Sharp.tsx new file mode 100644 index 000000000..77d3959fc --- /dev/null +++ b/src/IconTimer10Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10Sharp as default } diff --git a/src/IconTimer10TwoTone.tsx b/src/IconTimer10TwoTone.tsx new file mode 100644 index 000000000..45570c813 --- /dev/null +++ b/src/IconTimer10TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer10TwoTone as default } diff --git a/src/IconTimer3Outlined.tsx b/src/IconTimer3Outlined.tsx new file mode 100644 index 000000000..e76aa572f --- /dev/null +++ b/src/IconTimer3Outlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3Outlined as default } diff --git a/src/IconTimer3Round.tsx b/src/IconTimer3Round.tsx new file mode 100644 index 000000000..bb2caf925 --- /dev/null +++ b/src/IconTimer3Round.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3Round as default } diff --git a/src/IconTimer3SelectOutlined.tsx b/src/IconTimer3SelectOutlined.tsx new file mode 100644 index 000000000..8a537a28f --- /dev/null +++ b/src/IconTimer3SelectOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3SelectOutlined as default } diff --git a/src/IconTimer3SelectRound.tsx b/src/IconTimer3SelectRound.tsx new file mode 100644 index 000000000..9f4e42a7e --- /dev/null +++ b/src/IconTimer3SelectRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3SelectRound as default } diff --git a/src/IconTimer3SelectSharp.tsx b/src/IconTimer3SelectSharp.tsx new file mode 100644 index 000000000..da9bf54ec --- /dev/null +++ b/src/IconTimer3SelectSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3SelectSharp as default } diff --git a/src/IconTimer3SelectTwoTone.tsx b/src/IconTimer3SelectTwoTone.tsx new file mode 100644 index 000000000..7922889e0 --- /dev/null +++ b/src/IconTimer3SelectTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3SelectTwoTone as default } diff --git a/src/IconTimer3Sharp.tsx b/src/IconTimer3Sharp.tsx new file mode 100644 index 000000000..0d7788f34 --- /dev/null +++ b/src/IconTimer3Sharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3Sharp as default } diff --git a/src/IconTimer3TwoTone.tsx b/src/IconTimer3TwoTone.tsx new file mode 100644 index 000000000..215a67c67 --- /dev/null +++ b/src/IconTimer3TwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTimer3TwoTone as default } diff --git a/src/IconTimerOffOutlined.tsx b/src/IconTimerOffOutlined.tsx new file mode 100644 index 000000000..308e7ef8a --- /dev/null +++ b/src/IconTimerOffOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTimerOffOutlined as default } diff --git a/src/IconTimerOffRound.tsx b/src/IconTimerOffRound.tsx new file mode 100644 index 000000000..6bbc38d6f --- /dev/null +++ b/src/IconTimerOffRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTimerOffRound as default } diff --git a/src/IconTimerOffSharp.tsx b/src/IconTimerOffSharp.tsx new file mode 100644 index 000000000..be907ff1f --- /dev/null +++ b/src/IconTimerOffSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTimerOffSharp as default } diff --git a/src/IconTimerOffTwoTone.tsx b/src/IconTimerOffTwoTone.tsx new file mode 100644 index 000000000..93bd72210 --- /dev/null +++ b/src/IconTimerOffTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTimerOffTwoTone as default } diff --git a/src/IconTimerOutlined.tsx b/src/IconTimerOutlined.tsx new file mode 100644 index 000000000..9bc45bf98 --- /dev/null +++ b/src/IconTimerOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTimerOutlined as default } diff --git a/src/IconTimerRound.tsx b/src/IconTimerRound.tsx new file mode 100644 index 000000000..8751e1c93 --- /dev/null +++ b/src/IconTimerRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTimerRound as default } diff --git a/src/IconTimerSharp.tsx b/src/IconTimerSharp.tsx new file mode 100644 index 000000000..77e31a0cb --- /dev/null +++ b/src/IconTimerSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTimerSharp as default } diff --git a/src/IconTimerTwoTone.tsx b/src/IconTimerTwoTone.tsx new file mode 100644 index 000000000..cc48f55cf --- /dev/null +++ b/src/IconTimerTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTimerTwoTone as default } diff --git a/src/IconTipsAndUpdatesOutlined.tsx b/src/IconTipsAndUpdatesOutlined.tsx new file mode 100644 index 000000000..3eefd311d --- /dev/null +++ b/src/IconTipsAndUpdatesOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTipsAndUpdatesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTipsAndUpdatesOutlined as default } diff --git a/src/IconTipsAndUpdatesRound.tsx b/src/IconTipsAndUpdatesRound.tsx new file mode 100644 index 000000000..786eab6fd --- /dev/null +++ b/src/IconTipsAndUpdatesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTipsAndUpdatesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTipsAndUpdatesRound as default } diff --git a/src/IconTipsAndUpdatesSharp.tsx b/src/IconTipsAndUpdatesSharp.tsx new file mode 100644 index 000000000..a9b055fd8 --- /dev/null +++ b/src/IconTipsAndUpdatesSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTipsAndUpdatesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTipsAndUpdatesSharp as default } diff --git a/src/IconTipsAndUpdatesTwoTone.tsx b/src/IconTipsAndUpdatesTwoTone.tsx new file mode 100644 index 000000000..e4953dc14 --- /dev/null +++ b/src/IconTipsAndUpdatesTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTipsAndUpdatesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTipsAndUpdatesTwoTone as default } diff --git a/src/IconTireRepairOutlined.tsx b/src/IconTireRepairOutlined.tsx new file mode 100644 index 000000000..cd1e349be --- /dev/null +++ b/src/IconTireRepairOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTireRepairOutlined as default } diff --git a/src/IconTireRepairRound.tsx b/src/IconTireRepairRound.tsx new file mode 100644 index 000000000..678f89b47 --- /dev/null +++ b/src/IconTireRepairRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTireRepairRound as default } diff --git a/src/IconTireRepairSharp.tsx b/src/IconTireRepairSharp.tsx new file mode 100644 index 000000000..8ea687420 --- /dev/null +++ b/src/IconTireRepairSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTireRepairSharp as default } diff --git a/src/IconTireRepairTwoTone.tsx b/src/IconTireRepairTwoTone.tsx new file mode 100644 index 000000000..5f09b75e1 --- /dev/null +++ b/src/IconTireRepairTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTireRepairTwoTone as default } diff --git a/src/IconTitleOutlined.tsx b/src/IconTitleOutlined.tsx new file mode 100644 index 000000000..2030b8d1a --- /dev/null +++ b/src/IconTitleOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTitleOutlined as default } diff --git a/src/IconTitleRound.tsx b/src/IconTitleRound.tsx new file mode 100644 index 000000000..bb1234c07 --- /dev/null +++ b/src/IconTitleRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTitleRound as default } diff --git a/src/IconTitleSharp.tsx b/src/IconTitleSharp.tsx new file mode 100644 index 000000000..5ac4c7331 --- /dev/null +++ b/src/IconTitleSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitleSharp as default } diff --git a/src/IconTitleTwoTone.tsx b/src/IconTitleTwoTone.tsx new file mode 100644 index 000000000..8cb116967 --- /dev/null +++ b/src/IconTitleTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTitleTwoTone as default } diff --git a/src/IconTocOutlined.tsx b/src/IconTocOutlined.tsx new file mode 100644 index 000000000..f1f3f60aa --- /dev/null +++ b/src/IconTocOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTocOutlined as default } diff --git a/src/IconTocRound.tsx b/src/IconTocRound.tsx new file mode 100644 index 000000000..550f8a270 --- /dev/null +++ b/src/IconTocRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTocRound as default } diff --git a/src/IconTocSharp.tsx b/src/IconTocSharp.tsx new file mode 100644 index 000000000..5152fb919 --- /dev/null +++ b/src/IconTocSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTocSharp as default } diff --git a/src/IconTocTwoTone.tsx b/src/IconTocTwoTone.tsx new file mode 100644 index 000000000..caece91cd --- /dev/null +++ b/src/IconTocTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTocTwoTone as default } diff --git a/src/IconTodayOutlined.tsx b/src/IconTodayOutlined.tsx new file mode 100644 index 000000000..75d3ce067 --- /dev/null +++ b/src/IconTodayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTodayOutlined as default } diff --git a/src/IconTodayRound.tsx b/src/IconTodayRound.tsx new file mode 100644 index 000000000..25a6c8fd7 --- /dev/null +++ b/src/IconTodayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTodayRound as default } diff --git a/src/IconTodaySharp.tsx b/src/IconTodaySharp.tsx new file mode 100644 index 000000000..4694f8d71 --- /dev/null +++ b/src/IconTodaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTodaySharp as default } diff --git a/src/IconTodayTwoTone.tsx b/src/IconTodayTwoTone.tsx new file mode 100644 index 000000000..b29b21c81 --- /dev/null +++ b/src/IconTodayTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTodayTwoTone as default } diff --git a/src/IconToggleOffOutlined.tsx b/src/IconToggleOffOutlined.tsx new file mode 100644 index 000000000..e52780570 --- /dev/null +++ b/src/IconToggleOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOffOutlined as default } diff --git a/src/IconToggleOffRound.tsx b/src/IconToggleOffRound.tsx new file mode 100644 index 000000000..9728c69ee --- /dev/null +++ b/src/IconToggleOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOffRound as default } diff --git a/src/IconToggleOffSharp.tsx b/src/IconToggleOffSharp.tsx new file mode 100644 index 000000000..fd422cebf --- /dev/null +++ b/src/IconToggleOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOffSharp as default } diff --git a/src/IconToggleOffTwoTone.tsx b/src/IconToggleOffTwoTone.tsx new file mode 100644 index 000000000..3dc780475 --- /dev/null +++ b/src/IconToggleOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconToggleOffTwoTone as default } diff --git a/src/IconToggleOnOutlined.tsx b/src/IconToggleOnOutlined.tsx new file mode 100644 index 000000000..75422b012 --- /dev/null +++ b/src/IconToggleOnOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOnOutlined as default } diff --git a/src/IconToggleOnRound.tsx b/src/IconToggleOnRound.tsx new file mode 100644 index 000000000..cb111093a --- /dev/null +++ b/src/IconToggleOnRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOnRound as default } diff --git a/src/IconToggleOnSharp.tsx b/src/IconToggleOnSharp.tsx new file mode 100644 index 000000000..d6d1a616e --- /dev/null +++ b/src/IconToggleOnSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconToggleOnSharp as default } diff --git a/src/IconToggleOnTwoTone.tsx b/src/IconToggleOnTwoTone.tsx new file mode 100644 index 000000000..ca4b32029 --- /dev/null +++ b/src/IconToggleOnTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconToggleOnTwoTone as default } diff --git a/src/IconTokenOutlined.tsx b/src/IconTokenOutlined.tsx new file mode 100644 index 000000000..c570606a1 --- /dev/null +++ b/src/IconTokenOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTokenOutlined as default } diff --git a/src/IconTokenRound.tsx b/src/IconTokenRound.tsx new file mode 100644 index 000000000..f11b6cf67 --- /dev/null +++ b/src/IconTokenRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTokenRound as default } diff --git a/src/IconTokenSharp.tsx b/src/IconTokenSharp.tsx new file mode 100644 index 000000000..2acf0f0a9 --- /dev/null +++ b/src/IconTokenSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTokenSharp as default } diff --git a/src/IconTokenTwoTone.tsx b/src/IconTokenTwoTone.tsx new file mode 100644 index 000000000..cf547063c --- /dev/null +++ b/src/IconTokenTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTokenTwoTone as default } diff --git a/src/IconTollOutlined.tsx b/src/IconTollOutlined.tsx new file mode 100644 index 000000000..ac2e59a93 --- /dev/null +++ b/src/IconTollOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTollOutlined as default } diff --git a/src/IconTollRound.tsx b/src/IconTollRound.tsx new file mode 100644 index 000000000..6b52d47f8 --- /dev/null +++ b/src/IconTollRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTollRound as default } diff --git a/src/IconTollSharp.tsx b/src/IconTollSharp.tsx new file mode 100644 index 000000000..9d1ab27d3 --- /dev/null +++ b/src/IconTollSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTollSharp as default } diff --git a/src/IconTollTwoTone.tsx b/src/IconTollTwoTone.tsx new file mode 100644 index 000000000..729272471 --- /dev/null +++ b/src/IconTollTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTollTwoTone as default } diff --git a/src/IconTonalityOutlined.tsx b/src/IconTonalityOutlined.tsx new file mode 100644 index 000000000..cb3b968e8 --- /dev/null +++ b/src/IconTonalityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTonalityOutlined as default } diff --git a/src/IconTonalityRound.tsx b/src/IconTonalityRound.tsx new file mode 100644 index 000000000..555f32f04 --- /dev/null +++ b/src/IconTonalityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTonalityRound as default } diff --git a/src/IconTonalitySharp.tsx b/src/IconTonalitySharp.tsx new file mode 100644 index 000000000..6f2b5d234 --- /dev/null +++ b/src/IconTonalitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTonalitySharp as default } diff --git a/src/IconTonalityTwoTone.tsx b/src/IconTonalityTwoTone.tsx new file mode 100644 index 000000000..2b0b16766 --- /dev/null +++ b/src/IconTonalityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTonalityTwoTone as default } diff --git a/src/IconTopicOutlined.tsx b/src/IconTopicOutlined.tsx new file mode 100644 index 000000000..d8ba06f7b --- /dev/null +++ b/src/IconTopicOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTopicOutlined as default } diff --git a/src/IconTopicRound.tsx b/src/IconTopicRound.tsx new file mode 100644 index 000000000..1b3e4fc9e --- /dev/null +++ b/src/IconTopicRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTopicRound as default } diff --git a/src/IconTopicSharp.tsx b/src/IconTopicSharp.tsx new file mode 100644 index 000000000..04e4ee375 --- /dev/null +++ b/src/IconTopicSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTopicSharp as default } diff --git a/src/IconTopicTwoTone.tsx b/src/IconTopicTwoTone.tsx new file mode 100644 index 000000000..bbef5d019 --- /dev/null +++ b/src/IconTopicTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTopicTwoTone as default } diff --git a/src/IconTornadoOutlined.tsx b/src/IconTornadoOutlined.tsx new file mode 100644 index 000000000..214aad06f --- /dev/null +++ b/src/IconTornadoOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTornadoOutlined as default } diff --git a/src/IconTornadoRound.tsx b/src/IconTornadoRound.tsx new file mode 100644 index 000000000..c90c921af --- /dev/null +++ b/src/IconTornadoRound.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + +) + +export { IconTornadoRound as default } diff --git a/src/IconTornadoSharp.tsx b/src/IconTornadoSharp.tsx new file mode 100644 index 000000000..a14886250 --- /dev/null +++ b/src/IconTornadoSharp.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + +) + +export { IconTornadoSharp as default } diff --git a/src/IconTornadoTwoTone.tsx b/src/IconTornadoTwoTone.tsx new file mode 100644 index 000000000..e8881fe46 --- /dev/null +++ b/src/IconTornadoTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTornadoTwoTone as default } diff --git a/src/IconTouchAppOutlined.tsx b/src/IconTouchAppOutlined.tsx new file mode 100644 index 000000000..298803fb7 --- /dev/null +++ b/src/IconTouchAppOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTouchAppOutlined as default } diff --git a/src/IconTouchAppRound.tsx b/src/IconTouchAppRound.tsx new file mode 100644 index 000000000..2925dc823 --- /dev/null +++ b/src/IconTouchAppRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTouchAppRound as default } diff --git a/src/IconTouchAppSharp.tsx b/src/IconTouchAppSharp.tsx new file mode 100644 index 000000000..2346c0477 --- /dev/null +++ b/src/IconTouchAppSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconTouchAppSharp as default } diff --git a/src/IconTouchAppTwoTone.tsx b/src/IconTouchAppTwoTone.tsx new file mode 100644 index 000000000..5bca1db16 --- /dev/null +++ b/src/IconTouchAppTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTouchAppTwoTone as default } diff --git a/src/IconTourOutlined.tsx b/src/IconTourOutlined.tsx new file mode 100644 index 000000000..91417b7ee --- /dev/null +++ b/src/IconTourOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTourOutlined as default } diff --git a/src/IconTourRound.tsx b/src/IconTourRound.tsx new file mode 100644 index 000000000..9a8c4ae2d --- /dev/null +++ b/src/IconTourRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTourRound as default } diff --git a/src/IconTourSharp.tsx b/src/IconTourSharp.tsx new file mode 100644 index 000000000..f2ad978f9 --- /dev/null +++ b/src/IconTourSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTourSharp as default } diff --git a/src/IconTourTwoTone.tsx b/src/IconTourTwoTone.tsx new file mode 100644 index 000000000..783f615d6 --- /dev/null +++ b/src/IconTourTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTourTwoTone as default } diff --git a/src/IconToysOutlined.tsx b/src/IconToysOutlined.tsx new file mode 100644 index 000000000..b56b07909 --- /dev/null +++ b/src/IconToysOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconToysOutlined as default } diff --git a/src/IconToysRound.tsx b/src/IconToysRound.tsx new file mode 100644 index 000000000..defb37271 --- /dev/null +++ b/src/IconToysRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconToysRound as default } diff --git a/src/IconToysSharp.tsx b/src/IconToysSharp.tsx new file mode 100644 index 000000000..05c6466ec --- /dev/null +++ b/src/IconToysSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconToysSharp as default } diff --git a/src/IconToysTwoTone.tsx b/src/IconToysTwoTone.tsx new file mode 100644 index 000000000..dbc63fe3f --- /dev/null +++ b/src/IconToysTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconToysTwoTone as default } diff --git a/src/IconTrackChangesOutlined.tsx b/src/IconTrackChangesOutlined.tsx new file mode 100644 index 000000000..04b1b4e4c --- /dev/null +++ b/src/IconTrackChangesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrackChangesOutlined as default } diff --git a/src/IconTrackChangesRound.tsx b/src/IconTrackChangesRound.tsx new file mode 100644 index 000000000..0cb1b23f8 --- /dev/null +++ b/src/IconTrackChangesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrackChangesRound as default } diff --git a/src/IconTrackChangesSharp.tsx b/src/IconTrackChangesSharp.tsx new file mode 100644 index 000000000..e3bb8ae18 --- /dev/null +++ b/src/IconTrackChangesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrackChangesSharp as default } diff --git a/src/IconTrackChangesTwoTone.tsx b/src/IconTrackChangesTwoTone.tsx new file mode 100644 index 000000000..730ba6059 --- /dev/null +++ b/src/IconTrackChangesTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrackChangesTwoTone as default } diff --git a/src/IconTrafficOutlined.tsx b/src/IconTrafficOutlined.tsx new file mode 100644 index 000000000..3a14b672d --- /dev/null +++ b/src/IconTrafficOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrafficOutlined as default } diff --git a/src/IconTrafficRound.tsx b/src/IconTrafficRound.tsx new file mode 100644 index 000000000..5d173420c --- /dev/null +++ b/src/IconTrafficRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrafficRound as default } diff --git a/src/IconTrafficSharp.tsx b/src/IconTrafficSharp.tsx new file mode 100644 index 000000000..0d21157db --- /dev/null +++ b/src/IconTrafficSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrafficSharp as default } diff --git a/src/IconTrafficTwoTone.tsx b/src/IconTrafficTwoTone.tsx new file mode 100644 index 000000000..3811baa52 --- /dev/null +++ b/src/IconTrafficTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTrafficTwoTone as default } diff --git a/src/IconTrainOutlined.tsx b/src/IconTrainOutlined.tsx new file mode 100644 index 000000000..7a26466b0 --- /dev/null +++ b/src/IconTrainOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTrainOutlined as default } diff --git a/src/IconTrainRound.tsx b/src/IconTrainRound.tsx new file mode 100644 index 000000000..1fc99baf2 --- /dev/null +++ b/src/IconTrainRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrainRound as default } diff --git a/src/IconTrainSharp.tsx b/src/IconTrainSharp.tsx new file mode 100644 index 000000000..42bfa1d4a --- /dev/null +++ b/src/IconTrainSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrainSharp as default } diff --git a/src/IconTrainTwoTone.tsx b/src/IconTrainTwoTone.tsx new file mode 100644 index 000000000..4b4ddcd5b --- /dev/null +++ b/src/IconTrainTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTrainTwoTone as default } diff --git a/src/IconTramOutlined.tsx b/src/IconTramOutlined.tsx new file mode 100644 index 000000000..a5684402e --- /dev/null +++ b/src/IconTramOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTramOutlined as default } diff --git a/src/IconTramRound.tsx b/src/IconTramRound.tsx new file mode 100644 index 000000000..8353cfd05 --- /dev/null +++ b/src/IconTramRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTramRound as default } diff --git a/src/IconTramSharp.tsx b/src/IconTramSharp.tsx new file mode 100644 index 000000000..d146f8248 --- /dev/null +++ b/src/IconTramSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTramSharp as default } diff --git a/src/IconTramTwoTone.tsx b/src/IconTramTwoTone.tsx new file mode 100644 index 000000000..3f3d614da --- /dev/null +++ b/src/IconTramTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTramTwoTone as default } diff --git a/src/IconTranscribeOutlined.tsx b/src/IconTranscribeOutlined.tsx new file mode 100644 index 000000000..dc71f6307 --- /dev/null +++ b/src/IconTranscribeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTranscribeOutlined as default } diff --git a/src/IconTranscribeRound.tsx b/src/IconTranscribeRound.tsx new file mode 100644 index 000000000..4a21bd44d --- /dev/null +++ b/src/IconTranscribeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTranscribeRound as default } diff --git a/src/IconTranscribeSharp.tsx b/src/IconTranscribeSharp.tsx new file mode 100644 index 000000000..f0b196dea --- /dev/null +++ b/src/IconTranscribeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTranscribeSharp as default } diff --git a/src/IconTranscribeTwoTone.tsx b/src/IconTranscribeTwoTone.tsx new file mode 100644 index 000000000..ab1cbd141 --- /dev/null +++ b/src/IconTranscribeTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTranscribeTwoTone as default } diff --git a/src/IconTransferWithinAStationOutlined.tsx b/src/IconTransferWithinAStationOutlined.tsx new file mode 100644 index 000000000..28e152702 --- /dev/null +++ b/src/IconTransferWithinAStationOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransferWithinAStationOutlined as default } diff --git a/src/IconTransferWithinAStationRound.tsx b/src/IconTransferWithinAStationRound.tsx new file mode 100644 index 000000000..342e75f42 --- /dev/null +++ b/src/IconTransferWithinAStationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransferWithinAStationRound as default } diff --git a/src/IconTransferWithinAStationSharp.tsx b/src/IconTransferWithinAStationSharp.tsx new file mode 100644 index 000000000..1a3cc67d8 --- /dev/null +++ b/src/IconTransferWithinAStationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransferWithinAStationSharp as default } diff --git a/src/IconTransferWithinAStationTwoTone.tsx b/src/IconTransferWithinAStationTwoTone.tsx new file mode 100644 index 000000000..e8b612bd7 --- /dev/null +++ b/src/IconTransferWithinAStationTwoTone.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationTwoTone: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransferWithinAStationTwoTone as default } diff --git a/src/IconTransformOutlined.tsx b/src/IconTransformOutlined.tsx new file mode 100644 index 000000000..a9fb95370 --- /dev/null +++ b/src/IconTransformOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransformOutlined as default } diff --git a/src/IconTransformRound.tsx b/src/IconTransformRound.tsx new file mode 100644 index 000000000..fc4b0ba2f --- /dev/null +++ b/src/IconTransformRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransformRound as default } diff --git a/src/IconTransformSharp.tsx b/src/IconTransformSharp.tsx new file mode 100644 index 000000000..26a65df57 --- /dev/null +++ b/src/IconTransformSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransformSharp as default } diff --git a/src/IconTransformTwoTone.tsx b/src/IconTransformTwoTone.tsx new file mode 100644 index 000000000..8dba9521f --- /dev/null +++ b/src/IconTransformTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransformTwoTone as default } diff --git a/src/IconTransgenderOutlined.tsx b/src/IconTransgenderOutlined.tsx new file mode 100644 index 000000000..1f1dda527 --- /dev/null +++ b/src/IconTransgenderOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransgenderOutlined as default } diff --git a/src/IconTransgenderRound.tsx b/src/IconTransgenderRound.tsx new file mode 100644 index 000000000..2b2622715 --- /dev/null +++ b/src/IconTransgenderRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransgenderRound as default } diff --git a/src/IconTransgenderSharp.tsx b/src/IconTransgenderSharp.tsx new file mode 100644 index 000000000..210f45336 --- /dev/null +++ b/src/IconTransgenderSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransgenderSharp as default } diff --git a/src/IconTransgenderTwoTone.tsx b/src/IconTransgenderTwoTone.tsx new file mode 100644 index 000000000..66be4fbb6 --- /dev/null +++ b/src/IconTransgenderTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransgenderTwoTone as default } diff --git a/src/IconTransitEnterexitOutlined.tsx b/src/IconTransitEnterexitOutlined.tsx new file mode 100644 index 000000000..4c54df74d --- /dev/null +++ b/src/IconTransitEnterexitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransitEnterexitOutlined as default } diff --git a/src/IconTransitEnterexitRound.tsx b/src/IconTransitEnterexitRound.tsx new file mode 100644 index 000000000..ce82d6a91 --- /dev/null +++ b/src/IconTransitEnterexitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransitEnterexitRound as default } diff --git a/src/IconTransitEnterexitSharp.tsx b/src/IconTransitEnterexitSharp.tsx new file mode 100644 index 000000000..acb04df54 --- /dev/null +++ b/src/IconTransitEnterexitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransitEnterexitSharp as default } diff --git a/src/IconTransitEnterexitTwoTone.tsx b/src/IconTransitEnterexitTwoTone.tsx new file mode 100644 index 000000000..89b75ecbc --- /dev/null +++ b/src/IconTransitEnterexitTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTransitEnterexitTwoTone as default } diff --git a/src/IconTranslateOutlined.tsx b/src/IconTranslateOutlined.tsx new file mode 100644 index 000000000..17672d0c4 --- /dev/null +++ b/src/IconTranslateOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTranslateOutlined as default } diff --git a/src/IconTranslateRound.tsx b/src/IconTranslateRound.tsx new file mode 100644 index 000000000..3982f291a --- /dev/null +++ b/src/IconTranslateRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTranslateRound as default } diff --git a/src/IconTranslateSharp.tsx b/src/IconTranslateSharp.tsx new file mode 100644 index 000000000..5bc405809 --- /dev/null +++ b/src/IconTranslateSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTranslateSharp as default } diff --git a/src/IconTranslateTwoTone.tsx b/src/IconTranslateTwoTone.tsx new file mode 100644 index 000000000..ee30976d0 --- /dev/null +++ b/src/IconTranslateTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTranslateTwoTone as default } diff --git a/src/IconTravelExploreOutlined.tsx b/src/IconTravelExploreOutlined.tsx new file mode 100644 index 000000000..d2f184298 --- /dev/null +++ b/src/IconTravelExploreOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTravelExploreOutlined as default } diff --git a/src/IconTravelExploreRound.tsx b/src/IconTravelExploreRound.tsx new file mode 100644 index 000000000..378bcd371 --- /dev/null +++ b/src/IconTravelExploreRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTravelExploreRound as default } diff --git a/src/IconTravelExploreSharp.tsx b/src/IconTravelExploreSharp.tsx new file mode 100644 index 000000000..cd32bee00 --- /dev/null +++ b/src/IconTravelExploreSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTravelExploreSharp as default } diff --git a/src/IconTravelExploreTwoTone.tsx b/src/IconTravelExploreTwoTone.tsx new file mode 100644 index 000000000..1dc4e3521 --- /dev/null +++ b/src/IconTravelExploreTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTravelExploreTwoTone as default } diff --git a/src/IconTrendingDownOutlined.tsx b/src/IconTrendingDownOutlined.tsx new file mode 100644 index 000000000..cd7460ee3 --- /dev/null +++ b/src/IconTrendingDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingDownOutlined as default } diff --git a/src/IconTrendingDownRound.tsx b/src/IconTrendingDownRound.tsx new file mode 100644 index 000000000..ad37e5918 --- /dev/null +++ b/src/IconTrendingDownRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingDownRound as default } diff --git a/src/IconTrendingDownSharp.tsx b/src/IconTrendingDownSharp.tsx new file mode 100644 index 000000000..b02d820ce --- /dev/null +++ b/src/IconTrendingDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingDownSharp as default } diff --git a/src/IconTrendingDownTwoTone.tsx b/src/IconTrendingDownTwoTone.tsx new file mode 100644 index 000000000..196034082 --- /dev/null +++ b/src/IconTrendingDownTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingDownTwoTone as default } diff --git a/src/IconTrendingFlatOutlined.tsx b/src/IconTrendingFlatOutlined.tsx new file mode 100644 index 000000000..52fe98642 --- /dev/null +++ b/src/IconTrendingFlatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingFlatOutlined as default } diff --git a/src/IconTrendingFlatRound.tsx b/src/IconTrendingFlatRound.tsx new file mode 100644 index 000000000..41b928953 --- /dev/null +++ b/src/IconTrendingFlatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingFlatRound as default } diff --git a/src/IconTrendingFlatSharp.tsx b/src/IconTrendingFlatSharp.tsx new file mode 100644 index 000000000..83b8c493d --- /dev/null +++ b/src/IconTrendingFlatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingFlatSharp as default } diff --git a/src/IconTrendingFlatTwoTone.tsx b/src/IconTrendingFlatTwoTone.tsx new file mode 100644 index 000000000..ca0145fa5 --- /dev/null +++ b/src/IconTrendingFlatTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingFlatTwoTone as default } diff --git a/src/IconTrendingUpOutlined.tsx b/src/IconTrendingUpOutlined.tsx new file mode 100644 index 000000000..bfe429810 --- /dev/null +++ b/src/IconTrendingUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingUpOutlined as default } diff --git a/src/IconTrendingUpRound.tsx b/src/IconTrendingUpRound.tsx new file mode 100644 index 000000000..3a17001ca --- /dev/null +++ b/src/IconTrendingUpRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingUpRound as default } diff --git a/src/IconTrendingUpSharp.tsx b/src/IconTrendingUpSharp.tsx new file mode 100644 index 000000000..e9870f135 --- /dev/null +++ b/src/IconTrendingUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingUpSharp as default } diff --git a/src/IconTrendingUpTwoTone.tsx b/src/IconTrendingUpTwoTone.tsx new file mode 100644 index 000000000..f934cec3f --- /dev/null +++ b/src/IconTrendingUpTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTrendingUpTwoTone as default } diff --git a/src/IconTripOriginOutlined.tsx b/src/IconTripOriginOutlined.tsx new file mode 100644 index 000000000..b8a8119e5 --- /dev/null +++ b/src/IconTripOriginOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTripOriginOutlined as default } diff --git a/src/IconTripOriginRound.tsx b/src/IconTripOriginRound.tsx new file mode 100644 index 000000000..c49378b79 --- /dev/null +++ b/src/IconTripOriginRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTripOriginRound as default } diff --git a/src/IconTripOriginSharp.tsx b/src/IconTripOriginSharp.tsx new file mode 100644 index 000000000..eaab97ba8 --- /dev/null +++ b/src/IconTripOriginSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTripOriginSharp as default } diff --git a/src/IconTripOriginTwoTone.tsx b/src/IconTripOriginTwoTone.tsx new file mode 100644 index 000000000..cf11b61fd --- /dev/null +++ b/src/IconTripOriginTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTripOriginTwoTone as default } diff --git a/src/IconTroubleshootOutlined.tsx b/src/IconTroubleshootOutlined.tsx new file mode 100644 index 000000000..6a677b4a9 --- /dev/null +++ b/src/IconTroubleshootOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTroubleshootOutlined as default } diff --git a/src/IconTroubleshootRound.tsx b/src/IconTroubleshootRound.tsx new file mode 100644 index 000000000..d949bb582 --- /dev/null +++ b/src/IconTroubleshootRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTroubleshootRound as default } diff --git a/src/IconTroubleshootSharp.tsx b/src/IconTroubleshootSharp.tsx new file mode 100644 index 000000000..4257b46fa --- /dev/null +++ b/src/IconTroubleshootSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTroubleshootSharp as default } diff --git a/src/IconTroubleshootTwoTone.tsx b/src/IconTroubleshootTwoTone.tsx new file mode 100644 index 000000000..afbd95de0 --- /dev/null +++ b/src/IconTroubleshootTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTroubleshootTwoTone as default } diff --git a/src/IconTryOutlined.tsx b/src/IconTryOutlined.tsx new file mode 100644 index 000000000..3635bd138 --- /dev/null +++ b/src/IconTryOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTryOutlined as default } diff --git a/src/IconTryRound.tsx b/src/IconTryRound.tsx new file mode 100644 index 000000000..067fcb364 --- /dev/null +++ b/src/IconTryRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTryRound as default } diff --git a/src/IconTrySharp.tsx b/src/IconTrySharp.tsx new file mode 100644 index 000000000..17ec485d9 --- /dev/null +++ b/src/IconTrySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTrySharp as default } diff --git a/src/IconTryTwoTone.tsx b/src/IconTryTwoTone.tsx new file mode 100644 index 000000000..768a63711 --- /dev/null +++ b/src/IconTryTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTryTwoTone as default } diff --git a/src/IconTsunamiOutlined.tsx b/src/IconTsunamiOutlined.tsx new file mode 100644 index 000000000..517d2c6ec --- /dev/null +++ b/src/IconTsunamiOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTsunamiOutlined as default } diff --git a/src/IconTsunamiRound.tsx b/src/IconTsunamiRound.tsx new file mode 100644 index 000000000..412d3156d --- /dev/null +++ b/src/IconTsunamiRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTsunamiRound as default } diff --git a/src/IconTsunamiSharp.tsx b/src/IconTsunamiSharp.tsx new file mode 100644 index 000000000..ed6be8afd --- /dev/null +++ b/src/IconTsunamiSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconTsunamiSharp as default } diff --git a/src/IconTsunamiTwoTone.tsx b/src/IconTsunamiTwoTone.tsx new file mode 100644 index 000000000..ca274afef --- /dev/null +++ b/src/IconTsunamiTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTsunamiTwoTone as default } diff --git a/src/IconTtyOutlined.tsx b/src/IconTtyOutlined.tsx new file mode 100644 index 000000000..2523ae520 --- /dev/null +++ b/src/IconTtyOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTtyOutlined as default } diff --git a/src/IconTtyRound.tsx b/src/IconTtyRound.tsx new file mode 100644 index 000000000..a3a2f7f7c --- /dev/null +++ b/src/IconTtyRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTtyRound as default } diff --git a/src/IconTtySharp.tsx b/src/IconTtySharp.tsx new file mode 100644 index 000000000..63c4a7ff3 --- /dev/null +++ b/src/IconTtySharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTtySharp as default } diff --git a/src/IconTtyTwoTone.tsx b/src/IconTtyTwoTone.tsx new file mode 100644 index 000000000..c70d2702e --- /dev/null +++ b/src/IconTtyTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconTtyTwoTone as default } diff --git a/src/IconTuneOutlined.tsx b/src/IconTuneOutlined.tsx new file mode 100644 index 000000000..b736b2010 --- /dev/null +++ b/src/IconTuneOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTuneOutlined as default } diff --git a/src/IconTuneRound.tsx b/src/IconTuneRound.tsx new file mode 100644 index 000000000..feb794975 --- /dev/null +++ b/src/IconTuneRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTuneRound as default } diff --git a/src/IconTuneSharp.tsx b/src/IconTuneSharp.tsx new file mode 100644 index 000000000..e3efcccba --- /dev/null +++ b/src/IconTuneSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTuneSharp as default } diff --git a/src/IconTuneTwoTone.tsx b/src/IconTuneTwoTone.tsx new file mode 100644 index 000000000..a23d4b88b --- /dev/null +++ b/src/IconTuneTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTuneTwoTone as default } diff --git a/src/IconTungstenOutlined.tsx b/src/IconTungstenOutlined.tsx new file mode 100644 index 000000000..1fb8020b8 --- /dev/null +++ b/src/IconTungstenOutlined.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTungstenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTungstenOutlined as default } diff --git a/src/IconTungstenRound.tsx b/src/IconTungstenRound.tsx new file mode 100644 index 000000000..b99e7f63a --- /dev/null +++ b/src/IconTungstenRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTungstenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTungstenRound as default } diff --git a/src/IconTungstenSharp.tsx b/src/IconTungstenSharp.tsx new file mode 100644 index 000000000..0779a9d40 --- /dev/null +++ b/src/IconTungstenSharp.tsx @@ -0,0 +1,40 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTungstenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconTungstenSharp as default } diff --git a/src/IconTungstenTwoTone.tsx b/src/IconTungstenTwoTone.tsx new file mode 100644 index 000000000..eaaabd101 --- /dev/null +++ b/src/IconTungstenTwoTone.tsx @@ -0,0 +1,44 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTungstenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconTungstenTwoTone as default } diff --git a/src/IconTurnLeftOutlined.tsx b/src/IconTurnLeftOutlined.tsx new file mode 100644 index 000000000..cf16c0838 --- /dev/null +++ b/src/IconTurnLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnLeftOutlined as default } diff --git a/src/IconTurnLeftRound.tsx b/src/IconTurnLeftRound.tsx new file mode 100644 index 000000000..1d2d722f6 --- /dev/null +++ b/src/IconTurnLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnLeftRound as default } diff --git a/src/IconTurnLeftSharp.tsx b/src/IconTurnLeftSharp.tsx new file mode 100644 index 000000000..27ebcd491 --- /dev/null +++ b/src/IconTurnLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnLeftSharp as default } diff --git a/src/IconTurnLeftTwoTone.tsx b/src/IconTurnLeftTwoTone.tsx new file mode 100644 index 000000000..f1af17f3f --- /dev/null +++ b/src/IconTurnLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnLeftTwoTone as default } diff --git a/src/IconTurnRightOutlined.tsx b/src/IconTurnRightOutlined.tsx new file mode 100644 index 000000000..bf65bdf3a --- /dev/null +++ b/src/IconTurnRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnRightOutlined as default } diff --git a/src/IconTurnRightRound.tsx b/src/IconTurnRightRound.tsx new file mode 100644 index 000000000..c185e3a0e --- /dev/null +++ b/src/IconTurnRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnRightRound as default } diff --git a/src/IconTurnRightSharp.tsx b/src/IconTurnRightSharp.tsx new file mode 100644 index 000000000..661678b67 --- /dev/null +++ b/src/IconTurnRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnRightSharp as default } diff --git a/src/IconTurnRightTwoTone.tsx b/src/IconTurnRightTwoTone.tsx new file mode 100644 index 000000000..04243a73b --- /dev/null +++ b/src/IconTurnRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnRightTwoTone as default } diff --git a/src/IconTurnSharpLeftOutlined.tsx b/src/IconTurnSharpLeftOutlined.tsx new file mode 100644 index 000000000..d12f1267d --- /dev/null +++ b/src/IconTurnSharpLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpLeftOutlined as default } diff --git a/src/IconTurnSharpLeftRound.tsx b/src/IconTurnSharpLeftRound.tsx new file mode 100644 index 000000000..ba4db0d6a --- /dev/null +++ b/src/IconTurnSharpLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnSharpLeftRound as default } diff --git a/src/IconTurnSharpLeftSharp.tsx b/src/IconTurnSharpLeftSharp.tsx new file mode 100644 index 000000000..1530f62d2 --- /dev/null +++ b/src/IconTurnSharpLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpLeftSharp as default } diff --git a/src/IconTurnSharpLeftTwoTone.tsx b/src/IconTurnSharpLeftTwoTone.tsx new file mode 100644 index 000000000..91a17fbfb --- /dev/null +++ b/src/IconTurnSharpLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpLeftTwoTone as default } diff --git a/src/IconTurnSharpRightOutlined.tsx b/src/IconTurnSharpRightOutlined.tsx new file mode 100644 index 000000000..0cf87462e --- /dev/null +++ b/src/IconTurnSharpRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpRightOutlined as default } diff --git a/src/IconTurnSharpRightRound.tsx b/src/IconTurnSharpRightRound.tsx new file mode 100644 index 000000000..750954cb6 --- /dev/null +++ b/src/IconTurnSharpRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnSharpRightRound as default } diff --git a/src/IconTurnSharpRightSharp.tsx b/src/IconTurnSharpRightSharp.tsx new file mode 100644 index 000000000..bc5b3be62 --- /dev/null +++ b/src/IconTurnSharpRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpRightSharp as default } diff --git a/src/IconTurnSharpRightTwoTone.tsx b/src/IconTurnSharpRightTwoTone.tsx new file mode 100644 index 000000000..68797db14 --- /dev/null +++ b/src/IconTurnSharpRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSharpRightTwoTone as default } diff --git a/src/IconTurnSlightLeftOutlined.tsx b/src/IconTurnSlightLeftOutlined.tsx new file mode 100644 index 000000000..7677ca639 --- /dev/null +++ b/src/IconTurnSlightLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightLeftOutlined as default } diff --git a/src/IconTurnSlightLeftRound.tsx b/src/IconTurnSlightLeftRound.tsx new file mode 100644 index 000000000..1fa90b7ea --- /dev/null +++ b/src/IconTurnSlightLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnSlightLeftRound as default } diff --git a/src/IconTurnSlightLeftSharp.tsx b/src/IconTurnSlightLeftSharp.tsx new file mode 100644 index 000000000..9c21a5541 --- /dev/null +++ b/src/IconTurnSlightLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightLeftSharp as default } diff --git a/src/IconTurnSlightLeftTwoTone.tsx b/src/IconTurnSlightLeftTwoTone.tsx new file mode 100644 index 000000000..fec9f1dd7 --- /dev/null +++ b/src/IconTurnSlightLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightLeftTwoTone as default } diff --git a/src/IconTurnSlightRightOutlined.tsx b/src/IconTurnSlightRightOutlined.tsx new file mode 100644 index 000000000..36d071d1a --- /dev/null +++ b/src/IconTurnSlightRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightRightOutlined as default } diff --git a/src/IconTurnSlightRightRound.tsx b/src/IconTurnSlightRightRound.tsx new file mode 100644 index 000000000..674cd6213 --- /dev/null +++ b/src/IconTurnSlightRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconTurnSlightRightRound as default } diff --git a/src/IconTurnSlightRightSharp.tsx b/src/IconTurnSlightRightSharp.tsx new file mode 100644 index 000000000..aebf3ea9e --- /dev/null +++ b/src/IconTurnSlightRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightRightSharp as default } diff --git a/src/IconTurnSlightRightTwoTone.tsx b/src/IconTurnSlightRightTwoTone.tsx new file mode 100644 index 000000000..4c5a5e17d --- /dev/null +++ b/src/IconTurnSlightRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconTurnSlightRightTwoTone as default } diff --git a/src/IconTurnedInNotOutlined.tsx b/src/IconTurnedInNotOutlined.tsx new file mode 100644 index 000000000..36c8c7ca1 --- /dev/null +++ b/src/IconTurnedInNotOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInNotOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInNotOutlined as default } diff --git a/src/IconTurnedInNotRound.tsx b/src/IconTurnedInNotRound.tsx new file mode 100644 index 000000000..c9a113880 --- /dev/null +++ b/src/IconTurnedInNotRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInNotRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInNotRound as default } diff --git a/src/IconTurnedInNotSharp.tsx b/src/IconTurnedInNotSharp.tsx new file mode 100644 index 000000000..7543f3055 --- /dev/null +++ b/src/IconTurnedInNotSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInNotSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInNotSharp as default } diff --git a/src/IconTurnedInNotTwoTone.tsx b/src/IconTurnedInNotTwoTone.tsx new file mode 100644 index 000000000..cd66e8bff --- /dev/null +++ b/src/IconTurnedInNotTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInNotTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInNotTwoTone as default } diff --git a/src/IconTurnedInOutlined.tsx b/src/IconTurnedInOutlined.tsx new file mode 100644 index 000000000..32b15f835 --- /dev/null +++ b/src/IconTurnedInOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInOutlined as default } diff --git a/src/IconTurnedInRound.tsx b/src/IconTurnedInRound.tsx new file mode 100644 index 000000000..cbafe9781 --- /dev/null +++ b/src/IconTurnedInRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInRound as default } diff --git a/src/IconTurnedInSharp.tsx b/src/IconTurnedInSharp.tsx new file mode 100644 index 000000000..9bdb870b0 --- /dev/null +++ b/src/IconTurnedInSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTurnedInSharp as default } diff --git a/src/IconTurnedInTwoTone.tsx b/src/IconTurnedInTwoTone.tsx new file mode 100644 index 000000000..ca620d745 --- /dev/null +++ b/src/IconTurnedInTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnedInTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTurnedInTwoTone as default } diff --git a/src/IconTvOffOutlined.tsx b/src/IconTvOffOutlined.tsx new file mode 100644 index 000000000..11ba6e4a4 --- /dev/null +++ b/src/IconTvOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTvOffOutlined as default } diff --git a/src/IconTvOffRound.tsx b/src/IconTvOffRound.tsx new file mode 100644 index 000000000..b0181c377 --- /dev/null +++ b/src/IconTvOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTvOffRound as default } diff --git a/src/IconTvOffSharp.tsx b/src/IconTvOffSharp.tsx new file mode 100644 index 000000000..a31c012d7 --- /dev/null +++ b/src/IconTvOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTvOffSharp as default } diff --git a/src/IconTvOffTwoTone.tsx b/src/IconTvOffTwoTone.tsx new file mode 100644 index 000000000..c2a9672c8 --- /dev/null +++ b/src/IconTvOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTvOffTwoTone as default } diff --git a/src/IconTvOutlined.tsx b/src/IconTvOutlined.tsx new file mode 100644 index 000000000..eb235fbdb --- /dev/null +++ b/src/IconTvOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTvOutlined as default } diff --git a/src/IconTvRound.tsx b/src/IconTvRound.tsx new file mode 100644 index 000000000..def3e2432 --- /dev/null +++ b/src/IconTvRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvRound as default } diff --git a/src/IconTvSharp.tsx b/src/IconTvSharp.tsx new file mode 100644 index 000000000..21bd5fd38 --- /dev/null +++ b/src/IconTvSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconTvSharp as default } diff --git a/src/IconTvTwoTone.tsx b/src/IconTvTwoTone.tsx new file mode 100644 index 000000000..2ec7869af --- /dev/null +++ b/src/IconTvTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconTvTwoTone as default } diff --git a/src/IconTwoWheelerOutlined.tsx b/src/IconTwoWheelerOutlined.tsx new file mode 100644 index 000000000..e603d4c35 --- /dev/null +++ b/src/IconTwoWheelerOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTwoWheelerOutlined as default } diff --git a/src/IconTwoWheelerRound.tsx b/src/IconTwoWheelerRound.tsx new file mode 100644 index 000000000..152eb65a4 --- /dev/null +++ b/src/IconTwoWheelerRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTwoWheelerRound as default } diff --git a/src/IconTwoWheelerSharp.tsx b/src/IconTwoWheelerSharp.tsx new file mode 100644 index 000000000..63792b0e8 --- /dev/null +++ b/src/IconTwoWheelerSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTwoWheelerSharp as default } diff --git a/src/IconTwoWheelerTwoTone.tsx b/src/IconTwoWheelerTwoTone.tsx new file mode 100644 index 000000000..1603c9ebf --- /dev/null +++ b/src/IconTwoWheelerTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconTwoWheelerTwoTone as default } diff --git a/src/IconTypeSpecimenOutlined.tsx b/src/IconTypeSpecimenOutlined.tsx new file mode 100644 index 000000000..08c2fbeaf --- /dev/null +++ b/src/IconTypeSpecimenOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTypeSpecimenOutlined as default } diff --git a/src/IconTypeSpecimenRound.tsx b/src/IconTypeSpecimenRound.tsx new file mode 100644 index 000000000..5906a3d58 --- /dev/null +++ b/src/IconTypeSpecimenRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconTypeSpecimenRound as default } diff --git a/src/IconTypeSpecimenSharp.tsx b/src/IconTypeSpecimenSharp.tsx new file mode 100644 index 000000000..946dd1a87 --- /dev/null +++ b/src/IconTypeSpecimenSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconTypeSpecimenSharp as default } diff --git a/src/IconTypeSpecimenTwoTone.tsx b/src/IconTypeSpecimenTwoTone.tsx new file mode 100644 index 000000000..e9416ab05 --- /dev/null +++ b/src/IconTypeSpecimenTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconTypeSpecimenTwoTone as default } diff --git a/src/IconUTurnLeftOutlined.tsx b/src/IconUTurnLeftOutlined.tsx new file mode 100644 index 000000000..f8e111d32 --- /dev/null +++ b/src/IconUTurnLeftOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnLeftOutlined as default } diff --git a/src/IconUTurnLeftRound.tsx b/src/IconUTurnLeftRound.tsx new file mode 100644 index 000000000..46e2b3cbb --- /dev/null +++ b/src/IconUTurnLeftRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconUTurnLeftRound as default } diff --git a/src/IconUTurnLeftSharp.tsx b/src/IconUTurnLeftSharp.tsx new file mode 100644 index 000000000..aced90666 --- /dev/null +++ b/src/IconUTurnLeftSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnLeftSharp as default } diff --git a/src/IconUTurnLeftTwoTone.tsx b/src/IconUTurnLeftTwoTone.tsx new file mode 100644 index 000000000..ce9cc776c --- /dev/null +++ b/src/IconUTurnLeftTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnLeftTwoTone as default } diff --git a/src/IconUTurnRightOutlined.tsx b/src/IconUTurnRightOutlined.tsx new file mode 100644 index 000000000..081229d69 --- /dev/null +++ b/src/IconUTurnRightOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnRightOutlined as default } diff --git a/src/IconUTurnRightRound.tsx b/src/IconUTurnRightRound.tsx new file mode 100644 index 000000000..966ade3bc --- /dev/null +++ b/src/IconUTurnRightRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconUTurnRightRound as default } diff --git a/src/IconUTurnRightSharp.tsx b/src/IconUTurnRightSharp.tsx new file mode 100644 index 000000000..81dc322c0 --- /dev/null +++ b/src/IconUTurnRightSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnRightSharp as default } diff --git a/src/IconUTurnRightTwoTone.tsx b/src/IconUTurnRightTwoTone.tsx new file mode 100644 index 000000000..efceb22e4 --- /dev/null +++ b/src/IconUTurnRightTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUTurnRightTwoTone as default } diff --git a/src/IconUmbrellaOutlined.tsx b/src/IconUmbrellaOutlined.tsx new file mode 100644 index 000000000..26d9e4221 --- /dev/null +++ b/src/IconUmbrellaOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUmbrellaOutlined as default } diff --git a/src/IconUmbrellaRound.tsx b/src/IconUmbrellaRound.tsx new file mode 100644 index 000000000..93a4fb721 --- /dev/null +++ b/src/IconUmbrellaRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUmbrellaRound as default } diff --git a/src/IconUmbrellaSharp.tsx b/src/IconUmbrellaSharp.tsx new file mode 100644 index 000000000..69499fe5d --- /dev/null +++ b/src/IconUmbrellaSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUmbrellaSharp as default } diff --git a/src/IconUmbrellaTwoTone.tsx b/src/IconUmbrellaTwoTone.tsx new file mode 100644 index 000000000..fb884d61a --- /dev/null +++ b/src/IconUmbrellaTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconUmbrellaTwoTone as default } diff --git a/src/IconUnarchiveOutlined.tsx b/src/IconUnarchiveOutlined.tsx new file mode 100644 index 000000000..72ed92376 --- /dev/null +++ b/src/IconUnarchiveOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnarchiveOutlined as default } diff --git a/src/IconUnarchiveRound.tsx b/src/IconUnarchiveRound.tsx new file mode 100644 index 000000000..80ca1afbc --- /dev/null +++ b/src/IconUnarchiveRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnarchiveRound as default } diff --git a/src/IconUnarchiveSharp.tsx b/src/IconUnarchiveSharp.tsx new file mode 100644 index 000000000..aba9dba93 --- /dev/null +++ b/src/IconUnarchiveSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnarchiveSharp as default } diff --git a/src/IconUnarchiveTwoTone.tsx b/src/IconUnarchiveTwoTone.tsx new file mode 100644 index 000000000..82bb1be8c --- /dev/null +++ b/src/IconUnarchiveTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconUnarchiveTwoTone as default } diff --git a/src/IconUndoOutlined.tsx b/src/IconUndoOutlined.tsx new file mode 100644 index 000000000..6f4911e6c --- /dev/null +++ b/src/IconUndoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUndoOutlined as default } diff --git a/src/IconUndoRound.tsx b/src/IconUndoRound.tsx new file mode 100644 index 000000000..8fd3f1202 --- /dev/null +++ b/src/IconUndoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUndoRound as default } diff --git a/src/IconUndoSharp.tsx b/src/IconUndoSharp.tsx new file mode 100644 index 000000000..3c51985ab --- /dev/null +++ b/src/IconUndoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUndoSharp as default } diff --git a/src/IconUndoTwoTone.tsx b/src/IconUndoTwoTone.tsx new file mode 100644 index 000000000..77e7441b5 --- /dev/null +++ b/src/IconUndoTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUndoTwoTone as default } diff --git a/src/IconUnfoldLessDoubleOutlined.tsx b/src/IconUnfoldLessDoubleOutlined.tsx new file mode 100644 index 000000000..37705ac25 --- /dev/null +++ b/src/IconUnfoldLessDoubleOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUnfoldLessDoubleOutlined as default } diff --git a/src/IconUnfoldLessDoubleRound.tsx b/src/IconUnfoldLessDoubleRound.tsx new file mode 100644 index 000000000..5f201de05 --- /dev/null +++ b/src/IconUnfoldLessDoubleRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconUnfoldLessDoubleRound as default } diff --git a/src/IconUnfoldLessDoubleSharp.tsx b/src/IconUnfoldLessDoubleSharp.tsx new file mode 100644 index 000000000..e41e848d8 --- /dev/null +++ b/src/IconUnfoldLessDoubleSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUnfoldLessDoubleSharp as default } diff --git a/src/IconUnfoldLessDoubleTwoTone.tsx b/src/IconUnfoldLessDoubleTwoTone.tsx new file mode 100644 index 000000000..e50c31369 --- /dev/null +++ b/src/IconUnfoldLessDoubleTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUnfoldLessDoubleTwoTone as default } diff --git a/src/IconUnfoldLessOutlined.tsx b/src/IconUnfoldLessOutlined.tsx new file mode 100644 index 000000000..93cb8d968 --- /dev/null +++ b/src/IconUnfoldLessOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldLessOutlined as default } diff --git a/src/IconUnfoldLessRound.tsx b/src/IconUnfoldLessRound.tsx new file mode 100644 index 000000000..68337bf42 --- /dev/null +++ b/src/IconUnfoldLessRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldLessRound as default } diff --git a/src/IconUnfoldLessSharp.tsx b/src/IconUnfoldLessSharp.tsx new file mode 100644 index 000000000..467429a67 --- /dev/null +++ b/src/IconUnfoldLessSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldLessSharp as default } diff --git a/src/IconUnfoldLessTwoTone.tsx b/src/IconUnfoldLessTwoTone.tsx new file mode 100644 index 000000000..e9128c9ba --- /dev/null +++ b/src/IconUnfoldLessTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldLessTwoTone as default } diff --git a/src/IconUnfoldMoreDoubleOutlined.tsx b/src/IconUnfoldMoreDoubleOutlined.tsx new file mode 100644 index 000000000..171d95641 --- /dev/null +++ b/src/IconUnfoldMoreDoubleOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconUnfoldMoreDoubleOutlined as default } diff --git a/src/IconUnfoldMoreDoubleRound.tsx b/src/IconUnfoldMoreDoubleRound.tsx new file mode 100644 index 000000000..c6e8f1d96 --- /dev/null +++ b/src/IconUnfoldMoreDoubleRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconUnfoldMoreDoubleRound as default } diff --git a/src/IconUnfoldMoreDoubleSharp.tsx b/src/IconUnfoldMoreDoubleSharp.tsx new file mode 100644 index 000000000..2d422afa0 --- /dev/null +++ b/src/IconUnfoldMoreDoubleSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconUnfoldMoreDoubleSharp as default } diff --git a/src/IconUnfoldMoreDoubleTwoTone.tsx b/src/IconUnfoldMoreDoubleTwoTone.tsx new file mode 100644 index 000000000..06d70569b --- /dev/null +++ b/src/IconUnfoldMoreDoubleTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconUnfoldMoreDoubleTwoTone as default } diff --git a/src/IconUnfoldMoreOutlined.tsx b/src/IconUnfoldMoreOutlined.tsx new file mode 100644 index 000000000..59dea7163 --- /dev/null +++ b/src/IconUnfoldMoreOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldMoreOutlined as default } diff --git a/src/IconUnfoldMoreRound.tsx b/src/IconUnfoldMoreRound.tsx new file mode 100644 index 000000000..dd1a86eb6 --- /dev/null +++ b/src/IconUnfoldMoreRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldMoreRound as default } diff --git a/src/IconUnfoldMoreSharp.tsx b/src/IconUnfoldMoreSharp.tsx new file mode 100644 index 000000000..ba75f24b2 --- /dev/null +++ b/src/IconUnfoldMoreSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldMoreSharp as default } diff --git a/src/IconUnfoldMoreTwoTone.tsx b/src/IconUnfoldMoreTwoTone.tsx new file mode 100644 index 000000000..82ef98173 --- /dev/null +++ b/src/IconUnfoldMoreTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnfoldMoreTwoTone as default } diff --git a/src/IconUnpublishedOutlined.tsx b/src/IconUnpublishedOutlined.tsx new file mode 100644 index 000000000..cddf39b5b --- /dev/null +++ b/src/IconUnpublishedOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnpublishedOutlined as default } diff --git a/src/IconUnpublishedRound.tsx b/src/IconUnpublishedRound.tsx new file mode 100644 index 000000000..be993faa3 --- /dev/null +++ b/src/IconUnpublishedRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnpublishedRound as default } diff --git a/src/IconUnpublishedSharp.tsx b/src/IconUnpublishedSharp.tsx new file mode 100644 index 000000000..67507d1e0 --- /dev/null +++ b/src/IconUnpublishedSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnpublishedSharp as default } diff --git a/src/IconUnpublishedTwoTone.tsx b/src/IconUnpublishedTwoTone.tsx new file mode 100644 index 000000000..c102e416f --- /dev/null +++ b/src/IconUnpublishedTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconUnpublishedTwoTone as default } diff --git a/src/IconUnsubscribeOutlined.tsx b/src/IconUnsubscribeOutlined.tsx new file mode 100644 index 000000000..1bad603ee --- /dev/null +++ b/src/IconUnsubscribeOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnsubscribeOutlined as default } diff --git a/src/IconUnsubscribeRound.tsx b/src/IconUnsubscribeRound.tsx new file mode 100644 index 000000000..6b6a96210 --- /dev/null +++ b/src/IconUnsubscribeRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnsubscribeRound as default } diff --git a/src/IconUnsubscribeSharp.tsx b/src/IconUnsubscribeSharp.tsx new file mode 100644 index 000000000..a7edee4f1 --- /dev/null +++ b/src/IconUnsubscribeSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUnsubscribeSharp as default } diff --git a/src/IconUnsubscribeTwoTone.tsx b/src/IconUnsubscribeTwoTone.tsx new file mode 100644 index 000000000..cb1f6d752 --- /dev/null +++ b/src/IconUnsubscribeTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconUnsubscribeTwoTone as default } diff --git a/src/IconUpcomingOutlined.tsx b/src/IconUpcomingOutlined.tsx new file mode 100644 index 000000000..38eacce35 --- /dev/null +++ b/src/IconUpcomingOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUpcomingOutlined as default } diff --git a/src/IconUpcomingRound.tsx b/src/IconUpcomingRound.tsx new file mode 100644 index 000000000..cc2aa698c --- /dev/null +++ b/src/IconUpcomingRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUpcomingRound as default } diff --git a/src/IconUpcomingSharp.tsx b/src/IconUpcomingSharp.tsx new file mode 100644 index 000000000..86b783d3b --- /dev/null +++ b/src/IconUpcomingSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconUpcomingSharp as default } diff --git a/src/IconUpcomingTwoTone.tsx b/src/IconUpcomingTwoTone.tsx new file mode 100644 index 000000000..7ff33d698 --- /dev/null +++ b/src/IconUpcomingTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconUpcomingTwoTone as default } diff --git a/src/IconUpdateDisabledOutlined.tsx b/src/IconUpdateDisabledOutlined.tsx new file mode 100644 index 000000000..4a08581c5 --- /dev/null +++ b/src/IconUpdateDisabledOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpdateDisabledOutlined as default } diff --git a/src/IconUpdateDisabledRound.tsx b/src/IconUpdateDisabledRound.tsx new file mode 100644 index 000000000..559f78beb --- /dev/null +++ b/src/IconUpdateDisabledRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpdateDisabledRound as default } diff --git a/src/IconUpdateDisabledSharp.tsx b/src/IconUpdateDisabledSharp.tsx new file mode 100644 index 000000000..90ea9f6d8 --- /dev/null +++ b/src/IconUpdateDisabledSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpdateDisabledSharp as default } diff --git a/src/IconUpdateDisabledTwoTone.tsx b/src/IconUpdateDisabledTwoTone.tsx new file mode 100644 index 000000000..50ea15ef7 --- /dev/null +++ b/src/IconUpdateDisabledTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpdateDisabledTwoTone as default } diff --git a/src/IconUpdateOutlined.tsx b/src/IconUpdateOutlined.tsx new file mode 100644 index 000000000..23a70b2cd --- /dev/null +++ b/src/IconUpdateOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconUpdateOutlined as default } diff --git a/src/IconUpdateRound.tsx b/src/IconUpdateRound.tsx new file mode 100644 index 000000000..732c21af3 --- /dev/null +++ b/src/IconUpdateRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconUpdateRound as default } diff --git a/src/IconUpdateSharp.tsx b/src/IconUpdateSharp.tsx new file mode 100644 index 000000000..c83302906 --- /dev/null +++ b/src/IconUpdateSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconUpdateSharp as default } diff --git a/src/IconUpdateTwoTone.tsx b/src/IconUpdateTwoTone.tsx new file mode 100644 index 000000000..b9dee0c73 --- /dev/null +++ b/src/IconUpdateTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconUpdateTwoTone as default } diff --git a/src/IconUpgradeOutlined.tsx b/src/IconUpgradeOutlined.tsx new file mode 100644 index 000000000..8deb08a99 --- /dev/null +++ b/src/IconUpgradeOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpgradeOutlined as default } diff --git a/src/IconUpgradeRound.tsx b/src/IconUpgradeRound.tsx new file mode 100644 index 000000000..477dfd1aa --- /dev/null +++ b/src/IconUpgradeRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpgradeRound as default } diff --git a/src/IconUpgradeSharp.tsx b/src/IconUpgradeSharp.tsx new file mode 100644 index 000000000..1f990751e --- /dev/null +++ b/src/IconUpgradeSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpgradeSharp as default } diff --git a/src/IconUpgradeTwoTone.tsx b/src/IconUpgradeTwoTone.tsx new file mode 100644 index 000000000..fd844b887 --- /dev/null +++ b/src/IconUpgradeTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconUpgradeTwoTone as default } diff --git a/src/IconUploadFileOutlined.tsx b/src/IconUploadFileOutlined.tsx new file mode 100644 index 000000000..bde1d1938 --- /dev/null +++ b/src/IconUploadFileOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconUploadFileOutlined as default } diff --git a/src/IconUploadFileRound.tsx b/src/IconUploadFileRound.tsx new file mode 100644 index 000000000..901446eac --- /dev/null +++ b/src/IconUploadFileRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUploadFileRound as default } diff --git a/src/IconUploadFileSharp.tsx b/src/IconUploadFileSharp.tsx new file mode 100644 index 000000000..58eab2fe6 --- /dev/null +++ b/src/IconUploadFileSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconUploadFileSharp as default } diff --git a/src/IconUploadFileTwoTone.tsx b/src/IconUploadFileTwoTone.tsx new file mode 100644 index 000000000..96bc23f33 --- /dev/null +++ b/src/IconUploadFileTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconUploadFileTwoTone as default } diff --git a/src/IconUploadOutlined.tsx b/src/IconUploadOutlined.tsx new file mode 100644 index 000000000..9c958d4b1 --- /dev/null +++ b/src/IconUploadOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUploadOutlined as default } diff --git a/src/IconUploadRound.tsx b/src/IconUploadRound.tsx new file mode 100644 index 000000000..cc3c30038 --- /dev/null +++ b/src/IconUploadRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUploadRound as default } diff --git a/src/IconUploadSharp.tsx b/src/IconUploadSharp.tsx new file mode 100644 index 000000000..1960f7ec1 --- /dev/null +++ b/src/IconUploadSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUploadSharp as default } diff --git a/src/IconUploadTwoTone.tsx b/src/IconUploadTwoTone.tsx new file mode 100644 index 000000000..30112ef7c --- /dev/null +++ b/src/IconUploadTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconUploadTwoTone as default } diff --git a/src/IconUsbOffOutlined.tsx b/src/IconUsbOffOutlined.tsx new file mode 100644 index 000000000..2e739b1f3 --- /dev/null +++ b/src/IconUsbOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbOffOutlined as default } diff --git a/src/IconUsbOffRound.tsx b/src/IconUsbOffRound.tsx new file mode 100644 index 000000000..78aaf1c51 --- /dev/null +++ b/src/IconUsbOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbOffRound as default } diff --git a/src/IconUsbOffSharp.tsx b/src/IconUsbOffSharp.tsx new file mode 100644 index 000000000..606651de9 --- /dev/null +++ b/src/IconUsbOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbOffSharp as default } diff --git a/src/IconUsbOffTwoTone.tsx b/src/IconUsbOffTwoTone.tsx new file mode 100644 index 000000000..f4d26522f --- /dev/null +++ b/src/IconUsbOffTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbOffTwoTone as default } diff --git a/src/IconUsbOutlined.tsx b/src/IconUsbOutlined.tsx new file mode 100644 index 000000000..ff665559c --- /dev/null +++ b/src/IconUsbOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbOutlined as default } diff --git a/src/IconUsbRound.tsx b/src/IconUsbRound.tsx new file mode 100644 index 000000000..bc72441e5 --- /dev/null +++ b/src/IconUsbRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbRound as default } diff --git a/src/IconUsbSharp.tsx b/src/IconUsbSharp.tsx new file mode 100644 index 000000000..574711a5a --- /dev/null +++ b/src/IconUsbSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbSharp as default } diff --git a/src/IconUsbTwoTone.tsx b/src/IconUsbTwoTone.tsx new file mode 100644 index 000000000..b2a696c83 --- /dev/null +++ b/src/IconUsbTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconUsbTwoTone as default } diff --git a/src/IconVaccinesOutlined.tsx b/src/IconVaccinesOutlined.tsx new file mode 100644 index 000000000..39d9b50bb --- /dev/null +++ b/src/IconVaccinesOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVaccinesOutlined as default } diff --git a/src/IconVaccinesRound.tsx b/src/IconVaccinesRound.tsx new file mode 100644 index 000000000..6009544d9 --- /dev/null +++ b/src/IconVaccinesRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVaccinesRound as default } diff --git a/src/IconVaccinesSharp.tsx b/src/IconVaccinesSharp.tsx new file mode 100644 index 000000000..342429ae2 --- /dev/null +++ b/src/IconVaccinesSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVaccinesSharp as default } diff --git a/src/IconVaccinesTwoTone.tsx b/src/IconVaccinesTwoTone.tsx new file mode 100644 index 000000000..7055f44dd --- /dev/null +++ b/src/IconVaccinesTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVaccinesTwoTone as default } diff --git a/src/IconVapeFreeOutlined.tsx b/src/IconVapeFreeOutlined.tsx new file mode 100644 index 000000000..5814a7a17 --- /dev/null +++ b/src/IconVapeFreeOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapeFreeOutlined as default } diff --git a/src/IconVapeFreeRound.tsx b/src/IconVapeFreeRound.tsx new file mode 100644 index 000000000..2e0b75d04 --- /dev/null +++ b/src/IconVapeFreeRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVapeFreeRound as default } diff --git a/src/IconVapeFreeSharp.tsx b/src/IconVapeFreeSharp.tsx new file mode 100644 index 000000000..28e83f1e7 --- /dev/null +++ b/src/IconVapeFreeSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapeFreeSharp as default } diff --git a/src/IconVapeFreeTwoTone.tsx b/src/IconVapeFreeTwoTone.tsx new file mode 100644 index 000000000..295de75fa --- /dev/null +++ b/src/IconVapeFreeTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVapeFreeTwoTone as default } diff --git a/src/IconVapingRoomsOutlined.tsx b/src/IconVapingRoomsOutlined.tsx new file mode 100644 index 000000000..749387286 --- /dev/null +++ b/src/IconVapingRoomsOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapingRoomsOutlined as default } diff --git a/src/IconVapingRoomsRound.tsx b/src/IconVapingRoomsRound.tsx new file mode 100644 index 000000000..e4f405c8b --- /dev/null +++ b/src/IconVapingRoomsRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVapingRoomsRound as default } diff --git a/src/IconVapingRoomsSharp.tsx b/src/IconVapingRoomsSharp.tsx new file mode 100644 index 000000000..5ce5f34d2 --- /dev/null +++ b/src/IconVapingRoomsSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVapingRoomsSharp as default } diff --git a/src/IconVapingRoomsTwoTone.tsx b/src/IconVapingRoomsTwoTone.tsx new file mode 100644 index 000000000..a6db0d6ea --- /dev/null +++ b/src/IconVapingRoomsTwoTone.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVapingRoomsTwoTone as default } diff --git a/src/IconVerifiedOutlined.tsx b/src/IconVerifiedOutlined.tsx new file mode 100644 index 000000000..2639cab85 --- /dev/null +++ b/src/IconVerifiedOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVerifiedOutlined as default } diff --git a/src/IconVerifiedRound.tsx b/src/IconVerifiedRound.tsx new file mode 100644 index 000000000..6bbcb74f8 --- /dev/null +++ b/src/IconVerifiedRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVerifiedRound as default } diff --git a/src/IconVerifiedSharp.tsx b/src/IconVerifiedSharp.tsx new file mode 100644 index 000000000..e62da434a --- /dev/null +++ b/src/IconVerifiedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerifiedSharp as default } diff --git a/src/IconVerifiedTwoTone.tsx b/src/IconVerifiedTwoTone.tsx new file mode 100644 index 000000000..6389cc999 --- /dev/null +++ b/src/IconVerifiedTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVerifiedTwoTone as default } diff --git a/src/IconVerifiedUserOutlined.tsx b/src/IconVerifiedUserOutlined.tsx new file mode 100644 index 000000000..678120034 --- /dev/null +++ b/src/IconVerifiedUserOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerifiedUserOutlined as default } diff --git a/src/IconVerifiedUserRound.tsx b/src/IconVerifiedUserRound.tsx new file mode 100644 index 000000000..3a692d432 --- /dev/null +++ b/src/IconVerifiedUserRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerifiedUserRound as default } diff --git a/src/IconVerifiedUserSharp.tsx b/src/IconVerifiedUserSharp.tsx new file mode 100644 index 000000000..b7d1ec682 --- /dev/null +++ b/src/IconVerifiedUserSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerifiedUserSharp as default } diff --git a/src/IconVerifiedUserTwoTone.tsx b/src/IconVerifiedUserTwoTone.tsx new file mode 100644 index 000000000..74a070c72 --- /dev/null +++ b/src/IconVerifiedUserTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVerifiedUserTwoTone as default } diff --git a/src/IconVerticalAlignBottomOutlined.tsx b/src/IconVerticalAlignBottomOutlined.tsx new file mode 100644 index 000000000..d39a4dede --- /dev/null +++ b/src/IconVerticalAlignBottomOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignBottomOutlined as default } diff --git a/src/IconVerticalAlignBottomRound.tsx b/src/IconVerticalAlignBottomRound.tsx new file mode 100644 index 000000000..f3b9c0202 --- /dev/null +++ b/src/IconVerticalAlignBottomRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignBottomRound as default } diff --git a/src/IconVerticalAlignBottomSharp.tsx b/src/IconVerticalAlignBottomSharp.tsx new file mode 100644 index 000000000..328a6e2f2 --- /dev/null +++ b/src/IconVerticalAlignBottomSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignBottomSharp as default } diff --git a/src/IconVerticalAlignBottomTwoTone.tsx b/src/IconVerticalAlignBottomTwoTone.tsx new file mode 100644 index 000000000..c71137cdc --- /dev/null +++ b/src/IconVerticalAlignBottomTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignBottomTwoTone as default } diff --git a/src/IconVerticalAlignCenterOutlined.tsx b/src/IconVerticalAlignCenterOutlined.tsx new file mode 100644 index 000000000..06b215e86 --- /dev/null +++ b/src/IconVerticalAlignCenterOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignCenterOutlined as default } diff --git a/src/IconVerticalAlignCenterRound.tsx b/src/IconVerticalAlignCenterRound.tsx new file mode 100644 index 000000000..e14a2274a --- /dev/null +++ b/src/IconVerticalAlignCenterRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignCenterRound as default } diff --git a/src/IconVerticalAlignCenterSharp.tsx b/src/IconVerticalAlignCenterSharp.tsx new file mode 100644 index 000000000..d47468e4e --- /dev/null +++ b/src/IconVerticalAlignCenterSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignCenterSharp as default } diff --git a/src/IconVerticalAlignCenterTwoTone.tsx b/src/IconVerticalAlignCenterTwoTone.tsx new file mode 100644 index 000000000..929a5ad1f --- /dev/null +++ b/src/IconVerticalAlignCenterTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignCenterTwoTone as default } diff --git a/src/IconVerticalAlignTopOutlined.tsx b/src/IconVerticalAlignTopOutlined.tsx new file mode 100644 index 000000000..eecf20521 --- /dev/null +++ b/src/IconVerticalAlignTopOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignTopOutlined as default } diff --git a/src/IconVerticalAlignTopRound.tsx b/src/IconVerticalAlignTopRound.tsx new file mode 100644 index 000000000..ed4031595 --- /dev/null +++ b/src/IconVerticalAlignTopRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignTopRound as default } diff --git a/src/IconVerticalAlignTopSharp.tsx b/src/IconVerticalAlignTopSharp.tsx new file mode 100644 index 000000000..d3bd3c7b2 --- /dev/null +++ b/src/IconVerticalAlignTopSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignTopSharp as default } diff --git a/src/IconVerticalAlignTopTwoTone.tsx b/src/IconVerticalAlignTopTwoTone.tsx new file mode 100644 index 000000000..2c59eac51 --- /dev/null +++ b/src/IconVerticalAlignTopTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalAlignTopTwoTone as default } diff --git a/src/IconVerticalDistributeOutlined.tsx b/src/IconVerticalDistributeOutlined.tsx new file mode 100644 index 000000000..dbe9c4dc5 --- /dev/null +++ b/src/IconVerticalDistributeOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalDistributeOutlined as default } diff --git a/src/IconVerticalDistributeRound.tsx b/src/IconVerticalDistributeRound.tsx new file mode 100644 index 000000000..608054865 --- /dev/null +++ b/src/IconVerticalDistributeRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalDistributeRound as default } diff --git a/src/IconVerticalDistributeSharp.tsx b/src/IconVerticalDistributeSharp.tsx new file mode 100644 index 000000000..c5e1398c9 --- /dev/null +++ b/src/IconVerticalDistributeSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalDistributeSharp as default } diff --git a/src/IconVerticalDistributeTwoTone.tsx b/src/IconVerticalDistributeTwoTone.tsx new file mode 100644 index 000000000..9c231d2f5 --- /dev/null +++ b/src/IconVerticalDistributeTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalDistributeTwoTone as default } diff --git a/src/IconVerticalShadesClosedOutlined.tsx b/src/IconVerticalShadesClosedOutlined.tsx new file mode 100644 index 000000000..e0e8c39c5 --- /dev/null +++ b/src/IconVerticalShadesClosedOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedOutlined: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShadesClosedOutlined as default } diff --git a/src/IconVerticalShadesClosedRound.tsx b/src/IconVerticalShadesClosedRound.tsx new file mode 100644 index 000000000..ff082d957 --- /dev/null +++ b/src/IconVerticalShadesClosedRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVerticalShadesClosedRound as default } diff --git a/src/IconVerticalShadesClosedSharp.tsx b/src/IconVerticalShadesClosedSharp.tsx new file mode 100644 index 000000000..f6a99806f --- /dev/null +++ b/src/IconVerticalShadesClosedSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShadesClosedSharp as default } diff --git a/src/IconVerticalShadesClosedTwoTone.tsx b/src/IconVerticalShadesClosedTwoTone.tsx new file mode 100644 index 000000000..7cda971c5 --- /dev/null +++ b/src/IconVerticalShadesClosedTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconVerticalShadesClosedTwoTone as default } diff --git a/src/IconVerticalShadesOutlined.tsx b/src/IconVerticalShadesOutlined.tsx new file mode 100644 index 000000000..aa3c90fe8 --- /dev/null +++ b/src/IconVerticalShadesOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShadesOutlined as default } diff --git a/src/IconVerticalShadesRound.tsx b/src/IconVerticalShadesRound.tsx new file mode 100644 index 000000000..3bfb20e43 --- /dev/null +++ b/src/IconVerticalShadesRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVerticalShadesRound as default } diff --git a/src/IconVerticalShadesSharp.tsx b/src/IconVerticalShadesSharp.tsx new file mode 100644 index 000000000..8532a733f --- /dev/null +++ b/src/IconVerticalShadesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVerticalShadesSharp as default } diff --git a/src/IconVerticalShadesTwoTone.tsx b/src/IconVerticalShadesTwoTone.tsx new file mode 100644 index 000000000..cdebe95d7 --- /dev/null +++ b/src/IconVerticalShadesTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVerticalShadesTwoTone as default } diff --git a/src/IconVerticalSplitOutlined.tsx b/src/IconVerticalSplitOutlined.tsx new file mode 100644 index 000000000..0088620ab --- /dev/null +++ b/src/IconVerticalSplitOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalSplitOutlined as default } diff --git a/src/IconVerticalSplitRound.tsx b/src/IconVerticalSplitRound.tsx new file mode 100644 index 000000000..a67b6b1fd --- /dev/null +++ b/src/IconVerticalSplitRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalSplitRound as default } diff --git a/src/IconVerticalSplitSharp.tsx b/src/IconVerticalSplitSharp.tsx new file mode 100644 index 000000000..c760188f4 --- /dev/null +++ b/src/IconVerticalSplitSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVerticalSplitSharp as default } diff --git a/src/IconVerticalSplitTwoTone.tsx b/src/IconVerticalSplitTwoTone.tsx new file mode 100644 index 000000000..96809d2a7 --- /dev/null +++ b/src/IconVerticalSplitTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVerticalSplitTwoTone as default } diff --git a/src/IconVibrationOutlined.tsx b/src/IconVibrationOutlined.tsx new file mode 100644 index 000000000..d7f6b17a3 --- /dev/null +++ b/src/IconVibrationOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVibrationOutlined as default } diff --git a/src/IconVibrationRound.tsx b/src/IconVibrationRound.tsx new file mode 100644 index 000000000..8fbd045e7 --- /dev/null +++ b/src/IconVibrationRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVibrationRound as default } diff --git a/src/IconVibrationSharp.tsx b/src/IconVibrationSharp.tsx new file mode 100644 index 000000000..2a79e4225 --- /dev/null +++ b/src/IconVibrationSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVibrationSharp as default } diff --git a/src/IconVibrationTwoTone.tsx b/src/IconVibrationTwoTone.tsx new file mode 100644 index 000000000..bfaf6abd3 --- /dev/null +++ b/src/IconVibrationTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVibrationTwoTone as default } diff --git a/src/IconVideoCallOutlined.tsx b/src/IconVideoCallOutlined.tsx new file mode 100644 index 000000000..55c7c0e69 --- /dev/null +++ b/src/IconVideoCallOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoCallOutlined as default } diff --git a/src/IconVideoCallRound.tsx b/src/IconVideoCallRound.tsx new file mode 100644 index 000000000..9f4a8e170 --- /dev/null +++ b/src/IconVideoCallRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCallRound as default } diff --git a/src/IconVideoCallSharp.tsx b/src/IconVideoCallSharp.tsx new file mode 100644 index 000000000..76fb9939e --- /dev/null +++ b/src/IconVideoCallSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoCallSharp as default } diff --git a/src/IconVideoCallTwoTone.tsx b/src/IconVideoCallTwoTone.tsx new file mode 100644 index 000000000..f3a15f6a1 --- /dev/null +++ b/src/IconVideoCallTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideoCallTwoTone as default } diff --git a/src/IconVideoCameraBackOutlined.tsx b/src/IconVideoCameraBackOutlined.tsx new file mode 100644 index 000000000..a030a5dd4 --- /dev/null +++ b/src/IconVideoCameraBackOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoCameraBackOutlined as default } diff --git a/src/IconVideoCameraBackRound.tsx b/src/IconVideoCameraBackRound.tsx new file mode 100644 index 000000000..494eb61a3 --- /dev/null +++ b/src/IconVideoCameraBackRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoCameraBackRound as default } diff --git a/src/IconVideoCameraBackSharp.tsx b/src/IconVideoCameraBackSharp.tsx new file mode 100644 index 000000000..65a9735e4 --- /dev/null +++ b/src/IconVideoCameraBackSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoCameraBackSharp as default } diff --git a/src/IconVideoCameraBackTwoTone.tsx b/src/IconVideoCameraBackTwoTone.tsx new file mode 100644 index 000000000..d8886f00b --- /dev/null +++ b/src/IconVideoCameraBackTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoCameraBackTwoTone as default } diff --git a/src/IconVideoCameraFrontOutlined.tsx b/src/IconVideoCameraFrontOutlined.tsx new file mode 100644 index 000000000..6a99e82e1 --- /dev/null +++ b/src/IconVideoCameraFrontOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoCameraFrontOutlined as default } diff --git a/src/IconVideoCameraFrontRound.tsx b/src/IconVideoCameraFrontRound.tsx new file mode 100644 index 000000000..f21d7e52c --- /dev/null +++ b/src/IconVideoCameraFrontRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoCameraFrontRound as default } diff --git a/src/IconVideoCameraFrontSharp.tsx b/src/IconVideoCameraFrontSharp.tsx new file mode 100644 index 000000000..67210f043 --- /dev/null +++ b/src/IconVideoCameraFrontSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoCameraFrontSharp as default } diff --git a/src/IconVideoCameraFrontTwoTone.tsx b/src/IconVideoCameraFrontTwoTone.tsx new file mode 100644 index 000000000..6057ba225 --- /dev/null +++ b/src/IconVideoCameraFrontTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVideoCameraFrontTwoTone as default } diff --git a/src/IconVideoChatOutlined.tsx b/src/IconVideoChatOutlined.tsx new file mode 100644 index 000000000..aed6798f3 --- /dev/null +++ b/src/IconVideoChatOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVideoChatOutlined as default } diff --git a/src/IconVideoChatRound.tsx b/src/IconVideoChatRound.tsx new file mode 100644 index 000000000..37a3ceef3 --- /dev/null +++ b/src/IconVideoChatRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoChatRound as default } diff --git a/src/IconVideoChatSharp.tsx b/src/IconVideoChatSharp.tsx new file mode 100644 index 000000000..a15b04c79 --- /dev/null +++ b/src/IconVideoChatSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoChatSharp as default } diff --git a/src/IconVideoChatTwoTone.tsx b/src/IconVideoChatTwoTone.tsx new file mode 100644 index 000000000..c98c483fe --- /dev/null +++ b/src/IconVideoChatTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoChatTwoTone as default } diff --git a/src/IconVideoFileOutlined.tsx b/src/IconVideoFileOutlined.tsx new file mode 100644 index 000000000..cfc15ba81 --- /dev/null +++ b/src/IconVideoFileOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoFileOutlined as default } diff --git a/src/IconVideoFileRound.tsx b/src/IconVideoFileRound.tsx new file mode 100644 index 000000000..c6fa8c0e7 --- /dev/null +++ b/src/IconVideoFileRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVideoFileRound as default } diff --git a/src/IconVideoFileSharp.tsx b/src/IconVideoFileSharp.tsx new file mode 100644 index 000000000..b7b73a441 --- /dev/null +++ b/src/IconVideoFileSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoFileSharp as default } diff --git a/src/IconVideoFileTwoTone.tsx b/src/IconVideoFileTwoTone.tsx new file mode 100644 index 000000000..91c86b8f8 --- /dev/null +++ b/src/IconVideoFileTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVideoFileTwoTone as default } diff --git a/src/IconVideoLabelOutlined.tsx b/src/IconVideoLabelOutlined.tsx new file mode 100644 index 000000000..675dbce56 --- /dev/null +++ b/src/IconVideoLabelOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoLabelOutlined as default } diff --git a/src/IconVideoLabelRound.tsx b/src/IconVideoLabelRound.tsx new file mode 100644 index 000000000..97e58f2d2 --- /dev/null +++ b/src/IconVideoLabelRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLabelRound as default } diff --git a/src/IconVideoLabelSharp.tsx b/src/IconVideoLabelSharp.tsx new file mode 100644 index 000000000..48a03c40e --- /dev/null +++ b/src/IconVideoLabelSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoLabelSharp as default } diff --git a/src/IconVideoLabelTwoTone.tsx b/src/IconVideoLabelTwoTone.tsx new file mode 100644 index 000000000..eecf9a41c --- /dev/null +++ b/src/IconVideoLabelTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideoLabelTwoTone as default } diff --git a/src/IconVideoLibraryOutlined.tsx b/src/IconVideoLibraryOutlined.tsx new file mode 100644 index 000000000..a0b340d9f --- /dev/null +++ b/src/IconVideoLibraryOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibraryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoLibraryOutlined as default } diff --git a/src/IconVideoLibraryRound.tsx b/src/IconVideoLibraryRound.tsx new file mode 100644 index 000000000..cc9238d75 --- /dev/null +++ b/src/IconVideoLibraryRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibraryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLibraryRound as default } diff --git a/src/IconVideoLibrarySharp.tsx b/src/IconVideoLibrarySharp.tsx new file mode 100644 index 000000000..f4d59d807 --- /dev/null +++ b/src/IconVideoLibrarySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibrarySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideoLibrarySharp as default } diff --git a/src/IconVideoLibraryTwoTone.tsx b/src/IconVideoLibraryTwoTone.tsx new file mode 100644 index 000000000..805b75e84 --- /dev/null +++ b/src/IconVideoLibraryTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibraryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideoLibraryTwoTone as default } diff --git a/src/IconVideoSettingsOutlined.tsx b/src/IconVideoSettingsOutlined.tsx new file mode 100644 index 000000000..185ebe931 --- /dev/null +++ b/src/IconVideoSettingsOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoSettingsOutlined as default } diff --git a/src/IconVideoSettingsRound.tsx b/src/IconVideoSettingsRound.tsx new file mode 100644 index 000000000..ab8adc6d1 --- /dev/null +++ b/src/IconVideoSettingsRound.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconVideoSettingsRound as default } diff --git a/src/IconVideoSettingsSharp.tsx b/src/IconVideoSettingsSharp.tsx new file mode 100644 index 000000000..1bda6e5eb --- /dev/null +++ b/src/IconVideoSettingsSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoSettingsSharp as default } diff --git a/src/IconVideoSettingsTwoTone.tsx b/src/IconVideoSettingsTwoTone.tsx new file mode 100644 index 000000000..7624f06de --- /dev/null +++ b/src/IconVideoSettingsTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVideoSettingsTwoTone as default } diff --git a/src/IconVideoStableOutlined.tsx b/src/IconVideoStableOutlined.tsx new file mode 100644 index 000000000..3de5ebddb --- /dev/null +++ b/src/IconVideoStableOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVideoStableOutlined as default } diff --git a/src/IconVideoStableRound.tsx b/src/IconVideoStableRound.tsx new file mode 100644 index 000000000..50eead10d --- /dev/null +++ b/src/IconVideoStableRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVideoStableRound as default } diff --git a/src/IconVideoStableSharp.tsx b/src/IconVideoStableSharp.tsx new file mode 100644 index 000000000..5dc72cfb8 --- /dev/null +++ b/src/IconVideoStableSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconVideoStableSharp as default } diff --git a/src/IconVideoStableTwoTone.tsx b/src/IconVideoStableTwoTone.tsx new file mode 100644 index 000000000..f27e5b65d --- /dev/null +++ b/src/IconVideoStableTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVideoStableTwoTone as default } diff --git a/src/IconVideocamOffOutlined.tsx b/src/IconVideocamOffOutlined.tsx new file mode 100644 index 000000000..dee91b7c7 --- /dev/null +++ b/src/IconVideocamOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideocamOffOutlined as default } diff --git a/src/IconVideocamOffRound.tsx b/src/IconVideocamOffRound.tsx new file mode 100644 index 000000000..8e894c8c4 --- /dev/null +++ b/src/IconVideocamOffRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamOffRound as default } diff --git a/src/IconVideocamOffSharp.tsx b/src/IconVideocamOffSharp.tsx new file mode 100644 index 000000000..12fdc447f --- /dev/null +++ b/src/IconVideocamOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideocamOffSharp as default } diff --git a/src/IconVideocamOffTwoTone.tsx b/src/IconVideocamOffTwoTone.tsx new file mode 100644 index 000000000..831a59d6b --- /dev/null +++ b/src/IconVideocamOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideocamOffTwoTone as default } diff --git a/src/IconVideocamOutlined.tsx b/src/IconVideocamOutlined.tsx new file mode 100644 index 000000000..2cbda7b8f --- /dev/null +++ b/src/IconVideocamOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideocamOutlined as default } diff --git a/src/IconVideocamRound.tsx b/src/IconVideocamRound.tsx new file mode 100644 index 000000000..0c8e8caad --- /dev/null +++ b/src/IconVideocamRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamRound as default } diff --git a/src/IconVideocamSharp.tsx b/src/IconVideocamSharp.tsx new file mode 100644 index 000000000..0eca0ff44 --- /dev/null +++ b/src/IconVideocamSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideocamSharp as default } diff --git a/src/IconVideocamTwoTone.tsx b/src/IconVideocamTwoTone.tsx new file mode 100644 index 000000000..0b4c7edf9 --- /dev/null +++ b/src/IconVideocamTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideocamTwoTone as default } diff --git a/src/IconVideogameAssetOffOutlined.tsx b/src/IconVideogameAssetOffOutlined.tsx new file mode 100644 index 000000000..69b60074c --- /dev/null +++ b/src/IconVideogameAssetOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideogameAssetOffOutlined as default } diff --git a/src/IconVideogameAssetOffRound.tsx b/src/IconVideogameAssetOffRound.tsx new file mode 100644 index 000000000..5f4f10c71 --- /dev/null +++ b/src/IconVideogameAssetOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideogameAssetOffRound as default } diff --git a/src/IconVideogameAssetOffSharp.tsx b/src/IconVideogameAssetOffSharp.tsx new file mode 100644 index 000000000..d61a70c4b --- /dev/null +++ b/src/IconVideogameAssetOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideogameAssetOffSharp as default } diff --git a/src/IconVideogameAssetOffTwoTone.tsx b/src/IconVideogameAssetOffTwoTone.tsx new file mode 100644 index 000000000..a1cf84456 --- /dev/null +++ b/src/IconVideogameAssetOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVideogameAssetOffTwoTone as default } diff --git a/src/IconVideogameAssetOutlined.tsx b/src/IconVideogameAssetOutlined.tsx new file mode 100644 index 000000000..4af5c93cb --- /dev/null +++ b/src/IconVideogameAssetOutlined.tsx @@ -0,0 +1,14 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconVideogameAssetOutlined as default } diff --git a/src/IconVideogameAssetRound.tsx b/src/IconVideogameAssetRound.tsx new file mode 100644 index 000000000..ec0e4a022 --- /dev/null +++ b/src/IconVideogameAssetRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetRound as default } diff --git a/src/IconVideogameAssetSharp.tsx b/src/IconVideogameAssetSharp.tsx new file mode 100644 index 000000000..d95cd997d --- /dev/null +++ b/src/IconVideogameAssetSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVideogameAssetSharp as default } diff --git a/src/IconVideogameAssetTwoTone.tsx b/src/IconVideogameAssetTwoTone.tsx new file mode 100644 index 000000000..1362c027e --- /dev/null +++ b/src/IconVideogameAssetTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconVideogameAssetTwoTone as default } diff --git a/src/IconViewAgendaOutlined.tsx b/src/IconViewAgendaOutlined.tsx new file mode 100644 index 000000000..1a9dff56c --- /dev/null +++ b/src/IconViewAgendaOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewAgendaOutlined as default } diff --git a/src/IconViewAgendaRound.tsx b/src/IconViewAgendaRound.tsx new file mode 100644 index 000000000..93e1fbaff --- /dev/null +++ b/src/IconViewAgendaRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewAgendaRound as default } diff --git a/src/IconViewAgendaSharp.tsx b/src/IconViewAgendaSharp.tsx new file mode 100644 index 000000000..4bc22adaa --- /dev/null +++ b/src/IconViewAgendaSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewAgendaSharp as default } diff --git a/src/IconViewAgendaTwoTone.tsx b/src/IconViewAgendaTwoTone.tsx new file mode 100644 index 000000000..ad874c579 --- /dev/null +++ b/src/IconViewAgendaTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconViewAgendaTwoTone as default } diff --git a/src/IconViewArrayOutlined.tsx b/src/IconViewArrayOutlined.tsx new file mode 100644 index 000000000..a553cbab1 --- /dev/null +++ b/src/IconViewArrayOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArrayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewArrayOutlined as default } diff --git a/src/IconViewArrayRound.tsx b/src/IconViewArrayRound.tsx new file mode 100644 index 000000000..3b7866b2b --- /dev/null +++ b/src/IconViewArrayRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArrayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewArrayRound as default } diff --git a/src/IconViewArraySharp.tsx b/src/IconViewArraySharp.tsx new file mode 100644 index 000000000..3b13b0280 --- /dev/null +++ b/src/IconViewArraySharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArraySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewArraySharp as default } diff --git a/src/IconViewArrayTwoTone.tsx b/src/IconViewArrayTwoTone.tsx new file mode 100644 index 000000000..5b49234ee --- /dev/null +++ b/src/IconViewArrayTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArrayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewArrayTwoTone as default } diff --git a/src/IconViewCarouselOutlined.tsx b/src/IconViewCarouselOutlined.tsx new file mode 100644 index 000000000..08536bb9e --- /dev/null +++ b/src/IconViewCarouselOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewCarouselOutlined as default } diff --git a/src/IconViewCarouselRound.tsx b/src/IconViewCarouselRound.tsx new file mode 100644 index 000000000..7ad020146 --- /dev/null +++ b/src/IconViewCarouselRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewCarouselRound as default } diff --git a/src/IconViewCarouselSharp.tsx b/src/IconViewCarouselSharp.tsx new file mode 100644 index 000000000..a3568fc09 --- /dev/null +++ b/src/IconViewCarouselSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewCarouselSharp as default } diff --git a/src/IconViewCarouselTwoTone.tsx b/src/IconViewCarouselTwoTone.tsx new file mode 100644 index 000000000..ec8ba1b79 --- /dev/null +++ b/src/IconViewCarouselTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewCarouselTwoTone as default } diff --git a/src/IconViewColumnOutlined.tsx b/src/IconViewColumnOutlined.tsx new file mode 100644 index 000000000..37dcaa2d7 --- /dev/null +++ b/src/IconViewColumnOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewColumnOutlined as default } diff --git a/src/IconViewColumnRound.tsx b/src/IconViewColumnRound.tsx new file mode 100644 index 000000000..c4d6b3af2 --- /dev/null +++ b/src/IconViewColumnRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewColumnRound as default } diff --git a/src/IconViewColumnSharp.tsx b/src/IconViewColumnSharp.tsx new file mode 100644 index 000000000..b21a585dc --- /dev/null +++ b/src/IconViewColumnSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewColumnSharp as default } diff --git a/src/IconViewColumnTwoTone.tsx b/src/IconViewColumnTwoTone.tsx new file mode 100644 index 000000000..72f078711 --- /dev/null +++ b/src/IconViewColumnTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewColumnTwoTone as default } diff --git a/src/IconViewComfyAltOutlined.tsx b/src/IconViewComfyAltOutlined.tsx new file mode 100644 index 000000000..25c66300c --- /dev/null +++ b/src/IconViewComfyAltOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewComfyAltOutlined as default } diff --git a/src/IconViewComfyAltRound.tsx b/src/IconViewComfyAltRound.tsx new file mode 100644 index 000000000..8612dffb9 --- /dev/null +++ b/src/IconViewComfyAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewComfyAltRound as default } diff --git a/src/IconViewComfyAltSharp.tsx b/src/IconViewComfyAltSharp.tsx new file mode 100644 index 000000000..72c9d685a --- /dev/null +++ b/src/IconViewComfyAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewComfyAltSharp as default } diff --git a/src/IconViewComfyAltTwoTone.tsx b/src/IconViewComfyAltTwoTone.tsx new file mode 100644 index 000000000..1f6670b6c --- /dev/null +++ b/src/IconViewComfyAltTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconViewComfyAltTwoTone as default } diff --git a/src/IconViewComfyOutlined.tsx b/src/IconViewComfyOutlined.tsx new file mode 100644 index 000000000..bbe64a299 --- /dev/null +++ b/src/IconViewComfyOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewComfyOutlined as default } diff --git a/src/IconViewComfyRound.tsx b/src/IconViewComfyRound.tsx new file mode 100644 index 000000000..8d55066ff --- /dev/null +++ b/src/IconViewComfyRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewComfyRound as default } diff --git a/src/IconViewComfySharp.tsx b/src/IconViewComfySharp.tsx new file mode 100644 index 000000000..fcc7b3069 --- /dev/null +++ b/src/IconViewComfySharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewComfySharp as default } diff --git a/src/IconViewComfyTwoTone.tsx b/src/IconViewComfyTwoTone.tsx new file mode 100644 index 000000000..66ecb40f3 --- /dev/null +++ b/src/IconViewComfyTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewComfyTwoTone as default } diff --git a/src/IconViewCompact.tsx b/src/IconViewCompact.tsx index 7a23b4f5e..ee9652226 100644 --- a/src/IconViewCompact.tsx +++ b/src/IconViewCompact.tsx @@ -2,10 +2,19 @@ import React from 'react' import { IconProps } from './types' const IconViewCompact: React.FC = ({ ...props }) => ( - + {props.title && {props.title}} - - + + + + + + ) diff --git a/src/IconViewCompactAltOutlined.tsx b/src/IconViewCompactAltOutlined.tsx new file mode 100644 index 000000000..bff42d462 --- /dev/null +++ b/src/IconViewCompactAltOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewCompactAltOutlined as default } diff --git a/src/IconViewCompactAltRound.tsx b/src/IconViewCompactAltRound.tsx new file mode 100644 index 000000000..c56cc53ac --- /dev/null +++ b/src/IconViewCompactAltRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewCompactAltRound as default } diff --git a/src/IconViewCompactAltSharp.tsx b/src/IconViewCompactAltSharp.tsx new file mode 100644 index 000000000..c172505fd --- /dev/null +++ b/src/IconViewCompactAltSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewCompactAltSharp as default } diff --git a/src/IconViewCompactAltTwoTone.tsx b/src/IconViewCompactAltTwoTone.tsx new file mode 100644 index 000000000..f42ab15f3 --- /dev/null +++ b/src/IconViewCompactAltTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconViewCompactAltTwoTone as default } diff --git a/src/IconViewCompactOutlined.tsx b/src/IconViewCompactOutlined.tsx new file mode 100644 index 000000000..c5c2b1b3f --- /dev/null +++ b/src/IconViewCompactOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewCompactOutlined as default } diff --git a/src/IconViewCompactRound.tsx b/src/IconViewCompactRound.tsx new file mode 100644 index 000000000..1373a06f9 --- /dev/null +++ b/src/IconViewCompactRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewCompactRound as default } diff --git a/src/IconViewCompactSharp.tsx b/src/IconViewCompactSharp.tsx new file mode 100644 index 000000000..16178cbd0 --- /dev/null +++ b/src/IconViewCompactSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewCompactSharp as default } diff --git a/src/IconViewCompactTwoTone.tsx b/src/IconViewCompactTwoTone.tsx new file mode 100644 index 000000000..dcf10a55b --- /dev/null +++ b/src/IconViewCompactTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewCompactTwoTone as default } diff --git a/src/IconViewCozyOutlined.tsx b/src/IconViewCozyOutlined.tsx new file mode 100644 index 000000000..b8e78f1a1 --- /dev/null +++ b/src/IconViewCozyOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewCozyOutlined as default } diff --git a/src/IconViewCozyRound.tsx b/src/IconViewCozyRound.tsx new file mode 100644 index 000000000..33057b56a --- /dev/null +++ b/src/IconViewCozyRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewCozyRound as default } diff --git a/src/IconViewCozySharp.tsx b/src/IconViewCozySharp.tsx new file mode 100644 index 000000000..71c1dbd2a --- /dev/null +++ b/src/IconViewCozySharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconViewCozySharp as default } diff --git a/src/IconViewCozyTwoTone.tsx b/src/IconViewCozyTwoTone.tsx new file mode 100644 index 000000000..c4fcc7203 --- /dev/null +++ b/src/IconViewCozyTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconViewCozyTwoTone as default } diff --git a/src/IconViewDayOutlined.tsx b/src/IconViewDayOutlined.tsx new file mode 100644 index 000000000..ae775d3be --- /dev/null +++ b/src/IconViewDayOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDayOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewDayOutlined as default } diff --git a/src/IconViewDayRound.tsx b/src/IconViewDayRound.tsx new file mode 100644 index 000000000..102ab6a76 --- /dev/null +++ b/src/IconViewDayRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDayRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewDayRound as default } diff --git a/src/IconViewDaySharp.tsx b/src/IconViewDaySharp.tsx new file mode 100644 index 000000000..f0cafb2b0 --- /dev/null +++ b/src/IconViewDaySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDaySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewDaySharp as default } diff --git a/src/IconViewDayTwoTone.tsx b/src/IconViewDayTwoTone.tsx new file mode 100644 index 000000000..19479ca58 --- /dev/null +++ b/src/IconViewDayTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDayTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewDayTwoTone as default } diff --git a/src/IconViewHeadlineOutlined.tsx b/src/IconViewHeadlineOutlined.tsx new file mode 100644 index 000000000..88f841533 --- /dev/null +++ b/src/IconViewHeadlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewHeadlineOutlined as default } diff --git a/src/IconViewHeadlineRound.tsx b/src/IconViewHeadlineRound.tsx new file mode 100644 index 000000000..ced40e6a3 --- /dev/null +++ b/src/IconViewHeadlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewHeadlineRound as default } diff --git a/src/IconViewHeadlineSharp.tsx b/src/IconViewHeadlineSharp.tsx new file mode 100644 index 000000000..fe39dbb57 --- /dev/null +++ b/src/IconViewHeadlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewHeadlineSharp as default } diff --git a/src/IconViewHeadlineTwoTone.tsx b/src/IconViewHeadlineTwoTone.tsx new file mode 100644 index 000000000..5067e2590 --- /dev/null +++ b/src/IconViewHeadlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewHeadlineTwoTone as default } diff --git a/src/IconViewInArOutlined.tsx b/src/IconViewInArOutlined.tsx new file mode 100644 index 000000000..a665f3986 --- /dev/null +++ b/src/IconViewInArOutlined.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewInArOutlined as default } diff --git a/src/IconViewInArRound.tsx b/src/IconViewInArRound.tsx new file mode 100644 index 000000000..572e5e485 --- /dev/null +++ b/src/IconViewInArRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewInArRound as default } diff --git a/src/IconViewInArSharp.tsx b/src/IconViewInArSharp.tsx new file mode 100644 index 000000000..0d9fe05ed --- /dev/null +++ b/src/IconViewInArSharp.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewInArSharp as default } diff --git a/src/IconViewInArTwoTone.tsx b/src/IconViewInArTwoTone.tsx new file mode 100644 index 000000000..be206f228 --- /dev/null +++ b/src/IconViewInArTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconViewInArTwoTone as default } diff --git a/src/IconViewKanbanOutlined.tsx b/src/IconViewKanbanOutlined.tsx new file mode 100644 index 000000000..89e1c2ccf --- /dev/null +++ b/src/IconViewKanbanOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconViewKanbanOutlined as default } diff --git a/src/IconViewKanbanRound.tsx b/src/IconViewKanbanRound.tsx new file mode 100644 index 000000000..e711a7fc2 --- /dev/null +++ b/src/IconViewKanbanRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconViewKanbanRound as default } diff --git a/src/IconViewKanbanSharp.tsx b/src/IconViewKanbanSharp.tsx new file mode 100644 index 000000000..0ff93dd7b --- /dev/null +++ b/src/IconViewKanbanSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewKanbanSharp as default } diff --git a/src/IconViewKanbanTwoTone.tsx b/src/IconViewKanbanTwoTone.tsx new file mode 100644 index 000000000..69f86d2ba --- /dev/null +++ b/src/IconViewKanbanTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewKanbanTwoTone as default } diff --git a/src/IconViewListOutlined.tsx b/src/IconViewListOutlined.tsx new file mode 100644 index 000000000..520b50ebc --- /dev/null +++ b/src/IconViewListOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewListOutlined as default } diff --git a/src/IconViewListRound.tsx b/src/IconViewListRound.tsx new file mode 100644 index 000000000..a90ed541d --- /dev/null +++ b/src/IconViewListRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewListRound as default } diff --git a/src/IconViewListSharp.tsx b/src/IconViewListSharp.tsx new file mode 100644 index 000000000..901490f0a --- /dev/null +++ b/src/IconViewListSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewListSharp as default } diff --git a/src/IconViewListTwoTone.tsx b/src/IconViewListTwoTone.tsx new file mode 100644 index 000000000..2c7d21073 --- /dev/null +++ b/src/IconViewListTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewListTwoTone as default } diff --git a/src/IconViewModuleOutlined.tsx b/src/IconViewModuleOutlined.tsx new file mode 100644 index 000000000..baa1b46be --- /dev/null +++ b/src/IconViewModuleOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewModuleOutlined as default } diff --git a/src/IconViewModuleRound.tsx b/src/IconViewModuleRound.tsx new file mode 100644 index 000000000..4eb59df8a --- /dev/null +++ b/src/IconViewModuleRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewModuleRound as default } diff --git a/src/IconViewModuleSharp.tsx b/src/IconViewModuleSharp.tsx new file mode 100644 index 000000000..0420b8266 --- /dev/null +++ b/src/IconViewModuleSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewModuleSharp as default } diff --git a/src/IconViewModuleTwoTone.tsx b/src/IconViewModuleTwoTone.tsx new file mode 100644 index 000000000..7e5bc2ad2 --- /dev/null +++ b/src/IconViewModuleTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewModuleTwoTone as default } diff --git a/src/IconViewQuiltOutlined.tsx b/src/IconViewQuiltOutlined.tsx new file mode 100644 index 000000000..f60adcc35 --- /dev/null +++ b/src/IconViewQuiltOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewQuiltOutlined as default } diff --git a/src/IconViewQuiltRound.tsx b/src/IconViewQuiltRound.tsx new file mode 100644 index 000000000..baa467413 --- /dev/null +++ b/src/IconViewQuiltRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewQuiltRound as default } diff --git a/src/IconViewQuiltSharp.tsx b/src/IconViewQuiltSharp.tsx new file mode 100644 index 000000000..785033852 --- /dev/null +++ b/src/IconViewQuiltSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewQuiltSharp as default } diff --git a/src/IconViewQuiltTwoTone.tsx b/src/IconViewQuiltTwoTone.tsx new file mode 100644 index 000000000..d5830851f --- /dev/null +++ b/src/IconViewQuiltTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewQuiltTwoTone as default } diff --git a/src/IconViewSidebarOutlined.tsx b/src/IconViewSidebarOutlined.tsx new file mode 100644 index 000000000..1636a854e --- /dev/null +++ b/src/IconViewSidebarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewSidebarOutlined as default } diff --git a/src/IconViewSidebarRound.tsx b/src/IconViewSidebarRound.tsx new file mode 100644 index 000000000..fe9c9924e --- /dev/null +++ b/src/IconViewSidebarRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewSidebarRound as default } diff --git a/src/IconViewSidebarSharp.tsx b/src/IconViewSidebarSharp.tsx new file mode 100644 index 000000000..4e59920f4 --- /dev/null +++ b/src/IconViewSidebarSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconViewSidebarSharp as default } diff --git a/src/IconViewSidebarTwoTone.tsx b/src/IconViewSidebarTwoTone.tsx new file mode 100644 index 000000000..1d8032913 --- /dev/null +++ b/src/IconViewSidebarTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconViewSidebarTwoTone as default } diff --git a/src/IconViewStreamOutlined.tsx b/src/IconViewStreamOutlined.tsx new file mode 100644 index 000000000..38e6fcb52 --- /dev/null +++ b/src/IconViewStreamOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewStreamOutlined as default } diff --git a/src/IconViewStreamRound.tsx b/src/IconViewStreamRound.tsx new file mode 100644 index 000000000..d858bb1fc --- /dev/null +++ b/src/IconViewStreamRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewStreamRound as default } diff --git a/src/IconViewStreamSharp.tsx b/src/IconViewStreamSharp.tsx new file mode 100644 index 000000000..ad4409d4b --- /dev/null +++ b/src/IconViewStreamSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewStreamSharp as default } diff --git a/src/IconViewStreamTwoTone.tsx b/src/IconViewStreamTwoTone.tsx new file mode 100644 index 000000000..515258b2e --- /dev/null +++ b/src/IconViewStreamTwoTone.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewStreamTwoTone as default } diff --git a/src/IconViewTimelineOutlined.tsx b/src/IconViewTimelineOutlined.tsx new file mode 100644 index 000000000..7275e33e4 --- /dev/null +++ b/src/IconViewTimelineOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconViewTimelineOutlined as default } diff --git a/src/IconViewTimelineRound.tsx b/src/IconViewTimelineRound.tsx new file mode 100644 index 000000000..34c833bab --- /dev/null +++ b/src/IconViewTimelineRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconViewTimelineRound as default } diff --git a/src/IconViewTimelineSharp.tsx b/src/IconViewTimelineSharp.tsx new file mode 100644 index 000000000..08ece0835 --- /dev/null +++ b/src/IconViewTimelineSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconViewTimelineSharp as default } diff --git a/src/IconViewTimelineTwoTone.tsx b/src/IconViewTimelineTwoTone.tsx new file mode 100644 index 000000000..0d81a129f --- /dev/null +++ b/src/IconViewTimelineTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconViewTimelineTwoTone as default } diff --git a/src/IconViewWeekOutlined.tsx b/src/IconViewWeekOutlined.tsx new file mode 100644 index 000000000..0ebadcf67 --- /dev/null +++ b/src/IconViewWeekOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewWeekOutlined as default } diff --git a/src/IconViewWeekRound.tsx b/src/IconViewWeekRound.tsx new file mode 100644 index 000000000..1407044e1 --- /dev/null +++ b/src/IconViewWeekRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewWeekRound as default } diff --git a/src/IconViewWeekSharp.tsx b/src/IconViewWeekSharp.tsx new file mode 100644 index 000000000..4fbcc8f8e --- /dev/null +++ b/src/IconViewWeekSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconViewWeekSharp as default } diff --git a/src/IconViewWeekTwoTone.tsx b/src/IconViewWeekTwoTone.tsx new file mode 100644 index 000000000..04a62ef74 --- /dev/null +++ b/src/IconViewWeekTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconViewWeekTwoTone as default } diff --git a/src/IconVignetteOutlined.tsx b/src/IconVignetteOutlined.tsx new file mode 100644 index 000000000..d04a1a570 --- /dev/null +++ b/src/IconVignetteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVignetteOutlined as default } diff --git a/src/IconVignetteRound.tsx b/src/IconVignetteRound.tsx new file mode 100644 index 000000000..0af67eb5d --- /dev/null +++ b/src/IconVignetteRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVignetteRound as default } diff --git a/src/IconVignetteSharp.tsx b/src/IconVignetteSharp.tsx new file mode 100644 index 000000000..3b25416a5 --- /dev/null +++ b/src/IconVignetteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVignetteSharp as default } diff --git a/src/IconVignetteTwoTone.tsx b/src/IconVignetteTwoTone.tsx new file mode 100644 index 000000000..8fbd0998d --- /dev/null +++ b/src/IconVignetteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVignetteTwoTone as default } diff --git a/src/IconVillaOutlined.tsx b/src/IconVillaOutlined.tsx new file mode 100644 index 000000000..40aaf5cd5 --- /dev/null +++ b/src/IconVillaOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVillaOutlined as default } diff --git a/src/IconVillaRound.tsx b/src/IconVillaRound.tsx new file mode 100644 index 000000000..2e03ebace --- /dev/null +++ b/src/IconVillaRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVillaRound as default } diff --git a/src/IconVillaSharp.tsx b/src/IconVillaSharp.tsx new file mode 100644 index 000000000..8d327b05e --- /dev/null +++ b/src/IconVillaSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVillaSharp as default } diff --git a/src/IconVillaTwoTone.tsx b/src/IconVillaTwoTone.tsx new file mode 100644 index 000000000..9848a6cac --- /dev/null +++ b/src/IconVillaTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVillaTwoTone as default } diff --git a/src/IconVisibilityOffOutlined.tsx b/src/IconVisibilityOffOutlined.tsx new file mode 100644 index 000000000..630910716 --- /dev/null +++ b/src/IconVisibilityOffOutlined.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilityOffOutlined as default } diff --git a/src/IconVisibilityOffRound.tsx b/src/IconVisibilityOffRound.tsx new file mode 100644 index 000000000..e989e8e5d --- /dev/null +++ b/src/IconVisibilityOffRound.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilityOffRound as default } diff --git a/src/IconVisibilityOffSharp.tsx b/src/IconVisibilityOffSharp.tsx new file mode 100644 index 000000000..4b5653375 --- /dev/null +++ b/src/IconVisibilityOffSharp.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilityOffSharp as default } diff --git a/src/IconVisibilityOffTwoTone.tsx b/src/IconVisibilityOffTwoTone.tsx new file mode 100644 index 000000000..47d96e123 --- /dev/null +++ b/src/IconVisibilityOffTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVisibilityOffTwoTone as default } diff --git a/src/IconVisibilityOutlined.tsx b/src/IconVisibilityOutlined.tsx new file mode 100644 index 000000000..f227589bb --- /dev/null +++ b/src/IconVisibilityOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilityOutlined as default } diff --git a/src/IconVisibilityRound.tsx b/src/IconVisibilityRound.tsx new file mode 100644 index 000000000..03c6bbb84 --- /dev/null +++ b/src/IconVisibilityRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilityRound as default } diff --git a/src/IconVisibilitySharp.tsx b/src/IconVisibilitySharp.tsx new file mode 100644 index 000000000..a36dcdbef --- /dev/null +++ b/src/IconVisibilitySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilitySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVisibilitySharp as default } diff --git a/src/IconVisibilityTwoTone.tsx b/src/IconVisibilityTwoTone.tsx new file mode 100644 index 000000000..14374f82b --- /dev/null +++ b/src/IconVisibilityTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVisibilityTwoTone as default } diff --git a/src/IconVoiceChatOutlined.tsx b/src/IconVoiceChatOutlined.tsx new file mode 100644 index 000000000..fb6e0ca27 --- /dev/null +++ b/src/IconVoiceChatOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceChatOutlined as default } diff --git a/src/IconVoiceChatRound.tsx b/src/IconVoiceChatRound.tsx new file mode 100644 index 000000000..c4405d60d --- /dev/null +++ b/src/IconVoiceChatRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceChatRound as default } diff --git a/src/IconVoiceChatSharp.tsx b/src/IconVoiceChatSharp.tsx new file mode 100644 index 000000000..d09237c38 --- /dev/null +++ b/src/IconVoiceChatSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceChatSharp as default } diff --git a/src/IconVoiceChatTwoTone.tsx b/src/IconVoiceChatTwoTone.tsx new file mode 100644 index 000000000..e6a636ed5 --- /dev/null +++ b/src/IconVoiceChatTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVoiceChatTwoTone as default } diff --git a/src/IconVoiceOverOffOutlined.tsx b/src/IconVoiceOverOffOutlined.tsx new file mode 100644 index 000000000..d2e47aac2 --- /dev/null +++ b/src/IconVoiceOverOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceOverOffOutlined as default } diff --git a/src/IconVoiceOverOffRound.tsx b/src/IconVoiceOverOffRound.tsx new file mode 100644 index 000000000..7fa73289e --- /dev/null +++ b/src/IconVoiceOverOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceOverOffRound as default } diff --git a/src/IconVoiceOverOffSharp.tsx b/src/IconVoiceOverOffSharp.tsx new file mode 100644 index 000000000..1bae1975b --- /dev/null +++ b/src/IconVoiceOverOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoiceOverOffSharp as default } diff --git a/src/IconVoiceOverOffTwoTone.tsx b/src/IconVoiceOverOffTwoTone.tsx new file mode 100644 index 000000000..46c6881f0 --- /dev/null +++ b/src/IconVoiceOverOffTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVoiceOverOffTwoTone as default } diff --git a/src/IconVoicemailOutlined.tsx b/src/IconVoicemailOutlined.tsx new file mode 100644 index 000000000..deb82fa0c --- /dev/null +++ b/src/IconVoicemailOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoicemailOutlined as default } diff --git a/src/IconVoicemailRound.tsx b/src/IconVoicemailRound.tsx new file mode 100644 index 000000000..3350bc250 --- /dev/null +++ b/src/IconVoicemailRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoicemailRound as default } diff --git a/src/IconVoicemailSharp.tsx b/src/IconVoicemailSharp.tsx new file mode 100644 index 000000000..77d4d7096 --- /dev/null +++ b/src/IconVoicemailSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoicemailSharp as default } diff --git a/src/IconVoicemailTwoTone.tsx b/src/IconVoicemailTwoTone.tsx new file mode 100644 index 000000000..df792d53f --- /dev/null +++ b/src/IconVoicemailTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVoicemailTwoTone as default } diff --git a/src/IconVolcanoOutlined.tsx b/src/IconVolcanoOutlined.tsx new file mode 100644 index 000000000..550841832 --- /dev/null +++ b/src/IconVolcanoOutlined.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconVolcanoOutlined as default } diff --git a/src/IconVolcanoRound.tsx b/src/IconVolcanoRound.tsx new file mode 100644 index 000000000..1bd47afe8 --- /dev/null +++ b/src/IconVolcanoRound.tsx @@ -0,0 +1,35 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconVolcanoRound as default } diff --git a/src/IconVolcanoSharp.tsx b/src/IconVolcanoSharp.tsx new file mode 100644 index 000000000..370e2382e --- /dev/null +++ b/src/IconVolcanoSharp.tsx @@ -0,0 +1,46 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + +) + +export { IconVolcanoSharp as default } diff --git a/src/IconVolcanoTwoTone.tsx b/src/IconVolcanoTwoTone.tsx new file mode 100644 index 000000000..af8925baf --- /dev/null +++ b/src/IconVolcanoTwoTone.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + +) + +export { IconVolcanoTwoTone as default } diff --git a/src/IconVolumeDownOutlined.tsx b/src/IconVolumeDownOutlined.tsx new file mode 100644 index 000000000..0c164feca --- /dev/null +++ b/src/IconVolumeDownOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeDownOutlined as default } diff --git a/src/IconVolumeDownRound.tsx b/src/IconVolumeDownRound.tsx new file mode 100644 index 000000000..0ff40c9a7 --- /dev/null +++ b/src/IconVolumeDownRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownRound as default } diff --git a/src/IconVolumeDownSharp.tsx b/src/IconVolumeDownSharp.tsx new file mode 100644 index 000000000..ae8d962cd --- /dev/null +++ b/src/IconVolumeDownSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeDownSharp as default } diff --git a/src/IconVolumeDownTwoTone.tsx b/src/IconVolumeDownTwoTone.tsx new file mode 100644 index 000000000..4bdd39a24 --- /dev/null +++ b/src/IconVolumeDownTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVolumeDownTwoTone as default } diff --git a/src/IconVolumeMuteOutlined.tsx b/src/IconVolumeMuteOutlined.tsx new file mode 100644 index 000000000..14f21d574 --- /dev/null +++ b/src/IconVolumeMuteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeMuteOutlined as default } diff --git a/src/IconVolumeMuteRound.tsx b/src/IconVolumeMuteRound.tsx new file mode 100644 index 000000000..3958624a5 --- /dev/null +++ b/src/IconVolumeMuteRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeMuteRound as default } diff --git a/src/IconVolumeMuteSharp.tsx b/src/IconVolumeMuteSharp.tsx new file mode 100644 index 000000000..7bd38f95e --- /dev/null +++ b/src/IconVolumeMuteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeMuteSharp as default } diff --git a/src/IconVolumeMuteTwoTone.tsx b/src/IconVolumeMuteTwoTone.tsx new file mode 100644 index 000000000..83e485820 --- /dev/null +++ b/src/IconVolumeMuteTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVolumeMuteTwoTone as default } diff --git a/src/IconVolumeOffOutlined.tsx b/src/IconVolumeOffOutlined.tsx new file mode 100644 index 000000000..71e21994a --- /dev/null +++ b/src/IconVolumeOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeOffOutlined as default } diff --git a/src/IconVolumeOffRound.tsx b/src/IconVolumeOffRound.tsx new file mode 100644 index 000000000..6848376b8 --- /dev/null +++ b/src/IconVolumeOffRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeOffRound as default } diff --git a/src/IconVolumeOffSharp.tsx b/src/IconVolumeOffSharp.tsx new file mode 100644 index 000000000..078f9a2ff --- /dev/null +++ b/src/IconVolumeOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeOffSharp as default } diff --git a/src/IconVolumeOffTwoTone.tsx b/src/IconVolumeOffTwoTone.tsx new file mode 100644 index 000000000..e0d9fe59c --- /dev/null +++ b/src/IconVolumeOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVolumeOffTwoTone as default } diff --git a/src/IconVolumeUpOutlined.tsx b/src/IconVolumeUpOutlined.tsx new file mode 100644 index 000000000..8c5589cdf --- /dev/null +++ b/src/IconVolumeUpOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeUpOutlined as default } diff --git a/src/IconVolumeUpRound.tsx b/src/IconVolumeUpRound.tsx new file mode 100644 index 000000000..4f3153338 --- /dev/null +++ b/src/IconVolumeUpRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeUpRound as default } diff --git a/src/IconVolumeUpSharp.tsx b/src/IconVolumeUpSharp.tsx new file mode 100644 index 000000000..1c5e43045 --- /dev/null +++ b/src/IconVolumeUpSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVolumeUpSharp as default } diff --git a/src/IconVolumeUpTwoTone.tsx b/src/IconVolumeUpTwoTone.tsx new file mode 100644 index 000000000..5136f702c --- /dev/null +++ b/src/IconVolumeUpTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVolumeUpTwoTone as default } diff --git a/src/IconVolunteerActivismOutlined.tsx b/src/IconVolunteerActivismOutlined.tsx new file mode 100644 index 000000000..38d75c321 --- /dev/null +++ b/src/IconVolunteerActivismOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconVolunteerActivismOutlined as default } diff --git a/src/IconVolunteerActivismRound.tsx b/src/IconVolunteerActivismRound.tsx new file mode 100644 index 000000000..b8202b02d --- /dev/null +++ b/src/IconVolunteerActivismRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVolunteerActivismRound as default } diff --git a/src/IconVolunteerActivismSharp.tsx b/src/IconVolunteerActivismSharp.tsx new file mode 100644 index 000000000..758b7053d --- /dev/null +++ b/src/IconVolunteerActivismSharp.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVolunteerActivismSharp as default } diff --git a/src/IconVolunteerActivismTwoTone.tsx b/src/IconVolunteerActivismTwoTone.tsx new file mode 100644 index 000000000..3c04e798f --- /dev/null +++ b/src/IconVolunteerActivismTwoTone.tsx @@ -0,0 +1,33 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconVolunteerActivismTwoTone as default } diff --git a/src/IconVpnKeyOffOutlined.tsx b/src/IconVpnKeyOffOutlined.tsx new file mode 100644 index 000000000..07a649db2 --- /dev/null +++ b/src/IconVpnKeyOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconVpnKeyOffOutlined as default } diff --git a/src/IconVpnKeyOffRound.tsx b/src/IconVpnKeyOffRound.tsx new file mode 100644 index 000000000..7575a0aeb --- /dev/null +++ b/src/IconVpnKeyOffRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconVpnKeyOffRound as default } diff --git a/src/IconVpnKeyOffSharp.tsx b/src/IconVpnKeyOffSharp.tsx new file mode 100644 index 000000000..2d1eab33b --- /dev/null +++ b/src/IconVpnKeyOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconVpnKeyOffSharp as default } diff --git a/src/IconVpnKeyOffTwoTone.tsx b/src/IconVpnKeyOffTwoTone.tsx new file mode 100644 index 000000000..c9a9684dc --- /dev/null +++ b/src/IconVpnKeyOffTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconVpnKeyOffTwoTone as default } diff --git a/src/IconVpnKeyOutlined.tsx b/src/IconVpnKeyOutlined.tsx new file mode 100644 index 000000000..2b24ec454 --- /dev/null +++ b/src/IconVpnKeyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVpnKeyOutlined as default } diff --git a/src/IconVpnKeyRound.tsx b/src/IconVpnKeyRound.tsx new file mode 100644 index 000000000..45ba746e3 --- /dev/null +++ b/src/IconVpnKeyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVpnKeyRound as default } diff --git a/src/IconVpnKeySharp.tsx b/src/IconVpnKeySharp.tsx new file mode 100644 index 000000000..07aa252f7 --- /dev/null +++ b/src/IconVpnKeySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVpnKeySharp as default } diff --git a/src/IconVpnKeyTwoTone.tsx b/src/IconVpnKeyTwoTone.tsx new file mode 100644 index 000000000..5094bdb3d --- /dev/null +++ b/src/IconVpnKeyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVpnKeyTwoTone as default } diff --git a/src/IconVpnLockOutlined.tsx b/src/IconVpnLockOutlined.tsx new file mode 100644 index 000000000..e42653dca --- /dev/null +++ b/src/IconVpnLockOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVpnLockOutlined as default } diff --git a/src/IconVpnLockRound.tsx b/src/IconVpnLockRound.tsx new file mode 100644 index 000000000..a4c9ab17f --- /dev/null +++ b/src/IconVpnLockRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVpnLockRound as default } diff --git a/src/IconVpnLockSharp.tsx b/src/IconVpnLockSharp.tsx new file mode 100644 index 000000000..59fea76d6 --- /dev/null +++ b/src/IconVpnLockSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconVpnLockSharp as default } diff --git a/src/IconVpnLockTwoTone.tsx b/src/IconVpnLockTwoTone.tsx new file mode 100644 index 000000000..0ad0dfda7 --- /dev/null +++ b/src/IconVpnLockTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconVpnLockTwoTone as default } diff --git a/src/IconVrpanoOutlined.tsx b/src/IconVrpanoOutlined.tsx new file mode 100644 index 000000000..9274be706 --- /dev/null +++ b/src/IconVrpanoOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconVrpanoOutlined as default } diff --git a/src/IconVrpanoRound.tsx b/src/IconVrpanoRound.tsx new file mode 100644 index 000000000..f54bcf977 --- /dev/null +++ b/src/IconVrpanoRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVrpanoRound as default } diff --git a/src/IconVrpanoSharp.tsx b/src/IconVrpanoSharp.tsx new file mode 100644 index 000000000..af9a8ef6c --- /dev/null +++ b/src/IconVrpanoSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconVrpanoSharp as default } diff --git a/src/IconVrpanoTwoTone.tsx b/src/IconVrpanoTwoTone.tsx new file mode 100644 index 000000000..d064f6dda --- /dev/null +++ b/src/IconVrpanoTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconVrpanoTwoTone as default } diff --git a/src/IconWalletOutlined.tsx b/src/IconWalletOutlined.tsx new file mode 100644 index 000000000..eac29104e --- /dev/null +++ b/src/IconWalletOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWalletOutlined as default } diff --git a/src/IconWalletRound.tsx b/src/IconWalletRound.tsx new file mode 100644 index 000000000..69968ac47 --- /dev/null +++ b/src/IconWalletRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWalletRound as default } diff --git a/src/IconWalletSharp.tsx b/src/IconWalletSharp.tsx new file mode 100644 index 000000000..a6c0cee0b --- /dev/null +++ b/src/IconWalletSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWalletSharp as default } diff --git a/src/IconWalletTwoTone.tsx b/src/IconWalletTwoTone.tsx new file mode 100644 index 000000000..eb96d8e7d --- /dev/null +++ b/src/IconWalletTwoTone.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWalletTwoTone as default } diff --git a/src/IconWallpaperOutlined.tsx b/src/IconWallpaperOutlined.tsx new file mode 100644 index 000000000..f08d27611 --- /dev/null +++ b/src/IconWallpaperOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWallpaperOutlined as default } diff --git a/src/IconWallpaperRound.tsx b/src/IconWallpaperRound.tsx new file mode 100644 index 000000000..5a5868679 --- /dev/null +++ b/src/IconWallpaperRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWallpaperRound as default } diff --git a/src/IconWallpaperSharp.tsx b/src/IconWallpaperSharp.tsx new file mode 100644 index 000000000..5dcc72613 --- /dev/null +++ b/src/IconWallpaperSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWallpaperSharp as default } diff --git a/src/IconWallpaperTwoTone.tsx b/src/IconWallpaperTwoTone.tsx new file mode 100644 index 000000000..dddeefe65 --- /dev/null +++ b/src/IconWallpaperTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWallpaperTwoTone as default } diff --git a/src/IconWarehouseOutlined.tsx b/src/IconWarehouseOutlined.tsx new file mode 100644 index 000000000..1e1f1b9cf --- /dev/null +++ b/src/IconWarehouseOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWarehouseOutlined as default } diff --git a/src/IconWarehouseRound.tsx b/src/IconWarehouseRound.tsx new file mode 100644 index 000000000..8059e76ad --- /dev/null +++ b/src/IconWarehouseRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWarehouseRound as default } diff --git a/src/IconWarehouseSharp.tsx b/src/IconWarehouseSharp.tsx new file mode 100644 index 000000000..c69f3f826 --- /dev/null +++ b/src/IconWarehouseSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWarehouseSharp as default } diff --git a/src/IconWarehouseTwoTone.tsx b/src/IconWarehouseTwoTone.tsx new file mode 100644 index 000000000..4464602d3 --- /dev/null +++ b/src/IconWarehouseTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWarehouseTwoTone as default } diff --git a/src/IconWarningAmberOutlined.tsx b/src/IconWarningAmberOutlined.tsx new file mode 100644 index 000000000..b08957922 --- /dev/null +++ b/src/IconWarningAmberOutlined.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningAmberOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningAmberOutlined as default } diff --git a/src/IconWarningAmberRound.tsx b/src/IconWarningAmberRound.tsx new file mode 100644 index 000000000..8e70e8317 --- /dev/null +++ b/src/IconWarningAmberRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningAmberRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningAmberRound as default } diff --git a/src/IconWarningAmberSharp.tsx b/src/IconWarningAmberSharp.tsx new file mode 100644 index 000000000..a4b1038a0 --- /dev/null +++ b/src/IconWarningAmberSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningAmberSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningAmberSharp as default } diff --git a/src/IconWarningAmberTwoTone.tsx b/src/IconWarningAmberTwoTone.tsx new file mode 100644 index 000000000..9a3ba8c45 --- /dev/null +++ b/src/IconWarningAmberTwoTone.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningAmberTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningAmberTwoTone as default } diff --git a/src/IconWarningOutlined.tsx b/src/IconWarningOutlined.tsx new file mode 100644 index 000000000..34bf16d02 --- /dev/null +++ b/src/IconWarningOutlined.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningOutlined as default } diff --git a/src/IconWarningRound.tsx b/src/IconWarningRound.tsx new file mode 100644 index 000000000..92865e19f --- /dev/null +++ b/src/IconWarningRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningRound as default } diff --git a/src/IconWarningSharp.tsx b/src/IconWarningSharp.tsx new file mode 100644 index 000000000..71f0ea52b --- /dev/null +++ b/src/IconWarningSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningSharp as default } diff --git a/src/IconWarningTwoTone.tsx b/src/IconWarningTwoTone.tsx new file mode 100644 index 000000000..44f103df9 --- /dev/null +++ b/src/IconWarningTwoTone.tsx @@ -0,0 +1,15 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWarningTwoTone as default } diff --git a/src/IconWashOutlined.tsx b/src/IconWashOutlined.tsx new file mode 100644 index 000000000..f57aa9082 --- /dev/null +++ b/src/IconWashOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWashOutlined as default } diff --git a/src/IconWashRound.tsx b/src/IconWashRound.tsx new file mode 100644 index 000000000..f42e1df0d --- /dev/null +++ b/src/IconWashRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWashRound as default } diff --git a/src/IconWashSharp.tsx b/src/IconWashSharp.tsx new file mode 100644 index 000000000..500a38533 --- /dev/null +++ b/src/IconWashSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWashSharp as default } diff --git a/src/IconWashTwoTone.tsx b/src/IconWashTwoTone.tsx new file mode 100644 index 000000000..7fe627ae5 --- /dev/null +++ b/src/IconWashTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconWashTwoTone as default } diff --git a/src/IconWatchLaterOutlined.tsx b/src/IconWatchLaterOutlined.tsx new file mode 100644 index 000000000..fcf29c73a --- /dev/null +++ b/src/IconWatchLaterOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchLaterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWatchLaterOutlined as default } diff --git a/src/IconWatchLaterRound.tsx b/src/IconWatchLaterRound.tsx new file mode 100644 index 000000000..266ad26b7 --- /dev/null +++ b/src/IconWatchLaterRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchLaterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWatchLaterRound as default } diff --git a/src/IconWatchLaterSharp.tsx b/src/IconWatchLaterSharp.tsx new file mode 100644 index 000000000..cc06e7c8d --- /dev/null +++ b/src/IconWatchLaterSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchLaterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWatchLaterSharp as default } diff --git a/src/IconWatchLaterTwoTone.tsx b/src/IconWatchLaterTwoTone.tsx new file mode 100644 index 000000000..7c6e8d515 --- /dev/null +++ b/src/IconWatchLaterTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchLaterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWatchLaterTwoTone as default } diff --git a/src/IconWatchOffOutlined.tsx b/src/IconWatchOffOutlined.tsx new file mode 100644 index 000000000..b98c55ef4 --- /dev/null +++ b/src/IconWatchOffOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWatchOffOutlined as default } diff --git a/src/IconWatchOffRound.tsx b/src/IconWatchOffRound.tsx new file mode 100644 index 000000000..944f4b914 --- /dev/null +++ b/src/IconWatchOffRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWatchOffRound as default } diff --git a/src/IconWatchOffSharp.tsx b/src/IconWatchOffSharp.tsx new file mode 100644 index 000000000..5c97187f1 --- /dev/null +++ b/src/IconWatchOffSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWatchOffSharp as default } diff --git a/src/IconWatchOffTwoTone.tsx b/src/IconWatchOffTwoTone.tsx new file mode 100644 index 000000000..0de07c981 --- /dev/null +++ b/src/IconWatchOffTwoTone.tsx @@ -0,0 +1,32 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWatchOffTwoTone as default } diff --git a/src/IconWatchOutlined.tsx b/src/IconWatchOutlined.tsx new file mode 100644 index 000000000..301b01cee --- /dev/null +++ b/src/IconWatchOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWatchOutlined as default } diff --git a/src/IconWatchRound.tsx b/src/IconWatchRound.tsx new file mode 100644 index 000000000..24a941677 --- /dev/null +++ b/src/IconWatchRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchRound as default } diff --git a/src/IconWatchSharp.tsx b/src/IconWatchSharp.tsx new file mode 100644 index 000000000..1b1d6a1fb --- /dev/null +++ b/src/IconWatchSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWatchSharp as default } diff --git a/src/IconWatchTwoTone.tsx b/src/IconWatchTwoTone.tsx new file mode 100644 index 000000000..32429b90f --- /dev/null +++ b/src/IconWatchTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWatchTwoTone as default } diff --git a/src/IconWaterDamageOutlined.tsx b/src/IconWaterDamageOutlined.tsx new file mode 100644 index 000000000..6b6ae3ad6 --- /dev/null +++ b/src/IconWaterDamageOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDamageOutlined as default } diff --git a/src/IconWaterDamageRound.tsx b/src/IconWaterDamageRound.tsx new file mode 100644 index 000000000..03aa737e6 --- /dev/null +++ b/src/IconWaterDamageRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDamageRound as default } diff --git a/src/IconWaterDamageSharp.tsx b/src/IconWaterDamageSharp.tsx new file mode 100644 index 000000000..057283ca5 --- /dev/null +++ b/src/IconWaterDamageSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDamageSharp as default } diff --git a/src/IconWaterDamageTwoTone.tsx b/src/IconWaterDamageTwoTone.tsx new file mode 100644 index 000000000..7dfe6e29d --- /dev/null +++ b/src/IconWaterDamageTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWaterDamageTwoTone as default } diff --git a/src/IconWaterDropOutlined.tsx b/src/IconWaterDropOutlined.tsx new file mode 100644 index 000000000..a07fcaa5b --- /dev/null +++ b/src/IconWaterDropOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDropOutlined as default } diff --git a/src/IconWaterDropRound.tsx b/src/IconWaterDropRound.tsx new file mode 100644 index 000000000..a5fb9ea11 --- /dev/null +++ b/src/IconWaterDropRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDropRound as default } diff --git a/src/IconWaterDropSharp.tsx b/src/IconWaterDropSharp.tsx new file mode 100644 index 000000000..13ca3fb15 --- /dev/null +++ b/src/IconWaterDropSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWaterDropSharp as default } diff --git a/src/IconWaterDropTwoTone.tsx b/src/IconWaterDropTwoTone.tsx new file mode 100644 index 000000000..4f1d96978 --- /dev/null +++ b/src/IconWaterDropTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWaterDropTwoTone as default } diff --git a/src/IconWaterOutlined.tsx b/src/IconWaterOutlined.tsx new file mode 100644 index 000000000..52797ed29 --- /dev/null +++ b/src/IconWaterOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterOutlined as default } diff --git a/src/IconWaterRound.tsx b/src/IconWaterRound.tsx new file mode 100644 index 000000000..3c1a29c89 --- /dev/null +++ b/src/IconWaterRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterRound as default } diff --git a/src/IconWaterSharp.tsx b/src/IconWaterSharp.tsx new file mode 100644 index 000000000..986dbb36c --- /dev/null +++ b/src/IconWaterSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterSharp as default } diff --git a/src/IconWaterTwoTone.tsx b/src/IconWaterTwoTone.tsx new file mode 100644 index 000000000..41540e644 --- /dev/null +++ b/src/IconWaterTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterTwoTone as default } diff --git a/src/IconWaterfallChartOutlined.tsx b/src/IconWaterfallChartOutlined.tsx new file mode 100644 index 000000000..e9ed07601 --- /dev/null +++ b/src/IconWaterfallChartOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterfallChartOutlined as default } diff --git a/src/IconWaterfallChartRound.tsx b/src/IconWaterfallChartRound.tsx new file mode 100644 index 000000000..43ed6286f --- /dev/null +++ b/src/IconWaterfallChartRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterfallChartRound as default } diff --git a/src/IconWaterfallChartSharp.tsx b/src/IconWaterfallChartSharp.tsx new file mode 100644 index 000000000..5e312886f --- /dev/null +++ b/src/IconWaterfallChartSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterfallChartSharp as default } diff --git a/src/IconWaterfallChartTwoTone.tsx b/src/IconWaterfallChartTwoTone.tsx new file mode 100644 index 000000000..f3c1aa19d --- /dev/null +++ b/src/IconWaterfallChartTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWaterfallChartTwoTone as default } diff --git a/src/IconWavesOutlined.tsx b/src/IconWavesOutlined.tsx new file mode 100644 index 000000000..f5cdd64a9 --- /dev/null +++ b/src/IconWavesOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavesOutlined as default } diff --git a/src/IconWavesRound.tsx b/src/IconWavesRound.tsx new file mode 100644 index 000000000..51be84ebc --- /dev/null +++ b/src/IconWavesRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavesRound as default } diff --git a/src/IconWavesSharp.tsx b/src/IconWavesSharp.tsx new file mode 100644 index 000000000..e13bf5dcc --- /dev/null +++ b/src/IconWavesSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavesSharp as default } diff --git a/src/IconWavesTwoTone.tsx b/src/IconWavesTwoTone.tsx new file mode 100644 index 000000000..d18d1922f --- /dev/null +++ b/src/IconWavesTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavesTwoTone as default } diff --git a/src/IconWavingHandOutlined.tsx b/src/IconWavingHandOutlined.tsx new file mode 100644 index 000000000..daefcadfb --- /dev/null +++ b/src/IconWavingHandOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavingHandOutlined as default } diff --git a/src/IconWavingHandRound.tsx b/src/IconWavingHandRound.tsx new file mode 100644 index 000000000..d95b7cd8c --- /dev/null +++ b/src/IconWavingHandRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavingHandRound as default } diff --git a/src/IconWavingHandSharp.tsx b/src/IconWavingHandSharp.tsx new file mode 100644 index 000000000..9cb88830a --- /dev/null +++ b/src/IconWavingHandSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWavingHandSharp as default } diff --git a/src/IconWavingHandTwoTone.tsx b/src/IconWavingHandTwoTone.tsx new file mode 100644 index 000000000..c4a989de1 --- /dev/null +++ b/src/IconWavingHandTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWavingHandTwoTone as default } diff --git a/src/IconWbAutoOutlined.tsx b/src/IconWbAutoOutlined.tsx new file mode 100644 index 000000000..ec56c1844 --- /dev/null +++ b/src/IconWbAutoOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbAutoOutlined as default } diff --git a/src/IconWbAutoRound.tsx b/src/IconWbAutoRound.tsx new file mode 100644 index 000000000..65ff964a9 --- /dev/null +++ b/src/IconWbAutoRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbAutoRound as default } diff --git a/src/IconWbAutoSharp.tsx b/src/IconWbAutoSharp.tsx new file mode 100644 index 000000000..081daa5ce --- /dev/null +++ b/src/IconWbAutoSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbAutoSharp as default } diff --git a/src/IconWbAutoTwoTone.tsx b/src/IconWbAutoTwoTone.tsx new file mode 100644 index 000000000..d8dde5849 --- /dev/null +++ b/src/IconWbAutoTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWbAutoTwoTone as default } diff --git a/src/IconWbCloudyOutlined.tsx b/src/IconWbCloudyOutlined.tsx new file mode 100644 index 000000000..0c3f9654b --- /dev/null +++ b/src/IconWbCloudyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbCloudyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbCloudyOutlined as default } diff --git a/src/IconWbCloudyRound.tsx b/src/IconWbCloudyRound.tsx new file mode 100644 index 000000000..d91788823 --- /dev/null +++ b/src/IconWbCloudyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbCloudyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbCloudyRound as default } diff --git a/src/IconWbCloudySharp.tsx b/src/IconWbCloudySharp.tsx new file mode 100644 index 000000000..f76543b17 --- /dev/null +++ b/src/IconWbCloudySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbCloudySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbCloudySharp as default } diff --git a/src/IconWbCloudyTwoTone.tsx b/src/IconWbCloudyTwoTone.tsx new file mode 100644 index 000000000..c6a88c096 --- /dev/null +++ b/src/IconWbCloudyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbCloudyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWbCloudyTwoTone as default } diff --git a/src/IconWbIncandescentOutlined.tsx b/src/IconWbIncandescentOutlined.tsx new file mode 100644 index 000000000..ae5756270 --- /dev/null +++ b/src/IconWbIncandescentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIncandescentOutlined as default } diff --git a/src/IconWbIncandescentRound.tsx b/src/IconWbIncandescentRound.tsx new file mode 100644 index 000000000..fc735f027 --- /dev/null +++ b/src/IconWbIncandescentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIncandescentRound as default } diff --git a/src/IconWbIncandescentSharp.tsx b/src/IconWbIncandescentSharp.tsx new file mode 100644 index 000000000..78e9515f5 --- /dev/null +++ b/src/IconWbIncandescentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIncandescentSharp as default } diff --git a/src/IconWbIncandescentTwoTone.tsx b/src/IconWbIncandescentTwoTone.tsx new file mode 100644 index 000000000..0716a5876 --- /dev/null +++ b/src/IconWbIncandescentTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWbIncandescentTwoTone as default } diff --git a/src/IconWbIridescentOutlined.tsx b/src/IconWbIridescentOutlined.tsx new file mode 100644 index 000000000..b2bc08d0f --- /dev/null +++ b/src/IconWbIridescentOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIridescentOutlined as default } diff --git a/src/IconWbIridescentRound.tsx b/src/IconWbIridescentRound.tsx new file mode 100644 index 000000000..911090795 --- /dev/null +++ b/src/IconWbIridescentRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIridescentRound as default } diff --git a/src/IconWbIridescentSharp.tsx b/src/IconWbIridescentSharp.tsx new file mode 100644 index 000000000..94f2f1f41 --- /dev/null +++ b/src/IconWbIridescentSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbIridescentSharp as default } diff --git a/src/IconWbIridescentTwoTone.tsx b/src/IconWbIridescentTwoTone.tsx new file mode 100644 index 000000000..30c9e2993 --- /dev/null +++ b/src/IconWbIridescentTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWbIridescentTwoTone as default } diff --git a/src/IconWbShadeOutlined.tsx b/src/IconWbShadeOutlined.tsx new file mode 100644 index 000000000..575175275 --- /dev/null +++ b/src/IconWbShadeOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWbShadeOutlined as default } diff --git a/src/IconWbShadeRound.tsx b/src/IconWbShadeRound.tsx new file mode 100644 index 000000000..9cbc590d9 --- /dev/null +++ b/src/IconWbShadeRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWbShadeRound as default } diff --git a/src/IconWbShadeSharp.tsx b/src/IconWbShadeSharp.tsx new file mode 100644 index 000000000..b72d0fa84 --- /dev/null +++ b/src/IconWbShadeSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWbShadeSharp as default } diff --git a/src/IconWbShadeTwoTone.tsx b/src/IconWbShadeTwoTone.tsx new file mode 100644 index 000000000..697d91b9c --- /dev/null +++ b/src/IconWbShadeTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWbShadeTwoTone as default } diff --git a/src/IconWbSunnyOutlined.tsx b/src/IconWbSunnyOutlined.tsx new file mode 100644 index 000000000..a30434b90 --- /dev/null +++ b/src/IconWbSunnyOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnyOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbSunnyOutlined as default } diff --git a/src/IconWbSunnyRound.tsx b/src/IconWbSunnyRound.tsx new file mode 100644 index 000000000..4224252b5 --- /dev/null +++ b/src/IconWbSunnyRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnyRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbSunnyRound as default } diff --git a/src/IconWbSunnySharp.tsx b/src/IconWbSunnySharp.tsx new file mode 100644 index 000000000..b47279ecc --- /dev/null +++ b/src/IconWbSunnySharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWbSunnySharp as default } diff --git a/src/IconWbSunnyTwoTone.tsx b/src/IconWbSunnyTwoTone.tsx new file mode 100644 index 000000000..78edcc755 --- /dev/null +++ b/src/IconWbSunnyTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnyTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWbSunnyTwoTone as default } diff --git a/src/IconWbTwilightOutlined.tsx b/src/IconWbTwilightOutlined.tsx new file mode 100644 index 000000000..138a435c7 --- /dev/null +++ b/src/IconWbTwilightOutlined.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWbTwilightOutlined as default } diff --git a/src/IconWbTwilightRound.tsx b/src/IconWbTwilightRound.tsx new file mode 100644 index 000000000..db2334e03 --- /dev/null +++ b/src/IconWbTwilightRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWbTwilightRound as default } diff --git a/src/IconWbTwilightSharp.tsx b/src/IconWbTwilightSharp.tsx new file mode 100644 index 000000000..fe4618470 --- /dev/null +++ b/src/IconWbTwilightSharp.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWbTwilightSharp as default } diff --git a/src/IconWbTwilightTwoTone.tsx b/src/IconWbTwilightTwoTone.tsx new file mode 100644 index 000000000..b40156beb --- /dev/null +++ b/src/IconWbTwilightTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWbTwilightTwoTone as default } diff --git a/src/IconWcOutlined.tsx b/src/IconWcOutlined.tsx new file mode 100644 index 000000000..0e052f4d0 --- /dev/null +++ b/src/IconWcOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWcOutlined as default } diff --git a/src/IconWcRound.tsx b/src/IconWcRound.tsx new file mode 100644 index 000000000..99fedb4f8 --- /dev/null +++ b/src/IconWcRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWcRound as default } diff --git a/src/IconWcSharp.tsx b/src/IconWcSharp.tsx new file mode 100644 index 000000000..7dcaff7bd --- /dev/null +++ b/src/IconWcSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWcSharp as default } diff --git a/src/IconWcTwoTone.tsx b/src/IconWcTwoTone.tsx new file mode 100644 index 000000000..b79397192 --- /dev/null +++ b/src/IconWcTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWcTwoTone as default } diff --git a/src/IconWebAssetOffOutlined.tsx b/src/IconWebAssetOffOutlined.tsx new file mode 100644 index 000000000..f89ec6737 --- /dev/null +++ b/src/IconWebAssetOffOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWebAssetOffOutlined as default } diff --git a/src/IconWebAssetOffRound.tsx b/src/IconWebAssetOffRound.tsx new file mode 100644 index 000000000..4596a81ee --- /dev/null +++ b/src/IconWebAssetOffRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWebAssetOffRound as default } diff --git a/src/IconWebAssetOffSharp.tsx b/src/IconWebAssetOffSharp.tsx new file mode 100644 index 000000000..0d74fe64b --- /dev/null +++ b/src/IconWebAssetOffSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWebAssetOffSharp as default } diff --git a/src/IconWebAssetOffTwoTone.tsx b/src/IconWebAssetOffTwoTone.tsx new file mode 100644 index 000000000..48b6095c3 --- /dev/null +++ b/src/IconWebAssetOffTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWebAssetOffTwoTone as default } diff --git a/src/IconWebAssetOutlined.tsx b/src/IconWebAssetOutlined.tsx new file mode 100644 index 000000000..9ce5f03ff --- /dev/null +++ b/src/IconWebAssetOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWebAssetOutlined as default } diff --git a/src/IconWebAssetRound.tsx b/src/IconWebAssetRound.tsx new file mode 100644 index 000000000..cb4503b7c --- /dev/null +++ b/src/IconWebAssetRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetRound as default } diff --git a/src/IconWebAssetSharp.tsx b/src/IconWebAssetSharp.tsx new file mode 100644 index 000000000..2b80d8d34 --- /dev/null +++ b/src/IconWebAssetSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWebAssetSharp as default } diff --git a/src/IconWebAssetTwoTone.tsx b/src/IconWebAssetTwoTone.tsx new file mode 100644 index 000000000..380612a31 --- /dev/null +++ b/src/IconWebAssetTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWebAssetTwoTone as default } diff --git a/src/IconWebOutlined.tsx b/src/IconWebOutlined.tsx new file mode 100644 index 000000000..5f535b6a2 --- /dev/null +++ b/src/IconWebOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWebOutlined as default } diff --git a/src/IconWebRound.tsx b/src/IconWebRound.tsx new file mode 100644 index 000000000..ca9bd476c --- /dev/null +++ b/src/IconWebRound.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebRound as default } diff --git a/src/IconWebSharp.tsx b/src/IconWebSharp.tsx new file mode 100644 index 000000000..c700f0434 --- /dev/null +++ b/src/IconWebSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWebSharp as default } diff --git a/src/IconWebStoriesOutlined.tsx b/src/IconWebStoriesOutlined.tsx new file mode 100644 index 000000000..fe6d8a599 --- /dev/null +++ b/src/IconWebStoriesOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWebStoriesOutlined as default } diff --git a/src/IconWebStoriesRound.tsx b/src/IconWebStoriesRound.tsx new file mode 100644 index 000000000..777907dda --- /dev/null +++ b/src/IconWebStoriesRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWebStoriesRound as default } diff --git a/src/IconWebStoriesSharp.tsx b/src/IconWebStoriesSharp.tsx new file mode 100644 index 000000000..8f98a3cd3 --- /dev/null +++ b/src/IconWebStoriesSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebStoriesSharp as default } diff --git a/src/IconWebStoriesTwoTone.tsx b/src/IconWebStoriesTwoTone.tsx new file mode 100644 index 000000000..4977bb911 --- /dev/null +++ b/src/IconWebStoriesTwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWebStoriesTwoTone as default } diff --git a/src/IconWebTwoTone.tsx b/src/IconWebTwoTone.tsx new file mode 100644 index 000000000..c5ed6261a --- /dev/null +++ b/src/IconWebTwoTone.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconWebTwoTone as default } diff --git a/src/IconWebhookOutlined.tsx b/src/IconWebhookOutlined.tsx new file mode 100644 index 000000000..de92894d6 --- /dev/null +++ b/src/IconWebhookOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebhookOutlined as default } diff --git a/src/IconWebhookRound.tsx b/src/IconWebhookRound.tsx new file mode 100644 index 000000000..b20048b0c --- /dev/null +++ b/src/IconWebhookRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWebhookRound as default } diff --git a/src/IconWebhookSharp.tsx b/src/IconWebhookSharp.tsx new file mode 100644 index 000000000..b96a643e3 --- /dev/null +++ b/src/IconWebhookSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebhookSharp as default } diff --git a/src/IconWebhookTwoTone.tsx b/src/IconWebhookTwoTone.tsx new file mode 100644 index 000000000..36f6d3b9d --- /dev/null +++ b/src/IconWebhookTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWebhookTwoTone as default } diff --git a/src/IconWeekendOutlined.tsx b/src/IconWeekendOutlined.tsx new file mode 100644 index 000000000..9cef6a8d5 --- /dev/null +++ b/src/IconWeekendOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWeekendOutlined as default } diff --git a/src/IconWeekendRound.tsx b/src/IconWeekendRound.tsx new file mode 100644 index 000000000..b082cd249 --- /dev/null +++ b/src/IconWeekendRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWeekendRound as default } diff --git a/src/IconWeekendSharp.tsx b/src/IconWeekendSharp.tsx new file mode 100644 index 000000000..94a0e5acc --- /dev/null +++ b/src/IconWeekendSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWeekendSharp as default } diff --git a/src/IconWeekendTwoTone.tsx b/src/IconWeekendTwoTone.tsx new file mode 100644 index 000000000..a6f99f08f --- /dev/null +++ b/src/IconWeekendTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWeekendTwoTone as default } diff --git a/src/IconWestOutlined.tsx b/src/IconWestOutlined.tsx new file mode 100644 index 000000000..2fc280612 --- /dev/null +++ b/src/IconWestOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWestOutlined as default } diff --git a/src/IconWestRound.tsx b/src/IconWestRound.tsx new file mode 100644 index 000000000..c1ed540ea --- /dev/null +++ b/src/IconWestRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWestRound as default } diff --git a/src/IconWestSharp.tsx b/src/IconWestSharp.tsx new file mode 100644 index 000000000..a33991b0d --- /dev/null +++ b/src/IconWestSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWestSharp as default } diff --git a/src/IconWestTwoTone.tsx b/src/IconWestTwoTone.tsx new file mode 100644 index 000000000..de050656d --- /dev/null +++ b/src/IconWestTwoTone.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWestTwoTone as default } diff --git a/src/IconWhatsapp.tsx b/src/IconWhatsapp.tsx deleted file mode 100644 index 07512e06b..000000000 --- a/src/IconWhatsapp.tsx +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { IconProps } from './types' - -const IconWhatsapp: React.FC = ({ ...props }) => ( - - {props.title && {props.title}} - - - - - - - - - - - -) - -export { IconWhatsapp as default } diff --git a/src/IconWhatshotOutlined.tsx b/src/IconWhatshotOutlined.tsx new file mode 100644 index 000000000..eb11a49be --- /dev/null +++ b/src/IconWhatshotOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWhatshotOutlined as default } diff --git a/src/IconWhatshotRound.tsx b/src/IconWhatshotRound.tsx new file mode 100644 index 000000000..ca4d8df2b --- /dev/null +++ b/src/IconWhatshotRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWhatshotRound as default } diff --git a/src/IconWhatshotSharp.tsx b/src/IconWhatshotSharp.tsx new file mode 100644 index 000000000..87a077726 --- /dev/null +++ b/src/IconWhatshotSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWhatshotSharp as default } diff --git a/src/IconWhatshotTwoTone.tsx b/src/IconWhatshotTwoTone.tsx new file mode 100644 index 000000000..562a1c634 --- /dev/null +++ b/src/IconWhatshotTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWhatshotTwoTone as default } diff --git a/src/IconWheelchairPickupOutlined.tsx b/src/IconWheelchairPickupOutlined.tsx new file mode 100644 index 000000000..474827a9a --- /dev/null +++ b/src/IconWheelchairPickupOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWheelchairPickupOutlined as default } diff --git a/src/IconWheelchairPickupRound.tsx b/src/IconWheelchairPickupRound.tsx new file mode 100644 index 000000000..5290d1f55 --- /dev/null +++ b/src/IconWheelchairPickupRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWheelchairPickupRound as default } diff --git a/src/IconWheelchairPickupSharp.tsx b/src/IconWheelchairPickupSharp.tsx new file mode 100644 index 000000000..c5b3e4ca4 --- /dev/null +++ b/src/IconWheelchairPickupSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWheelchairPickupSharp as default } diff --git a/src/IconWheelchairPickupTwoTone.tsx b/src/IconWheelchairPickupTwoTone.tsx new file mode 100644 index 000000000..e39e5483e --- /dev/null +++ b/src/IconWheelchairPickupTwoTone.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWheelchairPickupTwoTone as default } diff --git a/src/IconWhereToVoteOutlined.tsx b/src/IconWhereToVoteOutlined.tsx new file mode 100644 index 000000000..fad5ca74d --- /dev/null +++ b/src/IconWhereToVoteOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWhereToVoteOutlined as default } diff --git a/src/IconWhereToVoteRound.tsx b/src/IconWhereToVoteRound.tsx new file mode 100644 index 000000000..31058d168 --- /dev/null +++ b/src/IconWhereToVoteRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWhereToVoteRound as default } diff --git a/src/IconWhereToVoteSharp.tsx b/src/IconWhereToVoteSharp.tsx new file mode 100644 index 000000000..c3cbdab0a --- /dev/null +++ b/src/IconWhereToVoteSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWhereToVoteSharp as default } diff --git a/src/IconWhereToVoteTwoTone.tsx b/src/IconWhereToVoteTwoTone.tsx new file mode 100644 index 000000000..808873d2a --- /dev/null +++ b/src/IconWhereToVoteTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWhereToVoteTwoTone as default } diff --git a/src/IconWidgetsOutlined.tsx b/src/IconWidgetsOutlined.tsx new file mode 100644 index 000000000..ab768b93c --- /dev/null +++ b/src/IconWidgetsOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWidgetsOutlined as default } diff --git a/src/IconWidgetsRound.tsx b/src/IconWidgetsRound.tsx new file mode 100644 index 000000000..de79fc87e --- /dev/null +++ b/src/IconWidgetsRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWidgetsRound as default } diff --git a/src/IconWidgetsSharp.tsx b/src/IconWidgetsSharp.tsx new file mode 100644 index 000000000..4d130f532 --- /dev/null +++ b/src/IconWidgetsSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWidgetsSharp as default } diff --git a/src/IconWidgetsTwoTone.tsx b/src/IconWidgetsTwoTone.tsx new file mode 100644 index 000000000..653c58ac5 --- /dev/null +++ b/src/IconWidgetsTwoTone.tsx @@ -0,0 +1,16 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWidgetsTwoTone as default } diff --git a/src/IconWidthFullOutlined.tsx b/src/IconWidthFullOutlined.tsx new file mode 100644 index 000000000..b99706ed5 --- /dev/null +++ b/src/IconWidthFullOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthFullOutlined as default } diff --git a/src/IconWidthFullRound.tsx b/src/IconWidthFullRound.tsx new file mode 100644 index 000000000..135401d35 --- /dev/null +++ b/src/IconWidthFullRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWidthFullRound as default } diff --git a/src/IconWidthFullSharp.tsx b/src/IconWidthFullSharp.tsx new file mode 100644 index 000000000..5850ff9ae --- /dev/null +++ b/src/IconWidthFullSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthFullSharp as default } diff --git a/src/IconWidthFullTwoTone.tsx b/src/IconWidthFullTwoTone.tsx new file mode 100644 index 000000000..19bff7f86 --- /dev/null +++ b/src/IconWidthFullTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWidthFullTwoTone as default } diff --git a/src/IconWidthNormalOutlined.tsx b/src/IconWidthNormalOutlined.tsx new file mode 100644 index 000000000..97132312e --- /dev/null +++ b/src/IconWidthNormalOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthNormalOutlined as default } diff --git a/src/IconWidthNormalRound.tsx b/src/IconWidthNormalRound.tsx new file mode 100644 index 000000000..c4b71e21d --- /dev/null +++ b/src/IconWidthNormalRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWidthNormalRound as default } diff --git a/src/IconWidthNormalSharp.tsx b/src/IconWidthNormalSharp.tsx new file mode 100644 index 000000000..d2f1dac66 --- /dev/null +++ b/src/IconWidthNormalSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthNormalSharp as default } diff --git a/src/IconWidthNormalTwoTone.tsx b/src/IconWidthNormalTwoTone.tsx new file mode 100644 index 000000000..a3f562578 --- /dev/null +++ b/src/IconWidthNormalTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWidthNormalTwoTone as default } diff --git a/src/IconWidthWideOutlined.tsx b/src/IconWidthWideOutlined.tsx new file mode 100644 index 000000000..1a1f346f4 --- /dev/null +++ b/src/IconWidthWideOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthWideOutlined as default } diff --git a/src/IconWidthWideRound.tsx b/src/IconWidthWideRound.tsx new file mode 100644 index 000000000..52c186bf2 --- /dev/null +++ b/src/IconWidthWideRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWidthWideRound as default } diff --git a/src/IconWidthWideSharp.tsx b/src/IconWidthWideSharp.tsx new file mode 100644 index 000000000..2aaae3cb0 --- /dev/null +++ b/src/IconWidthWideSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWidthWideSharp as default } diff --git a/src/IconWidthWideTwoTone.tsx b/src/IconWidthWideTwoTone.tsx new file mode 100644 index 000000000..9fabaff8f --- /dev/null +++ b/src/IconWidthWideTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWidthWideTwoTone as default } diff --git a/src/IconWifi1BarOutlined.tsx b/src/IconWifi1BarOutlined.tsx new file mode 100644 index 000000000..48a9113c3 --- /dev/null +++ b/src/IconWifi1BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi1BarOutlined as default } diff --git a/src/IconWifi1BarRound.tsx b/src/IconWifi1BarRound.tsx new file mode 100644 index 000000000..d5419800a --- /dev/null +++ b/src/IconWifi1BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWifi1BarRound as default } diff --git a/src/IconWifi1BarSharp.tsx b/src/IconWifi1BarSharp.tsx new file mode 100644 index 000000000..2d6179b9d --- /dev/null +++ b/src/IconWifi1BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi1BarSharp as default } diff --git a/src/IconWifi1BarTwoTone.tsx b/src/IconWifi1BarTwoTone.tsx new file mode 100644 index 000000000..92a8b7b16 --- /dev/null +++ b/src/IconWifi1BarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi1BarTwoTone as default } diff --git a/src/IconWifi2BarOutlined.tsx b/src/IconWifi2BarOutlined.tsx new file mode 100644 index 000000000..d1a25a190 --- /dev/null +++ b/src/IconWifi2BarOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi2BarOutlined as default } diff --git a/src/IconWifi2BarRound.tsx b/src/IconWifi2BarRound.tsx new file mode 100644 index 000000000..b9b27cf5c --- /dev/null +++ b/src/IconWifi2BarRound.tsx @@ -0,0 +1,22 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWifi2BarRound as default } diff --git a/src/IconWifi2BarSharp.tsx b/src/IconWifi2BarSharp.tsx new file mode 100644 index 000000000..c1112daec --- /dev/null +++ b/src/IconWifi2BarSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi2BarSharp as default } diff --git a/src/IconWifi2BarTwoTone.tsx b/src/IconWifi2BarTwoTone.tsx new file mode 100644 index 000000000..c5b9ae1b8 --- /dev/null +++ b/src/IconWifi2BarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifi2BarTwoTone as default } diff --git a/src/IconWifiCalling3Outlined.tsx b/src/IconWifiCalling3Outlined.tsx new file mode 100644 index 000000000..8359ad449 --- /dev/null +++ b/src/IconWifiCalling3Outlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCalling3Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWifiCalling3Outlined as default } diff --git a/src/IconWifiCalling3Round.tsx b/src/IconWifiCalling3Round.tsx new file mode 100644 index 000000000..f0264ebcc --- /dev/null +++ b/src/IconWifiCalling3Round.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCalling3Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWifiCalling3Round as default } diff --git a/src/IconWifiCalling3Sharp.tsx b/src/IconWifiCalling3Sharp.tsx new file mode 100644 index 000000000..99396bb72 --- /dev/null +++ b/src/IconWifiCalling3Sharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCalling3Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWifiCalling3Sharp as default } diff --git a/src/IconWifiCalling3TwoTone.tsx b/src/IconWifiCalling3TwoTone.tsx new file mode 100644 index 000000000..94813940b --- /dev/null +++ b/src/IconWifiCalling3TwoTone.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCalling3TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconWifiCalling3TwoTone as default } diff --git a/src/IconWifiCallingOutlined.tsx b/src/IconWifiCallingOutlined.tsx new file mode 100644 index 000000000..58eb9cef3 --- /dev/null +++ b/src/IconWifiCallingOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiCallingOutlined as default } diff --git a/src/IconWifiCallingRound.tsx b/src/IconWifiCallingRound.tsx new file mode 100644 index 000000000..776fab0ac --- /dev/null +++ b/src/IconWifiCallingRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWifiCallingRound as default } diff --git a/src/IconWifiCallingSharp.tsx b/src/IconWifiCallingSharp.tsx new file mode 100644 index 000000000..9a35383e8 --- /dev/null +++ b/src/IconWifiCallingSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWifiCallingSharp as default } diff --git a/src/IconWifiCallingTwoTone.tsx b/src/IconWifiCallingTwoTone.tsx new file mode 100644 index 000000000..fc6d3bfb1 --- /dev/null +++ b/src/IconWifiCallingTwoTone.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiCallingTwoTone as default } diff --git a/src/IconWifiChannelOutlined.tsx b/src/IconWifiChannelOutlined.tsx new file mode 100644 index 000000000..66ad6364a --- /dev/null +++ b/src/IconWifiChannelOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiChannelOutlined as default } diff --git a/src/IconWifiChannelRound.tsx b/src/IconWifiChannelRound.tsx new file mode 100644 index 000000000..331a0b7c3 --- /dev/null +++ b/src/IconWifiChannelRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiChannelRound as default } diff --git a/src/IconWifiChannelSharp.tsx b/src/IconWifiChannelSharp.tsx new file mode 100644 index 000000000..d71d94bda --- /dev/null +++ b/src/IconWifiChannelSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiChannelSharp as default } diff --git a/src/IconWifiChannelTwoTone.tsx b/src/IconWifiChannelTwoTone.tsx new file mode 100644 index 000000000..687e726fa --- /dev/null +++ b/src/IconWifiChannelTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + +) + +export { IconWifiChannelTwoTone as default } diff --git a/src/IconWifiFindOutlined.tsx b/src/IconWifiFindOutlined.tsx new file mode 100644 index 000000000..972661d31 --- /dev/null +++ b/src/IconWifiFindOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiFindOutlined as default } diff --git a/src/IconWifiFindRound.tsx b/src/IconWifiFindRound.tsx new file mode 100644 index 000000000..38d8b4c05 --- /dev/null +++ b/src/IconWifiFindRound.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiFindRound as default } diff --git a/src/IconWifiFindSharp.tsx b/src/IconWifiFindSharp.tsx new file mode 100644 index 000000000..4e8b1cba6 --- /dev/null +++ b/src/IconWifiFindSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiFindSharp as default } diff --git a/src/IconWifiFindTwoTone.tsx b/src/IconWifiFindTwoTone.tsx new file mode 100644 index 000000000..7098831ce --- /dev/null +++ b/src/IconWifiFindTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWifiFindTwoTone as default } diff --git a/src/IconWifiLockOutlined.tsx b/src/IconWifiLockOutlined.tsx new file mode 100644 index 000000000..fee7752f3 --- /dev/null +++ b/src/IconWifiLockOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWifiLockOutlined as default } diff --git a/src/IconWifiLockRound.tsx b/src/IconWifiLockRound.tsx new file mode 100644 index 000000000..f922c0648 --- /dev/null +++ b/src/IconWifiLockRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWifiLockRound as default } diff --git a/src/IconWifiLockSharp.tsx b/src/IconWifiLockSharp.tsx new file mode 100644 index 000000000..4018eb2d6 --- /dev/null +++ b/src/IconWifiLockSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWifiLockSharp as default } diff --git a/src/IconWifiLockTwoTone.tsx b/src/IconWifiLockTwoTone.tsx new file mode 100644 index 000000000..229db2f6d --- /dev/null +++ b/src/IconWifiLockTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWifiLockTwoTone as default } diff --git a/src/IconWifiOffOutlined.tsx b/src/IconWifiOffOutlined.tsx new file mode 100644 index 000000000..0b80295e3 --- /dev/null +++ b/src/IconWifiOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiOffOutlined as default } diff --git a/src/IconWifiOffRound.tsx b/src/IconWifiOffRound.tsx new file mode 100644 index 000000000..e95a50ea1 --- /dev/null +++ b/src/IconWifiOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiOffRound as default } diff --git a/src/IconWifiOffSharp.tsx b/src/IconWifiOffSharp.tsx new file mode 100644 index 000000000..76fa9508c --- /dev/null +++ b/src/IconWifiOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiOffSharp as default } diff --git a/src/IconWifiOffTwoTone.tsx b/src/IconWifiOffTwoTone.tsx new file mode 100644 index 000000000..bd2425ab0 --- /dev/null +++ b/src/IconWifiOffTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiOffTwoTone as default } diff --git a/src/IconWifiOutlined.tsx b/src/IconWifiOutlined.tsx new file mode 100644 index 000000000..a49ea9b60 --- /dev/null +++ b/src/IconWifiOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiOutlined as default } diff --git a/src/IconWifiPasswordOutlined.tsx b/src/IconWifiPasswordOutlined.tsx new file mode 100644 index 000000000..14985f587 --- /dev/null +++ b/src/IconWifiPasswordOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiPasswordOutlined as default } diff --git a/src/IconWifiPasswordRound.tsx b/src/IconWifiPasswordRound.tsx new file mode 100644 index 000000000..1bf03f135 --- /dev/null +++ b/src/IconWifiPasswordRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiPasswordRound as default } diff --git a/src/IconWifiPasswordSharp.tsx b/src/IconWifiPasswordSharp.tsx new file mode 100644 index 000000000..18fa9bde1 --- /dev/null +++ b/src/IconWifiPasswordSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiPasswordSharp as default } diff --git a/src/IconWifiPasswordTwoTone.tsx b/src/IconWifiPasswordTwoTone.tsx new file mode 100644 index 000000000..05752fdcc --- /dev/null +++ b/src/IconWifiPasswordTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWifiPasswordTwoTone as default } diff --git a/src/IconWifiProtectedSetupOutlined.tsx b/src/IconWifiProtectedSetupOutlined.tsx new file mode 100644 index 000000000..8027cdd0f --- /dev/null +++ b/src/IconWifiProtectedSetupOutlined.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetupOutlined as default } diff --git a/src/IconWifiProtectedSetupRound.tsx b/src/IconWifiProtectedSetupRound.tsx new file mode 100644 index 000000000..4c28a86e3 --- /dev/null +++ b/src/IconWifiProtectedSetupRound.tsx @@ -0,0 +1,29 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetupRound as default } diff --git a/src/IconWifiProtectedSetupSharp.tsx b/src/IconWifiProtectedSetupSharp.tsx new file mode 100644 index 000000000..db8eb2067 --- /dev/null +++ b/src/IconWifiProtectedSetupSharp.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetupSharp as default } diff --git a/src/IconWifiProtectedSetupTwoTone.tsx b/src/IconWifiProtectedSetupTwoTone.tsx new file mode 100644 index 000000000..6d5fa40e8 --- /dev/null +++ b/src/IconWifiProtectedSetupTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWifiProtectedSetupTwoTone as default } diff --git a/src/IconWifiRound.tsx b/src/IconWifiRound.tsx new file mode 100644 index 000000000..cd0ddf51b --- /dev/null +++ b/src/IconWifiRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiRound as default } diff --git a/src/IconWifiSharp.tsx b/src/IconWifiSharp.tsx new file mode 100644 index 000000000..df0afd2c9 --- /dev/null +++ b/src/IconWifiSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiSharp as default } diff --git a/src/IconWifiTetheringErrorOutlined.tsx b/src/IconWifiTetheringErrorOutlined.tsx new file mode 100644 index 000000000..959c0aa17 --- /dev/null +++ b/src/IconWifiTetheringErrorOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringErrorOutlined as default } diff --git a/src/IconWifiTetheringErrorRound.tsx b/src/IconWifiTetheringErrorRound.tsx new file mode 100644 index 000000000..3b342d73a --- /dev/null +++ b/src/IconWifiTetheringErrorRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringErrorRound as default } diff --git a/src/IconWifiTetheringErrorSharp.tsx b/src/IconWifiTetheringErrorSharp.tsx new file mode 100644 index 000000000..f5685ea89 --- /dev/null +++ b/src/IconWifiTetheringErrorSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringErrorSharp as default } diff --git a/src/IconWifiTetheringErrorTwoTone.tsx b/src/IconWifiTetheringErrorTwoTone.tsx new file mode 100644 index 000000000..9e9eae040 --- /dev/null +++ b/src/IconWifiTetheringErrorTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringErrorTwoTone as default } diff --git a/src/IconWifiTetheringOffOutlined.tsx b/src/IconWifiTetheringOffOutlined.tsx new file mode 100644 index 000000000..06f6fce03 --- /dev/null +++ b/src/IconWifiTetheringOffOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringOffOutlined as default } diff --git a/src/IconWifiTetheringOffRound.tsx b/src/IconWifiTetheringOffRound.tsx new file mode 100644 index 000000000..e7c275152 --- /dev/null +++ b/src/IconWifiTetheringOffRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringOffRound as default } diff --git a/src/IconWifiTetheringOffSharp.tsx b/src/IconWifiTetheringOffSharp.tsx new file mode 100644 index 000000000..d0b52fe2e --- /dev/null +++ b/src/IconWifiTetheringOffSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringOffSharp as default } diff --git a/src/IconWifiTetheringOffTwoTone.tsx b/src/IconWifiTetheringOffTwoTone.tsx new file mode 100644 index 000000000..7fb944942 --- /dev/null +++ b/src/IconWifiTetheringOffTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWifiTetheringOffTwoTone as default } diff --git a/src/IconWifiTetheringOutlined.tsx b/src/IconWifiTetheringOutlined.tsx new file mode 100644 index 000000000..da3024585 --- /dev/null +++ b/src/IconWifiTetheringOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiTetheringOutlined as default } diff --git a/src/IconWifiTetheringRound.tsx b/src/IconWifiTetheringRound.tsx new file mode 100644 index 000000000..236497cf2 --- /dev/null +++ b/src/IconWifiTetheringRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiTetheringRound as default } diff --git a/src/IconWifiTetheringSharp.tsx b/src/IconWifiTetheringSharp.tsx new file mode 100644 index 000000000..8670cf00c --- /dev/null +++ b/src/IconWifiTetheringSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiTetheringSharp as default } diff --git a/src/IconWifiTetheringTwoTone.tsx b/src/IconWifiTetheringTwoTone.tsx new file mode 100644 index 000000000..8072898a5 --- /dev/null +++ b/src/IconWifiTetheringTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiTetheringTwoTone as default } diff --git a/src/IconWifiTwoTone.tsx b/src/IconWifiTwoTone.tsx new file mode 100644 index 000000000..08c9cb392 --- /dev/null +++ b/src/IconWifiTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWifiTwoTone as default } diff --git a/src/IconWindPowerOutlined.tsx b/src/IconWindPowerOutlined.tsx new file mode 100644 index 000000000..5baa25e49 --- /dev/null +++ b/src/IconWindPowerOutlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWindPowerOutlined as default } diff --git a/src/IconWindPowerRound.tsx b/src/IconWindPowerRound.tsx new file mode 100644 index 000000000..985ce9683 --- /dev/null +++ b/src/IconWindPowerRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconWindPowerRound as default } diff --git a/src/IconWindPowerSharp.tsx b/src/IconWindPowerSharp.tsx new file mode 100644 index 000000000..207877fbe --- /dev/null +++ b/src/IconWindPowerSharp.tsx @@ -0,0 +1,43 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export { IconWindPowerSharp as default } diff --git a/src/IconWindPowerTwoTone.tsx b/src/IconWindPowerTwoTone.tsx new file mode 100644 index 000000000..6a884e216 --- /dev/null +++ b/src/IconWindPowerTwoTone.tsx @@ -0,0 +1,39 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + + + +) + +export { IconWindPowerTwoTone as default } diff --git a/src/IconWindow.tsx b/src/IconWindow.tsx index 1410c6f07..3cbed1988 100644 --- a/src/IconWindow.tsx +++ b/src/IconWindow.tsx @@ -10,10 +10,12 @@ const IconWindow: React.FC = ({ ...props }) => ( > {props.title && {props.title}} - + - + + + ) diff --git a/src/IconWindowOutlined.tsx b/src/IconWindowOutlined.tsx new file mode 100644 index 000000000..e8eb0f6f1 --- /dev/null +++ b/src/IconWindowOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconWindowOutlined as default } diff --git a/src/IconWindowRound.tsx b/src/IconWindowRound.tsx new file mode 100644 index 000000000..5a2d1bb77 --- /dev/null +++ b/src/IconWindowRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWindowRound as default } diff --git a/src/IconWindowSharp.tsx b/src/IconWindowSharp.tsx new file mode 100644 index 000000000..7893496a3 --- /dev/null +++ b/src/IconWindowSharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWindowSharp as default } diff --git a/src/IconWindowTwoTone.tsx b/src/IconWindowTwoTone.tsx new file mode 100644 index 000000000..7ee75afed --- /dev/null +++ b/src/IconWindowTwoTone.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWindowTwoTone as default } diff --git a/src/IconWineBarOutlined.tsx b/src/IconWineBarOutlined.tsx new file mode 100644 index 000000000..6e8212cb5 --- /dev/null +++ b/src/IconWineBarOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWineBarOutlined as default } diff --git a/src/IconWineBarRound.tsx b/src/IconWineBarRound.tsx new file mode 100644 index 000000000..43f3c2882 --- /dev/null +++ b/src/IconWineBarRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWineBarRound as default } diff --git a/src/IconWineBarSharp.tsx b/src/IconWineBarSharp.tsx new file mode 100644 index 000000000..58c968eda --- /dev/null +++ b/src/IconWineBarSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWineBarSharp as default } diff --git a/src/IconWineBarTwoTone.tsx b/src/IconWineBarTwoTone.tsx new file mode 100644 index 000000000..972a2acdf --- /dev/null +++ b/src/IconWineBarTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWineBarTwoTone as default } diff --git a/src/IconWoman2Outlined.tsx b/src/IconWoman2Outlined.tsx new file mode 100644 index 000000000..c19dbb4e2 --- /dev/null +++ b/src/IconWoman2Outlined.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2Outlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWoman2Outlined as default } diff --git a/src/IconWoman2Round.tsx b/src/IconWoman2Round.tsx new file mode 100644 index 000000000..c0cdce5f4 --- /dev/null +++ b/src/IconWoman2Round.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2Round: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconWoman2Round as default } diff --git a/src/IconWoman2Sharp.tsx b/src/IconWoman2Sharp.tsx new file mode 100644 index 000000000..4d9d01b1f --- /dev/null +++ b/src/IconWoman2Sharp.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2Sharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWoman2Sharp as default } diff --git a/src/IconWoman2TwoTone.tsx b/src/IconWoman2TwoTone.tsx new file mode 100644 index 000000000..069d3947d --- /dev/null +++ b/src/IconWoman2TwoTone.tsx @@ -0,0 +1,26 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2TwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + +) + +export { IconWoman2TwoTone as default } diff --git a/src/IconWomanOutlined.tsx b/src/IconWomanOutlined.tsx new file mode 100644 index 000000000..f9a084e5c --- /dev/null +++ b/src/IconWomanOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWomanOutlined as default } diff --git a/src/IconWomanRound.tsx b/src/IconWomanRound.tsx new file mode 100644 index 000000000..8546965cd --- /dev/null +++ b/src/IconWomanRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWomanRound as default } diff --git a/src/IconWomanSharp.tsx b/src/IconWomanSharp.tsx new file mode 100644 index 000000000..14a86bb3d --- /dev/null +++ b/src/IconWomanSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWomanSharp as default } diff --git a/src/IconWomanTwoTone.tsx b/src/IconWomanTwoTone.tsx new file mode 100644 index 000000000..2cf3c759a --- /dev/null +++ b/src/IconWomanTwoTone.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWomanTwoTone as default } diff --git a/src/IconWorkHistoryOutlined.tsx b/src/IconWorkHistoryOutlined.tsx new file mode 100644 index 000000000..bd249fc9e --- /dev/null +++ b/src/IconWorkHistoryOutlined.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistoryOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWorkHistoryOutlined as default } diff --git a/src/IconWorkHistoryRound.tsx b/src/IconWorkHistoryRound.tsx new file mode 100644 index 000000000..51b8707ab --- /dev/null +++ b/src/IconWorkHistoryRound.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistoryRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWorkHistoryRound as default } diff --git a/src/IconWorkHistorySharp.tsx b/src/IconWorkHistorySharp.tsx new file mode 100644 index 000000000..e14229a3b --- /dev/null +++ b/src/IconWorkHistorySharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistorySharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWorkHistorySharp as default } diff --git a/src/IconWorkHistoryTwoTone.tsx b/src/IconWorkHistoryTwoTone.tsx new file mode 100644 index 000000000..46ed2cf2e --- /dev/null +++ b/src/IconWorkHistoryTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistoryTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWorkHistoryTwoTone as default } diff --git a/src/IconWorkOffOutlined.tsx b/src/IconWorkOffOutlined.tsx new file mode 100644 index 000000000..8c587d6b5 --- /dev/null +++ b/src/IconWorkOffOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOffOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOffOutlined as default } diff --git a/src/IconWorkOffRound.tsx b/src/IconWorkOffRound.tsx new file mode 100644 index 000000000..accea725f --- /dev/null +++ b/src/IconWorkOffRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOffRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOffRound as default } diff --git a/src/IconWorkOffSharp.tsx b/src/IconWorkOffSharp.tsx new file mode 100644 index 000000000..5351a741f --- /dev/null +++ b/src/IconWorkOffSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOffSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOffSharp as default } diff --git a/src/IconWorkOffTwoTone.tsx b/src/IconWorkOffTwoTone.tsx new file mode 100644 index 000000000..9ab139a16 --- /dev/null +++ b/src/IconWorkOffTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOffTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWorkOffTwoTone as default } diff --git a/src/IconWorkOutlineOutlined.tsx b/src/IconWorkOutlineOutlined.tsx new file mode 100644 index 000000000..5ad31eec7 --- /dev/null +++ b/src/IconWorkOutlineOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlineOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOutlineOutlined as default } diff --git a/src/IconWorkOutlineRound.tsx b/src/IconWorkOutlineRound.tsx new file mode 100644 index 000000000..fdeae2416 --- /dev/null +++ b/src/IconWorkOutlineRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlineRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOutlineRound as default } diff --git a/src/IconWorkOutlineSharp.tsx b/src/IconWorkOutlineSharp.tsx new file mode 100644 index 000000000..ad7dec2d3 --- /dev/null +++ b/src/IconWorkOutlineSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlineSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOutlineSharp as default } diff --git a/src/IconWorkOutlineTwoTone.tsx b/src/IconWorkOutlineTwoTone.tsx new file mode 100644 index 000000000..a8cf8c933 --- /dev/null +++ b/src/IconWorkOutlineTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlineTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOutlineTwoTone as default } diff --git a/src/IconWorkOutlined.tsx b/src/IconWorkOutlined.tsx new file mode 100644 index 000000000..a9247bf5f --- /dev/null +++ b/src/IconWorkOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkOutlined as default } diff --git a/src/IconWorkRound.tsx b/src/IconWorkRound.tsx new file mode 100644 index 000000000..d2c2e4d7f --- /dev/null +++ b/src/IconWorkRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkRound as default } diff --git a/src/IconWorkSharp.tsx b/src/IconWorkSharp.tsx new file mode 100644 index 000000000..3cfb8ca06 --- /dev/null +++ b/src/IconWorkSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkSharp as default } diff --git a/src/IconWorkTwoTone.tsx b/src/IconWorkTwoTone.tsx new file mode 100644 index 000000000..1bd73e76b --- /dev/null +++ b/src/IconWorkTwoTone.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWorkTwoTone as default } diff --git a/src/IconWorkspacePremiumOutlined.tsx b/src/IconWorkspacePremiumOutlined.tsx new file mode 100644 index 000000000..189256cf4 --- /dev/null +++ b/src/IconWorkspacePremiumOutlined.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkspacePremiumOutlined as default } diff --git a/src/IconWorkspacePremiumRound.tsx b/src/IconWorkspacePremiumRound.tsx new file mode 100644 index 000000000..05619ee87 --- /dev/null +++ b/src/IconWorkspacePremiumRound.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkspacePremiumRound as default } diff --git a/src/IconWorkspacePremiumSharp.tsx b/src/IconWorkspacePremiumSharp.tsx new file mode 100644 index 000000000..0f3a445c5 --- /dev/null +++ b/src/IconWorkspacePremiumSharp.tsx @@ -0,0 +1,17 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWorkspacePremiumSharp as default } diff --git a/src/IconWorkspacePremiumTwoTone.tsx b/src/IconWorkspacePremiumTwoTone.tsx new file mode 100644 index 000000000..8cacdcd3b --- /dev/null +++ b/src/IconWorkspacePremiumTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + +) + +export { IconWorkspacePremiumTwoTone as default } diff --git a/src/IconWorkspacesOutlined.tsx b/src/IconWorkspacesOutlined.tsx new file mode 100644 index 000000000..083cf356b --- /dev/null +++ b/src/IconWorkspacesOutlined.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWorkspacesOutlined as default } diff --git a/src/IconWorkspacesRound.tsx b/src/IconWorkspacesRound.tsx new file mode 100644 index 000000000..d2a045419 --- /dev/null +++ b/src/IconWorkspacesRound.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWorkspacesRound as default } diff --git a/src/IconWorkspacesSharp.tsx b/src/IconWorkspacesSharp.tsx new file mode 100644 index 000000000..d79b774af --- /dev/null +++ b/src/IconWorkspacesSharp.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + +) + +export { IconWorkspacesSharp as default } diff --git a/src/IconWorkspacesTwoTone.tsx b/src/IconWorkspacesTwoTone.tsx new file mode 100644 index 000000000..3368dfa51 --- /dev/null +++ b/src/IconWorkspacesTwoTone.tsx @@ -0,0 +1,28 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + + +) + +export { IconWorkspacesTwoTone as default } diff --git a/src/IconWrapTextOutlined.tsx b/src/IconWrapTextOutlined.tsx new file mode 100644 index 000000000..d896874af --- /dev/null +++ b/src/IconWrapTextOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWrapTextOutlined as default } diff --git a/src/IconWrapTextRound.tsx b/src/IconWrapTextRound.tsx new file mode 100644 index 000000000..bf2611ff0 --- /dev/null +++ b/src/IconWrapTextRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWrapTextRound as default } diff --git a/src/IconWrapTextSharp.tsx b/src/IconWrapTextSharp.tsx new file mode 100644 index 000000000..ca9b3628c --- /dev/null +++ b/src/IconWrapTextSharp.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrapTextSharp as default } diff --git a/src/IconWrapTextTwoTone.tsx b/src/IconWrapTextTwoTone.tsx new file mode 100644 index 000000000..a23fb1b59 --- /dev/null +++ b/src/IconWrapTextTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconWrapTextTwoTone as default } diff --git a/src/IconWrongLocationOutlined.tsx b/src/IconWrongLocationOutlined.tsx new file mode 100644 index 000000000..5c647ff5a --- /dev/null +++ b/src/IconWrongLocationOutlined.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWrongLocationOutlined as default } diff --git a/src/IconWrongLocationRound.tsx b/src/IconWrongLocationRound.tsx new file mode 100644 index 000000000..bed2cd287 --- /dev/null +++ b/src/IconWrongLocationRound.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWrongLocationRound as default } diff --git a/src/IconWrongLocationSharp.tsx b/src/IconWrongLocationSharp.tsx new file mode 100644 index 000000000..b78a0dd3b --- /dev/null +++ b/src/IconWrongLocationSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconWrongLocationSharp as default } diff --git a/src/IconWrongLocationTwoTone.tsx b/src/IconWrongLocationTwoTone.tsx new file mode 100644 index 000000000..8be0bdb54 --- /dev/null +++ b/src/IconWrongLocationTwoTone.tsx @@ -0,0 +1,25 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + +) + +export { IconWrongLocationTwoTone as default } diff --git a/src/IconWysiwygOutlined.tsx b/src/IconWysiwygOutlined.tsx new file mode 100644 index 000000000..fc9feff3f --- /dev/null +++ b/src/IconWysiwygOutlined.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWysiwygOutlined as default } diff --git a/src/IconWysiwygRound.tsx b/src/IconWysiwygRound.tsx new file mode 100644 index 000000000..cc57b17eb --- /dev/null +++ b/src/IconWysiwygRound.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWysiwygRound as default } diff --git a/src/IconWysiwygSharp.tsx b/src/IconWysiwygSharp.tsx new file mode 100644 index 000000000..7c87be797 --- /dev/null +++ b/src/IconWysiwygSharp.tsx @@ -0,0 +1,19 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + +) + +export { IconWysiwygSharp as default } diff --git a/src/IconWysiwygTwoTone.tsx b/src/IconWysiwygTwoTone.tsx new file mode 100644 index 000000000..344169bfe --- /dev/null +++ b/src/IconWysiwygTwoTone.tsx @@ -0,0 +1,23 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + +) + +export { IconWysiwygTwoTone as default } diff --git a/src/IconYardOutlined.tsx b/src/IconYardOutlined.tsx new file mode 100644 index 000000000..99d47a62e --- /dev/null +++ b/src/IconYardOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconYardOutlined as default } diff --git a/src/IconYardRound.tsx b/src/IconYardRound.tsx new file mode 100644 index 000000000..4269be858 --- /dev/null +++ b/src/IconYardRound.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconYardRound as default } diff --git a/src/IconYardSharp.tsx b/src/IconYardSharp.tsx new file mode 100644 index 000000000..7034385bd --- /dev/null +++ b/src/IconYardSharp.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + +) + +export { IconYardSharp as default } diff --git a/src/IconYardTwoTone.tsx b/src/IconYardTwoTone.tsx new file mode 100644 index 000000000..10fc5d183 --- /dev/null +++ b/src/IconYardTwoTone.tsx @@ -0,0 +1,30 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconYardTwoTone as default } diff --git a/src/IconYoutubeSearchedForOutlined.tsx b/src/IconYoutubeSearchedForOutlined.tsx new file mode 100644 index 000000000..9da40b72c --- /dev/null +++ b/src/IconYoutubeSearchedForOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconYoutubeSearchedForOutlined as default } diff --git a/src/IconYoutubeSearchedForRound.tsx b/src/IconYoutubeSearchedForRound.tsx new file mode 100644 index 000000000..468af6bf4 --- /dev/null +++ b/src/IconYoutubeSearchedForRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconYoutubeSearchedForRound as default } diff --git a/src/IconYoutubeSearchedForSharp.tsx b/src/IconYoutubeSearchedForSharp.tsx new file mode 100644 index 000000000..c2b840232 --- /dev/null +++ b/src/IconYoutubeSearchedForSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconYoutubeSearchedForSharp as default } diff --git a/src/IconYoutubeSearchedForTwoTone.tsx b/src/IconYoutubeSearchedForTwoTone.tsx new file mode 100644 index 000000000..11500e46f --- /dev/null +++ b/src/IconYoutubeSearchedForTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconYoutubeSearchedForTwoTone as default } diff --git a/src/IconZoomInMapOutlined.tsx b/src/IconZoomInMapOutlined.tsx new file mode 100644 index 000000000..32303aab6 --- /dev/null +++ b/src/IconZoomInMapOutlined.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconZoomInMapOutlined as default } diff --git a/src/IconZoomInMapRound.tsx b/src/IconZoomInMapRound.tsx new file mode 100644 index 000000000..d22cb4860 --- /dev/null +++ b/src/IconZoomInMapRound.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconZoomInMapRound as default } diff --git a/src/IconZoomInMapSharp.tsx b/src/IconZoomInMapSharp.tsx new file mode 100644 index 000000000..c9f3f5a57 --- /dev/null +++ b/src/IconZoomInMapSharp.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconZoomInMapSharp as default } diff --git a/src/IconZoomInMapTwoTone.tsx b/src/IconZoomInMapTwoTone.tsx new file mode 100644 index 000000000..1bc8a24cd --- /dev/null +++ b/src/IconZoomInMapTwoTone.tsx @@ -0,0 +1,21 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + +) + +export { IconZoomInMapTwoTone as default } diff --git a/src/IconZoomInOutlined.tsx b/src/IconZoomInOutlined.tsx new file mode 100644 index 000000000..98e24e49c --- /dev/null +++ b/src/IconZoomInOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomInOutlined as default } diff --git a/src/IconZoomInRound.tsx b/src/IconZoomInRound.tsx new file mode 100644 index 000000000..a9fb6441d --- /dev/null +++ b/src/IconZoomInRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomInRound as default } diff --git a/src/IconZoomInSharp.tsx b/src/IconZoomInSharp.tsx new file mode 100644 index 000000000..d11b66ec9 --- /dev/null +++ b/src/IconZoomInSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomInSharp as default } diff --git a/src/IconZoomInTwoTone.tsx b/src/IconZoomInTwoTone.tsx new file mode 100644 index 000000000..e67e4d73e --- /dev/null +++ b/src/IconZoomInTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomInTwoTone as default } diff --git a/src/IconZoomOutMapOutlined.tsx b/src/IconZoomOutMapOutlined.tsx new file mode 100644 index 000000000..40d4ba9ed --- /dev/null +++ b/src/IconZoomOutMapOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutMapOutlined as default } diff --git a/src/IconZoomOutMapRound.tsx b/src/IconZoomOutMapRound.tsx new file mode 100644 index 000000000..144a2bf21 --- /dev/null +++ b/src/IconZoomOutMapRound.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + + + + + + + + + + + +) + +export { IconZoomOutMapRound as default } diff --git a/src/IconZoomOutMapSharp.tsx b/src/IconZoomOutMapSharp.tsx new file mode 100644 index 000000000..ae787362c --- /dev/null +++ b/src/IconZoomOutMapSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutMapSharp as default } diff --git a/src/IconZoomOutMapTwoTone.tsx b/src/IconZoomOutMapTwoTone.tsx new file mode 100644 index 000000000..e1bb0b44a --- /dev/null +++ b/src/IconZoomOutMapTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutMapTwoTone as default } diff --git a/src/IconZoomOutOutlined.tsx b/src/IconZoomOutOutlined.tsx new file mode 100644 index 000000000..26b47a417 --- /dev/null +++ b/src/IconZoomOutOutlined.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutOutlined: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutOutlined as default } diff --git a/src/IconZoomOutRound.tsx b/src/IconZoomOutRound.tsx new file mode 100644 index 000000000..08b11c82a --- /dev/null +++ b/src/IconZoomOutRound.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutRound: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutRound as default } diff --git a/src/IconZoomOutSharp.tsx b/src/IconZoomOutSharp.tsx new file mode 100644 index 000000000..cea72ef5a --- /dev/null +++ b/src/IconZoomOutSharp.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutSharp: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutSharp as default } diff --git a/src/IconZoomOutTwoTone.tsx b/src/IconZoomOutTwoTone.tsx new file mode 100644 index 000000000..4e9d8ba33 --- /dev/null +++ b/src/IconZoomOutTwoTone.tsx @@ -0,0 +1,12 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutTwoTone: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + + +) + +export { IconZoomOutTwoTone as default } diff --git a/tsconfig.json b/tsconfig.json index b8c6e0564..6e6ec4a4c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,6 +10,12 @@ "strict": true, "sourceMap": false }, - "include": ["src"], - "exclude": ["node_modules", "**/__test__/*", "**/__tests__/*"] + "include": [ + "src" + ], + "exclude": [ + "node_modules", + "**/__test__/*", + "**/__tests__/*" + ] } \ No newline at end of file